merge the kick notice suppression
authornemo
Sun, 24 Mar 2024 14:34:27 -0400
changeset 15996 19927b70588c
parent 15995 4c523ed1d35c (diff)
parent 15994 fcc98c953b5e (current diff)
child 15997 7c8697fa019f
merge the kick notice suppression
QTfrontend/net/newnetclient.cpp
--- a/.hgignore	Sun Mar 24 14:19:02 2024 -0400
+++ b/.hgignore	Sun Mar 24 14:34:27 2024 -0400
@@ -95,3 +95,5 @@
 *.so
 *_autogen
 build/
+target/
+dist-newstyle
--- a/.travis.yml	Sun Mar 24 14:19:02 2024 -0400
+++ b/.travis.yml	Sun Mar 24 14:34:27 2024 -0400
@@ -52,6 +52,7 @@
 
 before_install: |
   if [ "$TRAVIS_OS_NAME" == "linux" ]; then
+    sudo add-apt-repository ppa:costamagnagianfranco/hedgewars-nightly -y
     sudo apt-get update -qq
   elif [ "$TRAVIS_OS_NAME" == "osx" ]; then
     brew update
@@ -65,18 +66,7 @@
 
 install: |
   if [ "$TRAVIS_OS_NAME" == "linux" ]; then
-    sudo apt-get install -y debhelper cmake dpkg-dev qtbase5-dev qtbase5-private-dev qttools5-dev-tools qttools5-dev libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev libsdl2-image-dev libsdl2-net-dev bzip2 ghc libghc-mtl-dev libghc-vector-dev libghc-zlib-dev libghc-random-dev libghc-network-dev libghc-sandi-dev libghc-hslogger-dev libghc-utf8-string-dev libghc-sha-dev libghc-entropy-dev libghc-regex-tdfa-dev libghc-aeson-dev libghc-yaml-dev libghc-text-dev liblua5.1-0-dev fpc fp-compiler fp-units-misc libpng-dev fp-units-gfx libavcodec-dev libavformat-dev libglew1.6-dev
-
-    # for xenial last availible version of libphysfs is 2.0.x, but we need >= 3.0
-    # so... building from sources!
-    wget https://icculus.org/physfs/downloads/physfs-3.0.1.tar.bz2
-    tar -xjf physfs-3.0.1.tar.bz2
-    mkdir physfs-3.0.1-build
-    pushd physfs-3.0.1-build
-    cmake ../physfs-3.0.1
-    make
-    sudo make install
-    popd
+    sudo apt-get install -y cmake debhelper dpkg-dev fp-compiler fp-units-gfx fp-units-misc ghc libavcodec-dev libavformat-dev libghc-aeson-dev libghc-entropy-dev libghc-hslogger-dev libghc-mtl-dev libghc-network-dev libghc-parsec3-dev libghc-random-dev libghc-regex-tdfa-dev libghc-sandi-dev libghc-sha-dev libghc-text-dev libghc-utf8-string-dev libghc-vector-dev libghc-yaml-dev libghc-zlib-dev liblua5.1-dev libphysfs-dev libpng-dev libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev qtbase5-dev qtbase5-private-dev qttools5-dev qttools5-dev-tools
   elif [ "$TRAVIS_OS_NAME" == "osx" ]; then
     brew install qt5
     brew install fpc glew physfs lua51 sdl2 sdl2_image sdl2_net sdl2_ttf ffmpeg ghc cabal-install
@@ -84,11 +74,11 @@
     # use cabal install haskell deps, pas2c ones are covered by server
     if [[ "$BUILD_ARGS" != *"NOSERVER"* ]]; then
       cabal update
-      cabal install --only-dependencies gameServer/hedgewars-server.cabal
+      cabal install --only-dependencies --cabal-file=gameServer/hedgewars-server.cabal
     fi
     if [[ "$BUILD_ARGS" == *"BUILD_ENGINE_C"* ]]; then
       cabal update
-      cabal install --only-dependencies tools/pas2c/pas2c.cabal
+      cabal install --only-dependencies --cabal-file=tools/pas2c/pas2c.cabal
     fi
     # avoid installing Sparkle, add default unit path
     export BUILD_ARGS="$BUILD_ARGS -DNOAUTOUPDATE=1"
--- a/CMakeLists.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/CMakeLists.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -1,8 +1,8 @@
+cmake_minimum_required(VERSION 2.6.4)
+
 project(hedgewars)
 
-
 #initialise cmake environment
-cmake_minimum_required(VERSION 2.6.4)
 foreach(hwpolicy CMP0003 CMP0012 CMP0017 CMP0018)
     if(POLICY ${hwpolicy})
         cmake_policy(SET ${hwpolicy} NEW)
@@ -90,9 +90,9 @@
 
 #versioning
 set(CPACK_PACKAGE_VERSION_MAJOR 1)
-set(CPACK_PACKAGE_VERSION_MINOR 0)
-set(CPACK_PACKAGE_VERSION_PATCH 2)
-set(HEDGEWARS_PROTO_VER 59)
+set(CPACK_PACKAGE_VERSION_MINOR 1)
+set(CPACK_PACKAGE_VERSION_PATCH 0)
+set(HEDGEWARS_PROTO_VER 60)
 if((CMAKE_BUILD_TYPE STREQUAL "Release") OR (CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo"))
     set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
 else()
@@ -165,6 +165,10 @@
 endif()
 
 
+if(GHC_DYNAMIC)
+  list(APPEND haskell_flags "-dynamic")
+endif()
+
 #get BUILD_TYPE and enable/disable optimisation
 message(STATUS "Using ${CMAKE_BUILD_TYPE} configuration")
 if(CMAKE_BUILD_TYPE STREQUAL "Debug")
@@ -173,6 +177,7 @@
                               "-fno-warn-unused-do-bind"
                               "-O0"
                               )
+    set(USE_DEBUG_LIBRARIES TRUE)
 else()
     list(APPEND haskell_flags "-w" # no warnings
                               "-O2"
@@ -245,7 +250,15 @@
 if(PHYSFS_LIBRARY AND PHYSFS_INCLUDE_DIR)
     #use an IMPORTED tharget so that we can just use 'physfs' to link
     add_library(physfs UNKNOWN IMPORTED)
-    set_target_properties(physfs PROPERTIES IMPORTED_LOCATION ${PHYSFS_LIBRARY})
+    if (DEFINED PHYSFS_LIBRARY_RELEASE)
+        if (${USE_DEBUG_LIBRARIES})
+            set_target_properties(physfs PROPERTIES IMPORTED_LOCATION ${PHYSFS_LIBRARY_DEBUG})
+        else()    
+            set_target_properties(physfs PROPERTIES IMPORTED_LOCATION ${PHYSFS_LIBRARY_RELEASE})
+        endif()
+    else()
+        set_target_properties(physfs PROPERTIES IMPORTED_LOCATION ${PHYSFS_LIBRARY})
+    endif()
 else()
     message(FATAL_ERROR "Missing PhysFS! Install PhysFS to fix this.")
 endif()
--- a/CREDITS	Sun Mar 24 14:19:02 2024 -0400
+++ b/CREDITS	Sun Mar 24 14:34:27 2024 -0400
@@ -16,24 +16,42 @@
 ==========
 = HATS
 ==========
-- Robinator -> Terminator_Glasses (2010)
+- Tiyuri -> Samurai (2008), WhySoSerious (2008)
+- Palewolf -> spartan (2008), RobinHood (2008), clown* (2008), fr_orange (2008), fr_lemon (2008), fr_apple (2008), fr_banana (2008), pirate_jack (2008), pirate_jack_bandana (2008), kiss_* (2008), ushanka (2008), royalguard (2008), scif_swStormtrooper (2008), IndianChief (2008), beefeater (2008)
+- joshua -> Bandit (2008)
+- DrDickens -> poke_slowpoke (2008), mv_Venom (2008), thug (2009), Eva_00b (2009), Eva_00y (2009)
+- alzen -> poke_pikachu (2008)
+- Zippy -> Jason (2008), ntd_Falcon (2009)
+- Howdy -> scif_Geordi (2009)
+- Zept -> Ninja* (2009)
+- acegikmo -> anzac (2009)
+- Fwirt -> quotecap (2009)
+- PhilPhil -> angel (2009)
+- em3 -> 4gsuif (2009)
+- Armagon -> ntd_Link (2010)
+- Robinator -> Terminator_Glasses (2010), chuckl (2010)
 - shingo666 -> ntd_Samus (2010)
-- MeinCookie95 -> InfernalHorns (2010), Mummy (2010), war_* (2010-2011)
+- MeinCookie95 -> InfernalHorns (2010), Mummy (2010), vampirichog (2010), hogpharaoh (2010), bobby (2010), bobby2v (2011), war_* (2010-2011)
 - thuban -> Elvis (2010)
-- Miphica -> Disguise (2010)
+- Miphica -> Disguise (2010), zoo_Bat (2011)
+- maqui -> zoo_Beaver (2010)
 - Blayde -> zoo_Deer (2010), zoo_Moose (2010)
 - hillis -> AkuAku (2010)
-- Lortinak -> OldMan (2010), ShortHair_* (2010)
-- chujoii -> scif_BrainSlug (2010), scif_BrainSlug2 (2010), Dragon (2010), dish_Ladle (2010), Laminaria (2010), Pantsu (2010), zoo_Pig (2010), Plunger (2010), dish_SauceBoatSilver (2010), ShaggyYeti (2010), Sleepwalker (2010), SunWukong (2010), dish_Teapot (2010), dish_Teacup (2010), Zombi (2010)
-- Randy Broda -> cyclops (2011), TeamSoldier (2011)
+- assassin_killer -> spcartman (2011), spkenny (2011), spkyle (2011), spstan (2011)
+- Lortinak -> OldMan (2010), ShortHair_* (2010), sth_Shadow (2010), sth_Super (2010), sth_Metal (2010)
+- Grunzer -> zoo_Porkey (2010)
+- chujoii -> bubble (2012), car (2012), DayAndNight (2012), dish_Ladle (2010), dish_SauceBoatSilver (2010), dish_Teacup (2010), dish_Teapot (2010), Dauber (2012), Dragon (2010), lamp (2012), Laminaria (2010), Pantsu (2010), Plunger (2010), mechanicaltoy (2012), noface (2012), Sleepwalker (2010), ShaggyYeti (2010), scif_BrainSlug (2010), scif_BrainSlug2 (2010), scif_cosmonaut (2010), ShaggyYeti (2010), Sleepwalker (2010), SunWukong (2012), Zombi (2010), zoo_chicken (2012), zoo_elephant (2012), zoo_fish (2012), zoo_frog (2012), zoo_Pig (2010), zoo_snail (2012), zoo_turtle (2012)
+- Randy Broda -> cyclops (2011), TeamSoldier (2011), Joker (2012), Evil (2012)
 - Zav -> zoo_octopus (2009)
-- Star and Moon -> bishop (2011)
+- Star and Moon -> bishop (2011), metalband (2011), Meteorhelmet (2013), tf_scout (2013), tf_demoman (2013)
+- YoukaiCountry -> touhou_* (2011)
 - Gimo -> leprechaun [based on tophats] (2011)
-- Terrington_Snyde -> pirate_eyepatch (2013), jester (2013)
+- Terrington_Snyde -> pirate_eyepatch (2013), jester (2013), snorkel (2013), nurse (2013), doctor (2013), constructor (2013), punkman (2013)
 - Wohlstand -> policegirl [based on policecap and sm_daisy] (2014)
 - TheMadCharles -> barrelhider (CC BY 3.0) (2015)
-- Trey Perry <perry.j@gmail.com> -> Other hats
-- alfadur -> zoo_crocodile (2019)
+- alfadur -> zoo_crocodile (2019), zoo_panda (2020)
+- Trey Perry <perry.j@gmail.com> -> Some other hats
+
 
 ==========
 = GRAVES
@@ -41,6 +59,7 @@
 - Randy Broda -> dragonball (2012)
 - CheezeMonkey -> pi (2011)
 - rosenholz -> Whisky (2013)
+- alfadur -> Mushroom (2020), Teapot (2020)
 
 =================
 = FRONTEND IMAGES
@@ -83,6 +102,10 @@
      https://www.freesound.org/people/rombart/sounds/197800/
 - Flamethrower sound originally by AslakHostaker (CC-0), adapted from
      https://freesound.org/people/AslakHostaker/sounds/395039/
+- Dynamite fuse: Based off sound by apolloaiello (CC BY 3.0)
+     https://freesound.org/people/apolloaiello/sounds/329045/
+- Dynamite bounce: Based off sound by kev_durr (CC BY 3.0)
+     https://freesound.org/people/kev_durr/sounds/426455/
 - Landspray sound originally by Benboncan (CC BY 3.0), remixed from
      https://freesound.org/people/Benboncan/sounds/82390/
 - Portable Portal Device color switching sound by Wuzzy (CC-0)
--- a/ChangeLog.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/ChangeLog.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -1,5 +1,63 @@
 + features
 * bugfixes
+==================== 1.1.0-dev =====================
+Gameplay:
+ + Minigun push is now much stronger
+ + Easier to push hogs around with blowtorch
+ + Backjumps are now a bit easier
+ + Teach computer players how to ...
+ +   - use drill strike, piano strike, air mine, cleaver, seduction, mudball
+ +   - use resurrector, laser sight, low gravity
+ +   - use mine strike (0 seconds only)
+ +   - use RC plane (very basic)
+ +   - drop mines from a cliff
+ + Low level computer players are more inaccurate with guns
+ + Computer player now takes Strong Wind game modifier into account
+ + Various small computer player improvements
+ + New taunt chat commands: /bubble, /happy
+ + Remove Vamprism and Resurrector ammos when playing in "Invulnerable" game modifier
+ * Fix many projectiles not being affected by Heavy Wind after turn end
+ * Fix hog getting stuck when opening parachute right after a shoryuken digging through land
+ * Fix game hanging if computer hog has nothing to attack
+ * Fix hog sometimes not falling after resurrection
+ * Fix hog not returning from TimeBox when all land was destroyed
+ * Fix hammer not digging when hitting hog with 0 health
+
+Campaigns:
+ + A Space Adventure: Spacetrip: Meteorite appears blown-up after victory
+ * A Classic Fairytale: Mission 1: Fix possibility of getting stuck in “Leap of Faith” section
+ * A Space Adventure: The First Stop: Fix broken victory condition when eliminating minions
+ * A Space Adventure: Killing the Specialists: Don't award player health if enemy hurts itself
+
+Styles:
+ + Racer: Allow to set turn time in game scheme
+ + Racer: Reset mines, air mines and sticky mines every turn
+ * Racer: Resize waypoints in custom-sized drawn maps
+ * Mutant: Fix impossible to become mutant after mutant is gone
+
+Content:
+ + New flags: serbia, montenegro
+ + New graves: Mushroom, Teapot
+ + New hat: zoo_panda
+
+Graphics / user interface:
+ + Add dynamite fuse and impact sounds
+ + Themes: Add fade-in and fade-out effects for background flakes
+ + Themes: Make Sudden Death jellyfish in Underwater theme rise
+ + In-Game chat size can now be adjusted. Hold Ctrl and press -, + or = while in chat input. Hold Shift for finer control
+ + The intial in-game chat size can be configured in the Frontend's “Video” settings tab
+ + Various small HUD tweaks
+
+Frontend:
+ + Sort ammos in weapon scheme editor
+ * Fix weapon schemes sometimes not being saved properly
+ * Fix world edge not being changable under macOS
+
+Lua:
+ + Add RopeKnocking library
+ + vgtSmallDamageTag: Can change dX, dY; add screen coordinates (Frame~=0)
+ * Fix crash when spawning a vgtSmallDamageTag
+
 ====================== 1.0.0 =======================
 Highlights:
  + Campaigns now respect your team identity instead of overwriting it
--- a/INSTALL.md	Sun Mar 24 14:19:02 2024 -0400
+++ b/INSTALL.md	Sun Mar 24 14:34:27 2024 -0400
@@ -81,6 +81,11 @@
     - `regex-tdfa`
     - `binary` >= 0.8.5.1
 
+If you use the `Cabal` based build process:
+    - `zlib` is not needed.
+    - `network` >= 3.0
+    - `network-bsd` >= 2.8.1
+
 Building
 --------
 
@@ -118,6 +123,7 @@
 - `CMAKE_INSTALL_PREFIX`: Installation directory
 - `NOSERVER`: Set to `ON` to *not* build the server
 - `NOVIDEOREC`: Set to `ON` to *not* build the video recorder
+- `GHC_DYNAMIC`: Set to `ON` to build dynamically-linked haskell object files and executables (needed for some distributions)
 
 ### Step 2: Make
 
@@ -139,6 +145,16 @@
 
 That's all! Enjoy!
 
+### Building the Hedgewars Server only
+
+The Hedgewars Server can also be built separately using `Cabal`. All necessary
+files, including the `hedgewars-server.cabal`, are in the `gameServer`
+subdirectory.
+For most users, the server isn't needed, and this possibility is targeted
+primarily at packagers. If you don't know how to build Haskell projects with
+`Cabal`, this option is likely not for you. Instead use the `cmake` based
+instructions above.
+
 Troubleshooting
 ---------------
 
--- a/QTfrontend/CMakeLists.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/CMakeLists.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -14,7 +14,11 @@
 include(CheckLibraryExists)
 
 find_package(SDL2 REQUIRED CONFIG)
-find_package(SDL2_mixer 2 REQUIRED) #audio in SDLInteraction
+if(WIN32 AND VCPKG_TOOLCHAIN)
+	find_package(SDL2_mixer REQUIRED CONFIG) #audio in SDLInteraction
+else()
+	find_package(SDL2_mixer 2 REQUIRED) #audio in SDLInteraction
+endif()
 include_directories(${SDL2_INCLUDE_DIRS})
 include_directories(${SDL2_MIXER_INCLUDE_DIRS})
 
@@ -229,16 +233,13 @@
     Qt5::Core Qt5::Widgets Qt5::Gui Qt5::Network
     )
 
-list(APPEND HW_LINK_LIBS
-    ${SDL2_LIBRARIES}
-    ${SDL2_MIXER_LIBRARIES}
-    )
+if(WIN32 AND VCPKG_TOOLCHAIN)
+    list(APPEND HW_LINK_LIBS SDL2::SDL2 SDL2_mixer::SDL2_mixer)
+else()  
+    list(APPEND HW_LINK_LIBS ${SDL2_LIBRARIES} ${SDL2_MIXER_LIBRARY})
+endif() 
 
 if(WIN32 AND NOT UNIX)
-    if(NOT SDL2_LIBRARIES)
-        list(APPEND HW_LINK_LIBS SDL2)
-    endif()
-
     list(APPEND HW_LINK_LIBS
         ole32
         oleaut32
--- a/QTfrontend/binds.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/binds.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -84,7 +84,7 @@
     {"!MULTI",    QT_TRANSLATE_NOOP("binds (combination)", "precise + toggle hedgehog tags"), QT_TRANSLATE_NOOP("binds", "change hedgehog tag types"), NULL, NULL},
     {"!MULTI",    QT_TRANSLATE_NOOP("binds (combination)", "switch + toggle hedgehog tags"), QT_TRANSLATE_NOOP("binds", "toggle hedgehog tag translucency"), NULL, NULL},
 
-    {"!MULTI",    QT_TRANSLATE_NOOP("binds (combination)", "precise + switch + toggle hedgehog tags"), QT_TRANSLATE_NOOP("binds", "toggle HUD"), NULL, NULL},
+    {"!MULTI",    QT_TRANSLATE_NOOP("binds (combination)", "precise + switch + toggle team bars"), QT_TRANSLATE_NOOP("binds", "toggle HUD"), NULL, NULL},
 #ifdef VIDEOREC
     {"record",    "r",          QT_TRANSLATE_NOOP("binds", "record"),          NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Record video:")}
 #endif
--- a/QTfrontend/campaign.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/campaign.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -57,25 +57,29 @@
     QSettings* teamfile = getCampTeamFile(campaignName, teamName);
     int progress = teamfile->value("Campaign " + campaignName + "/Progress", 0).toInt();
     int unlockedMissions = teamfile->value("Campaign " + campaignName + "/UnlockedMissions", 0).toInt();
-    // The CowardMode cheat unlocks all campaign missions,
-    // but as "punishment", none of them will be marked as completed.
+    QSettings campfile("physfs://Missions/Campaign/" + campaignName + "/campaign.ini", QSettings::IniFormat, 0);
+    campfile.setIniCodec("UTF-8");
+    int totalMissions = campfile.value("MissionNum", 1).toInt();
+    // The CowardMode cheat unlocks all campaign missions.
     // Added to make it easier to test campaigns.
     bool cheat = teamfile->value("Team/CowardMode", false).toBool();
-    if(cheat)
+    if(progress>0 && unlockedMissions==0)
     {
-        return false;
-    }
-    else if(progress>0 && unlockedMissions==0)
-    {
-        QSettings campfile("physfs://Missions/Campaign/" + campaignName + "/campaign.ini", QSettings::IniFormat, 0);
-        campfile.setIniCodec("UTF-8");
-        int totalMissions = campfile.value("MissionNum", 1).toInt();
-        return (progress > (progress - missionInList)) || (progress >= totalMissions);
+        int maxMission;
+        if(cheat)
+            maxMission = totalMissions - (missionInList + 1);
+        else
+            maxMission = progress - missionInList;
+        return (progress > maxMission) || (progress >= totalMissions);
     }
     else if(unlockedMissions>0)
     {
         int fileMissionId = missionInList + 1;
-        int actualMissionId = teamfile->value(QString("Campaign %1/Mission%2").arg(campaignName, QString::number(fileMissionId)), false).toInt();
+        int actualMissionId;
+        if(cheat)
+            actualMissionId = totalMissions - missionInList;
+        else
+            actualMissionId = teamfile->value(QString("Campaign %1/Mission%2").arg(campaignName, QString::number(fileMissionId)), false).toInt();
         return teamfile->value(QString("Campaign %1/Mission%2Won").arg(campaignName, QString::number(actualMissionId)), false).toBool();
     }
     else
@@ -87,8 +91,7 @@
 {
     QSettings* teamfile = getCampTeamFile(campaignName, teamName);
     bool won = teamfile->value("Campaign " + campaignName + "/Won", false).toBool();
-    bool cheat = teamfile->value("Team/CowardMode", false).toBool();
-    return won && !cheat;
+    return won;
 }
 
 QSettings* getCampMetaInfo()
--- a/QTfrontend/game.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/game.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -600,10 +600,31 @@
     arguments << "--internal"; //Must be passed as first argument
     arguments << "--port";
     arguments << QString("%1").arg(ipc_port);
+#ifdef _WIN32
+    {
+        QString path = datadir->absolutePath();
+        if (path == QLatin1String(path.toLatin1())) {
+            arguments << "--prefix";
+            arguments << path;
+        } else {
+            arguments << "--prefix64";
+            arguments << path.toUtf8().toBase64();
+        }    
+        path = cfgdir->absolutePath();
+        if (path == QLatin1String(path.toLatin1())) {
+            arguments << "--user-prefix";
+            arguments << path;
+        } else {
+            arguments << "--user-prefix64";
+            arguments << path.toUtf8().toBase64();
+        }
+    }         
+#else 
     arguments << "--prefix";
     arguments << datadir->absolutePath();
     arguments << "--user-prefix";
-    arguments << cfgdir->absolutePath();
+    arguments << cfgdir->absolutePath();    
+#endif
     arguments << "--locale";
     // TODO: Don't bother translators with this nonsense and detect this file automatically.
     //: IMPORTANT: This text has a special meaning, do not translate it directly. This is the file name of translation files for the game engine, found in Data/Locale/. Usually, you replace “en” with the ISO-639-1 language code of your language.
@@ -657,6 +678,8 @@
         arguments << "--translucent-tags";
     if (!config->isHolidaySillinessEnabled())
         arguments << "--no-holiday-silliness";
+    arguments << "--chat-size";
+    arguments << QString::number(config->chatSize());
 
     return arguments;
 }
--- a/QTfrontend/gameuiconfig.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/gameuiconfig.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -178,6 +178,8 @@
             if (m_binds[i].strbind.isEmpty() || m_binds[i].strbind == "default") m_binds[i].strbind = cbinds[i].strbind;
         }
     }
+
+    Form->ui.pageOptions->sbChatSize->setValue(value("chat/size", 100).toInt());
 }
 
 void GameUIConfig::reloadVideosValues(void)
@@ -332,6 +334,8 @@
             setValue(QString("colors/color%1").arg(i), model->item(i)->data().value<QColor>().name());
     }
 
+    setValue("chat/size", Form->ui.pageOptions->sbChatSize->value());
+
     sync();
 }
 
@@ -647,6 +651,11 @@
     }
 }
 
+int GameUIConfig::chatSize()
+{
+    return Form->ui.pageOptions->sbChatSize->value();
+}
+
 quint8 GameUIConfig::volume()
 {
     return Form->ui.pageOptions->SLVolume->value() * 128 / 100;
--- a/QTfrontend/gameuiconfig.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/gameuiconfig.h	Sun Mar 24 14:34:27 2024 -0400
@@ -53,6 +53,7 @@
         bool isShowFPSEnabled();
         bool isAltDamageEnabled();
         bool appendDateTimeToRecordName();
+        int chatSize();
         quint8 volume();
         quint8 timerInterval();
         QString netNick();
Binary file QTfrontend/hedgewars.ico has changed
--- a/QTfrontend/hedgewars.qrc	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/hedgewars.qrc	Sun Mar 24 14:34:27 2024 -0400
@@ -1,6 +1,7 @@
 <RCC>
     <qresource prefix="/">
         <file alias="Ammos.png">../share/hedgewars/Data/Graphics/AmmoMenu/Ammos_base.png</file>
+        <file alias="Ammos_ExtraDamage_comma.png">../share/hedgewars/Data/Graphics/AmmoMenu/Ammos_ExtraDamage_comma.png</file>
         <file alias="keys.csv">../share/hedgewars/Data/misc/keys.csv</file>
         <file>res/css/qt.css</file>
         <file>res/css/chat.css</file>
@@ -159,6 +160,7 @@
         <file>res/iconDud.png</file>
         <file>res/iconExplosive.png</file>
         <file>res/iconAirMine.png</file>
+        <file>res/iconSentry.png</file>
         <file>res/iconRope.png</file>
         <file>res/iconEarth.png</file>
         <file>res/iconScript.png</file>
--- a/QTfrontend/hwconsts.cpp.in	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/hwconsts.cpp.in	Sun Mar 24 14:34:27 2024 -0400
@@ -54,6 +54,8 @@
 QString * cEmptyAmmoStore =   new QString( AMMOLINE_EMPTY_QT AMMOLINE_EMPTY_PROB
                                            AMMOLINE_EMPTY_DELAY AMMOLINE_EMPTY_CRATE );
 int cAmmoNumber = cDefaultAmmoStore->size() / 4;
+unsigned int ammoMenuAmmos[] = HW_AMMOMENU_ARRAY;
+int cAmmoMenuRows = 6;
 
 QList< QPair<QString, QString> > cDefaultAmmos =
         QList< QPair<QString, QString> >()
--- a/QTfrontend/hwconsts.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/hwconsts.h	Sun Mar 24 14:34:27 2024 -0400
@@ -51,6 +51,8 @@
 extern QStringList cQuickGameMaps;
 
 extern unsigned int colors[];
+extern unsigned int ammoMenuAmmos[];
+extern int cAmmoMenuRows;
 
 extern QString * netHost;
 extern quint16 netPort;
@@ -119,3 +121,20 @@
                               0xffffff01, /* yellow */ \
                               /* add new colors here */ \
                               0 }
+
+/* The ammo types, sorted in the same way as in the ammo menu */
+#define HW_AMMOMENU_ARRAY {\
+  3,  4, 22, 29, 51, 55,\
+  1,  2, 26, 27, 40, 44,\
+  5, 10, 38, 45, 54, 59,\
+ 12, 13, 14, 23, 25, 48,\
+  9, 11, 24, 30, 31, 47,\
+ 16, 17, 28, 43, 50, 57,\
+  6, 18, 19, 46, 53, 56,\
+  8, 15, 20, 39, 41, 42,\
+ 34, 36, 37, 49, 52, 58,\
+  7, 21, 32, 33, 35, 60\
+}
+
+/* Ammo ID for extra damage */
+#define HW_AMMOTYPE_EXTRADAMAGE 32
--- a/QTfrontend/hwform.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/hwform.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -1250,7 +1250,7 @@
     noRegMsg.setIcon(QMessageBox::Information);
     noRegMsg.setWindowTitle(QMessageBox::tr("Hedgewars - Nick not registered"));
     noRegMsg.setWindowModality(Qt::WindowModal);
-    noRegMsg.setText(tr("Your nickname is not registered.\nTo prevent someone else from using it,\nplease register it at www.hedgewars.org"));
+    noRegMsg.setText(tr("Your nickname is not registered.\nTo be able to rejoin games in progress and\nprevent someone else from using your nickname,\nplease register it at www.hedgewars.org."));
 
     if (!config->passwordHash().isEmpty())
     {
@@ -1295,7 +1295,7 @@
 
 void HWForm::NetAuthFailed()
 {
-    // Set the password blank if case the user tries to join and enter his password again
+    // Set the password blank if case the user tries to join and enter their password again
     config->clearTempHash();
 
     //Try to login again
--- a/QTfrontend/model/gameSchemeModel.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/model/gameSchemeModel.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -63,14 +63,15 @@
                                 << QVariant(0)             // mine dud pct   33
                                 << QVariant(2)             // explosives     34
                                 << QVariant(0)             // air mines      35
-                                << QVariant(35)            // health case pct 36
-                                << QVariant(25)            // health case amt 37
-                                << QVariant(47)            // water rise amt 38
-                                << QVariant(5)             // health dec amt 39
-                                << QVariant(100)           // rope modfier   40
-                                << QVariant(100)           // get away time  41
-                                << QVariant(0)             // world edge     42
-                                << QVariant()              // scriptparam    43
+                                << QVariant(0)             // sentries       36
+                                << QVariant(35)            // health case pct 37
+                                << QVariant(25)            // health case amt 38
+                                << QVariant(47)            // water rise amt 39
+                                << QVariant(5)             // health dec amt 40
+                                << QVariant(100)           // rope modfier   41
+                                << QVariant(100)           // get away time  42
+                                << QVariant(0)             // world edge     43
+                                << QVariant()              // scriptparam    44
                                 ;
 
 GameSchemeModel::GameSchemeModel(QObject* parent, const QString & directory) :
@@ -134,14 +135,15 @@
               << "minedudpct"          // 33
               << "explosives"          // 34
               << "airmines"            // 35
-              << "healthprobability"   // 36
-              << "healthcaseamount"    // 37
-              << "waterrise"           // 38
-              << "healthdecrease"      // 39
-              << "ropepct"             // 40
-              << "getawaytime"         // 41
-              << "worldedge"           // 42
-              << "scriptparam"         // scriptparam    43
+              << "sentries"            // 36
+              << "healthprobability"   // 37
+              << "healthcaseamount"    // 38
+              << "waterrise"           // 39
+              << "healthdecrease"      // 40
+              << "ropepct"             // 41
+              << "getawaytime"         // 42
+              << "worldedge"           // 43
+              << "scriptparam"         // scriptparam    44
               ;
 
     QList<QVariant> proMode;
@@ -182,14 +184,15 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(2)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(35)            // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(47)            // water rise amt 38
-            << QVariant(5)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36
+            << QVariant(35)            // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(47)            // water rise amt 39
+            << QVariant(5)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
     QList<QVariant> shoppa;
@@ -230,14 +233,15 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(0)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(0)             // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(0)             // water rise amt 38
-            << QVariant(0)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36
+            << QVariant(0)             // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(0)             // water rise amt 39
+            << QVariant(0)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
     QList<QVariant> cleanslate;
@@ -278,14 +282,15 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(2)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(35)            // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(47)            // water rise amt 38
-            << QVariant(5)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36
+            << QVariant(35)            // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(47)            // water rise amt 39
+            << QVariant(5)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
     QList<QVariant> minefield;
@@ -326,14 +331,15 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(0)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(35)            // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(47)            // water rise amt 38
-            << QVariant(5)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36
+            << QVariant(35)            // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(47)            // water rise amt 39
+            << QVariant(5)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
     QList<QVariant> barrelmayhem;
@@ -374,14 +380,15 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(200)           // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(35)            // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(47)            // water rise amt 38
-            << QVariant(5)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36
+            << QVariant(35)            // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(47)            // water rise amt 39
+            << QVariant(5)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
     QList<QVariant> tunnelhogs;
@@ -422,14 +429,15 @@
             << QVariant(10)            // mine dud pct   33
             << QVariant(10)            // explosives     34
             << QVariant(4)             // air mines      35
-            << QVariant(35)            // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(47)            // water rise amt 38
-            << QVariant(5)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36
+            << QVariant(35)            // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(47)            // water rise amt 39
+            << QVariant(5)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
     QList<QVariant> timeless;
@@ -470,14 +478,15 @@
             << QVariant(10)            // mine dud pct   33
             << QVariant(2)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(35)            // health case pct 36
-            << QVariant(30)            // health case amt 37
-            << QVariant(0)             // water rise amt 38
-            << QVariant(0)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36
+            << QVariant(35)            // health case pct 37
+            << QVariant(30)            // health case amt 38
+            << QVariant(0)             // water rise amt 39
+            << QVariant(0)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
     QList<QVariant> thinkingportals;
@@ -518,14 +527,15 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(5)             // explosives     34
             << QVariant(4)             // air mines      35
-            << QVariant(25)            // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(47)            // water rise amt 38
-            << QVariant(5)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36
+            << QVariant(25)            // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(47)            // water rise amt 39
+            << QVariant(5)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
     QList<QVariant> kingmode;
@@ -566,14 +576,15 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(2)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(35)            // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(47)            // water rise amt 38
-            << QVariant(5)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36
+            << QVariant(35)            // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(47)            // water rise amt 39
+            << QVariant(5)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
     QList<QVariant> mutant;
@@ -614,14 +625,15 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(2)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(0)             // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(0)             // water rise amt 38
-            << QVariant(0)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36
+            << QVariant(0)             // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(0)             // water rise amt 39
+            << QVariant(0)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
     QList<QVariant> construction;
@@ -662,15 +674,16 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(0)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(35)            // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(47)            // water rise amt 38
-            << QVariant(5)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
+            << QVariant(0)             // sentries       36
+            << QVariant(35)            // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(47)            // water rise amt 39
+            << QVariant(5)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
             // NOTE: If you change this, also change the defaults in the Construction Mode script
-            << QVariant("initialenergy=550, energyperround=50, maxenergy=1000, cratesperround=5") // scriptparam    43
+            << QVariant("initialenergy=550, energyperround=50, maxenergy=1000, cratesperround=5") // scriptparam    44
             ;
 
     QList<QVariant> specialists;
@@ -711,15 +724,16 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(0)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(100)           // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(47)            // water rise amt 38
-            << QVariant(5)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
+            << QVariant(0)             // sentries       36
+            << QVariant(100)           // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(47)            // water rise amt 39
+            << QVariant(5)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
             // NOTE: If you change this, also change the defaults in the The Specialists script
-            << QVariant("t=SENDXHPL")  // scriptparam    43
+            << QVariant("t=SENDXHPL")  // scriptparam    44
             ;
 
     QList<QVariant> spaceinvasion;
@@ -760,15 +774,16 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(0)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(0)             // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(0)             // water rise amt 38
-            << QVariant(0)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
+            << QVariant(0)             // sentries       36
+            << QVariant(0)             // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(0)             // water rise amt 39
+            << QVariant(0)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
             // NOTE: If you change this, also change the defaults in the Space Invasion script
-            << QVariant("rounds=3, shield=30, barrels=5, pings=2, barrelbonus=3, shieldbonus=30, timebonus=4") // scriptparam    43
+            << QVariant("rounds=3, shield=30, barrels=5, pings=2, barrelbonus=3, shieldbonus=30, timebonus=4") // scriptparam    44
             ;
 
     QList<QVariant> hedgeeditor;
@@ -809,14 +824,15 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(0)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(35)            // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(0)            // water rise amt 38
-            << QVariant(0)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36
+            << QVariant(35)            // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(0)            // water rise amt 39
+            << QVariant(0)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
     QList<QVariant> racer;
@@ -857,14 +873,15 @@
             << QVariant(0)             // mine dud pct   33
             << QVariant(0)             // explosives     34
             << QVariant(0)             // air mines      35
-            << QVariant(0)             // health case pct 36
-            << QVariant(25)            // health case amt 37
-            << QVariant(0)             // water rise amt 38
-            << QVariant(0)             // health dec amt 39
-            << QVariant(100)           // rope modfier   40
-            << QVariant(100)           // get away time  41
-            << QVariant(0)             // world edge     42
-            << QVariant()              // scriptparam    43
+            << QVariant(0)             // sentries       36            
+            << QVariant(0)             // health case pct 37
+            << QVariant(25)            // health case amt 38
+            << QVariant(0)             // water rise amt 39
+            << QVariant(0)             // health dec amt 40
+            << QVariant(100)           // rope modfier   41
+            << QVariant(100)           // get away time  42
+            << QVariant(0)             // world edge     43
+            << QVariant()              // scriptparam    44
             ;
 
 
--- a/QTfrontend/model/roomslistmodel.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/model/roomslistmodel.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -27,10 +27,11 @@
 
 #include "roomslistmodel.h"
 #include "MapModel.h"
+#include "hwconsts.h"
 
 RoomsListModel::RoomsListModel(QObject *parent) :
     QAbstractTableModel(parent),
-    c_nColumns(9)
+    c_nColumns(10)
 {
     m_headerData = QStringList();
     m_headerData << tr("In progress");
@@ -44,6 +45,7 @@
     m_headerData << tr("Script");
     m_headerData << tr("Rules");
     m_headerData << tr("Weapons");
+    m_headerData << tr("Version");
 
     m_staticMapModel = DataManager::instance().staticMapModel();
     m_missionMapModel = DataManager::instance().missionMapModel();
@@ -77,6 +79,59 @@
 }
 
 
+QString RoomsListModel::protoToVersion(const QString & proto)
+{
+    bool ok;
+    uint protoNum = proto.toUInt(&ok);
+    if (!ok)
+        return "Unknown";
+    switch (protoNum) {
+    case 17: return "0.9.7-dev";
+    case 19: return "0.9.7";
+    case 20: return "0.9.8-dev";
+    case 21: return "0.9.8";
+    case 22: return "0.9.9-dev";
+    case 23: return "0.9.9";
+    case 24: return "0.9.10-dev";
+    case 25: return "0.9.10";
+    case 26: return "0.9.11-dev";
+    case 27: return "0.9.11";
+    case 28: return "0.9.12-dev";
+    case 29: return "0.9.12";
+    case 30: return "0.9.13-dev";
+    case 31: return "0.9.13";
+    case 32: return "0.9.14-dev";
+    case 33: return "0.9.14";
+    case 34: return "0.9.15-dev";
+    case 35: return "0.9.14.1";
+    case 37: return "0.9.15";
+    case 38: return "0.9.16-dev";
+    case 39: return "0.9.16";
+    case 40: return "0.9.17-dev";
+    case 41: return "0.9.17";
+    case 42: return "0.9.18-dev";
+    case 43: return "0.9.18";
+    case 44: return "0.9.19-dev";
+    case 45: return "0.9.19";
+    case 46: return "0.9.20-dev";
+    case 47: return "0.9.20";
+    case 48: return "0.9.21-dev";
+    case 49: return "0.9.21";
+    case 50: return "0.9.22-dev";
+    case 51: return "0.9.22";
+    case 52: return "0.9.23-dev";
+    case 53: return "0.9.23";
+    case 54: return "0.9.24-dev";
+    case 55: return "0.9.24";
+    case 56: return "0.9.25-dev";
+    case 57: return "0.9.25";
+    case 58: return "1.0.0-dev";
+    case 59: return "1.0.0";
+    case 60: return "1.1.0-dev";
+    default: return "Unknown";
+    }
+}
+
 QVariant RoomsListModel::data(const QModelIndex &index, int role) const
 {
     int column = index.column();
@@ -101,9 +156,10 @@
             || ((column != PlayerCountColumn) && (column != TeamCountColumn)))
                 // only decorate name column
                 if ((role != Qt::DecorationRole) || (column != NameColumn))
-                    // only dye map column
-                    if ((role != Qt::ForegroundRole) || (column != MapColumn))
-                        return QVariant();
+                    if ((role != Qt::ForegroundRole))
+                        // UserRole is used for version column filtering
+                        if ((role != Qt::UserRole))
+                            return QVariant();
 
     // decorate room name based on room state
     if (role == Qt::DecorationRole)
@@ -159,6 +215,10 @@
                 !m_missionMapModel->mapExists(content))
                 return QString ("? %1").arg(content);
         }
+        else if (column == VersionColumn)
+        {
+            return protoToVersion(content);
+        }
 
         return content;
     }
@@ -166,16 +226,23 @@
     // dye map names red if map not available
     if (role == Qt::ForegroundRole)
     {
-        if (content == "+rnd+" ||
-            content == "+maze+" ||
-            content == "+perlin+" ||
-            content == "+drawn+" ||
-            content == "+forts+" ||
-            m_staticMapModel->mapExists(content) ||
-            m_missionMapModel->mapExists(content))
-            return QVariant();
-        else
-            return QBrush(QColor("darkred"));
+        if (m_data[row][VersionColumn] != *cProtoVer)
+            return QBrush(QColor("darkgrey"));
+
+        if (column == MapColumn)
+        {
+            if (content == "+rnd+" ||
+                content == "+maze+" ||
+                content == "+perlin+" ||
+                content == "+drawn+" ||
+                content == "+forts+" ||
+                m_staticMapModel->mapExists(content) ||
+                m_missionMapModel->mapExists(content))
+                return QVariant();
+            else
+                return QBrush(QColor("darkred"));
+        }
+        return QVariant();
     }
 
     if (role == Qt::TextAlignmentRole)
@@ -183,6 +250,9 @@
         return (int)(Qt::AlignHCenter | Qt::AlignVCenter);
     }
 
+    if (role == Qt::UserRole && column == VersionColumn)
+        return content;
+
     Q_ASSERT(false);
     return QVariant();
 }
--- a/QTfrontend/model/roomslistmodel.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/model/roomslistmodel.h	Sun Mar 24 14:34:27 2024 -0400
@@ -42,8 +42,10 @@
         TeamCountColumn,
         OwnerColumn,
         MapColumn,
+        ScriptColumn,
         SchemeColumn,
-        WeaponsColumn
+        WeaponsColumn,
+        VersionColumn,
     };
 
     explicit RoomsListModel(QObject *parent = 0);
@@ -51,6 +53,7 @@
     QVariant headerData(int section, Qt::Orientation orientation, int role) const;
     int rowCount(const QModelIndex & parent) const;
     int columnCount(const QModelIndex & parent) const;
+    int columnCountSupported() const { return c_nColumns; };
     QVariant data(const QModelIndex &index, int role) const;
 
 public slots:
@@ -66,6 +69,7 @@
     QStringList m_headerData;
     MapModel * m_staticMapModel;
     MapModel * m_missionMapModel;
+    static QString protoToVersion(const QString & proto);
 };
 
 #endif // HEDGEWARS_ROOMSLISTMODEL_H
--- a/QTfrontend/net/newnetclient.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/net/newnetclient.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -394,7 +394,7 @@
 
     if (lst[0] == "ROOMS")
     {
-        if(lst.size() % 9 != 1)
+        if(lst.size() % m_roomsListModel->columnCountSupported() != 1)
         {
             qWarning("Net: Malformed ROOMS message");
             return;
@@ -644,7 +644,7 @@
         return;
     }
 
-    if(lst[0] == "ROOM" && lst.size() == 11 && lst[1] == "ADD")
+    if(lst[0] == "ROOM" && lst.size() == m_roomsListModel->columnCountSupported() + 2 && lst[1] == "ADD")
     {
         QStringList tmp = lst;
         tmp.removeFirst();
@@ -654,7 +654,7 @@
         return;
     }
 
-    if(lst[0] == "ROOM" && lst.size() == 12 && lst[1] == "UPD")
+    if(lst[0] == "ROOM" && lst.size() == m_roomsListModel->columnCountSupported() + 3 && lst[1] == "UPD")
     {
         QStringList tmp = lst;
         tmp.removeFirst();
--- a/QTfrontend/net/recorder.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/net/recorder.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -156,6 +156,8 @@
         arguments << config->audioCodec();
     else
         arguments << "no";
+    arguments << "--chat-size";
+    arguments << QString::number(config->chatSize());
 
     return arguments;
 }
--- a/QTfrontend/res/credits.csv	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/res/credits.csv	Sun Mar 24 14:34:27 2024 -0400
@@ -6,7 +6,7 @@
 E,"Many engine improvements","Derek Pomery","nemo@m8y.org","nemo"
 E,"Many engine improvements","Carlos Vives","mail@carlosvives.es",
 E,"Many engine improvements","Richard Karolyi","sheepluva@ercatec.net","sheepluva"
-E,,,"Wuzzy2@mail.ru","Wuzzy"
+E,,,"Wuzzy@disroot.org","Wuzzy"
 E,,"Henrik Rostedt","henrik.rostedt@gmail.com",
 E,"Gamepad and Lua integration","Mario Liebisch","mario.liebisch@gmail.com",
 E,"Campaign support","Szabolcs Orbàn","szabibibi@gmail.com",
@@ -32,7 +32,7 @@
 E,"Many frontend improvements","Igor Ulyanov","disinbox@gmail.com",
 E,"Keybinds, feedback, maps and hats interfaces","Drew Gottlieb","gottlieb.drew@gmail.com",
 E,"Login dialogs, other improvements","Ondrej Skopek","skopekondrej@gmail.com",
-E,,,"Wuzzy2@mail.ru","Wuzzy"
+E,,,"Wuzzy@disroot.org","Wuzzy"
 E,,"Martin Minarik","ttsmj@pokec.sk",
 E,,"Kristian Lehmann","email@thexception.net",
 E,,"Henrik Rostedt","henrik.rostedt@gmail.com",
@@ -42,7 +42,7 @@
 E,"A Classic Fairytale","Szabolcs Orbàn","szabibibi@gmail.com",
 E,"A Space Adventure",,,"Master_ex"
 E,"Created Capture the Flag, Construction Mode, Control, HedgeEditor, Highlander, Racer, TechRacer, The Specialists, WxW",,,"mikade"
-E,"Training, time-trial and target practice challenges, Bazooka Battlefield, Tentacle Terror, Big Armory, bugfixes and maintenance",,"Wuzzy2@mail.ru","Wuzzy"
+E,"Training, time-trial and target practice challenges, Bazooka Battlefield, Tentacle Terror, Big Armory, bugfixes and maintenance",,"Wuzzy@disroot.org","Wuzzy"
 E,"Some styles and missions","John Lambert","redgrinner@gmail.com","redgrinner"
 E,"Battalion",,"Anachron14@gmx.de","Anachron"
 E,"Continental supplies",,,"Vatten"
@@ -75,7 +75,7 @@
 E,"Nature, Snow, City, Castle, Halloween, Island","John Dum","fizzy@gmail.com",
 E,"Bamboo, EarthRise, BambooPlinko","Joshua Frese","joshfrese@gmail.com",
 E,"Golf, Hoggywood, Stage",,,"RoFra"
-E,"Hoggywood",,"Wuzzy2@mail.ru","Wuzzy"
+E,"Hoggywood",,"Wuzzy@disroot.org","Wuzzy"
 E,"Cave, Olympics","Guillaume Englert","genglert@hybird.org",
 E,"Fruit, Cake","Randy Broda",,"Randy"
 E,"Art",,,"Zippy"
@@ -107,10 +107,10 @@
 E,"EvilChicken",,,"Dragonfly"
 E,"Lonely_Island","Maciej Mrozinski","mynick2@o2.pl","alzen"
 E,"Olympic","Guillaume Englert","genglert@hybird.org",
-E,"Olympic",,"Wuzzy2@mail.ru","Wuzzy"
+E,"Olympic",,"Wuzzy@disroot.org","Wuzzy"
 E,"Tank","Carlos Vives","mail@carlosvives.es",
 E,"Snail","John Dum","fizzy@gmail.com",
-E,"Snail",,"Wuzzy2@mail.ru","Wuzzy"
+E,"Snail",,"Wuzzy@disroot.org","Wuzzy"
 E,"SteelTower","Randy Broda",,"Randy"
 M,,,,
 U,"Hats, graves, other",,,
@@ -121,7 +121,7 @@
 E,,"John Dum","fizzy@gmail.com",
 E,,"Jonatan Nilsson","jonatanfan@gmail.com",
 E,,"Daniel Martin","elhombresinremedio@gmail.com","HSR"
-E,"Various authors from www.freesound.org (see CREDITS text file)",,
+E,"Various authors from www.freesound.org (see CREDITS text file)",,,
 S,"Music",,,
 E,"City, Rock, others","Daniel Martin","elhombresinremedio@gmail.com","HSR"
 E,"Compost",,,"HG"
@@ -137,6 +137,7 @@
 E,"Czech","Petr Řezáček","rezacek@gmail.com",
 E,"Chinese","Jie Luo","lililjlj@gmail.com",
 E,"Chinese",,"yuenfu.chiu@gmail.com","yuenfu"
+E,"Chinese",,,"heretic43"
 E,"Finnish","Nina Kuisma","ninnnu@gmail.com",
 E,"Finnish","Janne Uusitupa",,
 E,"French","Antoine Turmel","geekshadow@gmail.com",
@@ -146,7 +147,7 @@
 E,"German","Peter Hüwe","PeterHuewe@gmx.de",
 E,"German","Mario Liebisch","mario.liebisch@gmail.com",
 E,"German","Richard Karolyi","sheepluva@ercatec.net","sheepluva"
-E,"German",,"Wuzzy2@mail.ru","Wuzzy"
+E,"German",,"Wuzzy@disroot.org","Wuzzy"
 E,"Greek",,"talos_kriti@yahoo.gr",
 E,"Hungarian",,,"z8w38"
 E,"Italian","Luca Bonora","bonora.luca@gmail.com",
@@ -171,6 +172,7 @@
 E,"Scottish Gaelic",,,"GunChleoc"
 E,"Slovak","Jose Riha",,
 E,"Spanish","Carlos Vives","mail@carlosvives.es",
+E,"Spanish",,,"salvadorc17"
 E,"Swedish","Niklas Grahn","raewolusjoon@yaoo.com",
 E,"Swedish","Henrik Rostedt","henrik.rostedt@gmail.com",
 E,"Ukrainian","Eugene V. Lyubimkin","jackyf.devel@gmail.com",
--- a/QTfrontend/res/css/april1.css	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/res/css/april1.css	Sun Mar 24 14:34:27 2024 -0400
@@ -406,6 +406,12 @@
 height: 6px;
 border-radius: 3px;
 }
+QSlider::handle::horizontal:hover {
+background-color: yellow;
+}
+QSlider::handle::horizontal:pressed {
+background-color: white;
+}
 QSlider::handle::horizontal:disabled {
 background-color: #a0a0a0;
 }
--- a/QTfrontend/res/css/birthday.css	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/res/css/birthday.css	Sun Mar 24 14:34:27 2024 -0400
@@ -410,6 +410,12 @@
 height: 6px;
 border-radius: 3px;
 }
+QSlider::handle::horizontal:hover {
+background-color: yellow;
+}
+QSlider::handle::horizontal:pressed {
+background-color: white;
+}
 QSlider::handle::horizontal:disabled {
 background-color: #a0a0a0;
 }
--- a/QTfrontend/res/css/christmas.css	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/res/css/christmas.css	Sun Mar 24 14:34:27 2024 -0400
@@ -393,6 +393,12 @@
 margin: 2px 0px;
 background-color: #ffcc00;
 }
+QSlider::handle::horizontal:hover {
+background-color: yellow;
+}
+QSlider::handle::horizontal:pressed {
+background-color: white;
+}
 QSlider::groove::horizontal:disabled {
 background-color: #a0a0a0;
 }
--- a/QTfrontend/res/css/easter.css	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/res/css/easter.css	Sun Mar 24 14:34:27 2024 -0400
@@ -390,6 +390,12 @@
 margin: 2px 0px;
 background-color: #ffcc00;
 }
+QSlider::handle::horizontal:hover {
+background-color: yellow;
+}
+QSlider::handle::horizontal:pressed {
+background-color: white;
+}
 QSlider::groove::horizontal:disabled {
 background-color: #a0a0a0;
 }
--- a/QTfrontend/res/css/qt.css	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/res/css/qt.css	Sun Mar 24 14:34:27 2024 -0400
@@ -397,6 +397,12 @@
 height: 6px;
 border-radius: 3px;
 }
+QSlider::handle::horizontal:hover {
+background-color: yellow;
+}
+QSlider::handle::horizontal:pressed {
+background-color: white;
+}
 QSlider::handle::horizontal:disabled {
 background-color: #a0a0a0;
 }
Binary file QTfrontend/res/iconSentry.png has changed
--- a/QTfrontend/ui/page/pagegamestats.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/page/pagegamestats.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -122,7 +122,7 @@
     btnRestart->setFixedHeight(81);
     btnRestart->setStyleSheet("QPushButton{margin-top:24px}");
     btnSave = addButton(":/res/Save.png", bottomLayout, 2, true);
-    btnSave->setWhatsThis(tr("Save"));
+    saveDemoBtnEnabled(true);
     btnSave->setStyleSheet("QPushButton{margin: 24px 0 0 0;}");
 
     return bottomLayout;
@@ -175,6 +175,10 @@
 void PageGameStats::saveDemoBtnEnabled(bool enabled)
 {
     btnSave->setEnabled(enabled);
+    if (enabled)
+        btnSave->setWhatsThis(tr("Save demo"));
+    else
+        btnSave->setWhatsThis(tr("Save demo (unavailable because the /lua command was used)"));
 }
 
 void PageGameStats::renderStats()
--- a/QTfrontend/ui/page/pagenetserver.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/page/pagenetserver.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -122,7 +122,7 @@
     sbPort->setValue(NETGAME_DEFAULT_PORT);
 }
 
-// This function assumes that the user wants to share his server while connected to
+// This function assumes that the user wants to share their server while connected to
 // the Internet and that he/she is using direct access (eg no NATs). To determine the
 // IP we briefly connect to Hedgewars website and fallback to user intervention
 // after 4 seconds of timeout.
--- a/QTfrontend/ui/page/pageoptions.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/page/pageoptions.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -398,16 +398,29 @@
             WeaponTooltip->setText(QCheckBox::tr("Show ammo menu tooltips"));
             groupGame->layout()->addWidget(WeaponTooltip, 10, 0, 1, 2);
 
-            groupGame->addDivider();
+            // Chat size adjustment
+            QLabel *labelChatSize = new QLabel(groupGame);
+            labelChatSize->setText(QLabel::tr("Chat size (%)"));
+            labelChatSize->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
+            groupGame->layout()->addWidget(labelChatSize, 11, 0);
+
+            sbChatSize = new QSpinBox(groupGame);
+            sbChatSize->setSingleStep(5);
+            sbChatSize->setMinimum(80);
+            sbChatSize->setMaximum(400);
+            sbChatSize->setValue(100);
+            groupGame->layout()->addWidget(sbChatSize, 11, 1, Qt::AlignLeft);
+
+            groupGame->addDivider(); // row 12
 
             lblTags = new QLabel(groupGame);
             lblTags->setText(QLabel::tr("Displayed tags above hogs and translucent tags"));
-            groupGame->layout()->addWidget(lblTags, 12, 0, 1, 2);
+            groupGame->layout()->addWidget(lblTags, 13, 0, 1, 2);
 
             tagsContainer = new QWidget();
             QHBoxLayout * tagsLayout = new QHBoxLayout(tagsContainer);
             tagsLayout->setSpacing(0);
-            groupGame->layout()->addWidget(tagsContainer, 13, 0, 1, 2);
+            groupGame->layout()->addWidget(tagsContainer, 14, 0, 1, 2);
 
             CBTeamTag = new QCheckBox(groupGame);
             CBTeamTag->setText(QCheckBox::tr("Team"));
@@ -713,6 +726,7 @@
             BtnAssociateFiles->setText(QPushButton::tr("Associate file extensions"));
             BtnAssociateFiles->setVisible(!custom_data && !custom_config);
             groupMisc->layout()->addWidget(BtnAssociateFiles, 4, 0, 1, 2);
+
         }
 
 #ifdef __APPLE__
--- a/QTfrontend/ui/page/pageoptions.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/page/pageoptions.h	Sun Mar 24 14:34:27 2024 -0400
@@ -106,6 +106,7 @@
 
         FPSEdit *fpsedit;
         QLabel *labelNN;
+        QSpinBox * sbChatSize;
         QSlider *SLVolume;
         QLabel *lblVolumeLevel;
         QLineEdit *editNetNick;
--- a/QTfrontend/ui/page/pageroomslist.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/page/pageroomslist.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -84,10 +84,14 @@
     showJoinRestricted = new QAction(QAction::tr("Show join restricted"), stateMenu);
     showJoinRestricted->setCheckable(true);
     showJoinRestricted->setChecked(true);
+    showIncompatible = new QAction(QAction::tr("Show incompatible"), stateMenu);
+    showIncompatible->setCheckable(true);
+    showIncompatible->setChecked(true);
     stateMenu->addAction(showGamesInLobby);
     stateMenu->addAction(showGamesInProgress);
     stateMenu->addAction(showPassword);
     stateMenu->addAction(showJoinRestricted);
+    stateMenu->addAction(showIncompatible);
     btnState->setMenu(stateMenu);
 
     // Help/prompt message at top
@@ -199,6 +203,7 @@
     connect(showGamesInProgress, SIGNAL(triggered()), this, SLOT(onFilterChanged()));
     connect(showPassword, SIGNAL(triggered()), this, SLOT(onFilterChanged()));
     connect(showJoinRestricted, SIGNAL(triggered()), this, SLOT(onFilterChanged()));
+    connect(showIncompatible, SIGNAL(triggered()), this, SLOT(onFilterChanged()));
     connect(searchText, SIGNAL(textChanged (const QString &)), this, SLOT(onFilterChanged()));
     connect(this, SIGNAL(askJoinConfirmation (const QString &)), this, SLOT(onJoinConfirmation(const QString &)), Qt::QueuedConnection);
 
@@ -232,6 +237,7 @@
 {
     roomsModel = NULL;
     stateFilteredModel = NULL;
+    versionFilteredModel = NULL;
 
     initPage();
 }
@@ -554,7 +560,7 @@
 void PageRoomsList::setModel(RoomsListModel * model)
 {
     // filter chain:
-    // model -> stateFilteredModel -> schemeFilteredModel ->
+    // model -> versionFilteredModel -> stateFilteredModel -> schemeFilteredModel ->
     // -> weaponsFilteredModel -> roomsModel (search filter+sorting)
 
     if (roomsModel == NULL)
@@ -564,12 +570,17 @@
         roomsModel->setSortCaseSensitivity(Qt::CaseInsensitive);
         roomsModel->sort(RoomsListModel::StateColumn, Qt::AscendingOrder);
 
-        stateFilteredModel = new QSortFilterProxyModel(this);
+        versionFilteredModel = new QSortFilterProxyModel(this);
+        versionFilteredModel->setDynamicSortFilter(true);
+        versionFilteredModel->setFilterKeyColumn(RoomsListModel::VersionColumn);
+        versionFilteredModel->setFilterRole(Qt::UserRole);
 
+        stateFilteredModel = new QSortFilterProxyModel(this);
         stateFilteredModel->setDynamicSortFilter(true);
+        stateFilteredModel->setFilterKeyColumn(RoomsListModel::StateColumn);
+        stateFilteredModel->setSourceModel(versionFilteredModel);
 
         roomsModel->setFilterKeyColumn(-1); // search in all columns
-        stateFilteredModel->setFilterKeyColumn(RoomsListModel::StateColumn);
 
         roomsModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
 
@@ -585,7 +596,7 @@
         connect(roomsList->selectionModel(), SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)), this, SLOT(roomSelectionChanged(const QModelIndex &, const QModelIndex &)));
     }
 
-    stateFilteredModel->setSourceModel(model);
+    versionFilteredModel->setSourceModel(model);
 
     QHeaderView * h = roomsList->horizontalHeader();
 
@@ -638,6 +649,12 @@
     bool stateProgress = showGamesInProgress->isChecked();
     bool statePassword = showPassword->isChecked();
     bool stateJoinRestricted = showJoinRestricted->isChecked();
+    bool stateIncompatible = showIncompatible->isChecked();
+
+    if (!stateIncompatible)
+        versionFilteredModel->setFilterFixedString(*cProtoVer);
+    else
+        versionFilteredModel->setFilterFixedString("");
 
     QString filter;
     if (!stateLobby && !stateProgress)
--- a/QTfrontend/ui/page/pageroomslist.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/page/pageroomslist.h	Sun Mar 24 14:34:27 2024 -0400
@@ -93,10 +93,12 @@
         QSettings * m_gameSettings;
         QSortFilterProxyModel * roomsModel;
         QSortFilterProxyModel * stateFilteredModel;
+        QSortFilterProxyModel * versionFilteredModel;
         QAction * showGamesInLobby;
         QAction * showGamesInProgress;
         QAction * showPassword;
         QAction * showJoinRestricted;
+        QAction * showIncompatible;
         QSplitter * m_splitter;
 
         GameSchemeModel * gameSchemeModel;
--- a/QTfrontend/ui/page/pagescheme.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/page/pagescheme.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -191,6 +191,7 @@
     QString wtMineDuds = tr("Likelihood of a mine being a dud. Does not affect mines placed by hedgehogs.");
     QString wtExplosives = tr("Average number of barrels to be placed a medium-sized island map. This number will be scaled for other maps.");
     QString wtAirMines = tr("Average number of air mines to be placed a medium-sized island map. This number will be scaled for other maps.");
+    QString wtSentries = tr("Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.");
     QString wtWorldEdge = tr("Affects the left and right boundaries of the map");
     QString wtGetAwayTime = tr("Time you get after an attack");
     QString wtScriptParam = tr("Additional parameter to configure game styles. The meaning depends on the used style, refer to the documentation. When in doubt, leave it empty.");
@@ -462,33 +463,50 @@
     glBSLayout->addWidget(SB_AirMines,14,2,1,1);
 
     l = new QLabel(gbBasicSettings);
+    l->setText(QLabel::tr("Sentry Bots"));
+    l->setWhatsThis(wtSentries);
+    l->setWordWrap(true);
+    glBSLayout->addWidget(l,15,0,1,1);
+    l = new QLabel(gbBasicSettings);
+    l->setWhatsThis(wtSentries);
+    l->setFixedSize(32,32);
+    l->setPixmap(QPixmap(":/res/iconSentry.png"));
+    glBSLayout->addWidget(l,15,1,1,1);
+    SB_Sentries = new QSpinBox(gbBasicSettings);
+    SB_Sentries->setWhatsThis(wtSentries);
+    SB_Sentries->setRange(0, 200);
+    SB_Sentries->setValue(0);
+    SB_Sentries->setSingleStep(5);
+    glBSLayout->addWidget(SB_Sentries,15,2,1,1);
+
+    l = new QLabel(gbBasicSettings);
 //: Label of game scheme setting for the time you get after an attack
     l->setText(QLabel::tr("% Retreat Time"));
     l->setWhatsThis(wtGetAwayTime);
     l->setWordWrap(true);
-    glBSLayout->addWidget(l,15,0,1,1);
+    glBSLayout->addWidget(l,16,0,1,1);
     l = new QLabel(gbBasicSettings);
     l->setWhatsThis(wtGetAwayTime);
     l->setFixedSize(32,32);
     l->setPixmap(QPixmap(":/res/iconTime.png"));
-    glBSLayout->addWidget(l,15,1,1,1);
+    glBSLayout->addWidget(l,16,1,1,1);
     SB_GetAwayTime = new QSpinBox(gbBasicSettings);
     SB_GetAwayTime->setWhatsThis(wtGetAwayTime);
     SB_GetAwayTime->setRange(0, 999);
     SB_GetAwayTime->setValue(100);
     SB_GetAwayTime->setSingleStep(25);
-    glBSLayout->addWidget(SB_GetAwayTime,15,2,1,1);
+    glBSLayout->addWidget(SB_GetAwayTime,16,2,1,1);
 
     l = new QLabel(gbBasicSettings);
     l->setText(QLabel::tr("World Edge"));
     l->setWhatsThis(wtWorldEdge);
     l->setWordWrap(true);
-    glBSLayout->addWidget(l,16,0,1,1);
+    glBSLayout->addWidget(l,17,0,1,1);
     l = new QLabel(gbBasicSettings);
     l->setWhatsThis(wtWorldEdge);
     l->setFixedSize(32,32);
     l->setPixmap(QPixmap(":/res/iconEarth.png"));
-    glBSLayout->addWidget(l,16,1,1,1);
+    glBSLayout->addWidget(l,17,1,1,1);
 
     CB_WorldEdge = new QComboBox(gbBasicSettings);
     CB_WorldEdge->setWhatsThis(wtWorldEdge);
@@ -497,24 +515,24 @@
     CB_WorldEdge->insertItem(2, tr("Bounce (Edges reflect)"));
     CB_WorldEdge->insertItem(3, tr("Sea (Edges connect to sea)"));
     /* CB_WorldEdge->insertItem(4, tr("Skybox")); */
-    glBSLayout->addWidget(CB_WorldEdge,16,2,1,1);
+    glBSLayout->addWidget(CB_WorldEdge,17,2,1,1);
 
 
     l = new QLabel(gbBasicSettings);
     l->setText(QLabel::tr("Script parameter"));
     l->setWhatsThis(wtScriptParam);
     l->setWordWrap(true);
-    glBSLayout->addWidget(l,17,0,1,1);
+    glBSLayout->addWidget(l,18,0,1,1);
     l = new QLabel(gbBasicSettings);
     l->setWhatsThis(wtScriptParam);
     l->setFixedSize(32,32);
     l->setPixmap(QPixmap(":/res/iconScript.png"));
-    glBSLayout->addWidget(l,17,1,1,1);
+    glBSLayout->addWidget(l,18,1,1,1);
 
     LE_ScriptParam = new QLineEdit(gbBasicSettings);
     LE_ScriptParam->setWhatsThis(wtScriptParam);
     LE_ScriptParam->setMaxLength(240);
-    glBSLayout->addWidget(LE_ScriptParam,17,2,1,1);
+    glBSLayout->addWidget(LE_ScriptParam,18,2,1,1);
 
     L_name = new QLabel(gbBasicSettings);
     L_name->setText(QLabel::tr("Scheme Name:"));
@@ -557,6 +575,7 @@
     connect(BtnCopy, SIGNAL(clicked()), this, SLOT(copyRow()));
     connect(BtnNew, SIGNAL(clicked()), this, SLOT(newRow()));
     connect(BtnDelete, SIGNAL(clicked()), this, SLOT(deleteRow()));
+    connect(CB_WorldEdge, SIGNAL(currentIndexChanged(int)), this, SLOT(worldEdgeChanged(int)));
     mapper = new QDataWidgetMapper(this);
     connect(selectScheme, SIGNAL(currentIndexChanged(int)), mapper, SLOT(setCurrentIndex(int)));
     connect(selectScheme, SIGNAL(currentIndexChanged(int)), this, SLOT(schemeSelected(int)));
@@ -609,14 +628,15 @@
     mapper->addMapping(SB_MineDuds, 33);
     mapper->addMapping(SB_Explosives, 34);
     mapper->addMapping(SB_AirMines, 35);
-    mapper->addMapping(SB_HealthCrates, 36);
-    mapper->addMapping(SB_CrateHealth, 37);
-    mapper->addMapping(SB_WaterRise, 38);
-    mapper->addMapping(SB_HealthDecrease, 39);
-    mapper->addMapping(SB_RopeModifier, 40);
-    mapper->addMapping(SB_GetAwayTime, 41);
-    mapper->addMapping(CB_WorldEdge, 42, "currentIndex");
-    mapper->addMapping(LE_ScriptParam, 43);
+    mapper->addMapping(SB_Sentries, 36);
+    mapper->addMapping(SB_HealthCrates, 37);
+    mapper->addMapping(SB_CrateHealth, 38);
+    mapper->addMapping(SB_WaterRise, 39);
+    mapper->addMapping(SB_HealthDecrease, 40);
+    mapper->addMapping(SB_RopeModifier, 41);
+    mapper->addMapping(SB_GetAwayTime, 42);
+    mapper->addMapping(CB_WorldEdge, 43, "currentIndex");
+    mapper->addMapping(LE_ScriptParam, 44);
 
     mapper->toFirst();
 
@@ -684,6 +704,14 @@
     };
 }
 
+void PageScheme::worldEdgeChanged(int n)
+{
+    if (mapper->itemDelegate()) 
+    {
+        mapper->itemDelegate()->commitData(CB_WorldEdge);
+    }    
+}
+
 void PageScheme::schemeSelected(int n)
 {
     int c = ((GameSchemeModel*)mapper->model())->numberOfDefaultSchemes;
--- a/QTfrontend/ui/page/pagescheme.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/page/pagescheme.h	Sun Mar 24 14:34:27 2024 -0400
@@ -90,6 +90,7 @@
         MinesTimeSpinBox * SB_MinesTime;
         QSpinBox * SB_Mines;
         QSpinBox * SB_AirMines;
+        QSpinBox * SB_Sentries;
         QSpinBox * SB_MineDuds;
         QSpinBox * SB_Explosives;
         QSpinBox * SB_RopeModifier;
@@ -107,6 +108,7 @@
         void checkDupe();
 
     private slots:
+        void worldEdgeChanged(int);
         void schemeSelected(int);
         void dataChanged(QModelIndex topLeft, QModelIndex bottomRight);
 };
--- a/QTfrontend/ui/widget/gamecfgwidget.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/widget/gamecfgwidget.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -346,18 +346,19 @@
     bcfg << QString("e$minedudpct %1").arg(schemeData(33).toInt()).toUtf8();
     bcfg << QString("e$explosives %1").arg(schemeData(34).toInt()).toUtf8();
     bcfg << QString("e$airmines %1").arg(schemeData(35).toInt()).toUtf8();
-    bcfg << QString("e$healthprob %1").arg(schemeData(36).toInt()).toUtf8();
-    bcfg << QString("e$hcaseamount %1").arg(schemeData(37).toInt()).toUtf8();
-    bcfg << QString("e$waterrise %1").arg(schemeData(38).toInt()).toUtf8();
-    bcfg << QString("e$healthdec %1").arg(schemeData(39).toInt()).toUtf8();
-    bcfg << QString("e$ropepct %1").arg(schemeData(40).toInt()).toUtf8();
-    bcfg << QString("e$getawaytime %1").arg(schemeData(41).toInt()).toUtf8();
-    bcfg << QString("e$worldedge %1").arg(schemeData(42).toInt()).toUtf8();
+    bcfg << QString("e$sentries %1").arg(schemeData(36).toInt()).toUtf8();
+    bcfg << QString("e$healthprob %1").arg(schemeData(37).toInt()).toUtf8();
+    bcfg << QString("e$hcaseamount %1").arg(schemeData(38).toInt()).toUtf8();
+    bcfg << QString("e$waterrise %1").arg(schemeData(39).toInt()).toUtf8();
+    bcfg << QString("e$healthdec %1").arg(schemeData(40).toInt()).toUtf8();
+    bcfg << QString("e$ropepct %1").arg(schemeData(41).toInt()).toUtf8();
+    bcfg << QString("e$getawaytime %1").arg(schemeData(42).toInt()).toUtf8();
+    bcfg << QString("e$worldedge %1").arg(schemeData(43).toInt()).toUtf8();
     bcfg << QString("e$template_filter %1").arg(pMapContainer->getTemplateFilter()).toUtf8();
     bcfg << QString("e$feature_size %1").arg(pMapContainer->getFeatureSize()).toUtf8();
     bcfg << QString("e$mapgen %1").arg(mapgen).toUtf8();
-    if(!schemeData(43).isNull())
-        bcfg << QString("e$scriptparam %1").arg(schemeData(43).toString()).toUtf8();
+    if(!schemeData(44).isNull())
+        bcfg << QString("e$scriptparam %1").arg(schemeData(44).toString()).toUtf8();
     else
         bcfg << QString("e$scriptparam ").toUtf8();
 
--- a/QTfrontend/ui/widget/keybinder.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/widget/keybinder.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -209,12 +209,7 @@
         curTable->insertRow(row);
         curTable->setItem(row, 0, nameCell);
         QTableWidgetItem * bindCell;
-        // Check if the bind text is bad. This was discovered after the 1.0.0,
-        // so we need a little workaround.
-        bool is_broken_strbind = cbinds[i].strbind == "precise + switch + toggle hedgehog tags";
-                                                    // ^ should be "precise + switch + toggle team bars"
-        // TODO: Remove is_broken_strbind after 1.0.0 release.
-        if (cbinds[i].action != "!MULTI" && (!is_broken_strbind))
+        if (cbinds[i].action != "!MULTI")
         {
             bindCell = new QTableWidgetItem(comboBox->currentText());
             nameCell->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
@@ -223,19 +218,7 @@
         }
         else
         {
-            // Apply workaround for the broken 1.0.0 strbind
-            // TODO: Remove the workaround after 1.0.0 release and fix binds.cpp accordingly.
-            if (is_broken_strbind)
-            {
-                // We simply construct the string from other strings we *do* have. :-)
-                QString cellText =
-                    HWApplication::translate("binds", "precise aim") + " + " +
-                    HWApplication::translate("binds", "switch") + " + " +
-                    HWApplication::translate("binds", "toggle team bars");
-                bindCell = new QTableWidgetItem(cellText);
-            }
-            else
-                bindCell = new QTableWidgetItem(HWApplication::translate("binds (combination)", cbinds[i].strbind.toUtf8().constData()));
+            bindCell = new QTableWidgetItem(HWApplication::translate("binds (combination)", cbinds[i].strbind.toUtf8().constData()));
             nameCell->setFlags(Qt::NoItemFlags);
             bindCell->setFlags(Qt::NoItemFlags);
             bindCell->setIcon(emptyIcon);
--- a/QTfrontend/ui/widget/selectWeapon.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/widget/selectWeapon.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -38,11 +38,20 @@
 
 QImage getAmmoImage(int num)
 {
-    static QImage ammo(":Ammos.png");
-    int x = num/(ammo.height()/32);
-    int y = (num-((ammo.height()/32)*x))*32;
-    x*=32;
-    return ammo.copy(x, y, 32, 32);
+    // Show ammo image for ammo selection menu
+    if (QLocale().decimalPoint() == "," && num == HW_AMMOTYPE_EXTRADAMAGE) {
+        // Special case: Extra Damage icon showing "1,5" instead of "1.5" if locale
+        // uses comma as decimal separator
+        static QImage extradamage(":Ammos_ExtraDamage_comma.png");
+        return extradamage;
+    } else {
+        // Normal case: Pick icon from Ammos.png
+        static QImage ammo(":Ammos.png");
+        int x = num/(ammo.height()/32);
+        int y = (num-((ammo.height()/32)*x))*32;
+        x*=32;
+        return ammo.copy(x, y, 32, 32);
+    }
 }
 
 SelWeaponItem::SelWeaponItem(bool allowInfinite, int iconNum, int wNum, QImage image, QImage imagegrey, QWidget* parent) :
@@ -84,6 +93,16 @@
     item->setEnabled(value);
 }
 
+int SelWeaponWidget::readWeaponValue(const QChar chr, int max)
+{
+    int value = chr.digitValue();
+    if (value == -1)
+        value = 0;
+    else if (value > max)
+        value = max;
+    return value;
+}
+
 SelWeaponWidget::SelWeaponWidget(int numItems, QWidget* parent) :
     QFrame(parent),
     m_numItems(numItems)
@@ -183,25 +202,34 @@
     int i = 0, k = 0;
     for(; i < m_numItems; ++i)
     {
-        // Hide amSkip (6) and amCreeper (57)
-        // TODO: Unhide amCreeper when this weapon is done
-        if (i == 6 || i == 57) continue;
-        if (k % 4 == 0) ++j;
-        SelWeaponItem * swi = new SelWeaponItem(true, i, currentState[i].digitValue(), QImage(":/res/ammopic.png"), QImage(":/res/ammopicgrey.png"), this);
-        weaponItems[i].append(swi);
-        p1Layout->addWidget(swi, j, k % 4);
+        if (k % cAmmoMenuRows == 0)
+            ++j;
+        unsigned int ammo = ammoMenuAmmos[i];
+        // Hide amSkip (7)
+        if (ammo == 7)
+            continue;
+        // Hide unused amCreeper (58)
+        else if (ammo == 58)
+        {
+            ++k;
+            continue;
+        }
+        int a = ammo-1; // ammo ID for SelWeaponItem
+        SelWeaponItem * swi = new SelWeaponItem(true, a, readWeaponValue(currentState[a], 9), QImage(":/res/ammopic.png"), QImage(":/res/ammopicgrey.png"), this);
+        weaponItems[a].append(swi);
+        p1Layout->addWidget(swi, j, k % cAmmoMenuRows);
 
-        SelWeaponItem * pwi = new SelWeaponItem(false, i, currentState[numItems + i].digitValue(), QImage(":/res/ammopicbox.png"), QImage(":/res/ammopicboxgrey.png"), this);
-        weaponItems[i].append(pwi);
-        p2Layout->addWidget(pwi, j, k % 4);
+        SelWeaponItem * pwi = new SelWeaponItem(false, a, readWeaponValue(currentState[numItems + a], 8), QImage(":/res/ammopicbox.png"), QImage(":/res/ammopicboxgrey.png"), this);
+        weaponItems[a].append(pwi);
+        p2Layout->addWidget(pwi, j, k % cAmmoMenuRows);
 
-        SelWeaponItem * dwi = new SelWeaponItem(false, i, currentState[numItems*2 + i].digitValue(), QImage(":/res/ammopicdelay.png"), QImage(":/res/ammopicdelaygrey.png"), this);
-        weaponItems[i].append(dwi);
-        p3Layout->addWidget(dwi, j, k % 4);
+        SelWeaponItem * dwi = new SelWeaponItem(false, a, readWeaponValue(currentState[numItems*2 + a], 8), QImage(":/res/ammopicdelay.png"), QImage(":/res/ammopicdelaygrey.png"), this);
+        weaponItems[a].append(dwi);
+        p3Layout->addWidget(dwi, j, k % cAmmoMenuRows);
 
-        SelWeaponItem * awi = new SelWeaponItem(false, i, currentState[numItems*3 + i].digitValue(), QImage(":/res/ammopic.png"), QImage(":/res/ammopicgrey.png"), this);
-        weaponItems[i].append(awi);
-        p4Layout->addWidget(awi, j, k % 4);
+        SelWeaponItem * awi = new SelWeaponItem(false, a, readWeaponValue(currentState[numItems*3 + a], 8), QImage(":/res/ammopic.png"), QImage(":/res/ammopicgrey.png"), this);
+        weaponItems[a].append(awi);
+        p4Layout->addWidget(awi, j, k % cAmmoMenuRows);
 
         ++k;
     }
@@ -229,10 +257,10 @@
     {
         twi::iterator it = weaponItems.find(i);
         if (it == weaponItems.end()) continue;
-        it.value()[0]->setItemsNum(ammo[i].digitValue());
-        it.value()[1]->setItemsNum(ammo[m_numItems + i].digitValue());
-        it.value()[2]->setItemsNum(ammo[m_numItems*2 + i].digitValue());
-        it.value()[3]->setItemsNum(ammo[m_numItems*3 + i].digitValue());
+        it.value()[0]->setItemsNum(readWeaponValue(ammo[i], 9));
+        it.value()[1]->setItemsNum(readWeaponValue(ammo[m_numItems + i], 8));
+        it.value()[2]->setItemsNum(readWeaponValue(ammo[m_numItems*2 + i], 8));
+        it.value()[3]->setItemsNum(readWeaponValue(ammo[m_numItems*3 + i], 8));
         it.value()[0]->setEnabled(enable);
         it.value()[1]->setEnabled(enable);
         it.value()[2]->setEnabled(enable);
@@ -331,6 +359,7 @@
         file.close();
     }
     emit weaponsEdited(curWeaponsName, m_name->text(), stateFull);
+    curWeaponsName = m_name->text();
 }
 
 int SelWeaponWidget::operator [] (unsigned int weaponIndex) const
--- a/QTfrontend/ui/widget/selectWeapon.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/ui/widget/selectWeapon.h	Sun Mar 24 14:34:27 2024 -0400
@@ -95,6 +95,7 @@
         QGridLayout* p4Layout;
 
         QString fixWeaponSet(const QString & s);
+        int readWeaponValue(const QChar chr, int max);
 };
 
 #endif // _SELECT_WEAPON_INCLUDED
--- a/QTfrontend/weapons.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/QTfrontend/weapons.h	Sun Mar 24 14:34:27 2024 -0400
@@ -16,10 +16,10 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#define AMMOLINE_EMPTY_QT       "00000090000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_EMPTY_PROB     "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_EMPTY_DELAY    "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_EMPTY_CRATE    "13111103121111111231141111111111111112111111111111111111111"
+#define AMMOLINE_EMPTY_QT       "000000900000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_EMPTY_PROB     "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_EMPTY_DELAY    "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_EMPTY_CRATE    "131111031211111112311411111111111111121111111111111111111111"
 
 /*
  AmmoType lookup table (use monospace font / cursor movements)
@@ -83,68 +83,69 @@
  amAirMine-------------------------------------------------------------------------------|
  amCreeper--------------------------------------------------------------------------------|
  amMinigun---------------------------------------------------------------------------------|
+ amSentry-----------------------------------------------------------------------------------|
 */
-#define AMMOLINE_DEFAULT_QT     "93919294221991210322351110012000000002111001010111110001000"
-#define AMMOLINE_DEFAULT_PROB   "04050405416006555465544647765766666661555101011154111111107"
-#define AMMOLINE_DEFAULT_DELAY  "00000000000002055000000400070040000000002200000006000200000"
-#define AMMOLINE_DEFAULT_CRATE  "13111103121111111231141111111111111112111111111111111111111"
+#define AMMOLINE_DEFAULT_QT     "939192942219912103223511100120000000021110010101111100010001"
+#define AMMOLINE_DEFAULT_PROB   "040504054160065554655446477657666666615551010111541111111073"
+#define AMMOLINE_DEFAULT_DELAY  "000000000000020550000004000700400000000022000000060002000000"
+#define AMMOLINE_DEFAULT_CRATE  "131111031211111112311411111111111111121111111111111111111111"
 
-#define AMMOLINE_CRAZY_QT       "99999999999999999929999999999999992999999999999999929991909"
-#define AMMOLINE_CRAZY_PROB     "11111101111111111111111111111111111111111111111111111111101"
-#define AMMOLINE_CRAZY_DELAY    "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_CRAZY_CRATE    "13111103121111111231141111111111111112111111111111111111111"
+#define AMMOLINE_CRAZY_QT       "999999999999999999299999999999999929999999999999999299919099"
+#define AMMOLINE_CRAZY_PROB     "111111011111111111111111111111111111111111111111111111111011"
+#define AMMOLINE_CRAZY_DELAY    "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_CRAZY_CRATE    "131111031211111112311411111111111111121111111111111111111111"
 
-#define AMMOLINE_PROMODE_QT     "90900090000000000000090000000000000000000000000000000000000"
-#define AMMOLINE_PROMODE_PROB   "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_PROMODE_DELAY  "00000000000002055000000400070040000000002000000000000200000"
-#define AMMOLINE_PROMODE_CRATE  "11111101111111111111111111111111111111111111111111111111111"
+#define AMMOLINE_PROMODE_QT     "909000900000000000000900000000000000000000000000000000000000"
+#define AMMOLINE_PROMODE_PROB   "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_PROMODE_DELAY  "000000000000020550000004000700400000000020000000000002000000"
+#define AMMOLINE_PROMODE_CRATE  "111111011111111111111111111111111111111111111111111111111111"
 
-#define AMMOLINE_SHOPPA_QT      "00000099000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_SHOPPA_PROB    "44444100442444022101121212224220000000020004000100110010101"
-#define AMMOLINE_SHOPPA_DELAY   "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_SHOPPA_CRATE   "11111101111111111111111111111111111111111111111111111111111"
+#define AMMOLINE_SHOPPA_QT      "000000990000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_SHOPPA_PROB    "444441004424440221011212122242200000000200040001001100101010"
+#define AMMOLINE_SHOPPA_DELAY   "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_SHOPPA_CRATE   "111111011111111111111111111111111111111111111111111111111111"
 
-#define AMMOLINE_CLEAN_QT       "10100090000100000110000000000000000000000000000010000000000"
-#define AMMOLINE_CLEAN_PROB     "04050405416006555465544647765766666661555101011154111211104"
-#define AMMOLINE_CLEAN_DELAY    "00000000000000000000000000000000000000000000000000000200000"
-#define AMMOLINE_CLEAN_CRATE    "13111103121111111231141111111111111112111111111111111111111"
+#define AMMOLINE_CLEAN_QT       "101000900001000001100000000000000000000000000000100000000000"
+#define AMMOLINE_CLEAN_PROB     "040504054160065554655446477657666666615551010111541112111040"
+#define AMMOLINE_CLEAN_DELAY    "000000000000000000000000000000000000000000000000000002000000"
+#define AMMOLINE_CLEAN_CRATE    "131111031211111112311411111111111111121111111111111111111111"
 
-#define AMMOLINE_MINES_QT       "00000099000900000003000000000000000000000000000000000000000"
-#define AMMOLINE_MINES_PROB     "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_MINES_DELAY    "00000000000002055000000400070040000000002000000006000200000"
-#define AMMOLINE_MINES_CRATE    "11111101111111111111111111111111111111111111111111111111111"
+#define AMMOLINE_MINES_QT       "000000990009000000030000000000000000000000000000000000000000"
+#define AMMOLINE_MINES_PROB     "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_MINES_DELAY    "000000000000020550000004000700400000000020000000060002000000"
+#define AMMOLINE_MINES_CRATE    "111111011111111111111111111111111111111111111111111111111111"
 
-#define AMMOLINE_PORTALS_QT     "90000090020000000021000000000000001100000900000000000000000"
-#define AMMOLINE_PORTALS_PROB   "04050405416006555465544647765766666661555101011154111211102"
-#define AMMOLINE_PORTALS_DELAY  "00000000000002055000000400070040000000002000000006000200000"
-#define AMMOLINE_PORTALS_CRATE  "13111103121111111231141111111111111112111111111111111111111"
+#define AMMOLINE_PORTALS_QT     "900000900200000000210000000000000011000009000000000000000000"
+#define AMMOLINE_PORTALS_PROB   "040504054160065554655446477657666666615551010111541112111020"
+#define AMMOLINE_PORTALS_DELAY  "000000000000020550000004000700400000000020000000060002000000"
+#define AMMOLINE_PORTALS_CRATE  "131111031211111112311411111111111111121111111111111111111111"
 
-#define AMMOLINE_ONEEVERY_QT    "11111191111111111111111111111111111111111111111111111111101"
-#define AMMOLINE_ONEEVERY_PROB  "11111101111111111111111111111111111111111111111111111111101"
-#define AMMOLINE_ONEEVERY_DELAY "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_ONEEVERY_CRATE "11111101111111111111111111111111111111111111111111111111111"
+#define AMMOLINE_ONEEVERY_QT    "111111911111111111111111111111111111111111111111111111111011"
+#define AMMOLINE_ONEEVERY_PROB  "111111011111111111111111111111111111111111111111111111111011"
+#define AMMOLINE_ONEEVERY_DELAY "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_ONEEVERY_CRATE "111111011111111111111111111111111111111111111111111111111111"
 
-#define AMMOLINE_BRW_QT         "33323392332332322323233131122113000003232203022022200020301"
-#define AMMOLINE_BRW_PROB       "00000000000000000000000000000000111110000000000000000000000"
-#define AMMOLINE_BRW_DELAY      "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_BRW_CRATE      "11111101111111111111111111111111111111111111111111111111111"
+#define AMMOLINE_BRW_QT         "333233923323323223232331311221130000032322030220222000203010"
+#define AMMOLINE_BRW_PROB       "000000000000000000000000000000001111100000000000000000000000"
+#define AMMOLINE_BRW_DELAY      "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_BRW_CRATE      "111111011111111111111111111111111111111111111111111111111111"
 
-#define AMMOLINE_HIGHLANDER_QT    "11111191111111111111019111111111100101111101111001001011101"
-#define AMMOLINE_HIGHLANDER_PROB  "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_HIGHLANDER_DELAY "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_HIGHLANDER_CRATE "00000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_HIGHLANDER_QT    "111111911111111111110191111111111001011111011110010010111010"
+#define AMMOLINE_HIGHLANDER_PROB  "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_HIGHLANDER_DELAY "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_HIGHLANDER_CRATE "000000000000000000000000000000000000000000000000000000000001"
 
-#define AMMOLINE_CONSTRUCTION_QT    "11000190000000100100900000000000000000000000000000000000000"
-#define AMMOLINE_CONSTRUCTION_PROB  "11111101111111100100011111101111111111111101111100101110101"
-#define AMMOLINE_CONSTRUCTION_DELAY "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_CONSTRUCTION_CRATE "11111101111111111111111111111111111111111111111111111111111"
+#define AMMOLINE_CONSTRUCTION_QT    "110001900000001001009000000000000000000000000000000000000000"
+#define AMMOLINE_CONSTRUCTION_PROB  "111111011111111001000111111011111111111111011111001011101010"
+#define AMMOLINE_CONSTRUCTION_DELAY "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_CONSTRUCTION_CRATE "111111011111111111111111111111111111111111111111111111111111"
 
-#define AMMOLINE_SHOPPAPRO_QT      "00000099000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_SHOPPAPRO_PROB    "44444000440444000000000000004000000000000000000000000000000"
-#define AMMOLINE_SHOPPAPRO_DELAY   "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_SHOPPAPRO_CRATE   "11111101111111111111111111111111111111111111111111111211111"
+#define AMMOLINE_SHOPPAPRO_QT      "000000990000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_SHOPPAPRO_PROB    "444440004404440000000000000040000000000000000000000000000000"
+#define AMMOLINE_SHOPPAPRO_DELAY   "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_SHOPPAPRO_CRATE   "111111011111111111111111111111111111111111111111111112111111"
 
-#define AMMOLINE_HEDGEEDITOR_QT    "00000090000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_HEDGEEDITOR_PROB  "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_HEDGEEDITOR_DELAY "00000000000000000000000000000000000000000000000000000000000"
-#define AMMOLINE_HEDGEEDITOR_CRATE "11111101111111111111111111111111111111111111111111111111111"
+#define AMMOLINE_HEDGEEDITOR_QT    "000000900000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_HEDGEEDITOR_PROB  "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_HEDGEEDITOR_DELAY "000000000000000000000000000000000000000000000000000000000000"
+#define AMMOLINE_HEDGEEDITOR_CRATE "111111011111111111111111111111111111111111111111111111111111"
--- a/README.md	Sun Mar 24 14:19:02 2024 -0400
+++ b/README.md	Sun Mar 24 14:34:27 2024 -0400
@@ -144,6 +144,6 @@
 Contact
 -------
 * Homepage        - https://hedgewars.org/
-* IRC channel     - irc://irc.freenode.net/hedgewars
+* IRC channel     - irc://irc.libera.chat/hedgewars
 * Community forum - https://hedgewars.org/forum
 
--- a/cmake_modules/cpackvars.cmake	Sun Mar 24 14:19:02 2024 -0400
+++ b/cmake_modules/cpackvars.cmake	Sun Mar 24 14:34:27 2024 -0400
@@ -106,6 +106,13 @@
     "^${CMAKE_CURRENT_SOURCE_DIR}/gameServer2"
     "^${CMAKE_CURRENT_SOURCE_DIR}/rust"
     "^${CMAKE_CURRENT_SOURCE_DIR}/qmlfrontend"
+    "^${CMAKE_CURRENT_SOURCE_DIR}/bin/hedgewars"
+    "^${CMAKE_CURRENT_SOURCE_DIR}/bin/hwengine"
+    "^${CMAKE_CURRENT_SOURCE_DIR}/bin/hedgewars-server"
+    "^${CMAKE_CURRENT_SOURCE_DIR}/bin/link\\\\.res"
+    "^${CMAKE_CURRENT_SOURCE_DIR}/bin/ppas\\\\.sh"
+    "^${CMAKE_CURRENT_SOURCE_DIR}/bin/libavwrapper\\\\.*"
+    "^${CMAKE_CURRENT_SOURCE_DIR}/bin/libphyslayer\\\\.*"
 )
 
 include(CPack)
--- a/cmake_modules/paths.cmake	Sun Mar 24 14:19:02 2024 -0400
+++ b/cmake_modules/paths.cmake	Sun Mar 24 14:34:27 2024 -0400
@@ -61,7 +61,11 @@
     #install_name_tool for libraries
     set(CMAKE_BUILD_WITH_INSTALL_NAME_DIR TRUE)
     set(CMAKE_INSTALL_NAME_DIR "@executable_path/../Frameworks")
-else(APPLE AND NOT (${CMAKE_INSTALL_PREFIX} MATCHES "/usr"))
+# should this be a separate if block like so
+#if(NOT APPLE AND NOT (${CMAKE_INSTALL_PREFIX} MATCHES "/usr"))
+# there were some conditions here that implied not setting the RPATH if installed to /usr 
+# but it was not being applied due to else not actually taking parameters  (HT wuzzy)
+else()
     #paths where to find libraries (final slash not optional):
     # - the first is relative to the executable
     # - the second is the same directory of the executable (so it runs in bin/)
--- a/gameServer/Actions.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/Actions.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -24,6 +24,7 @@
 import qualified Data.Set as Set
 import qualified Data.Map as Map
 import qualified Data.List as L
+import Data.Word
 import qualified Control.Exception as Exception
 import System.Log.Logger
 import Control.Monad
@@ -65,6 +66,12 @@
     ri <- clientRoomA
     liftM (map sendChan . filter (/= cl)) $ roomClientsS ri
 
+othersChansProto :: StateT ServerState IO [(ClientChan, Word16)]
+othersChansProto = do
+    cl <- client's id
+    ri <- clientRoomA
+    map (\ci -> (sendChan ci, clientProto ci)) . filter (/= cl) <$> roomClientsS ri
+
 processAction :: Action -> StateT ServerState IO ()
 
 
@@ -72,6 +79,10 @@
     io $ mapM_ (`writeChan` (msg `deepseq` msg)) (chans `deepseq` chans)
 
 
+processAction (AnswerClientsByProto chansProto msgFunc) =
+    io $ mapM_ (\(chan, proto) -> writeChan chan (msgFunc proto)) chansProto
+
+
 processAction SendServerMessage = do
     chan <- client's sendChan
     protonum <- client's clientProto
@@ -129,7 +140,7 @@
     mapM_ processAction
         [
         AnswerClients [chan] ["BYE", msg]
-        , ModifyClient (\c -> c{nick = "", isVisible = False}) -- this will effectively hide client from others while he isn't deleted from list
+        , ModifyClient (\c -> c{nick = "", isVisible = False}) -- this will effectively hide client from others while it isn't deleted from list
         ]
 
     s <- get
@@ -279,8 +290,9 @@
                 )
 
     newRoom' <- io $ room'sM rnc id ri
-    chans <- liftM (map sendChan) $! sameProtoClientsS proto
-    processAction $ AnswerClients chans ("ROOM" : "UPD" : oldRoomName : roomInfo proto (maybeNick newMaster) newRoom')
+    chansProto <- fmap (map (\c -> (sendChan c, clientProto c))) $! allClientsS
+    let oldRoomNameByProto = roomNameByProto oldRoomName (roomProto newRoom')
+    processAction $ AnswerClientsByProto chansProto (\p -> "ROOM" : "UPD" : oldRoomNameByProto p : roomInfo p (maybeNick newMaster) newRoom')
 
 
 processAction (AddRoom roomName roomPassword) = do
@@ -300,10 +312,10 @@
 
     processAction $ MoveToRoom rId
 
-    chans <- liftM (map sendChan) $! sameProtoClientsS proto
+    chansProto <- fmap (map (\c -> (sendChan c, clientProto c))) $! allClientsS
 
     mapM_ processAction [
-      AnswerClients chans ("ROOM" : "ADD" : roomInfo proto n rm{playersIn = 1})
+      AnswerClientsByProto chansProto (\p -> "ROOM" : "ADD" : roomInfo p n rm{playersIn = 1})
         ]
 
 
@@ -312,13 +324,13 @@
     rnc <- gets roomsClients
     ri <- io $ clientRoomM rnc clId
     roomName <- io $ room'sM rnc name ri
-    others <- othersChans
-    proto <- client's clientProto
-    chans <- liftM (map sendChan) $! sameProtoClientsS proto
+    roomProto <- io $ room'sM rnc roomProto ri
+    others <- othersChansProto
+    chansProto <- fmap (map (\c -> (sendChan c, clientProto c))) $! allClientsS
 
     mapM_ processAction [
-            AnswerClients chans ["ROOM", "DEL", roomName],
-            AnswerClients others ["ROOMABANDONED", roomName]
+            AnswerClientsByProto chansProto (\p -> ["ROOM", "DEL", roomNameByProto roomName roomProto p]),
+            AnswerClientsByProto others (\p -> ["ROOMABANDONED", roomNameByProto roomName roomProto p])
         ]
 
     io $ removeRoom rnc ri
@@ -331,8 +343,9 @@
     ri <- io $ clientRoomM rnc clId
     rm <- io $ room'sM rnc id ri
     masterCl <- io $ client'sM rnc id `DT.mapM` (masterID rm)
-    chans <- liftM (map sendChan) $! sameProtoClientsS proto
-    processAction $ AnswerClients chans ("ROOM" : "UPD" : name rm : roomInfo proto (maybeNick masterCl) rm)
+    chansProto <- fmap (map (\c -> (sendChan c, clientProto c))) $! allClientsS
+    let thisRoomNameByProto = roomNameByProto (name rm) (roomProto rm)
+    processAction $ AnswerClientsByProto chansProto (\p -> "ROOM" : "UPD" : thisRoomNameByProto p : roomInfo p (maybeNick masterCl) rm)
 
 
 processAction UnreadyRoomClients = do
@@ -536,7 +549,7 @@
         rooms <- roomsM rnc
         mapM (\r -> (mapM (client'sM rnc id) $ masterID r)
             >>= \cn -> return $ roomInfo clProto (maybeNick cn) r)
-            $ filter (\r -> (roomProto r == clProto)) rooms
+            $ filter ((/=) 0 . roomProto) rooms
 
     mapM_ processAction . concat $ [
         [AnswerClients clientsChans ["LOBBY:JOINED", clientNick]]
--- a/gameServer/ClientIO.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/ClientIO.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -20,6 +20,7 @@
 module ClientIO where
 
 import qualified Control.Exception as Exception
+import Control.Monad
 import Control.Monad.State
 import Control.Concurrent.Chan
 import Control.Concurrent
--- a/gameServer/CoreTypes.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/CoreTypes.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -46,6 +46,7 @@
 
 data Action =
     AnswerClients ![ClientChan] ![B.ByteString]
+    | AnswerClientsByProto ![(ClientChan, Word16)] !(Word16 -> [B.ByteString])
     | SendServerMessage
     | SendServerVars
     | MoveToRoom RoomIndex
--- a/gameServer/HWProtoChecker.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/HWProtoChecker.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -20,6 +20,7 @@
 module HWProtoChecker where
 
 import Data.Maybe
+import Control.Monad
 import Control.Monad.Reader
 --------------------------------------
 import CoreTypes
--- a/gameServer/HWProtoCore.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/HWProtoCore.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -19,6 +19,7 @@
 {-# LANGUAGE OverloadedStrings #-}
 module HWProtoCore where
 
+import Control.Monad
 import Control.Monad.Reader
 import Data.Maybe
 import qualified Data.ByteString.Char8 as B
--- a/gameServer/HWProtoInRoomState.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/HWProtoInRoomState.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -313,7 +313,8 @@
     cl <- thisClient
     rs <- allRoomInfos
     rm <- thisRoom
-    chans <- sameProtoChans
+    chansProto <- allChansProto
+    let thisRoomNameByProto = roomNameByProto (name rm) (roomProto rm)
 
     return $
         if illegalName newName then
@@ -326,7 +327,7 @@
             [Warning $ loc "A room with the same name already exists."]
         else
             [ModifyRoom roomUpdate,
-            AnswerClients chans ("ROOM" : "UPD" : name rm : roomInfo (clientProto cl) (nick cl) (roomUpdate rm)),
+            AnswerClientsByProto chansProto (\p -> "ROOM" : "UPD" : thisRoomNameByProto p : roomInfo p (nick cl) (roomUpdate rm)),
             RegisterEvent RoomNameUpdate]
     where
         roomUpdate r = r{name = newName}
--- a/gameServer/HWProtoLobbyState.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/HWProtoLobbyState.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -21,6 +21,7 @@
 
 import Data.Maybe
 import Data.List
+import Control.Monad
 import Control.Monad.Reader
 import qualified Data.ByteString.Char8 as B
 --------------------------------------
@@ -40,7 +41,7 @@
     (ci, irnc) <- ask
     let cl = irnc `client` ci
     rooms <- allRoomInfos
-    let roomsInfoList = concatMap (\r -> roomInfo (clientProto cl) (maybeNick . liftM (client irnc) $ masterID r) r) . filter (\r -> (roomProto r == clientProto cl))
+    let roomsInfoList = concatMap (\r -> roomInfo (clientProto cl) (maybeNick . liftM (client irnc) $ masterID r) r) . filter ((/=) 0 . roomProto)
     return $ if hasAskedList cl then [] else
         [ ModifyClient (\c -> c{hasAskedList = True})
         , AnswerClients [sendChan cl] ("ROOMS" : roomsInfoList rooms)]
@@ -91,7 +92,9 @@
                 []
     let clTeamsNames = map teamname clTeams
     return $
-        if isNothing maybeRI then
+        if isNothing maybeRI && clientProto cl < 60 && B.isPrefixOf "[v" roomName then
+            [Warning $ loc "Room version incompatible to your Hedgewars version!"]
+            else if isNothing maybeRI then
             [Warning $ loc "No such room."]
             else if (not sameProto) && (not $ isAdministrator cl) then
             [Warning $ loc "Room version incompatible to your Hedgewars version!"]
--- a/gameServer/HandlerUtils.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/HandlerUtils.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -18,9 +18,11 @@
 
 module HandlerUtils where
 
+import Control.Monad
 import Control.Monad.Reader
 import qualified Data.ByteString.Char8 as B
 import Data.List
+import Data.Word
 
 import RoomsAndClients
 import CoreTypes
@@ -74,6 +76,11 @@
     let p = clientProto (rnc `client` ci)
     return . map sendChan . filter (\c -> clientProto c == p) . map (client rnc) $ allClients rnc
 
+allChansProto :: Reader (ClientIndex, IRnC) [(ClientChan, Word16)]
+allChansProto = do
+    (ci, rnc) <- ask
+    return . map ((\c -> (sendChan c, clientProto c)) . client rnc) $ allClients rnc
+
 answerClient :: [B.ByteString] -> Reader (ClientIndex, IRnC) [Action]
 answerClient msg = liftM ((: []) . flip AnswerClients msg) thisClientChans
 
--- a/gameServer/OfficialServer/checker.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/OfficialServer/checker.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -54,7 +54,7 @@
     deriving Show
 
 serverAddress = "netserver.hedgewars.org"
-protocolNumber = "55"
+protocolNumber = "59"
 
 getLines :: Handle -> IO [B.ByteString]
 getLines h = g
@@ -175,6 +175,7 @@
         checkReplay home exe prefix chan msgs
         warningM "Check" "Started check"
     onPacket _ ("BYE" : xs) = error $ show xs
+    onPacket _ ("CHAT" : nickname : text) = infoM "Chat" $ ">>> " ++ show nickname ++ ": " ++ show text
     onPacket _ _ = return ()
 
 
@@ -189,6 +190,7 @@
     updateGlobalLogger "Network" (setLevel WARNING)
     updateGlobalLogger "Check" (setLevel DEBUG)
     updateGlobalLogger "Engine" (setLevel DEBUG)
+    updateGlobalLogger "Chat" (setLevel DEBUG)
 
     d <- getHomeDirectory
     Right (login, password) <- runErrorT $ do
--- a/gameServer/ServerState.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/ServerState.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -30,6 +30,7 @@
     io
     ) where
 
+import Control.Monad
 import Control.Monad.State.Strict
 import Data.Set as Set(Set)
 import Data.Word
--- a/gameServer/Utils.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/Utils.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -124,7 +124,7 @@
             , (57, "0.9.25")
             , (58, "1.0.0-dev")
             , (59, "1.0.0")
-            , (60, "1.0.1-dev")
+            , (60, "1.1.0-dev")
             ]
 
 askFromConsole :: B.ByteString -> IO B.ByteString
@@ -158,11 +158,16 @@
 upperCase :: B.ByteString -> B.ByteString
 upperCase = UTF8.fromString . map Char.toUpper . UTF8.toString
 
+roomNameByProto :: B.ByteString -> Word16 -> Word16 -> B.ByteString
+roomNameByProto roomName roomProto clientProto
+    | clientProto < 60 && roomProto /= clientProto = B.concat [B.pack "[v", protoNumber2ver roomProto, B.pack "] ", roomName]
+    | otherwise = roomName
+
 roomInfo :: Word16 -> B.ByteString -> RoomInfo -> [B.ByteString]
 roomInfo p n r
     | p < 46 = [
         showB $ isJust $ gameInfo r,
-        name r,
+        roomNameByProto (name r) (roomProto r) p,
         showB $ playersIn r,
         showB $ length $ teams r,
         n,
@@ -172,7 +177,18 @@
         ]
     | p < 48 = [
         showB $ isJust $ gameInfo r,
-        name r,
+        roomNameByProto (name r) (roomProto r) p,
+        showB $ playersIn r,
+        showB $ length $ teams r,
+        n,
+        Map.findWithDefault "+rnd+" "MAP" (mapParams r),
+        head (Map.findWithDefault ["Normal"] "SCRIPT" (params r)),
+        head (Map.findWithDefault ["Default"] "SCHEME" (params r)),
+        head (Map.findWithDefault ["Default"] "AMMO" (params r))
+        ]
+    | p < 60 = [
+        B.pack roomFlags,
+        roomNameByProto (name r) (roomProto r) p,
         showB $ playersIn r,
         showB $ length $ teams r,
         n,
@@ -190,7 +206,8 @@
         Map.findWithDefault "+rnd+" "MAP" (mapParams r),
         head (Map.findWithDefault ["Normal"] "SCRIPT" (params r)),
         head (Map.findWithDefault ["Default"] "SCHEME" (params r)),
-        head (Map.findWithDefault ["Default"] "AMMO" (params r))
+        head (Map.findWithDefault ["Default"] "AMMO" (params r)),
+        showB $ roomProto r
         ]
     where
         roomFlags = concat [
--- a/gameServer/Votes.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/Votes.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -19,6 +19,7 @@
 {-# LANGUAGE OverloadedStrings #-}
 module Votes where
 
+import Control.Monad
 import Control.Monad.Reader
 import Control.Monad.State.Strict
 import ServerState
--- a/gameServer/hedgewars-server.cabal	Sun Mar 24 14:19:02 2024 -0400
+++ b/gameServer/hedgewars-server.cabal	Sun Mar 24 14:34:27 2024 -0400
@@ -1,5 +1,5 @@
 Name:                hedgewars-server
-Version:             0.1
+Version:             1.1.0
 Synopsis:            hedgewars server
 Description:         hedgewars server
 Homepage:            https://www.hedgewars.org/
@@ -11,36 +11,71 @@
 Cabal-version:       >=1.10
 
 
+flag officialServer
+  description: Build for official server
+  default:     False
+  manual:      True
+
 Executable hedgewars-server
   main-is: hedgewars-server.hs
+  other-modules:
+    Actions
+    ClientIO
+    CommandHelp
+    ConfigFile
+    Consts
+    CoreTypes
+    Data.TConfig
+    EngineInteraction
+    FloodDetection
+    HWProtoChecker
+    HWProtoCore
+    HWProtoInRoomState
+    HWProtoLobbyState
+    HWProtoNEState
+    HandlerUtils
+    JoinsMonitor
+    NetRoutines
+    OfficialServer.DBInteraction
+    Opts
+    RoomsAndClients
+    ServerCore
+    ServerState
+    Store
+    Utils
+    Votes
 
   default-language:    Haskell2010
 
 -- Don't forget to update INSTALL.md and .travis.yml when you change these dependencies!
   Build-depends:
     base >= 4.8,
-    containers,
-    vector,
+    binary >= 0.8.5.1,
     bytestring,
-    network >= 2.3 && < 3.0,
-    random,
-    time,
-    mtl >= 2,
-    sandi,
+    containers,
+    deepseq,
+    entropy,
     hslogger,
+    mtl >= 2,
+    network >= 3.0 && < 3.2,
+    network-bsd >= 2.8.1 && < 2.9,
     process,
-    deepseq,
-    utf8-string,
+    random,
+    regex-tdfa,
+    sandi,
     SHA,
-    entropy,
-    zlib >= 0.5.3 && < 0.7,
-    regex-tdfa,
-    binary >= 0.8.5.1,
+    time,
+    utf8-string,
+    vector
 
 -- These dependencies are for OFFICIAL_SERVER only and do not need to be mentioned in docs
-    yaml >= 0.8.30,
-    aeson,
-    text >= 1.2
+  if flag(officialServer)
+    build-depends:
+      aeson,
+      text >= 1.2,
+      yaml >= 0.8.30,
+      zlib >= 0.5.3 && < 0.7
+    cpp-options:   -DOFFICIAL_SERVER
 
   if !os(windows)
     build-depends: unix
--- a/hedgewars/ArgParsers.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/ArgParsers.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -106,6 +106,7 @@
     WriteLn(stdout, '  --no-hogtag: Disable hedgehog name tags');
     WriteLn(stdout, '  --no-healthtag: Disable hedgehog health tags');
     WriteLn(stdout, '  --translucent-tags: Enable translucent name and health tags');
+    WriteLn(stdout, '  --chat-size [default chat size in percent]');
     WriteLn(stdout, '  --showfps: Show frames per second');
     WriteLn(stdout, '');
     WriteLn(stdout, 'Miscellaneous:');
@@ -243,13 +244,13 @@
 end;
 
 function parseParameter(cmd:string; arg:string; var paramIndex:LongInt): Boolean;
-const reallyAll: array[0..34] of shortstring = (
+const reallyAll: array[0..37] of shortstring = (
                 '--prefix', '--user-prefix', '--locale', '--fullscreen-width', '--fullscreen-height', '--width',
                 '--height', '--maximized', '--frame-interval', '--volume','--nomusic', '--nosound', '--nodampen',
                 '--fullscreen', '--showfps', '--altdmg', '--low-quality', '--raw-quality', '--stereo', '--nick',
                 '--zoom',
   {internal}    '--internal', '--port', '--recorder', '--landpreview',
-  {misc}        '--stats-only', '--gci', '--help','--protocol', '--no-teamtag','--no-hogtag','--no-healthtag','--translucent-tags','--lua-test','--no-holiday-silliness');
+  {misc}        '--stats-only', '--gci', '--help','--protocol', '--no-teamtag','--no-hogtag','--no-healthtag','--translucent-tags','--lua-test','--no-holiday-silliness','--chat-size', '--prefix64', '--user-prefix64');
 var cmdIndex: byte;
 begin
     parseParameter:= false;
@@ -297,6 +298,9 @@
         {--translucent-tags}    32 : cTagsMask := cTagsMask or htTransparent;
         {--lua-test}            33 : begin cTestLua := true; SetSound(false); cScriptName := getstringParameter(arg, paramIndex, parseParameter); WriteLn(stdout, 'Lua test file specified: ' + cScriptName);end;
         {--no-holiday-silliness} 34 : cHolidaySilliness:= false;
+        {--chat-size}           35 : cDefaultChatScale := 1.0 * getLongIntParameter(arg, paramIndex, parseParameter) / 100;
+        {--prefix64}            36: PathPrefix := DecodeBase64(getstringParameter(arg, paramIndex, parseParameter));
+        {--user-prefix64}       37: UserPathPrefix := DecodeBase64(getstringParameter(arg, paramIndex, parseParameter));
     else
         begin
         //Assume the first "non parameter" is the demo file, anything else is invalid
--- a/hedgewars/CMakeLists.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/CMakeLists.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -1,10 +1,10 @@
 enable_language(Pascal)
 
 find_package(SDL2 REQUIRED CONFIG)
-find_package(SDL2_image 2 REQUIRED)
-find_package(SDL2_net 2 REQUIRED)
-find_package(SDL2_ttf 2 REQUIRED)
-find_package(SDL2_mixer 2 REQUIRED)
+find_package(SDL2_image REQUIRED CONFIG)
+find_package(SDL2_net REQUIRED CONFIG)
+find_package(SDL2_ttf REQUIRED CONFIG)
+find_package(SDL2_mixer REQUIRED CONFIG)
 
 include(CheckLibraryExists)
 include(${CMAKE_MODULE_PATH}/utils.cmake)
@@ -22,6 +22,12 @@
     endif()
 endif(UNIX)
 
+# FPC 3.2.2 does not create s COFF file for the engine icon, but still includes it
+# in the list of files to be linked, leading to a linking failure
+if(${CMAKE_Pascal_COMPILER_VERSION} VERSION_GREATER_EQUAL 3.2)
+    add_flag_append(CMAKE_Pascal_FLAGS "-dSKIP_RESOURCES")
+endif()
+
 # convert list into pascal array
 if(FONTS_DIRS)
   list(LENGTH FONTS_DIRS ndirs)
@@ -168,8 +174,18 @@
 endif()
 
 # PhysFS
-get_filename_component(PHYSFS_LIBRARY_DIR ${PHYSFS_LIBRARY} PATH)
-add_flag_append(CMAKE_Pascal_FLAGS "-Fl${PHYSFS_LIBRARY}")
+if (DEFINED PHYSFS_LIBRARY_RELEASE)
+    if(${USE_DEBUG_LIBRARIES})
+        get_filename_component(PHYSFS_LIBRARY_DIR ${PHYSFS_LIBRARY_DEBUG} PATH)
+        add_flag_append(CMAKE_Pascal_FLAGS "-Fl${PHYSFS_LIBRARY_DEBUG}")
+    else()    
+        get_filename_component(PHYSFS_LIBRARY_DIR ${PHYSFS_LIBRARY_RELEASE} PATH)
+        add_flag_append(CMAKE_Pascal_FLAGS "-Fl${PHYSFS_LIBRARY_RELEASE}")
+    endif()
+else()
+    get_filename_component(PHYSFS_LIBRARY_DIR ${PHYSFS_LIBRARY} PATH)
+    add_flag_append(CMAKE_Pascal_FLAGS "-Fl${PHYSFS_LIBRARY}")
+endif()
 
 list(APPEND HW_LINK_LIBS physlayer)
 
--- a/hedgewars/hwengine.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/hwengine.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -19,8 +19,10 @@
 {$INCLUDE "options.inc"}
 
 {$IFDEF WINDOWS}
+{$IFNDEF SKIP_RESOURCES}
 {$R res/hwengine.rc}
 {$ENDIF}
+{$ENDIF}
 
 {$IFDEF HWLIBRARY}
 unit hwengine;
--- a/hedgewars/uAI.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uAI.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -100,15 +100,36 @@
 procedure TestAmmos(var Actions: TActions; Me: PGear; rareChecks: boolean);
 var BotLevel: Byte;
     ap: TAttackParams;
-    Score, i, t, n, dAngle: LongInt;
+    Score, i, l, t, n, dAngle: LongInt;
     a, aa: TAmmoType;
-    useThisActions: boolean;
+    useThisActions, hasLowGrav: boolean;
 begin
 BotLevel:= Me^.Hedgehog^.BotLevel;
-windSpeed:= hwFloat2Float(cWindSpeed);
+aiWindSpeed:= hwFloat2Float(cWindSpeed);
+aiLaserSighting:= (cLaserSighting) or (HHHasAmmo(Me^.Hedgehog^, amLaserSight) > 0);
+aiGravity:= cGravity;
+aiGravityf:= cGravityf;
+aiHogsInTeam:= CountHogsInTeam(Me, true);
+hasLowGrav:= HHHasAmmo(Me^.Hedgehog^, amLowGravity) > 0;
 useThisActions:= false;
 Me^.AIHints:= Me^.AIHints and (not aihAmmosChanged);
 
+for l:= 0 to 1 do // 0 = test with normal gravity. 1 = test with low gravity
+if (l = 0) or ((hasLowGrav) and (not cLowGravity)) then
+begin
+// simulate normal or low gravity
+if (l = 0) then
+    begin
+    aiGravity:= cGravity;
+    aiGravityf:= cGravityf;
+    end
+else if (l = 1) then
+    begin
+    // We calculate the values to better support scripts like Gravity.
+    // This might have a slight inaccuracy, but none have been spotted in testing.
+    aiGravity:= cGravity / _2;
+    aiGravityf:= cGravityf / 2;
+    end;
 for i:= 0 to Pred(Targets.Count) do
     if (Targets.ar[i].Score >= 0) and (not StopThinking) then
         begin
@@ -120,10 +141,11 @@
         if (CanUseAmmo[a])
             and ((not rareChecks) or ((AmmoTests[a].flags and amtest_Rare) = 0))
             and ((i = 0) or ((AmmoTests[a].flags and amtest_NoTarget) = 0))
+            and ((l = 0) or ((AmmoTests[a].flags and amtest_NoLowGravity) = 0))
             then
             begin
 {$HINTS OFF}
-            Score:= AmmoTests[a].proc(Me, Targets.ar[i], BotLevel, ap);
+            Score:= AmmoTests[a].proc(Me, Targets.ar[i], BotLevel, ap, AmmoTests[a].flags);
 {$HINTS ON}
             if (Score > BadTurn) and (Actions.Score + Score > BestActions.Score) then
                 if (BestActions.Score < 0) or (Actions.Score + Score > BestActions.Score + Byte(BotLevel - 1) * 2048) then
@@ -141,23 +163,36 @@
 
                     BestActions.Score:= Actions.Score + Score;
 
-                    // if not between shots, activate invulnerability/vampirism if available
+                    // if not between shots, activate invulnerability/vampirism/etc. if available
                     if CurrentHedgehog^.MultiShootAttacks = 0 then
                         begin
-                        if (HHHasAmmo(Me^.Hedgehog^, amInvulnerable) > 0) and (Me^.Hedgehog^.Effects[heInvulnerable] = 0) then
+                        if (not cLaserSighting) and (HHHasAmmo(Me^.Hedgehog^, amLaserSight) > 0) and ((AmmoTests[a].flags and amtest_LaserSight) <> 0) then
+                            begin
+                            AddAction(BestActions, aia_Weapon, Longword(amLaserSight), 80, 0, 0);
+                            AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
+                            AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
+                            end;
+                        if ((AmmoTests[a].flags and amtest_NoInvulnerable) = 0) and
+                            (HHHasAmmo(Me^.Hedgehog^, amInvulnerable) > 0) and (Me^.Hedgehog^.Effects[heInvulnerable] = 0) then
                             begin
                             AddAction(BestActions, aia_Weapon, Longword(amInvulnerable), 80, 0, 0);
                             AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
                             AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
                             end;
-
+                        if (l = 1) and (hasLowGrav) then
+                            begin
+                            AddAction(BestActions, aia_Weapon, Longword(amLowGravity), 80, 0, 0);
+                            AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
+                            AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
+                            end;
                         if (HHHasAmmo(Me^.Hedgehog^, amExtraDamage) > 0) and (cDamageModifier <> _1_5) then
                             begin
                             AddAction(BestActions, aia_Weapon, Longword(amExtraDamage), 80, 0, 0);
                             AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
                             AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
                             end;
-                        if (HHHasAmmo(Me^.Hedgehog^, amVampiric) > 0) and (not cVampiric) then
+                        if (not cVampiric) and ((AmmoTests[a].flags and amtest_NoVampiric) = 0) and
+                            (HHHasAmmo(Me^.Hedgehog^, amVampiric) > 0) then
                             begin
                             AddAction(BestActions, aia_Weapon, Longword(amVampiric), 80, 0, 0);
                             AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
@@ -165,21 +200,28 @@
                             end;
                         end;
 
+                    if (ap.Angle > 0) then
+                        AddAction(BestActions, aia_LookRight, 0, 200, 0, 0)
+                    else if (ap.Angle < 0) then
+                        AddAction(BestActions, aia_LookLeft, 0, 200, 0, 0);
+
                     AddAction(BestActions, aia_Weapon, Longword(a), 300 + random(400), 0, 0);
 
+                    if (Ammoz[a].Ammo.Propz and ammoprop_Timerable) <> 0 then
+                        AddAction(BestActions, aia_Timer, ap.Time div 1000, 400, 0, 0);
+
+                    if ((Ammoz[a].Ammo.Propz and ammoprop_SetBounce) > 0) and (ap.Bounce > 0) then
+                        begin
+                        AddAction(BestActions, aia_Precise, aim_push, 10, 0, 0);
+                        AddAction(BestActions, aia_Timer, ap.Bounce, 200, 0, 0);
+                        AddAction(BestActions, aia_Precise, aim_release, 10, 0, 0);
+                        end;
+
                     if (Ammoz[a].Ammo.Propz and ammoprop_NeedTarget) <> 0 then
                         begin
                         AddAction(BestActions, aia_Put, 0, 8, ap.AttackPutX, ap.AttackPutY)
                         end;
 
-                    if (ap.Angle > 0) then
-                        AddAction(BestActions, aia_LookRight, 0, 200, 0, 0)
-                    else if (ap.Angle < 0) then
-                        AddAction(BestActions, aia_LookLeft, 0, 200, 0, 0);
-
-                    if (Ammoz[a].Ammo.Propz and ammoprop_Timerable) <> 0 then
-                        AddAction(BestActions, aia_Timer, ap.Time div 1000, 400, 0, 0);
-
                     if (Ammoz[a].Ammo.Propz and ammoprop_NoCrosshair) = 0 then
                         begin
                         dAngle:= LongInt(Me^.Angle) - Abs(ap.Angle);
@@ -216,12 +258,28 @@
                                 n:= 1 else n:= ap.AttacksNum;
 
                             AddAction(BestActions, aia_attack, aim_push, 650 + random(300), 0, 0);
+                            if (a = amResurrector) and (BotLevel < 4) then
+                                AddAction(BestActions, aia_Up, aim_push, 1, 0, 0);
                             for t:= 2 to n do
                                 begin
                                 AddAction(BestActions, aia_attack, aim_push, 150, 0, 0);
                                 AddAction(BestActions, aia_attack, aim_release, ap.Power, 0, 0);
                                 end;
-                            AddAction(BestActions, aia_attack, aim_release, ap.Power, 0, 0);
+                            if (a = amResurrector) and (BotLevel < 4) then
+                                begin
+                                AddAction(BestActions, aia_Up, aim_release, ap.Power, 0, 0);
+                                AddAction(BestActions, aia_attack, aim_release, 0, 0, 0);
+                                end
+                            else
+                                AddAction(BestActions, aia_attack, aim_release, ap.Power, 0, 0);
+
+                            // Just for fun: 0.01% chance for kamikaze with "wishes" ;-)
+                            if (a = amKamikaze) and (random(10000) = 0) then
+                                begin
+                                AddAction(BestActions, aia_Switch, 0, 1, 0, 0);
+                                AddAction(BestActions, aia_Precise, aim_push, 1, 0, 0);
+                                AddAction(BestActions, aia_Precise, aim_release, 5000, 0, 0);
+                                end;
                             end;
 
                     if (Ammoz[a].Ammo.Propz and ammoprop_Track) <> 0 then
@@ -242,12 +300,15 @@
             or StopThinking
         end
 end;
+aiGravity:= cGravity;
+aiGravityf:= cGravityf;
+end;
 
 procedure Walk(Me: PGear; var Actions: TActions);
 const FallPixForBranching = cHHRadius;
 var
     maxticks, oldticks, steps, tmp: Longword;
-    BaseRate, BestRate, Rate: LongInt;
+    BaseRate, BestRate, Rate, i: LongInt;
     GoInfo: TGoInfo;
     CanGo: boolean;
     AltMe: TGear;
@@ -278,12 +339,12 @@
 BestRate:= RatePlace(Me);
 BaseRate:= Max(BestRate, 0);
 
-// switch to 'skip' if we cannot move because of mouse cursor being shown
+// unselect weapon if we cannot move because of mouse cursor being shown
 if (Ammoz[Me^.Hedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) <> 0 then
-    AddAction(Actions, aia_Weapon, Longword(amSkip), 100 + random(200), 0, 0);
+    AddAction(Actions, aia_Weapon, Longword(amNothing), 100 + random(200), 0, 0);
 
 if ((CurrentHedgehog^.MultiShootAttacks = 0) or ((Ammoz[Me^.Hedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NoMoveAfter) = 0))
-    and (CurrentHedgehog^.Effects[heArtillery] = 0) and (cGravityf <> 0) then
+    and (CurrentHedgehog^.Effects[heArtillery] = 0) and (aiGravityf <> 0) then
     begin
     tmp:= random(2) + 1;
     Push(Actions, Me^, tmp);
@@ -321,6 +382,13 @@
                     AddAction(BestActions, aia_Weapon, Longword(amExtraTime), 80, 0, 0);
                     AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
                     AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
+                    // Better bot levels know they can spam extra time if infinite
+                    if (BotLevel < 3) and (HHHasAmmo(Me^.Hedgehog^, amExtraTime) = AMMO_INFINITE) then
+                        for i:= 1 to 3 do
+                            begin
+                            AddAction(BestActions, aia_attack, aim_push, 100, 0, 0);
+                            AddAction(BestActions, aia_attack, aim_release, 100, 0, 0);
+                            end;
                 end;
 
                 break;
@@ -422,6 +490,8 @@
     Actions: TActions;
 begin
 dmgMod:= 0.01 * hwFloat2Float(cDamageModifier) * cDamagePercent;
+aiGravity:= cGravity;
+aiGravityf:= cGravityf;
 StartTicks:= GameTicks;
 
 currHedgehogIndex:= CurrentTeam^.CurrHedgehog;
@@ -492,7 +562,14 @@
             Me^.AIHints := ME^.AIHints and (not aihAmmosChanged);
             end;
 
-        end else SDL_Delay(100)
+        end
+    else
+        begin
+        // No target found, skip turn
+        BestActions.Count:= 0;
+        AddAction(BestActions, aia_Skip, 0, 250, 0, 0);
+        Me^.AIHints := ME^.AIHints and (not aihAmmosChanged);
+        end
 else
     begin
     BackMe:= Me^;
@@ -545,11 +622,6 @@
 ThinkingHH:= Me;
 
 FillTargets;
-if Targets.Count = 0 then
-    begin
-    OutError('AI: no targets!?', false);
-    exit
-    end;
 
 FillBonuses(((Me^.State and gstAttacked) <> 0) and (not isInMultiShoot) and ((GameFlags and gfInfAttack) = 0));
 
--- a/hedgewars/uAIActions.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uAIActions.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -31,6 +31,7 @@
     aia_Up         = 5;
     aia_Down       = 6;
     aia_Switch     = 7;
+    aia_Precise    = 8;
 
     aia_Weapon     = $8000;
     aia_WaitXL     = $8001;
@@ -73,7 +74,7 @@
 var PrevX: LongInt = 0;
     timedelta: Longword = 0;
 
-const ActionIdToStr: array[0..7] of string[16] = (
+const ActionIdToStr: array[0..8] of string[16] = (
 {aia_none}           '',
 {aia_Left}           'left',
 {aia_Right}          'right',
@@ -81,7 +82,8 @@
 {aia_attack}         'attack',
 {aia_Up}             'up',
 {aia_Down}           'down',
-{aia_Switch}         'switch'
+{aia_Switch}         'switch',
+{aia_Precise}        'precise'
                      );
 
 {$IFDEF TRACEAIACTIONS}
--- a/hedgewars/uAIAmmoTests.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uAIAmmoTests.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -25,39 +25,60 @@
     amtest_Rare            = $00000001; // check only several positions
     amtest_NoTarget        = $00000002; // each pos, but no targetting
     amtest_MultipleAttacks = $00000004; // test could result in multiple attacks, set AttacksNum
+    amtest_NoTrackFall     = $00000008; // skip fall tracing.  
+    amtest_LaserSight      = $00000010; // supports laser sighting
+    amtest_NoVampiric      = $00000020; // don't use vampirism with this ammo
+    amtest_NoInvulnerable  = $00000040; // don't use invulnerable with this with ammo
+    amtest_NoLowGravity    = $00000080; // don't use low gravity with this with ammo
 
-var windSpeed: real;
+var aiWindSpeed: real;
+    aiGravity: hwFloat;
+    aiGravityf: real;
+    aiLaserSighting: boolean;
+    aiHogsInTeam: LongInt;
 
 type TAttackParams = record
-        Time, AttacksNum: Longword;
+        Time, Bounce, AttacksNum: Longword;
         Angle, Power: LongInt;
         ExplX, ExplY, ExplR: LongInt;
         AttackPutX, AttackPutY: LongInt;
         end;
 
-function TestBazooka(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestBee(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestSnowball(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestGrenade(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestMolotov(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestClusterBomb(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestWatermelon(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestDrillRocket(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestMortar(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestShotgun(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestDesertEagle(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestSniperRifle(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestBaseballBat(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestFirePunch(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestWhip(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestKamikaze(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestAirAttack(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestTeleport(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestHammer(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestCake(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-function TestDynamite(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestBazooka(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestBee(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestSnowball(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestGrenade(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestMolotov(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestClusterBomb(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestWatermelon(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestDrillRocket(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestRCPlane(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestMortar(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestShotgun(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestDesertEagle(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestSniperRifle(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestBaseballBat(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestFirePunch(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestWhip(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestKamikaze(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestAirAttack(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestDrillStrike(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestMineStrike(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestSineGun(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestSMine(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestPiano(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestTeleport(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestHammer(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestResurrector(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestCake(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestSeduction(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestDynamite(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestMine(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestKnife(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestAirMine(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+function TestMinigun(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 
-type TAmmoTestProc = function (Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+type TAmmoTestProc = function (Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
     TAmmoTest = record
             proc: TAmmoTestProc;
             flags: Longword;
@@ -70,34 +91,34 @@
             (proc: @TestClusterBomb; flags: 0), // amClusterBomb
             (proc: @TestBazooka;     flags: 0), // amBazooka
             (proc: @TestBee;         flags: amtest_Rare), // amBee
-            (proc: @TestShotgun;     flags: 0), // amShotgun
+            (proc: @TestShotgun;     flags: amtest_LaserSight), // amShotgun
             (proc: nil;              flags: 0), // amPickHammer
             (proc: nil;              flags: 0), // amSkip
             (proc: nil;              flags: 0), // amRope
-            (proc: nil;              flags: 0), // amMine
-            (proc: @TestDesertEagle; flags: amtest_MultipleAttacks), // amDEagle
+            (proc: @TestMine;        flags: amtest_NoTarget), // amMine
+            (proc: @TestDesertEagle; flags: amtest_MultipleAttacks or amtest_LaserSight), // amDEagle
             (proc: @TestDynamite;    flags: amtest_NoTarget), // amDynamite
             (proc: @TestFirePunch;   flags: amtest_NoTarget), // amFirePunch
-            (proc: @TestWhip;        flags: amtest_NoTarget), // amWhip
-            (proc: @TestBaseballBat; flags: amtest_NoTarget), // amBaseballBat
+            (proc: @TestWhip;        flags: amtest_NoTarget or amtest_NoInvulnerable), // amWhip
+            (proc: @TestBaseballBat; flags: amtest_NoTarget or amtest_NoInvulnerable), // amBaseballBat
             (proc: nil;              flags: 0), // amParachute
             (proc: @TestAirAttack;   flags: amtest_Rare), // amAirAttack
-            (proc: nil;              flags: 0), // amMineStrike
+            (proc: @TestMineStrike;  flags: amtest_Rare), // amMineStrike
             (proc: nil;              flags: 0), // amBlowTorch
             (proc: nil;              flags: 0), // amGirder
             (proc: nil;              flags: 0), // amTeleport
             //(proc: @TestTeleport;    flags: amtest_OnTurn), // amTeleport
             (proc: nil;              flags: 0), // amSwitch
             (proc: @TestMortar;      flags: 0), // amMortar
-            (proc: @TestKamikaze;    flags: 0), // amKamikaze
+            (proc: @TestKamikaze;    flags: amtest_LaserSight or amtest_NoInvulnerable or amtest_NoVampiric), // amKamikaze
             (proc: @TestCake;        flags: amtest_Rare or amtest_NoTarget), // amCake
-            (proc: nil;              flags: 0), // amSeduction
+            (proc: @TestSeduction;   flags: amtest_NoTarget), // amSeduction
             (proc: @TestWatermelon;  flags: 0), // amWatermelon
             (proc: nil;              flags: 0), // amHellishBomb
             (proc: nil;              flags: 0), // amNapalm
             (proc: @TestDrillRocket; flags: 0), // amDrill
             (proc: nil;              flags: 0), // amBallgun
-            (proc: nil;              flags: 0), // amRCPlane
+            (proc: @TestRCPlane;     flags: amtest_LaserSight), // amRCPlane
             (proc: nil;              flags: 0), // amLowGravity
             (proc: nil;              flags: 0), // amExtraDamage
             (proc: nil;              flags: 0), // amInvulnerable
@@ -109,23 +130,24 @@
             (proc: @TestMolotov;     flags: 0), // amMolotov
             (proc: nil;              flags: 0), // amBirdy
             (proc: nil;              flags: 0), // amPortalGun
-            (proc: nil;              flags: 0), // amPiano
-            (proc: @TestGrenade;     flags: 0), // amGasBomb
-            (proc: @TestShotgun;     flags: 0), // amSineGun
+            (proc: @TestPiano;       flags: amtest_Rare or amtest_NoInvulnerable or amtest_NoVampiric), // amPiano
+            (proc: @TestGrenade;     flags: amtest_NoTrackFall), // amGasBomb
+            (proc: @TestSineGun;     flags: amtest_NoVampiric), // amSineGun
             (proc: nil;              flags: 0), // amFlamethrower
-            (proc: @TestGrenade;     flags: 0), // amSMine
-            (proc: @TestHammer;      flags: amtest_NoTarget), // amHammer
-            (proc: nil;              flags: 0), // amResurrector
-            (proc: nil;              flags: 0), // amDrillStrike
-            (proc: nil;              flags: 0), // amSnowball
+            (proc: @TestSMine;       flags: 0), // amSMine
+            (proc: @TestHammer;      flags: amtest_NoTarget or amtest_NoInvulnerable), // amHammer
+            (proc: @TestResurrector; flags: amtest_NoTarget or amtest_NoInvulnerable or amtest_NoVampiric or amtest_NoLowGravity), // amResurrector
+            (proc: @TestDrillStrike; flags: amtest_Rare), // amDrillStrike
+            (proc: @TestSnowball;    flags: amtest_NoInvulnerable or amtest_NoVampiric), // amSnowball
             (proc: nil;              flags: 0), // amTardis
             (proc: nil;              flags: 0), // amLandGun
             (proc: nil;              flags: 0), // amIceGun
-            (proc: nil;              flags: 0), // amKnife
+            (proc: @TestKnife;       flags: 0), // amKnife
             (proc: nil;              flags: 0), // amRubber
-            (proc: nil;              flags: 0), // amAirMine
+            (proc: @TestAirMine;     flags: amtest_LaserSight), // amAirMine
             (proc: nil;              flags: 0), // amCreeper
-            (proc: @TestShotgun;     flags: 0)  // amMinigun
+            (proc: @TestMinigun;     flags: amtest_LaserSight),  // amMinigun
+            (proc: nil;              flags: 0)  // amSentry
             );
 
 implementation
@@ -136,7 +158,7 @@
 Metric:= abs(x1 - x2) + abs(y1 - y2)
 end;
 
-function TestBazooka(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestBazooka(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 const cExtraTime = 300;
 var Vx, Vy, r, mX, mY: real;
     rTime: LongInt;
@@ -146,6 +168,7 @@
     t: LongInt;
     value: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
 mX:= hwFloat2Float(Me^.X);
 mY:= hwFloat2Float(Me^.Y);
 ap.Time:= 0;
@@ -159,9 +182,9 @@
 repeat
     rTime:= rTime + 300 + Level * 50 + random(300);
     if (WorldEdge = weWrap) and (random(2)=0) then
-         Vx:= - windSpeed * rTime * 0.5 + (targXWrap + AIrndSign(2) + AIrndOffset(Targ, Level) - mX) / rTime
-    else Vx:= - windSpeed * rTime * 0.5 + (Targ.Point.X + AIrndSign(2) + AIrndOffset(Targ, Level) - mX) / rTime;
-    Vy:= cGravityf * rTime * 0.5 - (Targ.Point.Y + 1 - mY) / rTime;
+         Vx:= - aiWindSpeed * rTime * 0.5 + (targXWrap + AIrndSign(2) + AIrndOffset(Targ, Level) - mX) / rTime
+    else Vx:= - aiWindSpeed * rTime * 0.5 + (Targ.Point.X + AIrndSign(2) + AIrndOffset(Targ, Level) - mX) / rTime;
+    Vy:= aiGravityf * rTime * 0.5 - (Targ.Point.Y + 1 - mY) / rTime;
     r:= sqr(Vx) + sqr(Vy);
     if not (r > 1) then
         begin
@@ -175,9 +198,9 @@
             x:= x + dX;
 
             y:= y + dY;
-            dX:= dX + windSpeed;
+            dX:= dX + aiWindSpeed;
             //dX:= CheckBounce(x,dX);
-            dY:= dY + cGravityf;
+            dY:= dY + aiGravityf;
             dec(t)
         until (((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 5)) or
                ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 5))) or (t < -cExtraTime);
@@ -222,7 +245,7 @@
     repeat
         x:= x + dx;
         y:= y + dy;
-        dy:= dy + cGravityf;
+        dy:= dy + aiGravityf;
         f:= ((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 5)) or
            ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 5));
         dec(t)
@@ -267,12 +290,13 @@
         calcBeeFlight:= BadTurn
 end;
 
-function TestBee(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestBee(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 var i, j: LongInt;
     valueResult, v, a, p: LongInt;
     mX, mY: real;
     eX, eY: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
     if Level > 1 then
         exit(BadTurn);
 
@@ -320,7 +344,7 @@
         TestBee:= BadTurn // no digging
 end;
 
-function TestDrillRocket(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestDrillRocket(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 var Vx, Vy, r, mX, mY: real;
     rTime: LongInt;
     EX, EY: LongInt;
@@ -331,6 +355,7 @@
     t2: real;
     timer: Longint;
 begin
+Flags:= Flags; // avoid compiler hint
     if (Level > 3) then exit(BadTurn);
 
     mX:= hwFloat2Float(Me^.X);
@@ -347,9 +372,9 @@
     repeat
         rTime:= rTime + 300 + Level * 50 + random(300);
         if (WorldEdge = weWrap) and (random(2)=0) then
-             Vx:= - windSpeed * rTime * 0.5 + (targXWrap + AIrndSign(2) - mX) / rTime
-        else Vx:= - windSpeed * rTime * 0.5 + (Targ.Point.X + AIrndSign(2) - mX) / rTime;
-        Vy:= cGravityf * rTime * 0.5 - (Targ.Point.Y - 35 - mY) / rTime;
+             Vx:= - aiWindSpeed * rTime * 0.5 + (targXWrap + AIrndSign(2) - mX) / rTime
+        else Vx:= - aiWindSpeed * rTime * 0.5 + (Targ.Point.X + AIrndSign(2) - mX) / rTime;
+        Vy:= aiGravityf * rTime * 0.5 - (Targ.Point.Y - 35 - mY) / rTime;
         r:= sqr(Vx) + sqr(Vy);
         if not (r > 1) then
             begin
@@ -362,8 +387,8 @@
                 x:= CheckWrap(x);
                 x:= x + dX;
                 y:= y + dY;
-                dX:= dX + windSpeed;
-                dY:= dY + cGravityf;
+                dX:= dX + aiWindSpeed;
+                dY:= dY + aiGravityf;
                 dec(t)
             until (((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 5)) or
                    ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 5))) or (y > cWaterLine);
@@ -389,10 +414,12 @@
             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 Level = 1 then
+            if (EY < cWaterLine-5) and (timer > 0) and (Abs(Targ.Point.X - trunc(x)) + Abs(Targ.Point.Y - trunc(y)) > 21) then
+                value:= BadTurn
+            else if Level = 1 then
                 value:= RateExplosion(Me, EX, EY, 101, afTrackFall or afErasesLand)
-            else value:= RateExplosion(Me, EX, EY, 101);
+            else
+                value:= RateExplosion(Me, EX, EY, 101);
             if valueResult <= value then
                 begin
                 ap.Angle:= DxDy2AttackAnglef(Vx, Vy) + AIrndSign(random((Level - 1) * 9));
@@ -407,8 +434,91 @@
     TestDrillRocket:= valueResult
 end;
 
+function TestRCPlane(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const
+    MIN_RANGE =  200;
+var Vx, Vy, meX, meY, x, y: real;
+    rx, ry, valueResult: LongInt;
+    range, maxRange: integer;
+begin
+// This is a very simple test to let a RC plane fly in a straight line, without dropping any bombs
+// TODO: Teach AI how to steer
+// TODO: Teach AI how to drop bombs
+// TODO: Teach AI how to predict fire behavior
+Flags:= Flags; // avoid compiler hint
+if Level = 5 then
+    exit(BadTurn)
+else if Level = 4 then
+    maxRange:= 2200
+else if Level = 3 then
+    maxRange:= 2900
+else if Level = 2 then
+    maxRange:= 3500
+else
+    maxRange:= 3900;
+TestRCPlane:= BadTurn;
+ap.ExplR:= 0;
+ap.Time:= 0;
+ap.Power:= 1;
+meX:= hwFloat2Float(Me^.X);
+meY:= hwFloat2Float(Me^.Y);
+x:= meX;
+y:= meY;
+range:= Metric(trunc(x), trunc(y), Targ.Point.X, Targ.Point.Y);
+if ( range < MIN_RANGE ) or ( range > maxRange) then
+    exit(BadTurn);
 
-function TestSnowball(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+Vx:= (Targ.Point.X - x) * 1 / 1024;
+Vy:= (Targ.Point.Y - y) * 1 / 1024;
+ap.Angle:= DxDy2AttackAnglef(Vx, -Vy);
+repeat
+    x:= x + vX;
+    y:= y + vY;
+    rx:= trunc(x);
+    ry:= trunc(y);
+    if ((Me = CurrentHedgehog^.Gear) and TestColl(rx, ry, 8)) or
+        ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, rx, ry, 8)) then
+        begin
+        x:= x + vX * 8;
+        y:= y + vY * 8;
+
+        // Intentionally low rating to discourage use
+        if Level = 1 then
+            valueResult:= RateExplosion(Me, rx, ry, 26, afTrackFall or afErasesLand)
+        else
+            valueResult:= RateExplosion(Me, rx, ry, 26);
+
+        // Check range again in case the plane collided before target
+        range:= Metric(trunc(meX), trunc(meY), rx, ry);
+        if ( range < MIN_RANGE ) or ( range > maxRange) then
+            exit(BadTurn);
+
+        // If impact location is close, above us and wind blows in our direction,
+        // there's a risk of fire flying towards us, so fail in this case.
+        if (Level < 3) and (range <= 600) and (meY >= ry) and
+            (((ap.Angle < 0) and (aiWindSpeed > 0)) or ((ap.Angle > 0) and (aiWindSpeed < 0))) then
+            exit(BadTurn);
+
+        // Apply inaccuracy
+        if (not aiLaserSighting) then
+            inc(ap.Angle, AIrndSign(random((Level - 1) * 9)));
+
+        if (valueResult <= 0) then
+            valueResult:= BadTurn;
+        exit(valueResult)
+        end
+until (Abs(Targ.Point.X - trunc(x)) + Abs(Targ.Point.Y - trunc(y)) < 4)
+    or (x < 0)
+    or (y < 0)
+    or (trunc(x) > LAND_WIDTH)
+    or (trunc(y) > LAND_HEIGHT);
+
+TestRCPlane:= BadTurn
+end;
+
+function TestSnowball(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const timeLimit = 5000;
+      Density : real = 0.5;
 var Vx, Vy, r: real;
     rTime: LongInt;
     EX, EY: LongInt;
@@ -418,6 +528,7 @@
     value: LongInt;
 
 begin
+Flags:= Flags; // avoid compiler hint
 meX:= hwFloat2Float(Me^.X);
 meY:= hwFloat2Float(Me^.Y);
 ap.Time:= 0;
@@ -427,14 +538,21 @@
 if (WorldEdge = weWrap) then
     if (Targ.Point.X < meX) then
          targXWrap:= Targ.Point.X + (RightX-LeftX)
-    else targXWrap:= Targ.Point.X - (RightX-LeftX);
+    else
+         targXWrap:= Targ.Point.X - (RightX-LeftX);
 repeat
-    rTime:= rTime + 300 + Level * 50 + random(1000);
+    rTime:= rTime + 300 + Level * 50 + random(300);
     if (WorldEdge = weWrap) and (random(2)=0) then
-         Vx:= - windSpeed * rTime * 0.5 + ((targXWrap + AIrndSign(2)) - meX) / rTime
-    else Vx:= - windSpeed * rTime * 0.5 + ((Targ.Point.X + AIrndSign(2)) - meX) / rTime;
-    Vy:= cGravityf * rTime * 0.5 - (Targ.Point.Y - meY) / rTime;
+         Vx:= (targXWrap - meX) / rTime
+    else
+         Vx:= (Targ.Point.X - meX) / rTime;
+    if (GameFlags and gfMoreWind) <> 0 then
+         Vx:= -(aiWindSpeed / Density) * rTime * 0.5 + Vx
+    else
+         Vx:= -aiWindSpeed * rTime * 0.5 + Vx;
+    Vy:= aiGravityf * rTime * 0.5 - (Targ.Point.Y - meY) / rTime;
     r:= sqr(Vx) + sqr(Vy);
+
     if not (r > 1) then
         begin
         x:= meX;
@@ -445,102 +563,150 @@
         repeat
             x:= CheckWrap(x);
             x:= x + dX;
+            if (GameFlags and gfMoreWind) <> 0 then
+                dX:= dX + aiWindSpeed / Density
+            else
+                dX:= dX + aiWindSpeed;
+
             y:= y + dY;
-            dX:= dX + windSpeed;
-            dY:= dY + cGravityf;
+            dY:= dY + aiGravityf;
             dec(t)
-        until (((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 5)) or
-               ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 5))) or (t <= 0);
+        until (((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 4)) or
+               ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 4))) or (trunc(y) > cWaterLine) or (t < -timeLimit);
+
         EX:= trunc(x);
         EY:= trunc(y);
 
-        value:= RateShove(Me, trunc(x), trunc(y), 5, 1, trunc((abs(dX)+abs(dY))*20), -dX, -dY, afTrackFall);
-        // LOL copypasta: this is score for digging with... snowball
-        //if value = 0 then
-        //    value:= - Metric(Targ.Point.X, Targ.Point.Y, EX, EY) div 64;
+        // Sanity check: Make sure we're not too close to impact location
+        if (Metric(trunc(meX), trunc(meY), EX, EY) <= 40) then
+            value:= BadTurn
+        // Rate attack
+        else if (t >= -timeLimit) and (EY <= cWaterLine) then
+            // radius intentionally set to 16 for shove because lower values don't work reliably
+            value:= RateShove(Me, EX, EY, 16, 0, trunc((abs(dX)+abs(dY))*20), dX, dY, afTrackFall)
+        else
+            value:= BadTurn;
 
-        if valueResult <= value then
+        if (value = 0) and (Targ.Kind = gtHedgehog) and (Targ.Score > 0) then
+            value := BadTurn;
+
+        if (valueResult < value) or ((valueResult = value) and (Level = 1)) then
             begin
-            ap.Angle:= DxDy2AttackAnglef(Vx, Vy) + AIrndSign(random((Level - 1) * 9));
-            ap.Power:= trunc(sqrt(r) * cMaxPower) - random((Level - 1) * 17 + 1);
-            ap.ExplR:= 0;
+            ap.Angle:= DxDy2AttackAnglef(Vx, Vy) + AIrndSign(random((Level - 1) * 12));
+            ap.Power:= trunc(sqrt(r) * cMaxPower) - random((Level - 1) * 22 + 1);
             ap.ExplX:= EX;
             ap.ExplY:= EY;
             valueResult:= value
             end;
-     end
-until (rTime > 5050 - Level * 800);
+        end
+until rTime > 5050 - Level * 800;
 TestSnowball:= valueResult
 end;
 
-function TestMolotov(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-var Vx, Vy, r: real;
-    Score, EX, EY, valueResult: LongInt;
-    TestTime: LongInt;
-    targXWrap, x, y, dY, meX, meY: real;
+function TestMolotov(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const timeLimit = 50;
+      Density : real = 2.0;
+var Vx, Vy, r, meX, meY: real;
+    rTime: LongInt;
+    EX, EY: LongInt;
+    valueResult: LongInt;
+    targXWrap, x, y, dX, dY: real;
     t: LongInt;
+    value, range: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
 meX:= hwFloat2Float(Me^.X);
 meY:= hwFloat2Float(Me^.Y);
-valueResult:= BadTurn;
-TestTime:= 0;
+ap.Time:= 0;
+rTime:= 350;
 ap.ExplR:= 0;
 if (WorldEdge = weWrap) then
     if (Targ.Point.X < meX) then
          targXWrap:= Targ.Point.X + (RightX-LeftX)
     else targXWrap:= Targ.Point.X - (RightX-LeftX);
+valueResult:= BadTurn;
 repeat
-    inc(TestTime, 300);
+    rTime:= rTime + 300 + Level * 50 + random(300);
     if (WorldEdge = weWrap) and (random(2)=0) then
-         Vx:= (targXWrap - meX) / TestTime
-    else Vx:= (Targ.Point.X - meX) / TestTime;
-    Vy:= cGravityf * (TestTime div 2) - Targ.Point.Y - meY / TestTime;
+         Vx:= (targXWrap + AIrndSign(2) + AIrndOffset(Targ, Level) - meX) / rTime
+    else
+         Vx:= (Targ.Point.X + AIrndSign(2) + AIrndOffset(Targ, Level) - meX) / rTime;
+    if (GameFlags and gfMoreWind) <> 0 then
+         Vx:= -(aiWindSpeed / Density) * rTime * 0.5 + Vx;
+    Vy:= aiGravityf * rTime * 0.5 - (Targ.Point.Y + 1 - meY) / rTime;
     r:= sqr(Vx) + sqr(Vy);
+
     if not (r > 1) then
         begin
         x:= meX;
         y:= meY;
+        dX:= Vx;
         dY:= -Vy;
-        t:= TestTime;
+        t:= rTime;
         repeat
             x:= CheckWrap(x);
-            x:= x + Vx;
+            x:= x + dX;
+            if (GameFlags and gfMoreWind) <> 0 then
+                dX:= dX + aiWindSpeed / Density;
+
             y:= y + dY;
-            dY:= dY + cGravityf;
+            dY:= dY + aiGravityf;
             dec(t)
-        until (((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 6)) or
-               ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 6))) or (t = 0);
+        until (((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 5)) or
+               ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 5))) or (t < -timeLimit);
+
         EX:= trunc(x);
         EY:= trunc(y);
-        if t < 50 then
-            Score:= RateExplosion(Me, EX, EY, 97)  // average of 17 attempts, most good, but some failing spectacularly
-        else
-            Score:= BadTurn;
+        range:= Metric(trunc(meX), trunc(meY), EX, EY);
 
-        if valueResult < Score then
+        // Sanity check 1: Make sure we've hit a hedgehog or object
+        if not TestCollHogsOrObjects(EX, EY, 5) then
+            value:= BadTurn
+        // Sanity check 2: Make sure we're not too close to impact location
+        else if (range < 150) and (Level < 5) then
+            value:= BadTurn
+        // Sanity check 3: If impact location is close, above us and wind blows
+        // towards us, there's a risk of fire flying towards us, so fail in this case.
+        else if (Level < 3) and (range <= 1000) and (trunc(meY) >= EY) and
+            ((ap.Angle < 0) <> (aiWindSpeed < 0)) then
+            value:= BadTurn
+        // Timeout
+        else if t < -timeLimit then
+            value:= BadTurn
+        else
+        // Valid hit!
+            // Weapon does not actually explode, so this rating is an approximation
+            value:= RateExplosion(Me, EX, EY, 97); // average of 17 attempts, most good, but some failing spectacularly
+
+        if (value = 0) and (Targ.Kind = gtHedgehog) and (Targ.Score > 0) then
+            value := BadTurn;
+
+        if (valueResult < value) or ((valueResult = value) and (Level < 3)) then
             begin
-            ap.Angle:= DxDy2AttackAnglef(Vx, Vy) + AIrndSign(random(Level));
-            ap.Power:= trunc(sqrt(r) * cMaxPower) + AIrndSign(random(Level) * 15);
+            ap.Angle:= DxDy2AttackAnglef(Vx, Vy) + AIrndSign(random((Level - 1) * 9));
+            ap.Power:= trunc(sqrt(r) * cMaxPower) - random((Level - 1) * 17 + 1);
             ap.ExplR:= 100;
             ap.ExplX:= EX;
             ap.ExplY:= EY;
-            valueResult:= Score
+            valueResult:= value
             end;
         end
-until (TestTime > 5050 - Level * 800);
+until rTime > 5050 - Level * 800;
 TestMolotov:= valueResult
 end;
 
-function TestGrenade(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestGrenade(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 const tDelta = 24;
+      Density : real = 1.5;
 var Vx, Vy, r: real;
     Score, EX, EY, valueResult: LongInt;
     TestTime: LongInt;
-    targXWrap, x, y, meX, meY, dY: real;
+    targXWrap, x, y, meX, meY, dX, dY: real;
     t: LongInt;
 begin
 valueResult:= BadTurn;
 TestTime:= 0;
+ap.Bounce:= 0;
 ap.ExplR:= 0;
 meX:= hwFloat2Float(Me^.X);
 meY:= hwFloat2Float(Me^.Y);
@@ -552,27 +718,33 @@
     inc(TestTime, 1000);
     if (WorldEdge = weWrap) and (random(2)=0) then
          Vx:= (targXWrap + AIrndOffset(Targ, Level) - meX) / (TestTime + tDelta)
-    else Vx:= (Targ.Point.X + AIrndOffset(Targ, Level) - meX) / (TestTime + tDelta);
-    Vy:= cGravityf * ((TestTime + tDelta) div 2) - (Targ.Point.Y - meY) / (TestTime + tDelta);
+    else
+         Vx:= (Targ.Point.X + AIrndOffset(Targ, Level) - meX) / (TestTime + tDelta);
+    if (GameFlags and gfMoreWind) <> 0 then
+         Vx:= -(aiWindSpeed / Density) * (TestTime + tDelta) * 0.5 + Vx;
+    Vy:= aiGravityf * ((TestTime + tDelta) div 2) - (Targ.Point.Y - meY) / (TestTime + tDelta);
     r:= sqr(Vx) + sqr(Vy);
     if not (r > 1) then
         begin
         x:= meX;
         y:= meY;
+        dX:= Vx;
         dY:= -Vy;
         t:= TestTime;
         repeat
             x:= CheckWrap(x);
-            x:= x + Vx;
+            x:= x + dX;
+            if (GameFlags and gfMoreWind) <> 0 then
+                dX:= dX + aiWindSpeed / Density;
             y:= y + dY;
-            dY:= dY + cGravityf;
+            dY:= dY + aiGravityf;
             dec(t)
         until (((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 5)) or
                ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 5))) or (t = 0);
     EX:= trunc(x);
     EY:= trunc(y);
     if t < 50 then
-        if Level = 1 then
+        if (Level = 1) and (Flags and amtest_NoTrackFall = 0) then
             Score:= RateExplosion(Me, EX, EY, 101, afTrackFall or afErasesLand)
         else Score:= RateExplosion(Me, EX, EY, 101)
     else
@@ -594,38 +766,46 @@
 TestGrenade:= valueResult
 end;
 
-function TestClusterBomb(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestClusterBomb(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 const tDelta = 24;
+      Density : real = 1.5;
 var Vx, Vy, r: real;
     Score, EX, EY, valueResult: LongInt;
     TestTime: Longword;
-    x, y, dY, meX, meY: real;
+    x, y, dX, dY, meX, meY: real;
     t: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
 valueResult:= BadTurn;
 TestTime:= 500;
+ap.Bounce:= 0;
 ap.ExplR:= 0;
 meX:= hwFloat2Float(Me^.X);
 meY:= hwFloat2Float(Me^.Y);
 repeat
     inc(TestTime, 900);
+    if (GameFlags and gfMoreWind) <> 0 then
+        Vx:= (-(aiWindSpeed / Density) * (TestTime + tDelta) * 0.5) + ((Targ.Point.X - meX) / (TestTime + tDelta))
     // Try to overshoot slightly, seems to pay slightly better dividends in terms of hitting cluster
-    if meX<Targ.Point.X then
+    else if meX<Targ.Point.X then
         Vx:= ((Targ.Point.X+10) - meX) / (TestTime + tDelta)
     else
         Vx:= ((Targ.Point.X-10) - meX) / (TestTime + tDelta);
-    Vy:= cGravityf * ((TestTime + tDelta) div 2) - ((Targ.Point.Y-50) - meY) / (TestTime + tDelta);
+    Vy:= aiGravityf * ((TestTime + tDelta) div 2) - ((Targ.Point.Y-50) - meY) / (TestTime + tDelta);
     r:= sqr(Vx)+sqr(Vy);
     if not (r > 1) then
         begin
         x:= meX;
+        dX:= Vx;
         y:= meY;
         dY:= -Vy;
         t:= TestTime;
     repeat
-        x:= x + Vx;
+        x:= x + dX;
+        if (GameFlags and gfMoreWind) <> 0 then
+            dX:= dX + aiWindSpeed / Density;
         y:= y + dY;
-        dY:= dY + cGravityf;
+        dY:= dY + aiGravityf;
         dec(t)
     until (((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 5)) or
            ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 5))) or (t = 0);
@@ -651,14 +831,16 @@
 TestClusterBomb:= valueResult
 end;
 
-function TestWatermelon(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestWatermelon(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 const tDelta = 24;
+      Density : real = 2.0;
 var Vx, Vy, r: real;
     Score, EX, EY, valueResult: LongInt;
     TestTime: Longword;
-    targXWrap, x, y, dY, meX, meY: real;
+    targXWrap, x, y, dX, dY, meX, meY: real;
     t: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
 valueResult:= BadTurn;
 TestTime:= 500;
 ap.ExplR:= 0;
@@ -671,21 +853,28 @@
 repeat
     inc(TestTime, 900);
     if (WorldEdge = weWrap) and (random(2)=0) then
-		 Vx:= (targXWrap - meX) / (TestTime + tDelta)
-    else Vx:= (Targ.Point.X - meX) / (TestTime + tDelta);
-    Vy:= cGravityf * ((TestTime + tDelta) div 2) - ((Targ.Point.Y-50) - meY) / (TestTime + tDelta);
+        Vx:= (targXWrap - meX) / (TestTime + tDelta)
+    else
+        Vx:= (Targ.Point.X - meX) / (TestTime + tDelta);
+    if (GameFlags and gfMoreWind) <> 0 then
+        Vx:= -(aiWindSpeed / Density) * (TestTime + tDelta) * 0.5 + Vx;
+
+    Vy:= aiGravityf * ((TestTime + tDelta) div 2) - ((Targ.Point.Y-50) - meY) / (TestTime + tDelta);
     r:= sqr(Vx)+sqr(Vy);
     if not (r > 1) then
         begin
         x:= meX;
+        dX:= Vx;
         y:= meY;
         dY:= -Vy;
         t:= TestTime;
         repeat
             x:= CheckWrap(x);
-            x:= x + Vx;
+            x:= x + dX;
+            if (GameFlags and gfMoreWind) <> 0 then
+                 dX:= dX + aiWindSpeed / Density;
             y:= y + dY;
-            dY:= dY + cGravityf;
+            dY:= dY + aiGravityf;
             dec(t)
        until (((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 6)) or
                ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 6))) or (t = 0);
@@ -717,8 +906,8 @@
     var A, B, D, T: real;
         C: LongInt;
     begin
-        A:= sqr(cGravityf);
-        B:= - cGravityf * (TY - MY) - 1;
+        A:= sqr(aiGravityf);
+        B:= - aiGravityf * (TY - MY) - 1;
         C:= sqr(TY - MY) + sqr(TX - MX);
         D:= sqr(B) - A * C;
         if D >= 0 then
@@ -734,13 +923,14 @@
                 Solve:= 0
     end;
 
-function TestMortar(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
-//const tDelta = 24;
+function TestMortar(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const Density : real = 1.0;
 var Vx, Vy: real;
     Score, EX, EY: LongInt;
     TestTime: Longword;
-    x, y, dY, meX, meY: real;
+    x, y, dX, dY, meX, meY: real;
 begin
+Flags:= Flags; // avoid compiler hint
     TestMortar:= BadTurn;
     ap.ExplR:= 0;
 
@@ -756,16 +946,21 @@
         exit(BadTurn);
 
     Vx:= (Targ.Point.X - meX) / TestTime;
-    Vy:= cGravityf * (TestTime div 2) - (Targ.Point.Y - meY) / TestTime;
+    if (GameFlags and gfMoreWind) <> 0 then
+        Vx:= -(aiWindSpeed / Density) * TestTime * 0.5 + Vx;
+    Vy:= aiGravityf * (TestTime div 2) - (Targ.Point.Y - meY) / TestTime;
 
     x:= meX;
+    dX:= Vx;
     y:= meY;
     dY:= -Vy;
 
     repeat
-        x:= x + Vx;
+        x:= x + dX;
+        if (GameFlags and gfMoreWind) <> 0 then
+            dX:= dX + aiWindSpeed / Density;
         y:= y + dY;
-        dY:= dY + cGravityf;
+        dY:= dY + aiGravityf;
         EX:= trunc(x);
         EY:= trunc(y);
     until (((Me = CurrentHedgehog^.Gear) and TestColl(EX, EY, 4)) or
@@ -796,7 +991,7 @@
         end;
 end;
 
-function TestShotgun(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestShotgun(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 const
     MIN_RANGE =  80;
     MAX_RANGE = 400;
@@ -804,6 +999,7 @@
     rx, ry, valueResult: LongInt;
     range: integer;
 begin
+Flags:= Flags; // avoid compiler hint
 TestShotgun:= BadTurn;
 ap.ExplR:= 0;
 ap.Time:= 0;
@@ -811,12 +1007,16 @@
 x:= hwFloat2Float(Me^.X);
 y:= hwFloat2Float(Me^.Y);
 range:= Metric(trunc(x), trunc(y), Targ.Point.X, Targ.Point.Y);
-if ( range < MIN_RANGE ) or ( range > MAX_RANGE ) then
+// Range limits (laser sight can remove upper range limit)
+if (range < MIN_RANGE) or ((range > MAX_RANGE) and (not aiLaserSighting) and (Level >= 4))then
     exit(BadTurn);
 
 Vx:= (Targ.Point.X - x) * 1 / 1024;
 Vy:= (Targ.Point.Y - y) * 1 / 1024;
 ap.Angle:= DxDy2AttackAnglef(Vx, -Vy);
+// Apply inaccuracy
+if (not aiLaserSighting) then
+    inc(ap.Angle, AIrndSign(random((Level - 1) * 10)));
 repeat
     x:= x + vX;
     y:= y + vY;
@@ -849,11 +1049,12 @@
 TestShotgun:= BadTurn
 end;
 
-function TestDesertEagle(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestDesertEagle(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 var Vx, Vy, x, y, t: real;
     d: Longword;
     ix, iy, valueResult: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
 if (Level > 4) or (Targ.Score < 0) or (Targ.Kind <> gtHedgehog) then exit(BadTurn);
 Level:= Level; // avoid compiler hint
 ap.ExplR:= 1;
@@ -870,6 +1071,9 @@
 Vx:= (Targ.Point.X - x) * t;
 Vy:= (Targ.Point.Y - y) * t;
 ap.Angle:= DxDy2AttackAnglef(Vx, -Vy);
+// Apply inaccuracy
+if (not aiLaserSighting) then
+    inc(ap.Angle, AIrndSign(random((Level - 1) * 10)));
 d:= 0;
 
 ix:= trunc(x);
@@ -902,11 +1106,12 @@
 end;
 
 
-function TestSniperRifle(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestSniperRifle(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 var Vx, Vy, x, y, t, dmg: real;
     d: Longword;
     //fallDmg: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
 if (Level > 3) or (Targ.Score < 0) or (Targ.Kind <> gtHedgehog) then exit(BadTurn);
 Level:= Level; // avoid compiler hint
 ap.ExplR:= 0;
@@ -923,6 +1128,9 @@
 Vx:= (Targ.Point.X - x) * t;
 Vy:= (Targ.Point.Y - y) * t;
 ap.Angle:= DxDy2AttackAnglef(Vx, -Vy);
+// Apply inaccuracy
+inc(ap.Angle, AIrndSign(random((Level - 1) * 5)));
+
 d:= 0;
 
 repeat
@@ -944,11 +1152,12 @@
 end;
 
 
-function TestBaseballBat(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestBaseballBat(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 var valueResult, a, v1, v2: LongInt;
     x, y, trackFall: LongInt;
     dx, dy: real;
 begin
+Flags:= Flags; // avoid compiler hint
     Targ:= Targ; // avoid compiler hint
 
     if Level < 3 then trackFall:= afTrackFall
@@ -996,10 +1205,11 @@
     TestBaseballBat:= valueResult;
 end;
 
-function TestFirePunch(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestFirePunch(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 var valueResult, v1, v2, i: LongInt;
     x, y, trackFall: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
     Targ:= Targ; // avoid compiler hint
 
     if Level = 1 then trackFall:= afTrackFall
@@ -1054,10 +1264,11 @@
 end;
 
 
-function TestWhip(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestWhip(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 var valueResult, v1, v2: LongInt;
     x, y, trackFall: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
     Targ:= Targ; // avoid compiler hint
 
     if Level = 1 then trackFall:= afTrackFall
@@ -1109,12 +1320,13 @@
     TestWhip:= valueResult;
 end;
 
-function TestKamikaze(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestKamikaze(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 const step = 8;
 var valueResult, i, v, tx: LongInt;
     trackFall: LongInt;
     t, d, x, y, dx, dy, cx: real;
 begin
+Flags:= Flags; // avoid compiler hint
     ap.ExplR:= 0;
     ap.Time:= 0;
     ap.Power:= 1;
@@ -1126,6 +1338,10 @@
     else
         exit(BadTurn);
 
+    // Don't sacrifice last hog
+    if aiHogsInTeam <= 1 then
+        exit(BadTurn);
+
     valueResult:= 0;
     v:= 0;
 
@@ -1144,7 +1360,10 @@
         dx:= (Targ.Point.X - x) * t;
         dy:= (Targ.Point.Y - y) * t;
 
-        ap.Angle:= DxDy2AttackAnglef(dx, -dy)
+        ap.Angle:= DxDy2AttackAnglef(dx, -dy);
+        // Apply inaccuracy
+        if (not aiLaserSighting) then
+            inc(ap.Angle, AIrndSign(random((Level - 1) * 10)));
         end;
 
     if dx >= 0 then cx:= 0.45 else cx:= -0.45;
@@ -1157,7 +1376,7 @@
         valueResult:= valueResult +
             RateShove(Me, trunc(x), trunc(y)
                 , 30, 30, 25
-                , cx, -0.9, trackFall or afSetSkip);
+                , cx, -0.9, trackFall or afSetSkip or afIgnoreMe);
         end;
 
     if (d < 10) and (dx = 0) then
@@ -1167,14 +1386,14 @@
         tx:= trunc(x);
         v:= RateShove(Me, tx, trunc(y)
                 , 30, 30, 25
-                , -cx, -0.9, trackFall);
+                , -cx, -0.9, trackFall or afIgnoreMe);
         for i:= 1 to 512 div step - 2 do
             begin
             y:= y + dy;
             v:= v +
                 RateShove(Me, tx, trunc(y)
                     , 30, 30, 25
-                    , -cx, -0.9, trackFall or afSetSkip);
+                    , -cx, -0.9, trackFall or afSetSkip or afIgnoreMe);
             end
         end;
 
@@ -1187,18 +1406,19 @@
 
     v:= RateShove(Me, trunc(x), trunc(y)
             , 30, 30, 25
-            , cx, -0.9, trackFall);
+            , cx, -0.9, trackFall or afIgnoreMe);
     valueResult:= valueResult + v - KillScore * friendlyfactor div 100 * 1024;
 
     if v < 65536 then
-        inc(valueResult, RateExplosion(Me, trunc(x), trunc(y), 30));
+        inc(valueResult, RateExplosion(Me, trunc(x), trunc(y), 30, afIgnoreMe));
 
     TestKamikaze:= valueResult;
 end;
 
-function TestHammer(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestHammer(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 var rate: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
 Level:= Level; // avoid compiler hint
 Targ:= Targ;
 
@@ -1213,17 +1433,19 @@
 TestHammer:= rate;
 end;
 
-function TestAirAttack(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestAirAttack(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 const cShift = 4;
-var bombsSpeed, X, Y, dY: real;
+      Density : real = 2.0;
+var bombsSpeed, X, Y, dX, dY: real;
     b: array[0..9] of boolean;
     dmg: array[0..9] of LongInt;
-    fexit: boolean;
-    i, t, valueResult: LongInt;
+    fexit, firstHit: boolean;
+    i, t, valueResult, targetY: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
 ap.ExplR:= 0;
 ap.Time:= 0;
-if (Level > 3) or (cGravityf = 0) then
+if (Level > 3) or (aiGravityf <= 0) then
     exit(BadTurn);
 
 ap.Angle:= 0;
@@ -1232,8 +1454,10 @@
 
 bombsSpeed:= hwFloat2Float(cBombsSpeed);
 X:= Targ.Point.X - 135 - cShift; // hh center - cShift
-X:= X - bombsSpeed * sqrt(((Targ.Point.Y + 128) * 2) / cGravityf);
-Y:= -128;
+X:= X - bombsSpeed * sqrt(((Targ.Point.Y + 128) * 2) / aiGravityf);
+Y:= topY - 300;
+
+dX:= bombsSpeed;
 dY:= 0;
 
 for i:= 0 to 9 do
@@ -1242,11 +1466,14 @@
     dmg[i]:= 0
     end;
 valueResult:= 0;
+firstHit:= false;
 
 repeat
-    X:= X + bombsSpeed;
+    X:= X + dX;
+    if (GameFlags and gfMoreWind) <> 0 then
+        dX:= dX + aiWindSpeed / Density;
     Y:= Y + dY;
-    dY:= dY + cGravityf;
+    dY:= dY + aiGravityf;
     fexit:= true;
 
     for i:= 0 to 9 do
@@ -1256,8 +1483,17 @@
             if TestColl(trunc(X) + LongWord(i * 30), trunc(Y), 4) then
                 begin
                 b[i]:= false;
-                dmg[i]:= RateExplosion(Me, trunc(X) + LongWord(i * 30), trunc(Y), 58)
+                if Level = 1 then
+                    dmg[i]:= RateExplosion(Me, trunc(X) + LongWord(i * 30), trunc(Y), 58, afTrackFall or afErasesLand)
+                else
+                    dmg[i]:= RateExplosion(Me, trunc(X) + LongWord(i * 30), trunc(Y), 58);
                 // 58 (instead of 60) for better prediction (hh moves after explosion of one of the rockets)
+                if (not firstHit) then
+                    begin
+                    firstHit:= true;
+                    // remember Y of first hit, used for target pos
+                    targetY:= trunc(Y);
+                    end;
                 end
             end;
 until fexit or (Y > cWaterLine);
@@ -1267,6 +1503,10 @@
         inc(valueResult, dmg[i]);
 t:= valueResult;
 ap.AttackPutX:= Targ.Point.X - 60;
+if firstHit then
+    // this is not strictly neccessry, it's just to make sure
+    // the X is on the height of the first hit
+    ap.AttackPutY:= targetY;
 
 for i:= 0 to 3 do
     if dmg[i] <> BadTurn then
@@ -1285,12 +1525,541 @@
 TestAirAttack:= valueResult;
 end;
 
+function TestResurrector(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+var rate, heal: LongInt;
+begin
+Flags:= Flags; // avoid compiler hint
+Targ:= Targ;
 
-function TestTeleport(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+if (Level = 5) then
+    exit(BadTurn);
+
+if (Me^.Health <= 1) then
+    exit(BadTurn);
+
+if (Level <= 2) and (Me^.Hedgehog^.Effects[hePoisoned] > 0) then
+    // Sacrifice almost all health if poisoned
+    heal:= Me^.Health - 1
+else
+    // Sacrifice up to 10% of own health
+    heal:= (Me^.Health div 10);
+
+ap.ExplR:= 0;
+ap.Time:= 0;
+if (Level >= 4) then
+    // slow resurrect
+    ap.Power:= max(512 * heal - 512, 10)
+else
+    // fast resurrect
+    ap.Power:= max(16 * heal - 16, 10);
+
+// Time limit
+ap.Power:= min(ap.Power, 5000);
+
+ap.Angle:= 0;
+
+rate:= RateResurrector(Me);
+if rate <= 0 then
+    rate:= BadTurn;
+TestResurrector:= rate;
+end;
+
+function TestDrillStrike(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const cShift = 4;
+      Density : real = 1.0;
+var bombsSpeed, X, Y, dX, dY, drillX, drillY: real;
+    t2: real;
+    dmg: array[0..9] of LongInt;
+    collided, drilling, timerRuns, firstHit: boolean;
+    i, t, value, valueResult, attackTime, drillTimer, targetX, targetY: LongInt;
+begin
+Flags:= Flags; // avoid compiler hint
+ap.ExplR:= 0;
+if (Level > 3) or (aiGravityf <= 0) then
+    exit(BadTurn);
+
+ap.Angle:= 0;
+targetX:= Targ.Point.X;
+ap.AttackPutY:= Targ.Point.Y;
+
+bombsSpeed:= hwFloat2Float(cBombsSpeed);
+X:= Targ.Point.X - 135 - cShift; // hh center - cShift
+X:= X - bombsSpeed * sqrt(((Targ.Point.Y + 128) * 2) / aiGravityf);
+Y:= topY - 300;
+
+valueResult:= 0;
+
+attackTime:= 6000;
+while attackTime >= 0 do
+    begin
+    dec(attackTime, 1000);
+    value:= 0;
+    firstHit:= false;
+    for i:= 0 to 9 do
+        begin
+        dmg[i]:= 0;
+        drillX:= trunc(X) + LongWord(i * 30);
+        drillY:= trunc(Y);
+        dX:= bombsSpeed;
+        dY:= 0;
+        collided:= false;
+        drilling:= false;
+        timerRuns:= false;
+        drillTimer := attackTime;
+
+        repeat
+            // Simulate in-air movement
+            drillX:= drillX + dX;
+            drillY:= drillY + dY;
+            if (GameFlags and gfMoreWind) <> 0 then
+                dX:= dX + aiWindSpeed / Density;
+            dY:= dY + aiGravityf;
+
+            if timerRuns then
+                dec(drillTimer);
+
+            // Collided with land ... simulate drilling
+            if (drillTimer > 0) and TestCollExcludingObjects(trunc(drillX), trunc(drillY), 4) and
+                (Abs(Targ.Point.X - trunc(drillX)) + Abs(Targ.Point.Y - trunc(drillY)) > 21) then
+                begin
+                drilling := true;
+                timerRuns := true;
+                t2 := 0.5 / sqrt(sqr(dX) + sqr(dY));
+                dX := dX * t2;
+                dY := dY * t2;
+                repeat
+                    drillX:= drillX + dX;
+                    drillY:= drillY + dY;
+                    dec(drillTimer, 10);
+                    if (Abs(Targ.Point.X - drillX) + Abs(Targ.Point.Y - drillY) < 22)
+                        or (drillX < -32)
+                        or (drillY < -32)
+                        or (trunc(drillX) > LAND_WIDTH + 32)
+                        or (trunc(drillY) > cWaterLine)
+                        or (drillTimer <= 0) then
+                        collided:= true
+                    else if not TestCollExcludingObjects(trunc(drillX), trunc(drillY), 4) then
+                        drilling:= false;
+                until (collided or (not drilling));
+                end
+            // Collided with something else ... record collision
+            else if (drillTimer <= 0) or TestColl(trunc(drillX), trunc(drillY), 4) then
+                collided:= true;
+
+            // Simulate explosion
+            if collided then
+                begin
+                if Level = 1 then
+                    dmg[i]:= RateExplosion(Me, trunc(drillX), trunc(drillY), 58, afTrackFall or afErasesLand)
+                else
+                    dmg[i]:= RateExplosion(Me, trunc(drillX), trunc(drillY), 58);
+                // 58 (instead of 60) for better prediction (hh moves after explosion of one of the rockets)
+                if not firstHit then
+                    begin
+                    targetY:= trunc(drillY);
+                    firstHit:= true;
+                    end;
+                end;
+        until collided or (drillY > cWaterLine);
+        end;
+
+    // calculate score
+    for i:= 0 to 5 do
+        if dmg[i] <> BadTurn then
+            inc(value, dmg[i]);
+    t:= value;
+    targetX:= Targ.Point.X - 60 - cShift;
+
+    for i:= 0 to 3 do
+        if dmg[i] <> BadTurn then
+            begin
+            dec(t, dmg[i]);
+            inc(t, dmg[i + 6]);
+            if t >= value then
+                begin
+                value:= t;
+                targetX:= Targ.Point.X - 30 - cShift + i * 30
+                end
+            end;
+
+    if value > valueResult then
+        begin
+        valueResult:= value;
+        ap.AttackPutX:= targetX;
+        if firstHit then
+            ap.AttackPutY:= targetY;
+        ap.Time:= attackTime;
+        end;
+end;
+
+if valueResult <= 0 then
+    valueResult:= BadTurn
+else
+    begin
+    // Weaker AI has chance to get the time wrong by 1-3 seconds
+    if Level = 5 then
+        // +/- 3 seconds
+        ap.Time:= ap.Time + (3 - random(7)) * 1000
+    else if Level = 4 then
+        // +/- 2 seconds
+        ap.Time:= ap.Time + (2 - random(5)) * 1000
+    else if Level = 3 then
+        // +/- 1 second
+        if (random(2) = 0) then
+            ap.Time:= ap.Time + (1 - random(3)) * 1000
+    else if Level = 2 then
+        // 50% chance for +/- 1 second
+        if (random(2) = 0) then
+            ap.Time:= ap.Time + (1 - random(3)) * 1000;
+    ap.Time:= Min(5000, Max(1000, ap.Time));
+    end;
+
+TestDrillStrike:= valueResult;
+end;
+
+function TestMineStrike(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const cShift = 4;
+      Density : real = 1.0;
+var minesSpeed, X, Y, dX, dY: real;
+    b: array[0..9] of boolean;
+    dmg: array[0..9] of LongInt;
+    fexit, firstHit: boolean;
+    i, t, valueResult, targetY: LongInt;
+begin
+Flags:= Flags; // avoid compiler hint
+ap.ExplR:= 0;
+ap.Time:= 0;
+
+// AI currently only supports cMinesTime = 0 because it's the most
+// predictable.
+// Other cMinesTime values are risky because of bouncy mines;
+// so they are unsupported.
+// TODO: Implement mine strike for other values of MineTime
+// TODO: Teach AI to avoid hitting their own with mines
+if (Level > 3) or (aiGravityf <= 0) or (cMinesTime <> 0) then
+    exit(BadTurn);
+
+ap.Angle:= 0;
+ap.AttackPutX:= Targ.Point.X;
+ap.AttackPutY:= Targ.Point.Y;
+
+minesSpeed:= hwFloat2Float(cBombsSpeed);
+X:= Targ.Point.X - 135 - cShift; // hh center - cShift
+X:= X - minesSpeed * sqrt(((Targ.Point.Y + 128) * 2) / aiGravityf);
+Y:= topY - 300;
+dX:= minesSpeed;
+dY:= 0;
+
+for i:= 0 to 9 do
+    begin
+    b[i]:= true;
+    dmg[i]:= 0
+    end;
+valueResult:= 0;
+firstHit:= false;
+
+repeat
+    X:= X + dX;
+    if (GameFlags and (gfMoreWind or gfInfAttack)) <> 0 then
+        dX:= dX + aiWindSpeed / Density;
+    Y:= Y + dY;
+    dY:= dY + aiGravityf;
+    fexit:= true;
+
+    for i:= 0 to 9 do
+        if b[i] then
+            begin
+            fexit:= false;
+            if TestColl(trunc(X) + LongWord(i * 30), trunc(Y), 4) then
+                begin
+                b[i]:= false;
+                if Level = 1 then
+                    dmg[i]:= RateExplosion(Me, trunc(X) + LongWord(i * 30), trunc(Y), 96, afTrackFall or afErasesLand)
+                else
+                    dmg[i]:= RateExplosion(Me, trunc(X) + LongWord(i * 30), trunc(Y), 96);
+
+                if (not firstHit) then
+                    begin
+                    targetY:= trunc(Y);
+                    firstHit:= true;
+                    end;
+                end
+            end;
+until fexit or (Y > cWaterLine);
+
+for i:= 0 to 5 do
+    if dmg[i] <> BadTurn then
+        inc(valueResult, dmg[i]);
+t:= valueResult;
+ap.AttackPutX:= Targ.Point.X - 60;
+if firstHit then
+    ap.AttackPutY:= targetY;
+
+for i:= 0 to 3 do
+    if dmg[i] <> BadTurn then
+        begin
+        dec(t, dmg[i]);
+        inc(t, dmg[i + 6]);
+        if t > valueResult then
+            begin
+            valueResult:= t;
+            ap.AttackPutX:= Targ.Point.X - 30 - cShift + i * 30
+            end
+        end;
+
+if valueResult <= 0 then
+    valueResult:= BadTurn;
+TestMineStrike:= valueResult;
+end;
+
+function TestSineGun(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const
+    MIN_RANGE =  40;
+    MAX_RANGE = 400;
+var Vx, Vy, x, y: real;
+    rx, ry, value, valueResult: LongInt;
+    range: integer;
+    landStop: boolean;
+begin
+// TODO: Also simulate the sine gun's kickback and make sure the attacker
+// doesn't get hurt
+
+Flags:= Flags; // avoid compiler hint
+TestSineGun:= BadTurn;
+valueResult:= 0;
+ap.ExplR:= 0;
+ap.Time:= 0;
+ap.Power:= 1;
+x:= hwFloat2Float(Me^.X);
+y:= hwFloat2Float(Me^.Y);
+range:= Metric(trunc(x), trunc(y), Targ.Point.X, Targ.Point.Y);
+// Range limits
+if (range < MIN_RANGE) or ((range > MAX_RANGE) and (Level >= 4)) then
+    exit(BadTurn);
+
+Vx:= (Targ.Point.X - x) * 1 / 1024;
+Vy:= (Targ.Point.Y - y) * 1 / 1024;
+
+// Never shoot downwards or horizontal because it's dangerous
+// and we don't have a proper check for kickback yet
+if Vy >= 0 then
+    exit(BadTurn);
+
+landStop:= false;
+ap.Angle:= DxDy2AttackAnglef(Vx, -Vy);
+// Apply inaccuracy
+if (not aiLaserSighting) then
+    inc(ap.Angle, AIrndSign(random((Level - 1) * 10)));
+repeat
+    x:= x + vX;
+    y:= y + vY;
+    rx:= trunc(x);
+    ry:= trunc(y);
+    if (GameFlags and gfSolidLand) <> 0 then
+        // Stop projectile when colliding with indestructible land
+        landStop:= (Me = CurrentHedgehog^.Gear) and TestColl(rx, ry, 5);
+
+    if landStop or
+       ((Me = CurrentHedgehog^.Gear) and TestCollHogsOrObjects(rx, ry, 5)) or
+       ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, rx, ry, 5)) then
+    begin
+        x:= x + vX * 8;
+        y:= y + vY * 8;
+        value:= RateShove(Me, rx, ry, 5, 35, 50, vX, vY, afTrackFall);
+
+        if (value > 0) then
+            inc(valueResult, value);
+    end
+until (Abs(Targ.Point.X - trunc(x)) + Abs(Targ.Point.Y - trunc(y)) < 5)
+    or (landStop)
+    or (Metric(trunc(x), trunc(y), hwRound(Me^.X), hwRound(Me^.Y)) > MAX_RANGE)
+    or (x < 0)
+    or (y < 0)
+    or (trunc(x) > LAND_WIDTH)
+    or (trunc(y) > LAND_HEIGHT);
+
+if valueResult <= 0 then
+    valueResult:= BadTurn;
+TestSineGun:= valueResult;
+end;
+
+function TestSMine(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const timeLimit = 50;
+      Density : real = 1.6;
+var Vx, Vy, r, meX, meY: real;
+    rTime: LongInt;
+    EX, EY: LongInt;
+    valueResult: LongInt;
+    targXWrap, x, y, dX, dY: real;
+    t: LongInt;
+    value: LongInt;
+begin
+Flags:= Flags; // avoid compiler hint
+meX:= hwFloat2Float(Me^.X);
+meY:= hwFloat2Float(Me^.Y);
+ap.Time:= 0;
+rTime:= 350;
+ap.ExplR:= 0;
+if (WorldEdge = weWrap) then
+    if (Targ.Point.X < meX) then
+         targXWrap:= Targ.Point.X + (RightX-LeftX)
+    else targXWrap:= Targ.Point.X - (RightX-LeftX);
+valueResult:= BadTurn;
+repeat
+    rTime:= rTime + 300 + Level * 50 + random(300);
+    if (WorldEdge = weWrap) and (random(2)=0) then
+         Vx:= (targXWrap + AIrndSign(2) + AIrndOffset(Targ, Level) - meX) / rTime
+    else
+         Vx:= (Targ.Point.X + AIrndSign(2) + AIrndOffset(Targ, Level) - meX) / rTime;
+    if (GameFlags and gfMoreWind) <> 0 then
+         Vx:= -(aiWindSpeed / Density) * rTime * 0.5 + Vx;
+    Vy:= aiGravityf * rTime * 0.5 - (Targ.Point.Y + 1 - meY) / rTime;
+    r:= sqr(Vx) + sqr(Vy);
+
+    if not (r > 1) then
+        begin
+        x:= meX;
+        y:= meY;
+        dX:= Vx;
+        dY:= -Vy;
+        t:= rTime;
+        repeat
+            x:= CheckWrap(x);
+            x:= x + dX;
+            if (GameFlags and gfMoreWind) <> 0 then
+                dX:= dX + aiWindSpeed / Density;
+
+            y:= y + dY;
+            dY:= dY + aiGravityf;
+            dec(t)
+        until (((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 2)) or
+               ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 2))) or (t < -timeLimit);
+
+        EX:= trunc(x);
+        EY:= trunc(y);
+
+        if t >= -timeLimit then
+            if (Level = 1) and (Flags and amtest_NoTrackFall = 0) then
+                value:= RateExplosion(Me, EX, EY, 61, afTrackFall)
+            else
+                value:= RateExplosion(Me, EX, EY, 61)
+        else
+            value:= BadTurn;
+
+        if (value = 0) and (Targ.Kind = gtHedgehog) and (Targ.Score > 0) then
+            value := BadTurn;
+
+        if (valueResult < value) or ((valueResult = value) and (Level < 3)) then
+            begin
+            ap.Angle:= DxDy2AttackAnglef(Vx, Vy) + AIrndSign(random((Level - 1) * 9));
+            ap.Power:= trunc(sqrt(r) * cMaxPower) - random((Level - 1) * 17 + 1);
+            ap.ExplR:= 60;
+            ap.ExplX:= EX;
+            ap.ExplY:= EY;
+            valueResult:= value
+            end;
+        end
+until rTime > 5050 - Level * 800;
+if valueResult <> BadTurn then
+    // 27/20 is reuse bonus
+    valueResult:= valueResult * 27 div 20;
+TestSMine:= valueResult
+end;
+
+function TestPiano(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+// TODO: Test all 5 bounces
+const BOUNCES = 1; // we only test 1 bounce to avoid the rating getting excessively high
+var X, Y: real;
+    dmg: array[0..BOUNCES-1] of LongInt;
+    i, e, rate, valueResult, targetY: LongInt;
+    firstHit, solidBounce: boolean;
+begin
+Flags:= Flags; // avoid compiler hint
+ap.ExplR:= 0;
+ap.Time:= 0;
+if (aiGravityf <= 0) then
+    exit(BadTurn);
+
+if (Level > 2) then
+    exit(BadTurn);
+
+// Don't sacrifice last hog
+if aiHogsInTeam <= 1 then
+    exit(BadTurn);
+
+ap.Angle:= 0;
+ap.AttackPutX:= Targ.Point.X;
+ap.AttackPutY:= Targ.Point.Y;
+
+X:= Targ.Point.X;
+Y:= -1024;
+
+for i:= 0 to BOUNCES-1 do
+    dmg[i]:= 0;
+
+i:= 1;
+firstHit:= false;
+solidBounce:= false;
+repeat
+    // Piano goes down
+    if (not solidBounce) then
+        Y:= Y + 11;
+    if solidBounce or TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(X), trunc(Y), 32) then
+        begin
+        if (not firstHit) then
+            targetY:= trunc(Y);
+        firstHit:= true;
+        if (GameFlags and gfSolidLand) <> 0 then
+            // Don't change Y when indestructible land was hit
+            solidBounce:= true;
+
+        for e:= -1 to 1 do
+            begin
+            // TODO: RateExplosion should remember hogs that already died in the simulation;
+            // because currently, dead hogs might still be counted for damage
+            rate:= RateExplosion(Me, trunc(X) + 30*e, trunc(Y)+40, 161, afIgnoreMe);
+            if rate <> BadTurn then
+                dmg[i]:= dmg[i] + rate;
+            end;
+
+        if (i > 1) and (dmg[i] > 0) then
+            dmg[i]:= dmg[i] div 2;
+        inc(i);
+        if (not solidBounce) then
+            // Skip past the blast hole
+            Y:= Y + 41
+        end;
+until (i > BOUNCES) or (Y > cWaterLine);
+
+if (i = 0) and (Y > cWaterLine) then
+    exit(BadTurn);
+
+valueResult:= 0;
+for i:= 0 to BOUNCES do
+    if dmg[i] <= BadTurn then
+        begin
+        valueResult:= BadTurn;
+        break;
+        end
+    else
+        inc(valueResult, dmg[i]);
+ap.AttackPutX:= Targ.Point.X;
+if firstHit then
+    ap.AttackPutY:= targetY;
+
+valueResult:= valueResult - KillScore * friendlyfactor div 100 * 1024;
+
+if valueResult <= 0 then
+    valueResult:= BadTurn;
+TestPiano:= valueResult;
+end;
+
+function TestTeleport(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 var
     i, failNum: longword;
     maxTop: longword;
 begin
+Flags:= Flags; // avoid compiler hint
     TestTeleport := BadTurn;
     exit(BadTurn);
     Level:= Level; // avoid compiler hint
@@ -1350,10 +2119,11 @@
     end;
 end;
 
-function TestCake(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestCake(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
 var valueResult, v1, v2: LongInt;
     cake: TGear;
 begin
+Flags:= Flags; // avoid compiler hint
     Targ:= Targ; // avoid compiler hint
 
     if (Level > 2) then
@@ -1406,22 +2176,49 @@
     TestCake:= valueResult;
 end;
 
-function TestDynamite(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams): LongInt;
+function TestSeduction(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+var rate: LongInt;
+begin
+Flags:= Flags; // avoid compiler hint
+Level:= Level; // avoid compiler hint
+Targ:= Targ;
+
+if (Level = 5) then
+    exit(BadTurn);
+
+ap.ExplR:= 0;
+ap.Time:= 0;
+ap.Power:= 1;
+ap.Angle:= 0;
+
+rate:= RateSeduction(Me);
+if rate <= 0 then
+    rate:= BadTurn;
+TestSeduction:= rate;
+end;
+
+function TestDynamite(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const Density : real = 2.0;
 var valueResult: LongInt;
     x, y, dx, dy: real;
     EX, EY, t: LongInt;
 begin
+Flags:= Flags; // avoid compiler hint
 Targ:= Targ; // avoid compiler hint
 
 x:= hwFloat2Float(Me^.X) + hwSign(Me^.dX) * 7;
 y:= hwFloat2Float(Me^.Y);
 dx:= hwSign(Me^.dX) * 0.03;
+if (GameFlags and gfMoreWind) <> 0 then
+    dx:= -(aiWindSpeed / Density) + dx;
 dy:= 0;
 t:= 5000;
 repeat
     dec(t);
+    if (GameFlags and gfMoreWind) <> 0 then
+        dx:= dx + aiWindSpeed / Density;
     x:= x + dx;
-    dy:= dy + cGravityf;
+    dy:= dy + aiGravityf;
     y:= y + dy;
 
     if TestColl(trunc(x), trunc(y), 3) then
@@ -1450,4 +2247,273 @@
 TestDynamite:= valueResult
 end;
 
+function TestMine(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const Density : real = 1.0;
+var valueResult: LongInt;
+    x, y, dx, dy: real;
+    EX, EY, t: LongInt;
+begin
+Flags:= Flags; // avoid compiler hint
+Targ:= Targ; // avoid compiler hint
+
+x:= hwFloat2Float(Me^.X) + hwSign(Me^.dX) * 7;
+y:= hwFloat2Float(Me^.Y);
+dx:= hwSign(Me^.dX) * 0.02;
+if (GameFlags and gfMoreWind) <> 0 then
+    dx:= -(aiWindSpeed / Density) + dx;
+dy:= 0;
+t:= 10000;
+repeat
+    dec(t);
+    if (GameFlags and gfMoreWind) <> 0 then
+         dx:= dx + aiWindSpeed / Density;
+    x:= x + dx;
+    dy:= dy + aiGravityf;
+    y:= y + dy;
+    if ((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 2)) or
+        ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 2)) then
+        t:= 0;
+until t = 0;
+
+EX:= trunc(x);
+EY:= trunc(y);
+
+if Level = 1 then
+    valueResult:= RateExplosion(Me, EX, EY, 51, afTrackFall or afErasesLand)
+else
+    valueResult:= RateExplosion(Me, EX, EY, 51);
+
+if (valueResult > 0) then
+    begin
+    ap.Angle:= 0;
+    ap.Power:= 1;
+    ap.Time:= 0;
+    if (Level < 5) then
+        // Set minimum mine bounciness for improved aim
+        ap.Bounce:= 1
+    else
+        ap.Bounce:= 0;
+    ap.ExplR:= 100;
+    ap.ExplX:= EX;
+    ap.ExplY:= EY
+    end else
+    valueResult:= BadTurn;
+
+TestMine:= valueResult
+end;
+
+function TestKnife(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const timeLimit = 300;
+      Density : real = 4.0;
+var Vx, Vy, r, meX, meY: real;
+    rTime: LongInt;
+    EX, EY: LongInt;
+    valueResult: LongInt;
+    targXWrap, x, y, dX, dY: real;
+    t: LongInt;
+    value, range: LongInt;
+begin
+Flags:= Flags; // avoid compiler hint
+meX:= hwFloat2Float(Me^.X);
+meY:= hwFloat2Float(Me^.Y);
+ap.Time:= 0;
+rTime:= 350;
+ap.ExplR:= 0;
+if (WorldEdge = weWrap) then
+    if (Targ.Point.X < meX) then
+         targXWrap:= Targ.Point.X + (RightX-LeftX)
+    else
+         targXWrap:= Targ.Point.X - (RightX-LeftX);
+valueResult:= BadTurn;
+repeat
+    rTime:= rTime + 300 + Level * 50 + random(300);
+    if (WorldEdge = weWrap) and (random(2)=0) then
+         Vx:= (targXWrap - meX) / rTime
+    else
+         Vx:= (Targ.Point.X - meX) / rTime;
+    if (GameFlags and gfMoreWind) <> 0 then
+         Vx:= -(aiWindSpeed / Density) * rTime * 0.5 + Vx;
+    Vy:= aiGravityf * rTime * 0.5 - (Targ.Point.Y + 1 - meY) / rTime;
+    r:= sqr(Vx) + sqr(Vy);
+
+    if not (r > 1) then
+        begin
+        x:= meX;
+        y:= meY;
+        dX:= Vx;
+        dY:= -Vy;
+        t:= rTime;
+        repeat
+            x:= CheckWrap(x);
+            x:= x + dX;
+            if (GameFlags and gfMoreWind) <> 0 then
+                dX:= dX + aiWindSpeed / Density;
+
+            y:= y + dY;
+            dY:= dY + aiGravityf;
+            dec(t)
+        until (((Me = CurrentHedgehog^.Gear) and TestColl(trunc(x), trunc(y), 7)) or
+               ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, trunc(x), trunc(y), 7))) or (t < -timeLimit);
+
+        EX:= trunc(x);
+        EY:= trunc(y);
+
+        // Sanity check: Make sure we're not too close to impact location
+        range:= Metric(trunc(meX), trunc(meY), EX, EY);
+        if (range <= 40) then
+            value:= BadTurn
+        // Timeout
+        else if t < -timeLimit then
+            value:= BadTurn
+        else
+            value:= RateShove(Me, EX, EY, 16, trunc(sqr((abs(dY)+abs(dX))*40000/10000)), 0, dX, dY, 0);
+
+        if (value = 0) and (Targ.Kind = gtHedgehog) and (Targ.Score > 0) then
+            value := BadTurn;
+
+        if (valueResult < value) or ((valueResult = value) and (Level = 1)) then
+            begin
+            ap.Angle:= DxDy2AttackAnglef(Vx, Vy) + AIrndSign(random((Level - 1) * 12));
+            ap.Power:= trunc(sqrt(r) * cMaxPower) - random((Level - 1) * 22 + 1);
+            valueResult:= value
+            end;
+        end
+until rTime > 5050 - Level * 800;
+TestKnife:= valueResult
+end;
+
+function TestAirMine(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const
+    MIN_RANGE = 160;
+    MAX_RANGE = 2612;
+var Vx, Vy, meX, meY, x, y, r: real;
+    rx, ry, valueResult: LongInt;
+    range, maxRange: integer;
+begin
+Flags:= Flags; // avoid compiler hint
+maxRange:= MAX_RANGE - ((Level - 1) * 300);
+TestAirMine:= BadTurn;
+ap.ExplR:= 60;
+ap.Time:= 0;
+meX:= hwFloat2Float(Me^.X);
+meY:= hwFloat2Float(Me^.Y);
+x:= meX;
+y:= meY;
+
+// Rough first range check
+range:= Metric(trunc(x), trunc(y), Targ.Point.X, Targ.Point.Y);
+if ( range < MIN_RANGE ) or ( range > maxRange ) then
+    exit(BadTurn);
+
+Vx:= (Targ.Point.X - x) * 1 / 1024;
+Vy:= (Targ.Point.Y - y) * 1 / 1024;
+ap.Angle:= DxDy2AttackAnglef(Vx, -Vy);
+repeat
+    x:= x + vX;
+    y:= y + vY;
+    rx:= trunc(x);
+    ry:= trunc(y);
+    if ((Me = CurrentHedgehog^.Gear) and TestColl(rx, ry, 8)) or
+        ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, rx, ry, 8)) then
+        begin
+        x:= x + vX * 8;
+        y:= y + vY * 8;
+
+        if Level = 1 then
+            valueResult:= RateExplosion(Me, rx, ry, 61, afTrackFall)
+        else
+            valueResult:= RateExplosion(Me, rx, ry, 61);
+
+        // Precise range calculation required to calculate power;
+        // The air mine is very sensitive to small changes in power.
+        r:= sqr(meX - rx) + sqr(meY - ry);
+        range:= trunc(sqrt(r));
+
+        if ( range < MIN_RANGE ) or ( range > maxRange ) then
+            exit(BadTurn);
+        ap.Power:= ((range + cHHRadius*2) * cMaxPower) div MAX_RANGE;
+
+        // Apply inaccuracy
+        inc(ap.Power, (random(93*(Level-1)) - 31*(Level-1))); // Level 1 spread: -124 .. 248
+        if (not aiLaserSighting) then
+            inc(ap.Angle, AIrndSign(random((Level - 1) * 10)));
+
+        if (valueResult <= 0) then
+            valueResult:= BadTurn;
+        exit(valueResult)
+        end
+until (abs(Targ.Point.X - trunc(x)) + abs(Targ.Point.Y - trunc(y)) < 4)
+    or (x < 0)
+    or (y < 0)
+    or (trunc(x) > LAND_WIDTH)
+    or (trunc(y) > LAND_HEIGHT);
+
+TestAirMine := BadTurn
+end;
+
+function TestMinigun(Me: PGear; Targ: TTarget; Level: LongInt; var ap: TAttackParams; Flags: LongWord): LongInt;
+const
+    MAX_RANGE = 400;
+var Vx, Vy, x, y: real;
+    rx, ry, valueResult: LongInt;
+    range: integer;
+begin
+// This code is still very similar to TestShotgun,
+// but it's a good simple estimate.
+// TODO: Simulate random bullets
+// TODO: Replace RateShotgun with something else
+// TODO: Teach AI to move aim during shooting
+Flags:= Flags; // avoid compiler hint
+TestMinigun:= BadTurn;
+ap.ExplR:= 0;
+ap.Time:= 0;
+ap.Power:= 1;
+x:= hwFloat2Float(Me^.X);
+y:= hwFloat2Float(Me^.Y);
+range:= Metric(trunc(x), trunc(y), Targ.Point.X, Targ.Point.Y);
+if ( range > MAX_RANGE ) then
+    exit(BadTurn);
+
+Vx:= (Targ.Point.X - x) * 1 / 1024;
+Vy:= (Targ.Point.Y - y) * 1 / 1024;
+ap.Angle:= DxDy2AttackAnglef(Vx, -Vy);
+// Minigun angle is limited
+if (ap.Angle < Ammoz[amMinigun].minAngle) or (ap.Angle > Ammoz[amMinigun].maxAngle) then
+    exit(BadTurn);
+
+// Apply inaccuracy
+if (not aiLaserSighting) then
+    inc(ap.Angle, AIrndSign(random((Level - 1) * 10)));
+repeat
+    x:= x + vX;
+    y:= y + vY;
+    rx:= trunc(x);
+    ry:= trunc(y);
+    if ((Me = CurrentHedgehog^.Gear) and TestColl(rx, ry, 1)) or
+        ((Me <> CurrentHedgehog^.Gear) and TestCollExcludingMe(Me^.Hedgehog^.Gear, rx, ry, 1)) then
+    begin
+        x:= x + vX * 8;
+        y:= y + vY * 8;
+        // TODO: Use different rating function
+        valueResult:= RateShotgun(Me, vX, vY, rx, ry);
+
+        if (valueResult = 0) and (Targ.Kind = gtHedgehog) and (Targ.Score > 0) then
+            begin
+            if GameFlags and gfSolidLand = 0 then
+                 valueResult:= 1024 - Metric(Targ.Point.X, Targ.Point.Y, rx, ry) div 64
+            else valueResult := BadTurn
+            end
+        else
+            dec(valueResult, Level * 4000);
+        exit(valueResult)
+    end
+until (Abs(Targ.Point.X - trunc(x)) + Abs(Targ.Point.Y - trunc(y)) < 4)
+    or (x < 0)
+    or (y < 0)
+    or (trunc(x) > LAND_WIDTH)
+    or (trunc(y) > LAND_HEIGHT);
+
+TestMinigun:= BadTurn
+end;
+
 end.
--- a/hedgewars/uAIMisc.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uAIMisc.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -27,6 +27,7 @@
       afTrackFall  = $00000001;
       afErasesLand = $00000002;
       afSetSkip    = $00000004;
+      afIgnoreMe   = $00000008;
 
       BadTurn = Low(LongInt) div 4;
 
@@ -78,6 +79,7 @@
 function  RatePlace(Gear: PGear): LongInt;
 function  CheckWrap(x: real): real; inline;
 function  TestColl(x, y, r: LongInt): boolean; inline;
+function  TestCollHogsOrObjects(x, y, r: LongInt): boolean; inline;
 function  TestCollExcludingObjects(x, y, r: LongInt): boolean; inline;
 function  TestCollExcludingMe(Me: PGear; x, y, r: LongInt): boolean; inline;
 
@@ -86,6 +88,8 @@
 function  RealRateExplosion(Me: PGear; x, y, r: LongInt; Flags: LongWord): LongInt;
 function  RateShove(Me: PGear; x, y, r, power, kick: LongInt; gdX, gdY: real; Flags: LongWord): LongInt;
 function  RateShotgun(Me: PGear; gdX, gdY: real; x, y: LongInt): LongInt;
+function  RateSeduction(Me: PGear): LongInt;
+function  RateResurrector(Me: PGear): LongInt;
 function  RateHammer(Me: PGear): LongInt;
 
 function  HHGo(Gear, AltGear: PGear; var GoInfo: TGoInfo): boolean;
@@ -100,11 +104,12 @@
     walkbonuses: Twalkbonuses;
 
 const KillScore = 200;
+      ResurrectScore = 100;
 var friendlyfactor: LongInt = 300;
 var dmgMod: real = 1.0;
 
 implementation
-uses uCollisions, uVariables, uUtils, uGearsUtils;
+uses uCollisions, uVariables, uUtils, uGearsUtils, uAIAmmoTests;
 
 var
     KnownExplosion: record
@@ -135,13 +140,15 @@
             (Gear <> ThinkingHH) and
             (Gear^.Health > Gear^.Damage) and
             (not Gear^.Hedgehog^.Team^.hasgone)) or
+        ((Gear^.Kind = gtGrave) and
+            (Gear^.Health = 0)) or
         ((Gear^.Kind = gtExplosives) and
             (Gear^.Health > Gear^.Damage)) or
         ((Gear^.Kind = gtMine) and
             (Gear^.Health = 0) and
              (Gear^.Damage < 35))
              )  and
-        (Targets.Count < 256) then
+        (Targets.Count < 255) then
         begin
         with Targets.ar[Targets.Count] do
             begin
@@ -168,6 +175,17 @@
                     inc(e)
                     end;
                 end
+            else if Gear^.Kind = gtGrave then
+                if (Gear^.Hedgehog^.Team^.Clan = CurrentTeam^.Clan) then
+                    begin
+                    Score:= ResurrectScore;
+                    inc(f);
+                    end
+                else
+                    begin
+                    Score:= -ResurrectScore;
+                    inc(e);
+                    end
             else if Gear^.Kind = gtExplosives then
                 Score:= Gear^.Health - Gear^.Damage
             else if Gear^.Kind = gtMine then
@@ -218,19 +236,29 @@
 while Gear <> nil do
     begin
         case Gear^.Kind of
-            gtGrenade
+            gtAirAttack
+            , gtAirBomb
+            , gtBall
+            , gtBee
+            , gtBirdy
             , gtClusterBomb
+            , gtCake
+            , gtCluster
+            , gtDrill
+            , gtEgg
             , gtGasBomb
-            , gtShell
-            , gtAirAttack
+            , gtGrenade
+            , gtHellishBomb
+            , gtPiano
+            , gtPoisonCloud
+            , gtRCPlane
+            , gtMelonPiece
+            , gtMolotov
             , gtMortar
-            , gtWatermelon
-            , gtDrill
-            , gtAirBomb
-            , gtCluster
-            , gtMelonPiece
-            , gtBee
-            , gtMolotov: bonuses.activity:= true;
+            , gtNapalmBomb
+            , gtShell
+            , gtSnowball
+            , gtWatermelon: bonuses.activity:= true;
             gtCase:
                 if (Gear^.AIHints and aihDoesntMatter) = 0 then
                     AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y) + 3, 37, 25);
@@ -354,6 +382,7 @@
 end;
 
 
+// Check for collision with anything
 function TestCollWithEverything(x, y, r: LongInt): boolean; inline;
 begin
     if not CheckBounds(x, y, r) then
@@ -368,6 +397,7 @@
     TestCollWithEverything := false;
 end;
 
+// Check for collision with non-objects
 function TestCollExcludingObjects(x, y, r: LongInt): boolean; inline;
 begin
     if not CheckBounds(x, y, r) then
@@ -375,13 +405,14 @@
 
     if (Land[y-r, x-r] > lfAllObjMask) or
        (Land[y+r, x-r] > lfAllObjMask) or
-       (Land[y-r, x-r] > lfAllObjMask) or
+       (Land[y-r, x+r] > lfAllObjMask) or
        (Land[y+r, x+r] > lfAllObjMask) then
        exit(true);
 
     TestCollExcludingObjects:= false;
 end;
 
+// Check for collision with something other than current hedgehog or crate
 function TestColl(x, y, r: LongInt): boolean; inline;
 begin
     if not CheckBounds(x, y, r) then
@@ -389,14 +420,29 @@
 
     if (Land[y-r, x-r] and lfNotCurHogCrate <> 0) or
        (Land[y+r, x-r] and lfNotCurHogCrate <> 0) or
-       (Land[y+r, x-r] and lfNotCurHogCrate <> 0) or
+       (Land[y-r, x+r] and lfNotCurHogCrate <> 0) or
        (Land[y+r, x+r] and lfNotCurHogCrate <> 0) then
        exit(true);
 
     TestColl:= false;
 end;
 
+// Check for collision with hedgehog or object
+function TestCollHogsOrObjects(x, y, r: LongInt): boolean; inline;
+begin
+    if not CheckBounds(x, y, r) then
+        exit(false);
 
+    if (Land[y-r, x-r] and lfAllObjMask <> 0) or
+       (Land[y+r, x-r] and lfAllObjMask <> 0) or
+       (Land[y-r, x+r] and lfAllObjMask <> 0) or
+       (Land[y+r, x+r] and lfAllObjMask <> 0) then
+       exit(true);
+
+    TestCollHogsOrObjects:= false;
+end;
+
+// Check for collision with something other than the given "Me" gear.
 // Wrapper to test various approaches.  If it works reasonably, will just replace.
 // Right now, converting to hwFloat is a tad inefficient since the x/y were hwFloat to begin with...
 function TestCollExcludingMe(Me: PGear; x, y, r: LongInt): boolean; inline;
@@ -430,7 +476,7 @@
         x:= CheckWrap(x);
         x:= x + dX;
         y:= y + dY;
-        dY:= dY + cGravityf;
+        dY:= dY + aiGravityf;
         skipLandCheck:= skipLandCheck and (r <> 0) and (abs(eX-x) + abs(eY-y) < r) and ((abs(eX-x) < rCorner) or (abs(eY-y) < rCorner));
         if not skipLandCheck and TestCollExcludingObjects(trunc(x), trunc(y), Target.Radius) then
             with Target do
@@ -477,7 +523,7 @@
         x:= CheckWrap(x);
         x:= x + dX;
         y:= y + dY;
-        dY:= dY + cGravityf;
+        dY:= dY + aiGravityf;
 
 {        if ((trunc(y) and LAND_HEIGHT_MASK) = 0) and ((trunc(x) and LAND_WIDTH_MASK) = 0) then
             begin
@@ -539,20 +585,22 @@
 x:= round(CheckWrap(real(x)));
 fallDmg:= 0;
 rate:= 0;
-// add our virtual position
-with Targets.ar[Targets.Count] do
-    begin
-    Point.x:= hwRound(Me^.X);
-    Point.y:= hwRound(Me^.Y);
-    skip:= false;
-    matters:= true;
-    Kind:= gtHedgehog;
-    Density:= 1;
-    Radius:= cHHRadius;
-    Score:= - ThinkingHH^.Health
-    end;
+
+if (Flags and afIgnoreMe) = 0 then
+    // add our virtual position
+    with Targets.ar[Targets.Count] do
+        begin
+        Point.x:= hwRound(Me^.X);
+        Point.y:= hwRound(Me^.Y);
+        skip:= false;
+        matters:= true;
+        Kind:= gtHedgehog;
+        Density:= 1;
+        Radius:= cHHRadius;
+        Score:= - ThinkingHH^.Health
+        end;
+
 // rate explosion
-
 if (Flags and afErasesLand <> 0) and (GameFlags and gfSolidLand = 0) then erasure:= r
 else erasure:= 0;
 
@@ -561,8 +609,9 @@
 for i:= 0 to Targets.Count do
     if not Targets.ar[i].dead then
         with Targets.ar[i] do
-          if not matters then hadSkips:= true
-            else
+          if not matters then
+            hadSkips:= true
+          else
             begin
             dmg:= 0;
             dmgBase:= r + Radius div 2;
@@ -832,6 +881,133 @@
 ResetTargets;
 end;
 
+function RateSeduction(Me: PGear): LongInt;
+var pX, pY, i, r, rate, subrate, fallDmg: LongInt;
+    diffX, diffY: LongInt;
+    meX, meY, dX, dY: hwFloat;
+    pXr, pYr: real;
+    hadSkips: boolean;
+begin
+meX:= Me^.X;
+meY:= Me^.Y;
+rate:= 0;
+hadSkips:= false;
+for i:= 0 to Targets.Count do
+    if not Targets.ar[i].dead then
+        with Targets.ar[i] do
+            begin
+            pX:= Point.X;
+            pY:= Point.Y;
+            diffX:= pX - hwRound(meX);
+            diffY:= pY - hwRound(meY);
+            if (Me^.Hedgehog^.BotLevel < 4) and (abs(diffX) <= cHHRadius*2) and (diffY >= 0) and (diffY <= cHHRadius*2) then
+                // Don't use seduction if too close to other hog. We could be
+                // standing on it, so using seduction would remove the ground on
+                // which we stand on, which is dangerous
+                exit(BadTurn);
+
+            if (not matters) then
+                hadSkips:= true
+            else if matters and (Kind = gtHedgehog) and (abs(pX - hwRound(meX)) + abs(pY - hwRound(meY)) < cSeductionDist) then
+                begin
+                r:= trunc(sqrt(sqr(abs(pX - hwRound(meX)))+sqr(abs(pY - hwRound(meY)))));
+                if r < cSeductionDist then
+                    begin
+
+                    if (WorldEdge <> weWrap) or (not (hwAbs(meX - int2hwFloat(pX)) > int2hwFloat(cSeductionDist))) then
+                        dX:= _50 * aiGravity * (meX - int2hwFloat(pX)) / _25
+                    else if (not (hwAbs(meX + int2hwFloat((RightX-LeftX) - pX)) > int2hwFloat(cSeductionDist))) then
+                        dX:= _50 * aiGravity * (meX + (int2hwFloat((RightX-LeftX) - pX))) / _25
+                    else
+                        dX:= _50 * aiGravity * (meX - (int2hwFloat((RightX-LeftX) - pX))) / _25;
+                    dY:= -_450 * cMaxWindSpeed * 2;
+
+
+                    pXr:= pX;
+                    pYr:= pY;
+                    fallDmg:= trunc(TraceShoveFall(pXr, pYr, hwFloat2Float(dX), hwFloat2Float(dY), Targets.ar[i]) * dmgMod);
+
+                    // rate damage
+                    if fallDmg < 0 then // drowning
+                        begin
+                        if Score > 0 then
+                            inc(rate, (KillScore + Score div 10) * 1024) // Add a bit of a bonus for bigger hog drownings
+                        else
+                            dec(rate, (KillScore * friendlyfactor div 100 - Score div 10) * 1024) // and more of a punishment for drowning bigger friendly hogs
+                        end
+                    else if (fallDmg) >= abs(Score) then // deadly fall damage
+                        begin
+                        dead:= true;
+                        Targets.reset:= true;
+                        if (hwFloat2Float(dX) < 0.035) then
+                            begin
+                            subrate:= RealRateExplosion(Me, round(pX), round(pY), 61, afErasesLand or afTrackFall); // hog explodes
+                            if abs(subrate) > 2000 then
+                                inc(rate, subrate)
+                            end;
+                        if Score > 0 then
+                             inc(rate, KillScore * 1024 + (fallDmg)) // tiny bonus for dealing more damage than needed to kill
+                        else
+                             dec(rate, KillScore * friendlyfactor div 100 * 1024)
+                        end
+                    else if (fallDmg <> 0) then // non-deadly fall damage
+                        if Score > 0 then
+                             inc(rate, fallDmg * 1024)
+                        else
+                             dec(rate, fallDmg * friendlyfactor div 100 * 1024)
+                    else // no damage, just shoved
+                        if (Score < 0) then
+                            dec(rate, 100); // small penalty for shoving friendly hogs as it might be dangerous
+                    end;
+                end;
+            end;
+
+if hadSkips and (rate <= 0) then
+    RateSeduction:= BadTurn
+else
+    RateSeduction:= rate * 1024;
+end;
+
+function RateResurrector(Me: PGear): LongInt;
+var i, r, rate, pX, pY: LongInt;
+    meX, meY: hwFloat;
+    hadSkips: boolean;
+begin
+meX:= Me^.X;
+meY:= Me^.Y;
+rate:= 0;
+hadSkips:= false;
+for i:= 0 to Targets.Count do
+    if (Targets.ar[i].Kind = gtGrave) and (not Targets.ar[i].dead) then
+        with Targets.ar[i] do
+            begin
+            pX:= Point.X;
+            pY:= Point.Y;
+
+            if (not matters) then
+                hadSkips:= true
+            else if matters and (abs(pX - hwRound(meX)) + abs(pY - hwRound(meY)) < cResurrectorDist) then
+                begin
+                r:= trunc(sqrt(sqr(abs(pX - hwRound(meX)))+sqr(abs(pY - hwRound(meY)))));
+                if r < cResurrectorDist then
+                    begin
+                    if Score > 0 then
+                        inc(rate, Score * 1024)
+                    else
+                        inc(rate, Score * friendlyFactor div 100 * 1024);
+                    // a "dead" grave is a grave that we have resurrected
+                    dead:= true;
+                    Targets.reset:= true;
+                    end;
+                end;
+            end;
+
+if hadSkips and (rate <= 0) then
+    RateResurrector:= BadTurn
+else
+    RateResurrector:= rate * 1024;
+end;
+
 function RateHammer(Me: PGear): LongInt;
 var x, y, i, r, rate: LongInt;
     hadSkips: boolean;
@@ -924,7 +1100,7 @@
         if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0 then SetLittle(Gear^.dX);
             Gear^.X:= Gear^.X + Gear^.dX;
         inc(GoInfo.Ticks);
-        Gear^.dY:= Gear^.dY + cGravity;
+        Gear^.dY:= Gear^.dY + aiGravity;
         if Gear^.dY > _0_4 then
             exit(false);
         if (Gear^.dY.isNegative) and (TestCollisionYwithGear(Gear, -1) <> 0) then
@@ -990,8 +1166,9 @@
     if (Gear^.State and gstMoving) <> 0 then
         begin
         inc(GoInfo.Ticks);
-        Gear^.dY:= Gear^.dY + cGravity;
-        if Gear^.dY > _0_4 then
+        Gear^.dY:= Gear^.dY + aiGravity;
+        // taking fall damage?
+        if (Gear^.dY > _0_4) and (Gear^.Hedgehog^.Effects[heInvulnerable] = 0) then
             begin
             GoInfo.FallPix:= 0;
             // try ljump instead of fall with damage
--- a/hedgewars/uAmmos.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uAmmos.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -113,7 +113,7 @@
         // avoid things we already have by scheme
         // merge this into DisableSomeWeapons ?
         if ((a = amLowGravity) and ((GameFlags and gfLowGravity) <> 0))
-        or ((a = amInvulnerable) and ((GameFlags and gfInvulnerable) <> 0))
+        or ((a in [amInvulnerable, amResurrector, amVampiric]) and ((GameFlags and gfInvulnerable) <> 0))
         or ((a = amLaserSight) and ((GameFlags and gfLaserSight) <> 0))
         or ((a = amVampiric) and ((GameFlags and gfVampiric) <> 0))
         or ((a = amExtraTime) and (cHedgehogTurnTime >= 1000000))
--- a/hedgewars/uChat.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uChat.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -27,6 +27,8 @@
 procedure freeModule;
 procedure ReloadLines;
 procedure CleanupInput;
+procedure CloseChat;
+procedure RestoreChat;
 procedure AddChatString(s: shortstring);
 procedure DrawChat;
 procedure KeyPressChat(keysym: TSDL_Keysym);
@@ -35,10 +37,11 @@
 procedure TextInput(var event: TSDL_TextInputEvent);
 
 implementation
-uses uInputHandler, uTypes, uVariables, uCommands, uUtils, uTextures, uRender, uIO, uScript, uRenderUtils, uLocale
+uses uConsts, uInputHandler, uTypes, uVariables, uCommands, uUtils, uTextures, uRender, uIO, uScript, uRenderUtils, uStore, uLocale
      {$IFDEF USE_VIDEO_RECORDING}, uVideoRec{$ENDIF};
 
-const MaxStrIndex = 27;
+const MaxStrIndex = 27; // Max. possible string index
+      MaxStrPartial = 7; // Max. displayed strings in normal mode
       MaxInputStrLen = 200;
 
 type TChatLine = record
@@ -53,6 +56,7 @@
 var Strs: array[0 .. MaxStrIndex] of TChatLine;
     MStrs: array[0 .. MaxStrIndex] of shortstring;
     LocalStrs: array[0 .. MaxStrIndex] of shortstring;
+    oldInput: shortstring;
     missedCount: LongWord;
     lastStr: LongWord;
     localLastStr: LongInt;
@@ -94,8 +98,14 @@
             );
 
 
-const Padding  = 2;
-      ClHeight = 2 * Padding + 16; // font height
+const PaddingFactor = 0.125; // relative to font size in pixels
+
+var Padding, ClHeight: integer;
+    LastChatScaleValue, LastUIScaleValue: real;
+    SkipNextInput: boolean;
+
+procedure UpdateInputLinePrefix(); forward;
+procedure UpdateCursorCoords(); forward;
 
 // relevant for UTF-8 handling
 function IsFirstCharByte(c: char): boolean; inline;
@@ -114,26 +124,106 @@
     selectedPos:= -1;
 end;
 
+procedure AdjustToUIScale();
+var fntSize, fntSizePx: integer;
+begin
+    // don't do anything if no change
+    if (ChatScaleValue = LastChatScaleValue) and (UIScaleValue = LastUIScaleValue) then
+        exit;
+
+    LastChatScaleValue:= ChatScaleValue;
+    LastUIScaleValue:= UIScaleValue;
+
+    fntSize:= max(1, round(UIScaleValue * ChatScaleValue * cBaseChatFontHeight));
+
+    if Fontz[fntChat].Height <> fntSize then
+        begin
+        // adjust associated heights
+        Fontz[fntChat].Height:= fntSize;
+        Fontz[CJKfntChat].Height:= fntSize;
+        // reload if initialized already
+        if Fontz[fntChat].Handle <> nil then
+            LoadFont(fntChat);
+        if Fontz[CJKfntChat].Handle <> nil then
+            LoadFont(CJKfntChat);
+        end;
+
+    // adjust line height etc.
+    fntSizePx:= round(cFontPxToPtRatio * fntSize);
+    Padding:= max(1, round(PaddingFactor * fntSizePx));
+
+    ClHeight:= 2 * Padding + fntSizePx;
+
+    // clear cache of already rendered lines
+    ReloadLines();
+    UpdateInputLinePrefix();
+    UpdateCursorCoords();
+end;
+
+procedure ChatSizeInc(pxprecise: boolean);
+var fntSize: integer;
+begin
+if pxprecise then
+    begin
+    fntSize:= Fontz[fntChat].Height;
+    inc(fntSize);
+    ChatScaleValue:= 1.0 * fntSize / cBaseChatFontHeight;
+    end
+else
+    ChatScaleValue:= ChatScaleValue * (1.0 + cChatScaleRelDelta);
+if ChatScaleValue > cMaxChatScaleValue then
+    ChatScaleValue:= cMaxChatScaleValue;
+AdjustToUIScale();
+end;
+
+procedure ChatSizeDec(pxprecise: boolean);
+var fntSize: integer;
+begin
+if pxprecise then
+    begin
+    fntSize:= Fontz[fntChat].Height;
+    dec(fntSize);
+    ChatScaleValue:= 1.0 * fntSize / cBaseChatFontHeight;
+    end
+else
+    ChatScaleValue:= ChatScaleValue / (1.0 + cChatScaleRelDelta);
+if ChatScaleValue < cMinChatScaleValue then
+    ChatScaleValue:= cMinChatScaleValue;
+AdjustToUIScale();
+end;
+
+procedure chatSizeReset();
+begin
+ChatScaleValue:= cDefaultChatScale;
+AdjustToUIScale();
+end;
+
+function GetChatFont(str: shortstring): THWFONT;
+begin
+    GetChatFont:= CheckCJKFont(ansistring(str), fntChat);
+end;
+
 procedure UpdateCursorCoords();
 var font: THWFont;
     str : shortstring;
     coff, soff: LongInt;
 begin
+    AdjustToUIScale();
+
     if cursorPos = selectedPos then
         ResetSelection();
 
     // calculate cursor offset
 
     str:= InputStr.s;
-    font:= CheckCJKFont(ansistring(str), fnt16);
+    font:= GetChatFont(str);
 
     // get only substring before cursor to determine length
     // SetLength(str, cursorPos); // makes pas2c unhappy
     str[0]:= char(cursorPos);
     // get render size of text
     TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(str), @coff, nil);
-
-    cursorX:= 2 + coff;
+    cursorX:= Padding + coff;
 
     // calculate selection width on screen
     if selectedPos >= 0 then
@@ -171,7 +261,7 @@
 
 FreeAndNilTexture(cl.Tex);
 
-font:= CheckCJKFont(ansistring(str), fnt16);
+font:= GetChatFont(str);
 
 // get render size of text
 TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(str), @cl.Width, nil);
@@ -245,8 +335,9 @@
 procedure ReloadLines;
 var i: LongWord;
 begin
-    if InputStr.s <> '' then
-        SetLine(InputStr, InputStr.s, true);
+    // also reload empty input line (as chat size/scaling might have changed)
+    //if InputStr.s <> '' then
+    SetLine(InputStr, InputStr.s, true);
     for i:= 0 to MaxStrIndex do
         if Strs[i].s <> '' then
             begin
@@ -294,19 +385,26 @@
     selRect: TSDL_Rect;
     c: char;
 begin
+AdjustToUIScale();
+
 ChatReady:= true; // maybe move to somewhere else?
 
 if ChatHidden and (not showAll) then
     visibleCount:= 0;
 
 // draw chat lines with some distance from screen border
+left:= 4 - cScreenWidth div 2;
 {$IFDEF USE_TOUCH_INTERFACE}
-left:= 4 - cScreenWidth div 2;
-top := 55 + visibleCount * ClHeight; // we start with input line (if any)
+i:= 55;
 {$ELSE}
-left:= 4 - cScreenWidth div 2;
-top := 10 + visibleCount * ClHeight; // we start with input line (if any)
+i:= 10;
 {$ENDIF}
+top := i + visibleCount * ClHeight; // we start with input line (if any)
+if top > cScreenHeight - ClHeight - 60 then
+    begin
+    top:= cScreenHeight - ClHeight - 60;
+    top:= i + top - (top mod ClHeight);
+    end;
 
 // draw chat input line first and under all other lines
 if isInChatMode and (InputStr.Tex <> nil) then
@@ -329,12 +427,12 @@
         begin
         // draw cursor
         if ((RealTicks - LastKeyPressTick) and 512) < 256 then
-            DrawLineOnScreen(left + cursorX, top + 2, left + cursorX, top + ClHeight - 2, 2.0, $00, $FF, $FF, $FF);
+            DrawLineOnScreen(left + cursorX, top + Padding, left + cursorX, top + ClHeight - Padding, max(2, round(UIScaleValue * ChatScaleValue * 2.0)), $00, $FF, $FF, $FF);
         end
     else // draw selection
         begin
-        selRect.y:= top + 2;
-        selRect.h:= clHeight - 4;
+        selRect.y:= top + Padding;
+        selRect.h:= clHeight - 2 * Padding;
         if selectionDx < 0 then
             begin
             selRect.x:= left + cursorX + selectionDx;
@@ -395,7 +493,7 @@
     t  := 1; // # of current line processed
 
     // draw lines in reverse order
-    while (((t < 7) and (Strs[i].Time > RealTicks)) or ((t <= MaxStrIndex + 1) and showAll))
+    while (((t < MaxStrPartial) and (Strs[i].Time > RealTicks)) or ((t <= MaxStrIndex + 1) and showAll))
     and (Strs[i].Tex <> nil) do
         begin
         top:= top - ClHeight;
@@ -538,6 +636,18 @@
         exit
         end;
 
+    if (copy(s, 2, 3) = 'ff ') then
+    begin
+       ParseCommand(s, true);
+       exit
+    end;
+
+    if (copy(s, 2, 3) = 'sff') then
+    begin
+       ParseCommand(s, true);
+       exit
+    end;
+
     // debugging commands
     if (copy(s, 2, 7) = 'debugvl') then
         // This command intentionally not documented in /help
@@ -589,12 +699,15 @@
         AddChatString(#3 + shortstring(trcmd[sidCmdHsa]));
         AddChatString(#3 + shortstring(trcmd[sidCmdHta]));
         AddChatString(#3 + shortstring(trcmd[sidCmdHya]));
+        AddChatString(#3 + shortstring(trcmd[sidCmdHappy]));
+        AddChatString(#3 + shortstring(trcmd[sidCmdWave]));
         AddChatString(#3 + shortstring(trcmd[sidCmdHurrah]));
+        AddChatString(#3 + shortstring(trcmd[sidCmdShrug]));
+        AddChatString(#3 + shortstring(trcmd[sidCmdSad]));
         AddChatString(#3 + shortstring(trcmd[sidCmdIlovelotsoflemonade]));
         AddChatString(#3 + shortstring(trcmd[sidCmdJuggle]));
         AddChatString(#3 + shortstring(trcmd[sidCmdRollup]));
-        AddChatString(#3 + shortstring(trcmd[sidCmdShrug]));
-        AddChatString(#3 + shortstring(trcmd[sidCmdWave]));
+        AddChatString(#3 + shortstring(trcmd[sidCmdBubble]));
         exit
         end;
 
@@ -632,15 +745,14 @@
         end;
 
     // hedghog animations/taunts and engine commands
-    if (not CurrentTeam^.ExtDriven) and (CurrentTeam^.Hedgehogs[0].BotLevel = 0) then
-        begin
-        for i:= Low(TWave) to High(TWave) do
-            if (s = Wavez[i].cmd) then
-                begin
+    for i:= Low(TWave) to High(TWave) do
+        if (s = Wavez[i].cmd) then
+            begin
+            // only works for local non-bot teams
+            if (not CurrentTeam^.ExtDriven) and (CurrentTeam^.Hedgehogs[0].BotLevel = 0) then
                 ParseCommand('/taunt ' + char(i), true);
-                exit
-                end;
-        end;
+            exit;
+            end;
 
     for j:= Low(TChatCmd) to High(TChatCmd) do
         if (s = ChatCommandz[j].ChatCmd) then
@@ -673,6 +785,45 @@
     ResetKbd;
 end;
 
+procedure OpenChat(s: shortstring);
+var i: Integer;
+begin
+    if GameState = gsConfirm then
+        ParseCommand('quit', true);
+    isInChatMode:= true;
+    SDL_StopTextInput();
+    SDL_StartTextInput();
+    //Make REALLY sure unexpected events are flushed (1 time is insufficient as of SDL 2.0.7)
+    for i := 1 to 2 do
+    begin
+        SDL_PumpEvents();
+        SDL_FlushEvent(SDL_TEXTINPUT);
+    end;
+    if length(s) = 0 then
+        SetLine(InputStr, '', true)
+    else
+        begin
+        SetLine(InputStr, s, true);
+        cursorPos:= length(s);
+        UpdateCursorCoords();
+        end;
+end;
+
+procedure CloseChat;
+begin
+    oldInput:= InputStr.s;
+    SetLine(InputStr, '', true);
+    ResetCursor();
+    CleanupInput();
+end;
+
+procedure RestoreChat;
+begin
+    if length(oldInput) > 0 then
+        OpenChat(oldInput);
+    oldInput:= '';
+end;
+
 procedure DelBytesFromInputStrBack(endIdx: integer; count: byte);
 var startIdx: integer;
 begin
@@ -953,7 +1104,9 @@
                 SetLine(InputStr, '', true);
                 ResetCursor();
                 end
-            else CleanupInput
+            else
+                CleanupInput;
+            oldInput:= '';
             end;
         SDL_SCANCODE_RETURN, SDL_SCANCODE_KP_ENTER:
             begin
@@ -1102,6 +1255,33 @@
                 DeleteSelected();
                 end
             end;
+            // make chat bigger
+        SDL_SCANCODE_KP_PLUS, SDL_SCANCODE_EQUALS:
+            begin
+            if ctrl then
+                begin
+                ChatSizeInc(selMode);
+                SkipNextInput:= true;
+                end;
+            end;
+            // make chat smaller
+        SDL_SCANCODE_KP_MINUS, SDL_SCANCODE_MINUS:
+            begin
+            if ctrl then
+                begin
+                ChatSizeDec(selMode);
+                SkipNextInput:= true;
+                end;
+            end;
+            // revert chat size to default
+        SDL_SCANCODE_KP_0, SDL_SCANCODE_0:
+            begin
+            if ctrl then
+                begin
+                ChatSizeReset();
+                SkipNextInput:= true;
+                end;
+            end;
         end;
 end;
 
@@ -1110,16 +1290,25 @@
     l: byte;
     isl: integer;
 begin
+    if SkipNextInput then
+        begin
+        SkipNextInput:= false;
+        exit;
+        end;
+
     DeleteSelected();
 
+    s:= '';
     l:= 0;
     // fetch all bytes of character/input
     while event.text[l] <> #0 do
         begin
-        s[l + 1]:= event.text[l];
-        inc(l)
+        if Length(s) < 255 then
+            begin
+            s[l + 1]:= event.text[l];
+            inc(l)
+            end
         end;
-
     if l > 0 then
         begin
         isl:= Length(InputStr.s);
@@ -1192,27 +1381,12 @@
 end;
 
 procedure chChat(var s: shortstring);
-var i: Integer;
 begin
     s:= s; // avoid compiler hint
-    isInChatMode:= true;
-    SDL_StopTextInput();
-    SDL_StartTextInput();
-    //Make REALLY sure unexpected events are flushed (1 time is insufficient as of SDL 2.0.7)
-    for i := 1 to 2 do
-    begin
-        SDL_PumpEvents();
-        SDL_FlushEvent(SDL_TEXTINPUT);
-    end;
-    //SDL_EnableKeyRepeat(200,45);
     if length(s) = 0 then
-        SetLine(InputStr, '', true)
+        OpenChat('')
     else
-        begin
-        SetLine(InputStr, '/clan ', true);
-        cursorPos:= 6;
-        UpdateCursorCoords();
-        end;
+        OpenChat('/clan ');
 end;
 
 procedure initModule;
@@ -1235,6 +1409,10 @@
     ChatHidden:= false;
     firstDraw:= true;
 
+    LastChatScaleValue:= 0;
+    LastUIScaleValue:= 0;
+    SkipNextInput:= false;
+
     InputLinePrefix.Tex:= nil;
     UpdateInputLinePrefix();
     inputStr.s:= '';
--- a/hedgewars/uCollisions.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uCollisions.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -52,6 +52,11 @@
         cX, cY: LongInt; //for visual effects only
         end;
 
+type TKickTest = record
+        kick: Boolean;
+        collisionMask: Word;
+    end;
+
 procedure initModule;
 procedure freeModule;
 
@@ -65,28 +70,37 @@
 function  CheckGearsLineCollision(Gear: PGear; oX, oY, tX, tY: hwFloat): PGearArray;
 function  CheckAllGearsLineCollision(SourceGear: PGear; oX, oY, tX, tY: hwFloat): PGearArray;
 
-function  UpdateHitOrder(Gear: PGear; Order: LongInt): boolean;
-procedure ClearHitOrderLeq(MinOrder: LongInt);
+function  UpdateHitOrder(Gear: PGear; Order: LongInt): boolean; inline;
+function  UpdateHitOrder(Gear: PGear; Order: LongInt; Global: boolean): boolean; inline;
+function  UpdateGlobalHitOrder(Gear: PGear; Order: LongInt): boolean; inline;
+procedure ClearHitOrderLeq(MinOrder: LongInt); inline;
+procedure ClearGlobalHitOrderLeq(MinOrder: LongInt); inline;
 procedure ClearHitOrder();
 
 procedure RefillProximityCache(SourceGear: PGear; radius: LongInt);
 procedure RemoveFromProximityCache(Gear: PGear);
 procedure ClearProximityCache();
 
-function  TestCollisionXwithGear(Gear: PGear; Dir: LongInt): Word;
-function  TestCollisionYwithGear(Gear: PGear; Dir: LongInt): Word;
+function  TestCollisionXImpl(centerX, centerY, radius, direction: LongInt; collisionMask: Word): Word;
+function  TestCollisionYImpl(centerX, centerY, radius, direction: LongInt; collisionMask: Word): Word;
+
+function  TestCollisionXwithGear(Gear: PGear; Dir: LongInt): Word; inline;
+function  TestCollisionYwithGear(Gear: PGear; Dir: LongInt): Word; inline;
+
+function  TestCollisionX(Gear: PGear; Dir: LongInt): Word; inline;
+function  TestCollisionY(Gear: PGear; Dir: LongInt): Word; inline;
+
+function  TestCollisionXwithXYShift(Gear: PGear; ShiftX: hwFloat; ShiftY: LongInt; Dir: LongInt): Word; inline;
+function  TestCollisionXwithXYShift(Gear: PGear; ShiftX: hwFloat; ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word; inline;
+function  TestCollisionYwithXYShift(Gear: PGear; ShiftX, ShiftY: LongInt; Dir: LongInt): Word; inline;
+function  TestCollisionYwithXYShift(Gear: PGear; ShiftX, ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word; inline;
+
+function  TestCollisionXKickImpl(centerX, centerY, radius, direction: LongInt; collisionMask, kickMask: Word): TKickTest;
+function  TestCollisionYKickImpl(centerX, centerY, radius, direction: LongInt; collisionMask, kickMask: Word): TKickTest;
 
 function  TestCollisionXKick(Gear: PGear; Dir: LongInt): Word;
 function  TestCollisionYKick(Gear: PGear; Dir: LongInt): Word;
 
-function  TestCollisionX(Gear: PGear; Dir: LongInt): Word;
-function  TestCollisionY(Gear: PGear; Dir: LongInt): Word;
-
-function  TestCollisionXwithXYShift(Gear: PGear; ShiftX: hwFloat; ShiftY: LongInt; Dir: LongInt): Word; inline;
-function  TestCollisionXwithXYShift(Gear: PGear; ShiftX: hwFloat; ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word;
-function  TestCollisionYwithXYShift(Gear: PGear; ShiftX, ShiftY: LongInt; Dir: LongInt): Word; inline;
-function  TestCollisionYwithXYShift(Gear: PGear; ShiftX, ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word;
-
 function  TestRectangleForObstacle(x1, y1, x2, y2: LongInt; landOnly: boolean): boolean;
 
 function  CheckCoordInWater(X, Y: LongInt): boolean; inline;
@@ -111,6 +125,7 @@
     cinfos: array[0..MAXRECTSINDEX] of TCollisionEntry;
     ga: TGearArray;
     ordera: TGearHitOrder;
+    globalordera: TGearHitOrder;
     proximitya: TGearProximityCache;
 
 procedure AddCI(Gear: PGear);
@@ -329,51 +344,80 @@
     end;
 end;
 
-function UpdateHitOrder(Gear: PGear; Order: LongInt): boolean;
+function UpdateHitOrderImpl(HitOrder: PGearHitOrder; Gear: PGear; Order: LongInt): boolean;
 var i: LongInt;
 begin
-UpdateHitOrder:= true;
-for i:= 0 to ordera.Count - 1 do
-    if ordera.ar[i] = Gear then
+    UpdateHitOrderImpl:= true;
+    for i := 0 to HitOrder^.Count - 1 do
+        if HitOrder^.ar[i] = Gear then
         begin
-        if Order <= ordera.order[i] then UpdateHitOrder:= false;
-        ordera.order[i]:= Max(ordera.order[i], order);
-        exit;
+            if Order <= HitOrder^.order[i] then
+                UpdateHitOrderImpl := false;
+            HitOrder^.order[i] := Max(HitOrder^.order[i], Order);
+            exit;
         end;
 
-if ordera.Count > cMaxGearHitOrderInd then
-    UpdateHitOrder:= false
-else
+    if HitOrder^.Count > cMaxGearHitOrderInd then
+        UpdateHitOrderImpl := false
+    else
     begin
-    ordera.ar[ordera.Count]:= Gear;
-    ordera.order[ordera.Count]:= Order;
-    Inc(ordera.Count);
+        HitOrder^.ar[HitOrder^.Count] := Gear;
+        HitOrder^.order[HitOrder^.Count] := Order;
+        Inc(HitOrder^.Count);
     end
 end;
 
-procedure ClearHitOrderLeq(MinOrder: LongInt);
+function UpdateHitOrder(Gear: PGear; Order: LongInt): boolean; inline;
+begin
+    UpdateHitOrder := UpdateHitOrderImpl(@ordera, Gear, Order);
+end;
+
+function UpdateHitOrder(Gear: PGear; Order: LongInt; Global: boolean): boolean; inline;
+begin
+    if Global then
+        UpdateHitOrder := UpdateHitOrderImpl(@globalordera, Gear, Order)
+    else
+        UpdateHitOrder := UpdateHitOrderImpl(@ordera, Gear, Order)
+end;
+
+function UpdateGlobalHitOrder(Gear: PGear; Order: LongInt): boolean; inline;
+begin
+    UpdateGlobalHitOrder := UpdateHitOrderImpl(@globalordera, Gear, Order);
+end;
+
+procedure ClearHitOrderLeqImpl(HitOrder: PGearHitOrder; MinOrder: LongInt);
 var i, freeIndex: LongInt;
 begin;
-freeIndex:= 0;
-i:= 0;
+    freeIndex:= 0;
+    i:= 0;
 
-while i < ordera.Count do
+    while i < HitOrder^.Count do
     begin
-        if ordera.order[i] <= MinOrder then
-            Dec(ordera.Count)
+        if HitOrder^.order[i] <= MinOrder then
+            Dec(HitOrder^.Count)
         else
+        begin
+            if freeIndex < i then
             begin
-                if freeIndex < i then
-                begin
-                ordera.ar[freeIndex]:= ordera.ar[i];
-                ordera.order[freeIndex]:= ordera.order[i];
-                end;
+                HitOrder^.ar[freeIndex]:= HitOrder^.ar[i];
+                HitOrder^.order[freeIndex]:= HitOrder^.order[i];
+            end;
             Inc(freeIndex);
-            end;
+        end;
         Inc(i)
     end
 end;
 
+procedure ClearHitOrderLeq(MinOrder: LongInt); inline;
+begin
+    ClearHitOrderLeqImpl(@ordera, MinOrder);
+end;
+
+procedure ClearGlobalHitOrderLeq(MinOrder: LongInt); inline;
+begin
+    ClearHitOrderLeqImpl(@globalordera, MinOrder);
+end;
+
 procedure ClearHitOrder();
 begin
     ordera.Count:= 0;
@@ -423,194 +467,110 @@
     proximitya.Count:= 0;
 end;
 
-function TestCollisionXwithGear(Gear: PGear; Dir: LongInt): Word;
-var x, y, i: LongInt;
+function TestCollisionXImpl(centerX, centerY, radius, direction: LongInt; collisionMask: Word): Word;
+var x, y, minY, maxY: LongInt;
 begin
-// Special case to emulate the old intersect gear clearing, but with a bit of slop for pixel overlap
-if (Gear^.CollisionMask = lfNotCurHogCrate) and (Gear^.Kind <> gtHedgehog) and (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) and
-    ((hwRound(Gear^.Hedgehog^.Gear^.X) + Gear^.Hedgehog^.Gear^.Radius + 16 < hwRound(Gear^.X) - Gear^.Radius) or
-     (hwRound(Gear^.Hedgehog^.Gear^.X) - Gear^.Hedgehog^.Gear^.Radius - 16 > hwRound(Gear^.X) + Gear^.Radius)) then
-    Gear^.CollisionMask:= lfAll;
+    if direction < 0 then
+        x := centerX - radius
+    else
+        x := centerX + radius;
 
-x:= hwRound(Gear^.X);
-if Dir < 0 then
-    x:= x - Gear^.Radius
-else
-    x:= x + Gear^.Radius;
-
-if (x and LAND_WIDTH_MASK) = 0 then
+    if (x and LAND_WIDTH_MASK) = 0 then
     begin
-    y:= hwRound(Gear^.Y) - Gear^.Radius + 1;
-    i:= y + Gear^.Radius * 2 - 2;
-    repeat
-        if (y and LAND_HEIGHT_MASK) = 0 then
-            if Land[y, x] and Gear^.CollisionMask <> 0 then
-                exit(Land[y, x] and Gear^.CollisionMask);
-        inc(y)
-    until (y > i);
+        minY := max(centerY - radius + 1, 0);
+        maxY := min(centerY + radius - 1, LAND_HEIGHT - 1);
+        for y := minY to maxY do
+            if Land[y, x] and collisionMask <> 0 then
+                exit(Land[y, x] and collisionMask);
     end;
-TestCollisionXwithGear:= 0
+    TestCollisionXImpl := 0;
 end;
 
-function TestCollisionYwithGear(Gear: PGear; Dir: LongInt): Word;
-var x, y, i: LongInt;
+function TestCollisionYImpl(centerX, centerY, radius, direction: LongInt; collisionMask: Word): Word;
+var x, y, minX, maxX: LongInt;
 begin
-// Special case to emulate the old intersect gear clearing, but with a bit of slop for pixel overlap
-if (Gear^.CollisionMask = lfNotCurHogCrate) and (Gear^.Kind <> gtHedgehog) and (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) and
-    ((hwRound(Gear^.Hedgehog^.Gear^.Y) + Gear^.Hedgehog^.Gear^.Radius + 16 < hwRound(Gear^.Y) - Gear^.Radius) or
-     (hwRound(Gear^.Hedgehog^.Gear^.Y) - Gear^.Hedgehog^.Gear^.Radius - 16 > hwRound(Gear^.Y) + Gear^.Radius)) then
-    Gear^.CollisionMask:= lfAll;
-
-y:= hwRound(Gear^.Y);
-if Dir < 0 then
-    y:= y - Gear^.Radius
-else
-    y:= y + Gear^.Radius;
+    if direction < 0 then
+        y := centerY - radius
+    else
+        y := centerY + radius;
 
-if (y and LAND_HEIGHT_MASK) = 0 then
+    if (y and LAND_HEIGHT_MASK) = 0 then
     begin
-    x:= hwRound(Gear^.X) - Gear^.Radius + 1;
-    i:= x + Gear^.Radius * 2 - 2;
-    repeat
-        if (x and LAND_WIDTH_MASK) = 0 then
-            if Land[y, x] and Gear^.CollisionMask <> 0 then
-                begin
-                exit(Land[y, x] and Gear^.CollisionMask)
-                end;
-        inc(x)
-    until (x > i);
+        minX := max(centerX - radius + 1, 0);
+        maxX := min(centerX + radius - 1, LAND_WIDTH - 1);
+        for x := minX to maxX do
+            if Land[y, x] and collisionMask <> 0 then
+                exit(Land[y, x] and collisionMask);
     end;
-TestCollisionYwithGear:= 0
+    TestCollisionYImpl := 0;
+end;
+
+function TestCollisionX(Gear: PGear; Dir: LongInt): Word; inline;
+begin
+    TestCollisionX := TestCollisionXImpl(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Radius, Dir, Gear^.CollisionMask and lfLandMask);
+end;
+
+function TestCollisionY(Gear: PGear; Dir: LongInt): Word; inline;
+begin
+    TestCollisionY := TestCollisionYImpl(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Radius, Dir, Gear^.CollisionMask and lfLandMask);
 end;
 
-function TestCollisionXKick(Gear: PGear; Dir: LongInt): Word;
-var x, y, mx, my, i: LongInt;
-    pixel: Word;
+procedure LegacyFixupX(Gear: PGear);
 begin
-pixel:= 0;
-x:= hwRound(Gear^.X);
-if Dir < 0 then
-    x:= x - Gear^.Radius
-else
-    x:= x + Gear^.Radius;
-
-if (x and LAND_WIDTH_MASK) = 0 then
-    begin
-    y:= hwRound(Gear^.Y) - Gear^.Radius + 1;
-    i:= y + Gear^.Radius * 2 - 2;
-    repeat
-        if (y and LAND_HEIGHT_MASK) = 0 then
-            begin
-            if Land[y, x] and Gear^.CollisionMask <> 0 then
-                begin
-                if ((Land[y, x] and Gear^.CollisionMask) and lfLandMask) <> 0 then
-                    exit(Land[y, x] and Gear^.CollisionMask)
-                else
-                    pixel:= Land[y, x] and Gear^.CollisionMask;
-                end;
-            end;
-    inc(y)
-    until (y > i);
-    end;
-TestCollisionXKick:= pixel;
+// Special case to emulate the old intersect gear clearing, but with a bit of slop for pixel overlap
+    if (Gear^.CollisionMask = lfNotCurHogCrate) and (Gear^.Kind <> gtHedgehog) and (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) and
+    ((hwRound(Gear^.Hedgehog^.Gear^.X) + Gear^.Hedgehog^.Gear^.Radius + 16 < hwRound(Gear^.X) - Gear^.Radius) or
+    (hwRound(Gear^.Hedgehog^.Gear^.X) - Gear^.Hedgehog^.Gear^.Radius - 16 > hwRound(Gear^.X) + Gear^.Radius)) then
+        Gear^.CollisionMask:= lfAll;
+end;
 
-if pixel <> 0 then
-    begin
-    if hwAbs(Gear^.dX) < cHHKick then
-        exit;
-    if (Gear^.State and gstHHJumping <> 0)
-    and (hwAbs(Gear^.dX) < _0_4) then
-        exit;
-
-    mx:= hwRound(Gear^.X);
-    my:= hwRound(Gear^.Y);
+procedure LegacyFixupY(Gear: PGear);
+begin
+// Special case to emulate the old intersect gear clearing, but with a bit of slop for pixel overlap
+    if (Gear^.CollisionMask = lfNotCurHogCrate) and (Gear^.Kind <> gtHedgehog) and (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) and
+    ((hwRound(Gear^.Hedgehog^.Gear^.Y) + Gear^.Hedgehog^.Gear^.Radius + 16 < hwRound(Gear^.Y) - Gear^.Radius) or
+    (hwRound(Gear^.Hedgehog^.Gear^.Y) - Gear^.Hedgehog^.Gear^.Radius - 16 > hwRound(Gear^.Y) + Gear^.Radius)) then
+        Gear^.CollisionMask:= lfAll;
+end;
 
-    for i:= 0 to Pred(Count) do
-        with cinfos[i] do
-            if  (Gear <> cGear) and
-                ((mx > x) xor (Dir > 0)) and
-                (
-                  ((cGear^.Kind in [gtHedgehog, gtMine, gtKnife]) and ((Gear^.State and gstNotKickable) = 0)) or
-                // only apply X kick if the barrel is knocked over
-                  ((cGear^.Kind = gtExplosives) and ((cGear^.State and gsttmpflag) <> 0))
-                ) and
-                (sqr(mx - x) + sqr(my - y) <= sqr(Radius + Gear^.Radius + 2)) then
-                    begin
-                    with cGear^ do
-                        begin
-                        dX:= Gear^.dX;
-                        dY:= Gear^.dY * _0_5;
-                        State:= State or gstMoving;
-                        if Kind = gtKnife then State:= State and (not gstCollision);
-                        Active:= true
-                        end;
-                    DeleteCI(cGear);
-                    exit(0);
-                    end
-    end
+function TestCollisionXwithGear(Gear: PGear; Dir: LongInt): Word; inline;
+begin
+    LegacyFixupX(Gear);
+    TestCollisionXwithGear:= TestCollisionXImpl(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Radius, Dir, Gear^.CollisionMask);
 end;
 
-function TestCollisionYKick(Gear: PGear; Dir: LongInt): Word;
-var x, y, mx, my,  myr, i: LongInt;
-    pixel: Word;
+function TestCollisionYwithGear(Gear: PGear; Dir: LongInt): Word; inline;
 begin
-pixel:= 0;
-y:= hwRound(Gear^.Y);
-if Dir < 0 then
-    y:= y - Gear^.Radius
-else
-    y:= y + Gear^.Radius;
+    LegacyFixupY(Gear);
+    TestCollisionYwithGear:= TestCollisionYImpl(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Radius, Dir, Gear^.CollisionMask);
+end;
 
-if (y and LAND_HEIGHT_MASK) = 0 then
-    begin
-    x:= hwRound(Gear^.X) - Gear^.Radius + 1;
-    i:= x + Gear^.Radius * 2 - 2;
-    repeat
-    if (x and LAND_WIDTH_MASK) = 0 then
-        if Land[y, x] > 0 then
-            begin
-            if ((Land[y, x] and Gear^.CollisionMask) and lfLandMask) <> 0 then
-                exit(Land[y, x] and Gear^.CollisionMask)
-            else // if Land[y, x] <> 0 then
-                pixel:= Land[y, x] and Gear^.CollisionMask;
-            end;
-    inc(x)
-    until (x > i);
-    end;
-TestCollisionYKick:= pixel;
-
-if pixel <> 0 then
+function TestCollisionXwithXYShift(Gear: PGear; ShiftX: hwFloat; ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word; inline;
+var collisionMask: Word;
+begin
+    if withGear then
     begin
-    if hwAbs(Gear^.dY) < cHHKick then
-        exit;
-    if (Gear^.State and gstHHJumping <> 0) and (not Gear^.dY.isNegative) and (Gear^.dY < _0_4) then
-        exit;
+        LegacyFixupX(Gear);
+        collisionMask:= Gear^.CollisionMask;
+    end
+    else
+        collisionMask:= Gear^.CollisionMask and lfLandMask;
 
-    mx:= hwRound(Gear^.X);
-    my:= hwRound(Gear^.Y);
-    myr:= my+Gear^.Radius;
+    TestCollisionXwithXYShift := TestCollisionXImpl(hwRound(Gear^.X + ShiftX), hwRound(Gear^.Y) + ShiftY, Gear^.Radius, Dir, collisionMask)
+end;
 
-    for i:= 0 to Pred(Count) do
-        with cinfos[i] do
-            if (Gear <> cGear) and
-               ((myr > y) xor (Dir > 0)) and
-               (Gear^.State and gstNotKickable = 0) and
-               (cGear^.Kind in [gtHedgehog, gtMine, gtKnife, gtExplosives]) and
-               (sqr(mx - x) + sqr(my - y) <= sqr(Radius + Gear^.Radius + 2)) then
-                    begin
-                    with cGear^ do
-                        begin
-                        if (Kind <> gtExplosives) or ((State and gsttmpflag) <> 0) then
-                            dX:= Gear^.dX * _0_5;
-                        dY:= Gear^.dY;
-                        State:= State or gstMoving;
-                        if Kind = gtKnife then State:= State and (not gstCollision);
-                        Active:= true
-                        end;
-                    DeleteCI(cGear);
-                    exit(0)
-                    end
+function TestCollisionYwithXYShift(Gear: PGear; ShiftX, ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word; inline;
+var collisionMask: Word;
+begin
+    if withGear then
+    begin
+        LegacyFixupY(Gear);
+        collisionMask:= Gear^.CollisionMask;
     end
+    else
+        collisionMask:= Gear^.CollisionMask and lfLandMask;
+
+    TestCollisionYwithXYShift := TestCollisionYImpl(hwRound(Gear^.X) + ShiftX, hwRound(Gear^.Y) + ShiftY, Gear^.Radius, Dir, collisionMask)
 end;
 
 function TestCollisionXwithXYShift(Gear: PGear; ShiftX: hwFloat; ShiftY: LongInt; Dir: LongInt): Word; inline;
@@ -618,80 +578,163 @@
     TestCollisionXwithXYShift:= TestCollisionXwithXYShift(Gear, ShiftX, ShiftY, Dir, true);
 end;
 
-function TestCollisionXwithXYShift(Gear: PGear; ShiftX: hwFloat; ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word;
-begin
-Gear^.X:= Gear^.X + ShiftX;
-Gear^.Y:= Gear^.Y + int2hwFloat(ShiftY);
-if withGear then
-    TestCollisionXwithXYShift:= TestCollisionXwithGear(Gear, Dir)
-else TestCollisionXwithXYShift:= TestCollisionX(Gear, Dir);
-Gear^.X:= Gear^.X - ShiftX;
-Gear^.Y:= Gear^.Y - int2hwFloat(ShiftY)
-end;
-
-function TestCollisionX(Gear: PGear; Dir: LongInt): Word;
-var x, y, i: LongInt;
-begin
-x:= hwRound(Gear^.X);
-if Dir < 0 then
-    x:= x - Gear^.Radius
-else
-    x:= x + Gear^.Radius;
-
-if (x and LAND_WIDTH_MASK) = 0 then
-    begin
-    y:= hwRound(Gear^.Y) - Gear^.Radius + 1;
-    i:= y + Gear^.Radius * 2 - 2;
-    repeat
-        if (y and LAND_HEIGHT_MASK) = 0 then
-            if ((Land[y, x] and Gear^.CollisionMask) and lfLandMask) <> 0 then
-                exit(Land[y, x] and Gear^.CollisionMask);
-    inc(y)
-    until (y > i);
-    end;
-TestCollisionX:= 0
-end;
-
-function TestCollisionY(Gear: PGear; Dir: LongInt): Word;
-var x, y, i: LongInt;
-begin
-y:= hwRound(Gear^.Y);
-if Dir < 0 then
-    y:= y - Gear^.Radius
-else
-    y:= y + Gear^.Radius;
-
-if (y and LAND_HEIGHT_MASK) = 0 then
-    begin
-    x:= hwRound(Gear^.X) - Gear^.Radius + 1;
-    i:= x + Gear^.Radius * 2 - 2;
-    repeat
-        if (x and LAND_WIDTH_MASK) = 0 then
-            if ((Land[y, x] and Gear^.CollisionMask) and lfLandMask) <> 0 then
-                exit(Land[y, x] and Gear^.CollisionMask);
-    inc(x)
-    until (x > i);
-    end;
-TestCollisionY:= 0
-end;
-
 function TestCollisionYwithXYShift(Gear: PGear; ShiftX, ShiftY: LongInt; Dir: LongInt): Word; inline;
 begin
     TestCollisionYwithXYShift:= TestCollisionYwithXYShift(Gear, ShiftX, ShiftY, Dir, true);
 end;
 
-function TestCollisionYwithXYShift(Gear: PGear; ShiftX, ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word;
+function TestCollisionXKickImpl(centerX, centerY, radius, direction: LongInt; collisionMask, kickMask: Word): TKickTest;
+var x, y, minY, maxY: LongInt;
+begin
+    TestCollisionXKickImpl.kick := false;
+    TestCollisionXKickImpl.collisionMask := 0;
+
+    if direction < 0 then
+        x := centerX - radius
+    else
+        x := centerX + radius;
+
+    if (x and LAND_WIDTH_MASK) = 0 then
+    begin
+        minY := max(centerY - radius + 1, 0);
+        maxY := min(centerY + radius - 1, LAND_HEIGHT - 1);
+        for y := minY to maxY do
+            if Land[y, x] and collisionMask <> 0 then
+            begin
+                TestCollisionXKickImpl.kick := false;
+                TestCollisionXKickImpl.collisionMask := Land[y, x] and collisionMask;
+                exit
+            end
+            else if Land[y, x] and kickMask <> 0 then
+            begin
+                TestCollisionXKickImpl.kick := true;
+                TestCollisionXKickImpl.collisionMask := Land[y, x] and kickMask;
+            end;
+    end;
+end;
+
+function TestCollisionYKickImpl(centerX, centerY, radius, direction: LongInt; collisionMask, kickMask: Word): TKickTest;
+var x, y, minX, maxX: LongInt;
 begin
-Gear^.X:= Gear^.X + int2hwFloat(ShiftX);
-Gear^.Y:= Gear^.Y + int2hwFloat(ShiftY);
+    TestCollisionYKickImpl.kick := false;
+    TestCollisionYKickImpl.collisionMask := 0;
+
+    if direction < 0 then
+        y := centerY - radius
+    else
+        y := centerY + radius;
+
+    if (y and LAND_HEIGHT_MASK) = 0 then
+    begin
+        minX := max(centerX - radius + 1, 0);
+        maxX := min(centerX + radius - 1, LAND_WIDTH - 1);
+        for x := minX to maxX do
+            if Land[y, x] and collisionMask <> 0 then
+            begin
+                TestCollisionYKickImpl.kick := false;
+                TestCollisionYKickImpl.collisionMask := Land[y, x] and collisionMask;
+                exit
+            end
+            else if Land[y, x] and kickMask <> 0 then
+            begin
+                TestCollisionYKickImpl.kick := true;
+                TestCollisionYKickImpl.collisionMask := Land[y, x] and kickMask;
+            end;
+    end;
+end;
+
+function TestCollisionXKick(Gear: PGear; Dir: LongInt): Word;
+var centerX, centerY, i: LongInt;
+    test: TKickTest;
+    info: TCollisionEntry;
+begin
+    test := TestCollisionXKickImpl(
+        hwRound(Gear^.X), hwRound(Gear^.Y),
+        Gear^.Radius, Dir,
+        Gear^.CollisionMask and lfLandMask, Gear^.CollisionMask);
+
+    TestCollisionXKick := test.collisionMask;
 
-if withGear then
-  TestCollisionYwithXYShift:= TestCollisionYwithGear(Gear, Dir)
-else
-  TestCollisionYwithXYShift:= TestCollisionY(Gear, Dir);
+    if test.kick then
+    begin
+        if hwAbs(Gear^.dX) < cHHKick then
+            exit;
+        if ((Gear^.State and gstHHJumping) <> 0) and (hwAbs(Gear^.dX) < _0_4) then
+            exit;
+
+        centerX := hwRound(Gear^.X);
+        centerY := hwRound(Gear^.Y);
+
+        for i:= 0 to Pred(Count) do
+        begin
+            info:= cinfos[i];
+            if (Gear <> info.cGear)
+                and ((centerX > info.X) xor (Dir > 0))
+                and ((info.cGear^.State and gstNotKickable) = 0)
+                and ((info.cGear^.Kind in [gtHedgehog, gtMine, gtKnife, gtSentry])
+                    or (info.cGear^.Kind = gtExplosives) and ((info.cGear^.State and gsttmpflag) <> 0)) // only apply X kick if the barrel is knocked over
+                and (sqr(centerX - info.X) + sqr(centerY - info.Y) <= sqr(info.Radius + Gear^.Radius + 2)) then
+            begin
+                with info.cGear^ do
+                begin
+                    dX := Gear^.dX;
+                    dY := Gear^.dY * _0_5;
+                    State := State or gstMoving;
+                    if Kind = gtKnife then State := State and (not gstCollision);
+                    Active:= true
+                end;
+                DeleteCI(info.cGear);
+                exit(0)
+            end
+        end
+    end
+end;
 
-Gear^.X:= Gear^.X - int2hwFloat(ShiftX);
-Gear^.Y:= Gear^.Y - int2hwFloat(ShiftY)
+function TestCollisionYKick(Gear: PGear; Dir: LongInt): Word;
+var centerX, centerY, i: LongInt;
+    test: TKickTest;
+    info: TCollisionEntry;
+begin
+    test := TestCollisionYKickImpl(
+        hwRound(Gear^.X), hwRound(Gear^.Y),
+        Gear^.Radius, Dir,
+        Gear^.CollisionMask and lfLandMask, Gear^.CollisionMask);
+
+    TestCollisionYKick := test.collisionMask;
+
+    if test.kick then
+    begin
+        if hwAbs(Gear^.dY) < cHHKick then
+            exit;
+        if ((Gear^.State and gstHHJumping) <> 0) and (not Gear^.dY.isNegative) and (Gear^.dY < _0_4) then
+            exit;
+
+        centerX := hwRound(Gear^.X);
+        centerY := hwRound(Gear^.Y);
+
+        for i := 0 to Pred(Count) do
+        begin
+            info := cinfos[i];
+            if (Gear <> info.cGear)
+                and ((centerY + Gear^.Radius > info.Y) xor (Dir > 0))
+                and (info.cGear^.State and gstNotKickable = 0)
+                and (info.cGear^.Kind in [gtHedgehog, gtMine, gtKnife, gtExplosives, gtSentry])
+                and (sqr(centerX - info.X) + sqr(centerY - info.Y) <= sqr(info.Radius + Gear^.Radius + 2)) then
+            begin
+                with info.cGear^ do
+                begin
+                    if (Kind <> gtExplosives) or ((State and gsttmpflag) <> 0) then
+                        dX := Gear^.dX * _0_5;
+                    dY := Gear^.dY;
+                    State := State or gstMoving;
+                    if Kind = gtKnife then State:= State and (not gstCollision);
+                    Active := true
+                end;
+                DeleteCI(info.cGear);
+                exit(0)
+            end
+        end
+    end
 end;
 
 function TestRectangleForObstacle(x1, y1, x2, y2: LongInt; landOnly: boolean): boolean;
--- a/hedgewars/uCommandHandlers.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uCommandHandlers.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -27,7 +27,7 @@
 
 implementation
 uses uCommands, uTypes, uVariables, uIO, uDebug, uConsts, uScript, uUtils, SDLh, uWorld, uRandom, uCaptions
-    , uVisualGearsList, uGearsHedgehog
+    , uVisualGearsList, uGearsHedgehog, uChat
      {$IFDEF USE_VIDEO_RECORDING}, uVideoRec {$ENDIF};
 
 var cTagsMasks : array[0..15] of byte = (7, 0, 0, 0, 0, 4, 5, 6, 15, 8, 8, 8, 8, 12, 13, 14);
@@ -49,15 +49,16 @@
 begin
     s:= s; // avoid compiler hint
     if (GameState = gsGame) then
-    begin
-        isInChatMode:= false;
+        begin
+        CloseChat;
         GameState:= gsConfirm;
-    end
-    else begin
+        end
+    else
         if GameState = gsConfirm then
+            begin
             GameState:= gsGame;
-    end;
-
+            RestoreChat;
+            end;
     updateCursorVisibility;
 end;
 
@@ -856,6 +857,11 @@
 cAirMines:= StrToInt(s)
 end;
 
+procedure chSentries(var s: shortstring);
+begin
+cSentries:= StrToInt(s)
+end;
+        
 procedure chExplosives(var s: shortstring);
 begin
 cExplosives:= StrToInt(s)
@@ -880,6 +886,7 @@
 procedure chFastUntilLag(var s: shortstring);
 begin
     fastUntilLag:= StrToInt(s) <> 0;
+    fastForward:= fastUntilLag;
 
     if not fastUntilLag then
     begin
@@ -889,6 +896,53 @@
     end
 end;
 
+procedure chFastForward(var cmd: shortstring);
+var str0, str1, str2 : shortstring;
+    h, m, s : integer;
+begin
+   if gameType <> gmtDemo then
+      exit;
+   if CountChar(cmd, ':') > 2 then
+      exit;
+   str0:= cmd;
+   SplitByChar(str0, str1, ':');
+   SplitByChar(str1, str2, ':');
+   if str2 <> '' then
+   begin
+      h:= StrToInt(str0);
+      m:= StrToInt(str1);
+      s:= StrToInt(str2)
+   end
+   else if str1 <> '' then
+   begin
+      h:= 0;
+      m:= StrToInt(str0);
+      s:= StrToInt(str1)
+   end
+   else
+   begin
+      h:= 0;
+      m:= 0;
+      s:= StrToInt(str0)
+   end;
+   FFGameTick:= (s + m * 60 + h * 60 * 60) * 1000;
+   if FFGameTick > GameTicks then
+   begin
+      fastUntilLag:= True;
+      fastForward:= True;
+   end
+end;
+
+procedure chStopFastForward(var s: shortstring);
+begin
+   if gameType <> gmtDemo then
+      exit;
+   fastUntilLag:= False;
+   fastForward:= False;
+   AddVisualGear(0, 0, vgtTeamHealthSorter);
+   AddVisualGear(0, 0, vgtSmoothWindBar)
+end;
+
 procedure chCampVar(var s:shortstring);
 begin
   CampaignVariable := s;
@@ -980,6 +1034,7 @@
     RegisterVariable('minedudpct',@chMineDudPercent, false);
     RegisterVariable('minesnum', @chLandMines     , false);
     RegisterVariable('airmines', @chAirMines      , false);
+    RegisterVariable('sentries', @chSentries      , false);
     RegisterVariable('explosives',@chExplosives    , false);
     RegisterVariable('gmflags' , @chGameFlags      , false);
     RegisterVariable('turntime', @chHedgehogTurnTime, false);
@@ -1020,6 +1075,8 @@
     RegisterVariable('record'  , @chRecord       , true );
     RegisterVariable('worldedge',@chWorldEdge    , false);
     RegisterVariable('advmapgen',@chAdvancedMapGenMode, false);
+    RegisterVariable('ff'      , @chFastForward  , true);
+    RegisterVariable('sff'     , @chStopFastForward, true);
     RegisterVariable('+mission', @chShowMission_p, true);
     RegisterVariable('-mission', @chShowMission_m, true);
     RegisterVariable('gearinfo', @chGearInfo     , true );
--- a/hedgewars/uConsts.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uConsts.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -171,6 +171,7 @@
 
     cVisibleWater       : LongInt = 128;
     cTeamHealthWidth    : LongInt = 128;
+    cTeamHealthHeight   : LongInt = round(19 * HDPIScaleFactor);
     cGearContourThreshold : LongInt = 179; // if water opacity is higher than this, draw contour for some gears when in water
 
     cifRandomize = $00000001;
@@ -194,6 +195,7 @@
 
     cBorderWidth = 6; // width of indestructible border
                       // width of 3 allowed hogs to be knocked through with grenade
+    cCloudOffset = 1184; // Y offset for clouds (cloud height = LAND_HEIGHT-cCloudOffset)
 
     cHHRadius = 9; // hedgehog radius
     cHHStepTicks = 29;
@@ -209,6 +211,7 @@
 
     // some gear constants
     cBarrelHealth = 60;  // initial barrel health
+    cSentryHealth = 60;  // initial sentry health
     cShotgunRadius = 22; // radius of land a shotgun shot destroys
     cBlowTorchC    = 6;  // blow torch gear radius component (added to cHHRadius to get the full radius)
     cakeDmg =   75;      // default cake damage
@@ -218,18 +221,34 @@
     cKbdMaxIndex = 65536;//need more room for the modifier keys
 
     // font stuff
-    cFontBorder = 2 * HDPIScaleFactor;
-    cFontPadding = 2 * HDPIScaleFactor;
+    cFontBorder = round(2 * HDPIScaleFactor);
+    cFontPadding = round(2 * HDPIScaleFactor);
 
     cDefaultBuildMaxDist = 256; // default max. building distance with girder/rubber
     cResurrectorDist = 100; // effect distance of resurrector
     cSeductionDist = 250; // effect distance of seduction
 
     ExtraTime = 30000; // amount of time (ms) given for using Extra Time
+    MaxMoreWindTime = 5000; // amount of time (ms) for land objects like gfMine to be affected after end of turn
 
     // do not change this value
     cDefaultZoomLevel = 2.0; // 100% zoom
 
+    // Maximum camera positions, values are "pixels outside the mainland"
+    cCamLimitX = 1920; // X (left/right) camera limit, no border. Note: Influences sndFlyAway
+                       // Note: Also make sure it's far enough from airplane spawn
+    cCamLimitY = 2048; // Top Y camera limit, no border
+    cCamLimitBorderX = 1920; // X (left/right) camera limit, with border
+    cCamLimitBorderY = 2048; // Top Y camera limit, with border
+
+    cFontPxToPtRatio   = 1.3281472327365;
+    cBaseChatFontHeight = 12;
+    cChatScaleRelDelta = 0.1;
+    cMinChatScaleValue = 0.8;
+    cMaxChatScaleValue = 4.0;
+
+    cDefaultUIScaleLevel = 1.0;
+
     // game flags
     gfAny                = $FFFFFFFF; // mask for all possible gameflags
     gfOneClanMode        = $00000001; // Game does not end if there's only one clan in play. For missions
--- a/hedgewars/uFloat.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uFloat.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -118,6 +118,7 @@
          _0_0128: hwFloat = (isNegative: false; QWordValue:    54975581);
            _0_02: hwFloat = (isNegative: false; QWordValue:    85899345);
            _0_03: hwFloat = (isNegative: false; QWordValue:   128849018);
+           _0_05: hwFloat = (isNegative: false; QWordValue:   214748365);
            _0_07: hwFloat = (isNegative: false; QWordValue:   300647710);
            _0_08: hwFloat = (isNegative: false; QWordValue:   343597383);
             _0_1: hwFloat = (isNegative: false; QWordValue:   429496730);
@@ -297,8 +298,16 @@
 operator * (const z1, z2: hwFloat) z : hwFloat; inline;
 begin
     z.isNegative:= z1.isNegative xor z2.isNegative;
-    z.QWordValue:= QWord(z1.Round) * z2.Frac + QWord(z1.Frac) * z2.Round + ((QWord(z1.Frac) * z2.Frac) shr 32);
-    z.Round:= z.Round + QWord(z1.Round) * z2.Round;
+    
+    if (z1.Round = 0) and (z2.Round = 0) then
+        begin
+        z.QWordValue:= (QWord(z1.Frac) * z2.Frac) shr 32;
+        end 
+    else
+        begin
+        z.QWordValue:= QWord(z1.Round) * z2.Frac + QWord(z1.Frac) * z2.Round + ((QWord(z1.Frac) * z2.Frac) shr 32);
+        z.Round:= z.Round + QWord(z1.Round) * z2.Round;
+    end
 end;
 
 operator * (const z1: hwFloat; const z2: LongInt) z : hwFloat; inline;
@@ -370,8 +379,8 @@
 
 function hwSqrt1(const t: hwFloat): hwFloat;
 const pwr = 8; // even value, feel free to adjust
-      rThreshold: QWord = 1 shl (pwr + 32);
-      lThreshold: QWord = 1 shl (pwr div 2 + 32);
+      rThreshold: QWord = QWord(1) shl (pwr + 32);
+      lThreshold: QWord = QWord(1) shl (pwr div 2 + 32);
 var l, r: QWord;
     c: hwFloat;
 begin
--- a/hedgewars/uGame.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uGame.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -81,7 +81,7 @@
     begin
     if Lag > 100 then
         Lag:= 100
-    else if (GameType = gmtSave) or (fastUntilLag and (GameType = gmtNet)) then
+    else if (GameType = gmtSave) or (fastUntilLag and (GameType = gmtNet)) or fastForward then
         Lag:= 2500;
 
     if (GameType = gmtDemo) then
--- a/hedgewars/uGears.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uGears.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -58,7 +58,7 @@
     uLocale, uAmmos, uStats, uVisualGears, uScript, uVariables,
     uCommands, uUtils, uTextures, uRenderUtils, uGearsRender, uCaptions,
     uGearsHedgehog, uGearsUtils, uGearsList, uGearsHandlersRope
-    , uVisualGearsList, uGearsHandlersMess, uAI;
+    , uVisualGearsList, uGearsHandlersMess, uAI, SDLh;
 
 var skipFlag: boolean;
 
@@ -288,6 +288,7 @@
                             curHandledGear^.Tex:= RenderStringTex(trmsg[sidUnknownGearValue], $ff808080, fntSmall)
                         else
                             begin
+                            FreeAndNilTexture(curHandledGear^.Tex);
                             // Display mine timer with up to 1 decimal point of precision (rounded down)
                             i:= curHandledGear^.Timer div 1000;
                             j:= (curHandledGear^.Timer mod 1000) div 100;
@@ -595,6 +596,11 @@
             dec(TurnTimeLeft)
         end;
 
+if (TurnTimeLeft = 0) and (ReadyTimeLeft = 0) then
+    inc(TimeNotInTurn)
+else
+    TimeNotInTurn:= 0;
+
 if skipFlag then
     begin
     if TagTurnTimeLeft = 0 then
@@ -623,6 +629,8 @@
 inc(GameTicks);
 if (OuchTauntTimer > 0) then
     dec(OuchTauntTimer);
+if fastForward and (GameTicks = FFGameTick) then
+   ParseCommand('sff', true);
 end;
 
 //Purpose, to reset all transient attributes toggled by a utility and clean up various gears and effects at end of turn
@@ -756,6 +764,92 @@
     end;
 end;
 
+procedure AddLandSentries(count: LongWord);
+var i, x, y, swapIndex: LongInt;
+    positions: array[0..1023] of TPoint;
+    positionsCount, tries: LongInt;
+begin
+    positionsCount := 0;
+    tries := 2048;
+    while (positionsCount < 1024) and (tries > 0) do
+    begin
+        x := leftX + cHHRadius + GetRandom(rightX - leftX - 2 * cHHRadius);
+        y := cHHRadius;
+
+        while y < cWaterLine do
+        begin
+            repeat
+                inc(y, cHHRadius)
+            until (y >= cWaterLine) or (CountLand(x, y, cHHRadius - 1, 1, lfAll, 0) = 0);
+
+            if y < cWaterLine then
+            begin
+                repeat
+                    inc(y)
+                until (y >= cWaterLine) or (CountLand(x, y, cHHRadius - 1, 1, lfAll, 0) <> 0);
+
+                if y < cWaterLine then
+                begin
+                    swapIndex := GetRandom(positionsCount + 1);
+                    if swapIndex = positionsCount then
+                    begin
+                        positions[positionsCount].X := x;
+                        positions[positionsCount].Y := y;
+                    end
+                    else
+                    begin
+                        positions[positionsCount].X := positions[swapIndex].X;
+                        positions[positionsCount].Y := positions[swapIndex].Y;
+                        positions[swapIndex].X := x;
+                        positions[swapIndex].Y := y;
+                    end;
+                    inc(positionsCount);
+                    if positionsCount >= 1024 then
+                        break;
+                    inc(y, cHHRadius * 2)
+                end
+                else
+                    dec(tries)
+            end
+            else
+                dec(tries)
+        end;
+    end;
+
+    for i := 0 to min(count, positionsCount) - 1 do
+        AddGear(positions[i].X, positions[i].Y - cHHRadius, gtSentry, 0, _0, _0, 0)^.Hedgehog := nil;
+end;
+
+function AddWaterSentries(count: Longword): Longword;
+var i, x, y: LongInt;
+    positions: array[0..255] of TPoint;
+    positionsCount, tries: LongInt;
+begin
+    AddWaterSentries := 0;
+    positionsCount := 0;
+    tries := 512;
+
+    while (positionsCount < 256) and (tries > 0) do
+    begin
+        x := leftX + cHHRadius + GetRandom(rightX - leftX - 2 * cHHRadius);
+        y := cWaterLine - 3 * cHHRadius;
+        if (CountLand(x, y, cHHRadius - 1, 1, lfAll, 0) = 0) then
+        begin
+            positions[positionsCount].X := x;
+            positions[positionsCount].Y := y;
+            inc(positionsCount);
+            if positionsCount >= 256 then
+                break;
+        end;
+    end;
+
+    for i := 0 to min(count, positionsCount) - 1 do
+    begin
+        AddGear(positions[i].X, positions[i].Y - cHHRadius, gtSentry, 0, _0, _0, 0)^.Hedgehog := nil;
+        inc(AddWaterSentries);
+    end;
+end;
+
 procedure AddMiscGears;
 var p,i,j,t,h,unplaced: Longword;
     rx, ry: LongInt;
@@ -769,6 +863,7 @@
 while (i < cLandMines) and (unplaced < 4) do
     begin
     Gear:= AddGear(0, 0, gtMine, 0, _0, _0, 0);
+    Gear^.Hedgehog := nil;
     FindPlace(Gear, false, 0, LAND_WIDTH);
 
     if Gear = nil then
@@ -784,6 +879,7 @@
 while (i < cExplosives) and (unplaced < 4) do
     begin
     Gear:= AddGear(0, 0, gtExplosives, 0, _0, _0, 0);
+    Gear^.Hedgehog := nil;
     FindPlace(Gear, false, 0, LAND_WIDTH);
 
     if Gear = nil then
@@ -849,7 +945,8 @@
                 inc(i);
                 AddFileLog('Placed Air Mine @ (' + inttostr(rx) + ',' + inttostr(ry) + ')');
                 if i < cAirMines then
-                    Gear:= AddGear(0, 0, gtAirMine, 0, _0, _0, 0)
+                    Gear:= AddGear(0, 0, gtAirMine, 0, _0, _0, 0);
+                    Gear^.Hedgehog := nil
                 end
             end
         else
@@ -858,6 +955,11 @@
         end;
 if p <> 0 then DeleteGear(Gear);
 
+if cSentries > 10 then
+    AddLandSentries(cSentries - AddWaterSentries(cSentries div 10))
+else
+    AddLandSentries(cSentries);
+
 if (GameFlags and gfLowGravity) <> 0 then
     begin
     cGravity:= cMaxWindSpeed;
@@ -1456,7 +1558,8 @@
             @doStepKnife,
             @doStepCreeper,
             @doStepMinigun,
-            @doStepMinigunBullet);
+            @doStepMinigunBullet,
+            @doStepSentryDeploy);
 begin
     doStepHandlers:= handlers;
 
--- a/hedgewars/uGearsHandlersMess.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uGearsHandlersMess.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -141,6 +141,8 @@
 procedure doStepMinigunWork(Gear: PGear);
 procedure doStepMinigun(Gear: PGear);
 procedure doStepMinigunBullet(Gear: PGear);
+procedure ResetSentryState(Gear: PGear; state, timer: LongInt);
+procedure doStepSentryDeploy(Gear: PGear);
 
 var
     upd: Longword;
@@ -396,10 +398,10 @@
         end;
 
     // clip velocity at 2 - over 1 per pixel, but really shouldn't cause many actual problems.
-    if Gear^.dX.Round > 1 then
-        Gear^.dX.QWordValue:= 8589934592;
-    if Gear^.dY.Round > 1 then
-        Gear^.dY.QWordValue:= 8589934592;
+    if Gear^.dX.QWordValue > 8160437862 then
+        Gear^.dX.QWordValue:= 8160437862;
+    if Gear^.dY.QWordValue > 8160437862 then
+        Gear^.dY.QWordValue:= 8160437862;
 
     if (Gear^.State and gstSubmersible <> 0) and CheckCoordInWater(gX, gY) then
         begin
@@ -536,10 +538,15 @@
 
     if isFalling and (Gear^.State and gstNoGravity = 0) then
         begin
+        // Apply gravity and wind
         Gear^.dY := Gear^.dY + cGravity;
-        if (GameFlags and gfMoreWind <> 0) and (TurnTimeLeft > 0) and
-           ((xland or land) = 0) and
-           ((Gear^.dX.QWordValue + Gear^.dY.QWordValue) > _0_02.QWordValue) then
+        if ((GameFlags and gfMoreWind) <> 0) and
+           // Disable gfMoreWind for land objects on turn end to prevent bouncing them forever
+           // This solution is rather ugly, in that it will occassionally suddenly wind physics
+           // while a gear is moving, this can be rather confusing.
+           // TODO: Find a way to make gfMoreWind-affected land objects settle more reliably
+           // and quickler without touching wind itselvs
+           ((not (Gear^.Kind in [gtMine, gtAirMine, gtSMine, gtKnife, gtExplosives, gtSentry])) or (TimeNotInTurn < MaxMoreWindTime)) then
             Gear^.dX := Gear^.dX + cWindSpeed / Gear^.Density
         end;
 
@@ -565,7 +572,7 @@
         (((Gear^.Radius < 3) and (Gear^.dY < -_0_1)) or
             ((Gear^.Radius >= 3) and
                 ((Gear^.dX.QWordValue > _0_1.QWordValue) or (Gear^.dY.QWordValue > _0_1.QWordValue)))) then
-        PlaySound(TSound(ord(Gear^.ImpactSound) + LongInt(GetRandom(Gear^.nImpactSounds))), true);
+        PlaySound(TSound(ord(Gear^.ImpactSound) + LongInt(GetRandom(Gear^.nImpactSounds))), Gear^.Kind <> gtDynamite);
 end;
 
 ////////////////////////////////////////////////////////////////////////////////
@@ -828,13 +835,14 @@
     s: PSDL_Surface;
     p: PLongwordArray;
     lf: LongWord;
+    oldY: hwFloat;
 begin
-inc(Gear^.Pos);
 gun:= (Gear^.State and gstTmpFlag) <> 0;
 move:= false;
 draw:= false;
 if gun then
     begin
+    inc(Gear^.Pos);
     Gear^.State:= Gear^.State and (not gstInvisible);
     doStepFallingGear(Gear);
     CheckCollision(Gear);
@@ -851,12 +859,13 @@
         end
     end
 else if GameTicks and $7 = 0 then
-    begin
     with Gear^ do
         begin
+        inc(Pos, 8);
         State:= State and (not gstInvisible);
+        oldY:= Y;
         X:= X + cWindSpeed * 3200 + dX;
-        Y:= Y + dY + cGravity * vobFallSpeed * 8;  // using same value as flakes to try and get similar results
+        Y:= Y + dY + cGravity * (vobFallSpeed * 8);  // using same value as flakes to try and get similar results
         xx:= hwRound(X);
         yy:= hwRound(Y);
         if vobVelocity <> 0 then
@@ -872,7 +881,7 @@
             move:= true
         else if (xx > snowRight) or (xx < snowLeft) then
             move:=true
-        else if (cGravity < _0) and (yy < LAND_HEIGHT-1200) then
+        else if (cGravity.isNegative) 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
@@ -885,33 +894,40 @@
                 X:= X - cWindSpeed * 1600 - dX;
                 end
             // If there's room below, on the sides, fill the gaps
-            else if (((yy-1) and LAND_HEIGHT_MASK) = 0) and (((xx-(1*hwSign(cWindSpeed))) and LAND_WIDTH_MASK) = 0) and (Land[yy-1, (xx-(1*hwSign(cWindSpeed)))] = 0) then
-                begin
-                X:= X - _0_8 * hwSign(cWindSpeed);
-                Y:= Y - dY - cGravity * vobFallSpeed * 8;
-                end
-            else if (((yy-1) and LAND_HEIGHT_MASK) = 0) and (((xx-(2*hwSign(cWindSpeed))) and LAND_WIDTH_MASK) = 0) and (Land[yy-1, (xx-(2*hwSign(cWindSpeed)))] = 0) then
-                begin
-                X:= X - _0_8 * 2 * hwSign(cWindSpeed);
-                Y:= Y - dY - cGravity * vobFallSpeed * 8;
-                end
-            else if (((yy-1) and LAND_HEIGHT_MASK) = 0) and (((xx+(1*hwSign(cWindSpeed))) and LAND_WIDTH_MASK) = 0) and (Land[yy-1, (xx+(1*hwSign(cWindSpeed)))] = 0) then
-                begin
-                X:= X + _0_8 * hwSign(cWindSpeed);
-                Y:= Y - dY - cGravity * vobFallSpeed * 8;
-                end
-            else if (((yy-1) and LAND_HEIGHT_MASK) = 0) and (((xx+(2*hwSign(cWindSpeed))) and LAND_WIDTH_MASK) = 0) and (Land[yy-1, (xx+(2*hwSign(cWindSpeed)))] = 0) then
-                begin
-                X:= X + _0_8 * 2 * hwSign(cWindSpeed);
-                Y:= Y - dY - cGravity * vobFallSpeed * 8;
-                end
+            else if (((yy-1) and LAND_HEIGHT_MASK) = 0) then 
+		    begin
+		    if (((xx - 1) and LAND_WIDTH_MASK) = 0) and (Land[yy - 1, (xx - 1)] = 0) then
+		        begin
+		        X:= X - _0_8;
+		        Y:= oldY;
+		        end
+		    else if (((xx - 2) and LAND_WIDTH_MASK) = 0) and (Land[yy - 1, (xx - 2)] = 0) then
+		        begin
+		        X:= X - _1_6;
+		        Y:= oldY;
+		        end
+		    else if (((xx + 1) and LAND_WIDTH_MASK) = 0) and (Land[yy - 1, (xx + 1)] = 0) then
+		        begin
+		        X:= X + _0_8;
+		        Y:= oldY;
+		        end
+		    else if (((xx + 2) and LAND_WIDTH_MASK) = 0) and (Land[yy - 1, (xx + 2)] = 0) then
+		        begin
+		        X:= X + _1_6;
+		        Y:= oldY;
+		        end else
+		    if ((((yy+1) and LAND_HEIGHT_MASK) = 0) and ((Land[yy + 1, xx] and $FF) <> 0)) then 
+		       move:=true 
+		    else 
+		       draw:= true
+		    end
             // if there's an hog/object below do nothing
             else if ((((yy+1) and LAND_HEIGHT_MASK) = 0) and ((Land[yy+1, xx] and $FF) <> 0))
                 then move:=true
             else draw:= true
             end
-        end
-    end;
+        end;
+
 if draw then
     with Gear^ do
         begin
@@ -920,7 +936,6 @@
         if (Pos > 20) and ((CurAmmoGear = nil)
         or (CurAmmoGear^.Kind <> gtRope)) then
             begin
-////////////////////////////////// TODO - ASK UNC0RR FOR A GOOD HOME FOR THIS ////////////////////////////////////
             if not gun then
                 begin
                 dec(yy,3);
@@ -963,9 +978,6 @@
                 p:= PLongWordArray(@(p^[s^.pitch shr 2]))
                 end;
 
-            // Why is this here.  For one thing, there's no test on +1 being safe.
-            //Land[py, px+1]:= lfBasic;
-
             if allpx then
                 UpdateLandTexture(xx, Pred(s^.h), yy, Pred(s^.w), true)
             else
@@ -977,7 +989,6 @@
                     min(LAND_HEIGHT - yy, Pred(s^.h)), false // could this be true without unnecessarily creating blanks?
                 );
                 end;
-////////////////////////////////// TODO - ASK UNC0RR FOR A GOOD HOME FOR THIS ////////////////////////////////////
             end
         end;
 
@@ -990,7 +1001,7 @@
         end;
     Gear^.Pos:= 0;
     Gear^.X:= int2hwFloat(LongInt(GetRandom(snowRight - snowLeft)) + snowLeft);
-    if (cGravity < _0) and (yy < LAND_HEIGHT-1200) then
+    if (cGravity.isNegative) 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;
@@ -1212,7 +1223,7 @@
         begin
         dec(i);
         if Collisions^.ar[i]^.Kind in
-            [gtMine, gtSMine, gtAirMine, gtKnife, gtCase, gtTarget, gtExplosives] then
+            [gtMine, gtSMine, gtAirMine, gtKnife, gtCase, gtTarget, gtExplosives, gtSentry] then
             begin
             Gear^.X := Collisions^.ar[i]^.X;
             Gear^.Y := Collisions^.ar[i]^.Y;
@@ -1232,22 +1243,22 @@
     AllInactive := false;
 
     if ((Gear^.State and gstAnimation) = 0) then
-        begin
+    begin
         dec(Gear^.Timer);
         if Gear^.Timer = 0 then
-            begin
+        begin
             PlaySound(sndShotgunFire);
             CreateShellForGear(Gear, 0);
             Gear^.State := Gear^.State or gstAnimation
-            end;
-            exit
-        end else
-        if(Gear^.Hedgehog^.Gear = nil) or ((Gear^.Hedgehog^.Gear^.State and gstMoving) <> 0) then
-            begin
+        end
+        else if (Gear^.Hedgehog^.Gear = nil)
+            or ((Gear^.Hedgehog^.Gear^.State and (gstMoving or gstHHDriven)) = gstMoving) then
+        begin
             DeleteGear(Gear);
             AfterAttack;
-            exit
-            end
+        end;
+        exit
+    end
     else
         inc(Gear^.Timer);
 
@@ -1316,6 +1327,11 @@
     VGear: PVisualGear;
     i, steps: LongWord;
 begin
+    if CurrentHedgehog^.Gear = nil then
+        begin
+        DeleteGear(Bullet);
+        exit
+        end;
     if Bullet^.PortalCounter = 0 then
         begin
         ox:= CurrentHedgehog^.Gear^.X + Int2hwFloat(GetLaunchX(CurrentHedgehog^.CurAmmoType, hwSign(CurrentHedgehog^.Gear^.dX), CurrentHedgehog^.Gear^.Angle));
@@ -1559,7 +1575,7 @@
             begin
             if Gear^.Kind = gtMinigunBullet then
                 begin
-                doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 5,
+                doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Karma,
                                 Gear^.Hedgehog, (EXPLNoDamage or EXPLDoNotTouchHH){ or EXPLDontDraw or EXPLNoGfx});
                 VGear := AddVisualGear(hwRound(Gear^.X + Gear^.dX * 5), hwRound(Gear^.Y + Gear^.dY * 5), vgtBulletHit);
                 end
@@ -1602,10 +1618,10 @@
 
 procedure doStepDEagleShot(Gear: PGear);
 begin
-    Gear^.Data:= nil;
-    // remember who fired this
-    if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) then
-        Gear^.Data:= Pointer(Gear^.Hedgehog^.Gear);
+    if Gear^.Data = nil then
+        // remember who fired this
+        if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) then
+            Gear^.Data:= Pointer(Gear^.Hedgehog^.Gear);
 
     PlaySound(sndGun);
     ClearHitOrder();
@@ -1843,8 +1859,8 @@
 procedure doStepBlowTorchWork(Gear: PGear);
 var
     HHGear: PGear;
-    b: boolean;
-    prevX: LongInt;
+    dig, hit: boolean;
+    newX, newY: hwFloat;
 begin
     AllInactive := false;
     WorldWrap(Gear);
@@ -1852,6 +1868,7 @@
 
     if Gear^.Hedgehog^.Gear = nil then
         begin
+        ClearProximityCache();
         StopSoundChan(Gear^.SoundChannel);
         DeleteGear(Gear);
         AfterAttack;
@@ -1862,74 +1879,82 @@
 
     HedgehogChAngle(HHGear);
 
-    b := false;
+    dig := false;
+    hit := false;
 
     if abs(LongInt(HHGear^.Angle) - BTPrevAngle) > 7  then
         begin
         Gear^.dX := SignAs(AngleSin(HHGear^.Angle) * _0_5, Gear^.dX);
         Gear^.dY := AngleCos(HHGear^.Angle) * ( - _0_5);
+
         BTPrevAngle := HHGear^.Angle;
-        b := true
-        end;
-
-    if ((HHGear^.State and gstMoving) <> 0) then
+        dig := true
+        end;
+
+    if (HHGear^.State and gstMoving) <> 0 then
         begin
         doStepHedgehogMoving(HHGear);
         if (HHGear^.State and gstHHDriven) = 0 then
             Gear^.Timer := 0
         end;
 
+    if Gear^.Timer mod 1500 = 0 then
+        RefillProximityCache(Gear, 200);
+
     if Gear^.Timer mod cHHStepTicks = 0 then
         begin
-        b := true;
+        dig := true;
         if Gear^.dX.isNegative then
             HHGear^.Message := (HHGear^.Message and (gmAttack or gmUp or gmDown)) or gmLeft
         else
             HHGear^.Message := (HHGear^.Message and (gmAttack or gmUp or gmDown)) or gmRight;
 
-        if ((HHGear^.State and gstMoving) = 0) then
+        if (HHGear^.State and gstMoving) = 0 then
             begin
             HHGear^.State := HHGear^.State and (not gstAttacking);
-            prevX := hwRound(HHGear^.X);
-
-            // why the call to HedgehogStep then a further increment of X?
-            if (prevX = hwRound(HHGear^.X)) and
-               CheckLandValue(hwRound(HHGear^.X + SignAs(_6, HHGear^.dX)), hwRound(HHGear^.Y),
-               lfIndestructible) then HedgehogStep(HHGear);
-
-            if (prevX = hwRound(HHGear^.X)) and
-               CheckLandValue(hwRound(HHGear^.X + SignAs(_6, HHGear^.dX)), hwRound(HHGear^.Y),
-               lfIndestructible) then HHGear^.X := HHGear^.X + SignAs(_1, HHGear^.dX);
+
+            if CheckLandValue(hwRound(HHGear^.X + SignAs(_6, HHGear^.dX)), hwRound(HHGear^.Y), lfIndestructible) then
+                HedgehogStep(HHGear);
+
             HHGear^.State := HHGear^.State or gstAttacking
             end;
 
+            newX := HHGear^.X + Gear^.dX * (cHHRadius + cBlowTorchC);
+            newY := HHGear^.Y + Gear^.dY * (cHHRadius + cBlowTorchC);
+            if CheckLandValue(hwRound(newX + SignAs(_6, Gear^.dX)), hwRound(newY), lfIndestructible) then
+                begin
+                Gear^.X := newX;
+                Gear^.Y := newY;
+                end;
+
         inc(BTSteps);
-        if BTSteps = 7 then
+        if BTSteps = 11 then
             begin
             BTSteps := 0;
-            if CheckLandValue(hwRound(HHGear^.X + Gear^.dX * (cHHRadius + cBlowTorchC) + SignAs(_6,Gear^.dX)), hwRound(HHGear^.Y + Gear^.dY * (cHHRadius + cBlowTorchC)),lfIndestructible) then
-                begin
-                Gear^.X := HHGear^.X + Gear^.dX * (cHHRadius + cBlowTorchC);
-                Gear^.Y := HHGear^.Y + Gear^.dY * (cHHRadius + cBlowTorchC);
-                end;
-            HHGear^.State := HHGear^.State or gstNoDamage;
-            AmmoShove(Gear, Gear^.Boom, 15);
-            HHGear^.State := HHGear^.State and (not gstNoDamage)
+            hit := true
             end;
         end;
 
-    if b then
+    if dig then
         begin
         DrawTunnel(HHGear^.X + Gear^.dX * cHHRadius,
-        HHGear^.Y + Gear^.dY * cHHRadius - _1 -
-        ((hwAbs(Gear^.dX) / (hwAbs(Gear^.dX) + hwAbs(Gear^.dY))) * _0_5 * 7),
-        Gear^.dX, Gear^.dY,
-        cHHStepTicks, cHHRadius * 2 + 7);
+            HHGear^.Y + Gear^.dY * cHHRadius - _1 -
+                ((hwAbs(Gear^.dX) / (hwAbs(Gear^.dX) + hwAbs(Gear^.dY))) * _0_5 * 7),
+            Gear^.dX, Gear^.dY,
+            cHHStepTicks, cHHRadius * 2 + 7);
+
+        HHGear^.State := HHGear^.State or gstNoDamage;
+        if hit then
+            AmmoShoveCache(Gear, Gear^.Boom, 15)
+        else
+            AmmoShoveCache(Gear, 0, 15);
+        HHGear^.State := HHGear^.State and (not gstNoDamage);
         end;
 
     if (TurnTimeLeft = 0) or (Gear^.Timer = 0)
     or ((HHGear^.Message and gmAttack) <> 0) then
         begin
+        ClearProximityCache();
         StopSoundChan(Gear^.SoundChannel);
         HHGear^.Message := 0;
         HHGear^.State := HHGear^.State and (not gstNotKickable);
@@ -1955,6 +1980,8 @@
         cHHStepTicks, cHHRadius * 2 + 7);
     HHGear^.Message := 0;
     HHGear^.State := HHGear^.State or gstNotKickable;
+    RefillProximityCache(Gear, 200);
+
     Gear^.SoundChannel := LoopSound(sndBlowTorch);
     Gear^.doStep := @doStepBlowTorchWork
 end;
@@ -2184,7 +2211,7 @@
         for t:= 0 to Pred(TeamsCount) do
             with TeamsArray[t]^ do
                 for i:= 0 to cMaxHHIndex do
-                    if (Hedgehogs[i].Gear <> nil) and (Hedgehogs[i].Effects[heFrozen] = 0) then
+                    if (not Hedgehogs[i].Unplaced) and (Hedgehogs[i].Gear <> nil) and (Hedgehogs[i].Effects[heFrozen] = 0) and ((Hedgehogs[i].Gear^.State and gstInvisible) = 0) then
                         begin
                         tmpG:= Hedgehogs[i].Gear;
                         tX:=Gear^.X-tmpG^.X;
@@ -2349,12 +2376,22 @@
     doStepFallingGear(Gear);
     AllInactive := false;
 
+    if (Gear^.SoundChannel <> -1) and ((Gear^.State and gstDrowning) <> 0) then
+        begin
+        StopSoundChan(Gear^.SoundChannel);
+        Gear^.SoundChannel:= -1;
+        end
+    else if Gear^.SoundChannel = -1 then
+        Gear^.SoundChannel := LoopSound(sndDynamiteFuse);
+    if (Gear^.State and gstDrowning) <> 0 then
+        exit;
     if Gear^.Timer mod 166 = 0 then
         inc(Gear^.Tag);
     if Gear^.Timer = 1000 then // might need better timing
         makeHogsWorry(Gear^.X, Gear^.Y, 75, Gear^.Kind);
     if Gear^.Timer = 0 then
         begin
+        StopSoundChan(Gear^.SoundChannel);
         doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Boom, Gear^.Hedgehog, EXPLAutoSound);
         DeleteGear(Gear);
         exit
@@ -3082,6 +3119,16 @@
 
     AfterAttack;
 
+    // Delete parachute early if hog already collides
+    if (TestCollisionXwithGear(HHGear, -1) <> 0) and (TestCollisionXwithGear(HHGear, 1) <> 0) then
+        begin
+        HHGear^.dY := cGravity * 100;
+        isCursorVisible:= false;
+        ApplyAmmoChanges(HHGear^.Hedgehog^);
+        DeleteGear(Gear);
+        exit;
+        end;
+
     // make sure hog doesn't end up facing in wrong direction due to high jump
     if (HHGear^.State and gstHHHJump) <> 0 then
         HHGear^.dX.isNegative := (not HHGear^.dX.isNegative);
@@ -3155,7 +3202,7 @@
 
     // Get rid of gear and cleanup
     if ((WorldEdge = weWrap) and (Gear^.FlightTime >= 4000)) or
-        ((WorldEdge <> weWrap) and (((hwRound(Gear^.X) - Gear^.Radius > (max(LAND_WIDTH,4096)+2048)) or (hwRound(Gear^.X) + Gear^.Radius < -2048) or ((Gear^.Message and gmDestroy) > 0)))) then
+        ((WorldEdge <> weWrap) and (((hwRound(Gear^.X) - Gear^.Radius > (LAND_WIDTH+2048)) or (hwRound(Gear^.X) + Gear^.Radius < -2048) or ((Gear^.Message and gmDestroy) > 0)))) then
         begin
         // fail-safe: instanly stop sound if it wasn't disabled before
         if (Gear^.SoundChannel <> -1) then
@@ -3201,6 +3248,8 @@
 begin
     AllInactive := false;
 
+    HHGear:= nil;
+
     if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) then
         HHGear:= Gear^.Hedgehog^.Gear;
 
@@ -3223,7 +3272,7 @@
         if (WorldEdge = weWrap) then
             Gear^.X := int2hwFloat(CalcWorldWrap(Gear^.Target.X - max(384, LAND_WIDTH shr 2), 0))
         else
-            Gear^.X := int2hwFloat(max(LAND_WIDTH,4096) + 2048);
+            Gear^.X := int2hwFloat(LAND_WIDTH + 2048);
         end;
 
     Gear^.Y := int2hwFloat(topY - 300);
@@ -3267,6 +3316,9 @@
         Gear^.Karma := 0;
         end;
 
+    if (GameFlags and gfInfAttack) = 0 then
+        FollowGear:= Gear;
+
 end;
 
 ////////////////////////////////////////////////////////////////////////////////
@@ -3471,6 +3523,11 @@
     switchDir: Longword;
     oldUid: Longword;
 begin
+    if CurrentHedgehog^.Gear = nil then
+        begin
+        DeleteGear(Gear);
+        exit
+        end;
     AllInactive := false;
 
     if ((Gear^.Message and (not (gmSwitch or gmPrecise))) <> 0) or (TurnTimeLeft = 0) then
@@ -4038,7 +4095,7 @@
 ////////////////////////////////////////////////////////////////////////////////
 procedure doStepSeductionWork(Gear: PGear);
 var i: LongInt;
-    hogs: PGearArrayS;
+    hits: PGearArrayS;
     HHGear: PGear;
 begin
     AllInactive := false;
@@ -4052,12 +4109,12 @@
         exit;
         end;
 
-    hogs := GearsNear(Gear^.X, Gear^.Y, gtHedgehog, Gear^.Radius);
-    if hogs.size > 0 then
-        begin
-        for i:= 0 to hogs.size - 1 do
-            with hogs.ar^[i]^ do
-                if (hogs.ar^[i] <> CurrentHedgehog^.Gear) and (Hedgehog^.Effects[heFrozen] = 0)  then
+    hits := GearsNear(Gear^.X, Gear^.Y, gtHedgehog, Gear^.Radius);
+    if hits.size > 0 then
+        begin
+        for i:= 0 to hits.size - 1 do
+            with hits.ar^[i]^ do
+                if (hits.ar^[i] <> CurrentHedgehog^.Gear) and (Hedgehog^.Effects[heFrozen] = 0)  then
                     begin
                     if (WorldEdge <> weWrap) or (not (hwAbs(Gear^.X - X) > int2hwFloat(Gear^.Radius))) then
                         dX:= _50 * cGravity * (Gear^.X - X) / _25
@@ -4071,6 +4128,19 @@
                 else if Hedgehog^.Effects[heFrozen] > 255 then
                     Hedgehog^.Effects[heFrozen]:= 255
         end ;
+
+    hits := GearsNear(Gear^.X, Gear^.Y, gtSentry, Gear^.Radius);
+    if hits.size > 0 then
+        for i:= 0 to hits.size - 1 do
+            with hits.ar^[i]^ do
+                if (Gear^.Hedgehog <> nil) and (Hedgehog <> Gear^.Hedgehog)  then
+                    begin
+                    dX := SignAs(_0, dX);
+                    dY := -_0_15;
+                    Hedgehog := Gear^.Hedgehog;
+                    ResetSentryState(hits.ar^[i], 0, 10000);
+                    end;
+
     AfterAttack;
     DeleteGear(Gear);
 end;
@@ -4883,7 +4953,7 @@
     gear^.State :=  gear^.State or gstAnimation and (not gstTmpFlag);
     Gear^.doStep := @doStepBirdyAppear;
 
-    if CurrentHedgehog = nil then
+    if CurrentHedgehog^.Gear = nil then
         begin
         DeleteGear(Gear);
         exit
@@ -4942,7 +5012,7 @@
 procedure doPortalColorSwitch();
 var CurWeapon: PAmmo;
 begin
-    if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Gear <> nil) and ((CurrentHedgehog^.Gear^.State and gstHHDriven) <> 0) and ((CurrentHedgehog^.Gear^.Message and gmSwitch) <> 0) then
+    if (CurrentHedgehog^.Gear <> nil) and ((CurrentHedgehog^.Gear^.State and gstHHDriven) <> 0) and ((CurrentHedgehog^.Gear^.Message and gmSwitch) <> 0) then
             with CurrentHedgehog^ do
                 if (CurAmmoType = amPortalGun) then
                     begin
@@ -5273,7 +5343,7 @@
             if iterator^.dX.isNegative then iterator^.Angle:= 4096-iterator^.Angle;
             end;
 
-        if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Gear <> nil)
+        if (CurrentHedgehog^.Gear <> nil)
         and (iterator = CurrentHedgehog^.Gear)
         and (CurAmmoGear <> nil)
         and (CurAmmoGear^.Kind = gtRope)
@@ -5393,6 +5463,11 @@
     s: hwFloat;
     CurWeapon: PAmmo;
 begin
+    if CurrentHedgehog^.Gear = nil then
+        begin
+        DeleteGear(newPortal);
+        exit
+        end;
     s:= Distance (newPortal^.dX, newPortal^.dY);
 
     // Adds the hog speed (only that part in/directly against shot direction)
@@ -5407,62 +5482,61 @@
 
     PlaySound(sndPortalShot);
 
-    if CurrentHedgehog <> nil then
-        with CurrentHedgehog^ do
-            begin
-            CurWeapon:= GetCurAmmoEntry(CurrentHedgehog^);
-            // let's save the HH's dX's direction so we can decide where the "top" of the portal hole
-            newPortal^.Elasticity.isNegative := CurrentHedgehog^.Gear^.dX.isNegative;
-            // when doing a backjump the dx is the opposite of the facing direction
-            if ((Gear^.State and gstHHHJump) <> 0) and (Effects[heArtillery] = 0) then
-                newPortal^.Elasticity.isNegative := not newPortal^.Elasticity.isNegative;
-
-            // make portal gun look unloaded
-            if (CurWeapon <> nil) and (CurAmmoType = amPortalGun) then
-                CurWeapon^.Timer := CurWeapon^.Timer or 2;
-
-            iterator := GearsList;
-            while iterator <> nil do
-                begin
-                if (iterator^.Kind = gtPortal) then
-                    if (iterator <> newPortal) and (iterator^.Timer > 0) and (iterator^.Hedgehog = CurrentHedgehog) then
-                        begin
-                        if ((iterator^.Tag and 2) = (newPortal^.Tag and 2)) then
-                            begin
-                            iterator^.Timer:= 0;
-                            end
-                        else
-                            begin
-                            // link portals with each other
-                            newPortal^.LinkedGear := iterator;
-                            iterator^.LinkedGear := newPortal;
-                            iterator^.Health := newPortal^.Health;
-                            end;
-                        end;
-                iterator^.PortalCounter:= 0;
-                iterator := iterator^.NextGear
-                end;
-
-            if newPortal^.LinkedGear <> nil then
-                begin
-                // This jiggles gears, to ensure a portal connection just placed under a gear takes effect.
-                iterator:= GearsList;
-                while iterator <> nil do
-                    begin
-                    if not (iterator^.Kind in [gtPortal, gtAirAttack, gtKnife, gtSMine]) and ((iterator^.Hedgehog <> CurrentHedgehog)
-                    or ((iterator^.Message and gmAllStoppable) = 0)) then
-                            begin
-                            iterator^.Active:= true;
-                            if iterator^.dY.QWordValue = 0 then
-                                iterator^.dY.isNegative:= false;
-                            iterator^.State:= iterator^.State or gstMoving;
-                            DeleteCI(iterator);
-                        //inc(iterator^.dY.QWordValue,10);
-                            end;
-                    iterator:= iterator^.NextGear
-                    end
-                end
-            end;
+	with CurrentHedgehog^ do
+		begin
+		CurWeapon:= GetCurAmmoEntry(CurrentHedgehog^);
+		// let's save the HH's dX's direction so we can decide where the "top" of the portal hole
+		newPortal^.Elasticity.isNegative := CurrentHedgehog^.Gear^.dX.isNegative;
+		// when doing a backjump the dx is the opposite of the facing direction
+		if ((Gear^.State and gstHHHJump) <> 0) and (Effects[heArtillery] = 0) then
+			newPortal^.Elasticity.isNegative := not newPortal^.Elasticity.isNegative;
+
+		// make portal gun look unloaded
+		if (CurWeapon <> nil) and (CurAmmoType = amPortalGun) then
+			CurWeapon^.Timer := CurWeapon^.Timer or 2;
+
+		iterator := GearsList;
+		while iterator <> nil do
+			begin
+			if (iterator^.Kind = gtPortal) then
+				if (iterator <> newPortal) and (iterator^.Timer > 0) and (iterator^.Hedgehog = CurrentHedgehog) then
+					begin
+					if ((iterator^.Tag and 2) = (newPortal^.Tag and 2)) then
+						begin
+						iterator^.Timer:= 0;
+						end
+					else
+						begin
+						// link portals with each other
+						newPortal^.LinkedGear := iterator;
+						iterator^.LinkedGear := newPortal;
+						iterator^.Health := newPortal^.Health;
+						end;
+					end;
+			iterator^.PortalCounter:= 0;
+			iterator := iterator^.NextGear
+			end;
+
+		if newPortal^.LinkedGear <> nil then
+			begin
+			// This jiggles gears, to ensure a portal connection just placed under a gear takes effect.
+			iterator:= GearsList;
+			while iterator <> nil do
+				begin
+				if not (iterator^.Kind in [gtPortal, gtAirAttack, gtKnife, gtSMine]) and ((iterator^.Hedgehog <> CurrentHedgehog)
+				or ((iterator^.Message and gmAllStoppable) = 0)) then
+						begin
+						iterator^.Active:= true;
+						if iterator^.dY.QWordValue = 0 then
+							iterator^.dY.isNegative:= false;
+						iterator^.State:= iterator^.State or gstMoving;
+						DeleteCI(iterator);
+					//inc(iterator^.dY.QWordValue,10);
+						end;
+				iterator:= iterator^.NextGear
+				end
+			end
+		end;
     newPortal^.State := newPortal^.State and (not gstCollision);
     newPortal^.State := newPortal^.State or gstMoving;
     newPortal^.doStep := @doStepMovingPortal;
@@ -5534,7 +5608,8 @@
                 7: PlaySound(sndPiano7, false, false, true);
                 8: PlaySound(sndPiano8, false, false, true);
             end;
-        AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtNote);
+        if CurrentHedgehog^.Gear^.MsgParam <= 8 then
+            AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtNote);
         CurrentHedgehog^.Gear^.MsgParam := 0;
         CurrentHedgehog^.Gear^.Message := CurrentHedgehog^.Gear^.Message and (not gmSlot);
         end;
@@ -6051,22 +6126,20 @@
         if (tmp^.Kind = gtHedgehog) or (tmp^.Kind = gtMine) or (tmp^.Kind = gtExplosives) then
             begin
             dmg:= 0;
-            if (tmp^.Kind <> gtHedgehog) or (tmp^.Hedgehog^.Effects[heInvulnerable] = 0) then
+            if (tmp^.Kind <> gtHedgehog) or
+               ((tmp^.Hedgehog^.Effects[heInvulnerable] = 0) and ((tmp^.State and gstHHDeath) = 0)) then
                 begin
                 // base damage on remaining health
                 dmg:= (tmp^.Health - tmp^.Damage);
+                // always rounding down
+                dmg:= dmg div Gear^.Boom;
+
                 if dmg > 0 then
-                    begin
-                    // always rounding down
-                    dmg:= dmg div Gear^.Boom;
-
-                    if dmg > 0 then
-                        ApplyDamage(tmp, CurrentHedgehog, dmg, dsHammer);
-                    end;
-        tmp^.dY:= _0_03 * Gear^.Boom
+                    ApplyDamage(tmp, CurrentHedgehog, dmg, dsHammer);
+                tmp^.dY:= _0_03 * Gear^.Boom
                 end;
 
-            if (tmp^.Kind <> gtHedgehog) or (dmg > 0) or (tmp^.Health > tmp^.Damage) then
+            if ((tmp^.Kind = gtHedgehog) and ((tmp^.State and gstHHDeath) = 0)) or (tmp^.Health > tmp^.Damage) then
                 begin
                 tmp2:= AddGear(hwRound(tmp^.X), hwRound(tmp^.Y), gtHammerHit, 0, _0, _0, 0);
                 tmp2^.LinkedGear:= tmp;
@@ -6235,7 +6308,7 @@
                     LoadHedgehogHat(resgear^.Hedgehog^, 'Reserved/Zombie');
                 end;
 
-        hh^.Gear^.dY := _0;
+        hh^.Gear^.dY := -cLittle;
         hh^.Gear^.dX := _0;
         doStepHedgehogMoving(hh^.Gear);
         StopSoundChan(Gear^.SoundChannel);
@@ -6337,6 +6410,7 @@
 procedure doStepTardisWarp(Gear: PGear);
 var HH: PHedgehog;
     i,j,cnt: LongWord;
+    restoreBottomY: LongInt;
     s: ansistring;
 begin
 HH:= Gear^.Hedgehog;
@@ -6433,8 +6507,37 @@
                     inc(cnt);
     if (cnt = 0) or SuddenDeathDmg or (Gear^.Timer = 0) then
         begin
+        // Place tardis
         if HH^.GearHidden <> nil then
-            FindPlace(HH^.GearHidden, false, 0, LAND_WIDTH,true);
+            begin
+            restoreBottomY:= cWaterLine;
+            // Place tardis at a random safe position
+            FindPlace(HH^.GearHidden, false, 0, LAND_WIDTH, restoreBottomY, true, false);
+
+            // If in Sudden Death, rise the minimum possible spawn position to make
+            // it less likely for the hog to drown before its turn
+            if SuddenDeathActive and (cWaterRise > 0) then
+                begin
+                // Enough space to survive the water rise of 1 round.
+                // Also limit the highest spawn height to topY plus a small buffer zone
+                restoreBottomY:= max(topY + cHHRadius * 5, cWaterLine - cWaterRise * (TeamsCount + 1));
+                // If gear is below the safe spawn height, place it again,
+                // but this time with the height limit in place
+                if (HH^.GearHidden <> nil) and (hwRound(HH^.GearHidden^.Y) > restoreBottomY) then
+                    // Due to the reduced Y range, this one might fail for very aggressive SD water rise
+                    begin
+                    FindPlace(HH^.GearHidden, false, 0, LAND_WIDTH, restoreBottomY, true, false);
+                    end;
+                // Still unsafe? Relax the height limit to a third of the map height above cWaterLine
+                if (HH^.GearHidden <> nil) and (hwRound(HH^.GearHidden^.Y) > restoreBottomY) then
+                    begin
+                    restoreBottomY:= cWaterLine - ((cWaterLine - topY) div 3);
+                    // Even this might fail, but it's much less likely. If it fails, we still have the
+                    // position of the first FindPlace as a fallback.
+                    FindPlace(HH^.GearHidden, false, 0, LAND_WIDTH, restoreBottomY, true, false);
+                    end;
+                end;
+            end;
 
         if HH^.GearHidden <> nil then
             begin
@@ -7128,10 +7231,10 @@
 
 procedure doStepMinigunBullet(Gear: PGear);
 begin
-    Gear^.Data:= nil;
-    // remember who fired this
-    if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) then
-        Gear^.Data:= Pointer(Gear^.Hedgehog^.Gear);
+    if Gear^.Data = nil then
+        // remember who fired this
+        if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) then
+            Gear^.Data:= Pointer(Gear^.Hedgehog^.Gear);
 
     Gear^.X := Gear^.X + Gear^.dX * 2;
     Gear^.Y := Gear^.Y + Gear^.dY * 2;
@@ -7139,4 +7242,481 @@
     Gear^.doStep := @doStepBulletWork
 end;
 
+////////////////////////////////////////////////////////////////////////////////
+
+function MakeSentryStep(Sentry: PGear; maxYStep: LongInt; TestOnly: Boolean): Boolean;
+var x, y, offset, direction: LongInt;
+begin
+    MakeSentryStep := false;
+    x := hwRound(Sentry^.X);
+    y := hwRound(Sentry^.Y);
+    direction := hwSign(Sentry^.dX);
+
+    for offset := -maxYStep - 1 to maxYStep + 1 do
+    begin
+        if TestCollisionYImpl(x + direction, y + offset, Sentry^.Radius, 1, Sentry^.CollisionMask) <> 0 then
+            break;
+    end;
+
+    if (offset >= -maxYStep) and (offset <= maxYStep)
+       and (TestCollisionYImpl(x + direction, y + offset, Sentry^.Radius, -1, Sentry^.CollisionMask) = 0) then
+    begin
+        if not TestOnly then
+        begin
+            Sentry^.X := Sentry^.X + signAs(_1, Sentry^.dX);
+            Sentry^.Y := Sentry^.Y + int2hwFloat(offset);
+        end;
+        MakeSentryStep := true
+    end
+end;
+    
+function MakeSentryJump(Sentry: PGear; maxXStep, maxYStep: LongInt): Boolean;
+var x, y, offsetX, offsetY, direction: LongInt;
+    jumpTime: hwFloat;
+begin
+    MakeSentryJump := false;
+    x := hwRound(Sentry^.X);
+    y := hwRound(Sentry^.Y);
+    offsetX := maxXStep - Sentry^.Radius;
+    direction := hwSign(Sentry^.dX);
+
+    repeat
+        for offsetY := -maxYStep - 1 to maxYStep + 1 do
+            if TestCollisionYImpl(x + offsetX * direction, y + offsetY, Sentry^.Radius, 1, Sentry^.CollisionMask) <> 0 then
+                break;
+        if (offsetY >= -maxYStep) and (offsetY <= maxYStep) then
+            break;
+        Dec(offsetX, Sentry^.Radius);
+    until offsetX <= 0;
+
+    if (offsetX >= Sentry^.Radius) and (not cGravity.isNegative) then
+    begin
+        Sentry^.dY := -_0_25;
+        jumpTime := _2 * Sentry^.dY / cGravity;
+        Sentry^.dX := SignAs(int2hwFloat(offsetX - Sentry^.Radius) / jumpTime, Sentry^.dX);
+        Sentry^.State := Sentry^.State or gstHHJumping;
+        MakeSentryJump := true;
+    end;
+end;
+
+function TraceAttackPath(fromX, fromY, toX, toY, step: hwFloat; mask: Word): LongWord;
+var distX, distY, dist, invDistance: HwFloat;
+    i, count: LongInt;
+begin
+    TraceAttackPath := 0;
+    if (step < _1)
+        or ((hwRound(fromX) and LAND_WIDTH_MASK) <> 0)
+        or ((hwRound(toX) and LAND_WIDTH_MASK) <> 0)
+        or ((hwRound(fromY) and LAND_HEIGHT_MASK) <> 0)
+        or ((hwRound(toY) and LAND_HEIGHT_MASK) <> 0) then
+        exit;
+
+    distX := toX - fromX;
+    distY := toY - fromY;
+    dist := Distance(distX, distY);
+    count := hwRound(dist / step);
+
+    invDistance := step / dist;
+    distX := distX * invDistance;
+    distY := distY * invDistance;
+
+    for i := 0 to count - 1 do
+    begin
+        if (Land[hwRound(fromY), hwRound(fromX)] and mask) <> 0 then
+            Inc(TraceAttackPath);
+        fromX := fromX + distX;
+        fromY := fromY + distY;
+    end
+end;
+
+function CheckSentryAttackRange(Sentry: PGear; targetX, targetY: HwFloat): Boolean;
+var distX, distY: hwFloat;
+begin
+    distX := targetX - Sentry^.X;
+    distY := targetY - Sentry^.Y;
+    CheckSentryAttackRange :=
+        (distX.isNegative = Sentry^.dX.isNegative)
+        and (distX.Round > 24)
+        and (distX.Round < 500)
+        and (hwAbs(distY) < hwAbs(distX * _1_5))
+        and (TraceAttackPath(Sentry^.X, Sentry^.Y, targetX, targetY, _4, lfLandMask) <= 18);
+end;
+
+procedure ResetSentryState(Gear: PGear; state, timer: LongInt);
+begin
+    Gear^.Timer := timer;
+    Gear^.Tag := state;
+    Gear^.Target.X := 0;
+    Gear^.Target.Y := 0;
+    if Gear^.Karma <> 0 then
+    begin
+        ClearGlobalHitOrderLeq(Gear^.Karma);
+        Gear^.Karma := 0;
+    end;
+end;
+
+function CheckSentryDestroyed(Sentry: PGear; damagedState: LongInt): Boolean;
+begin
+    CheckSentryDestroyed := false;
+    if Sentry^.Damage > 0 then
+    begin
+        dec(Sentry^.Health, Sentry^.Damage);
+        Sentry^.Damage := 0;
+        if Sentry^.Health <= 0 then
+        begin
+            doMakeExplosion(hwRound(Sentry^.X), hwRound(Sentry^.Y), Sentry^.Boom, Sentry^.Hedgehog, EXPLAutoSound);
+            DeleteGear(Sentry);
+            CheckSentryDestroyed := true;
+            exit;
+        end
+        else
+            ResetSentryState(Sentry, damagedState, 10000)
+    end;
+
+    if ((Sentry^.Health * 100) < random(cSentryHealth * 90)) and ((GameTicks and $FF) = 0) then
+        if Sentry^.Health * 2 < cSentryHealth then
+            AddVisualGear(hwRound(Sentry^.X) - 8 + Random(16), hwRound(Sentry^.Y) - 2, vgtSmoke)
+        else
+            AddVisualGear(hwRound(Sentry^.X) - 8 + Random(16), hwRound(Sentry^.Y) - 2, vgtSmokeWhite);
+end;
+
+procedure AimSentry(Sentry: PGear);
+var HHGear: PGear;
+begin
+    if CurrentHedgehog <> nil then
+    begin
+        HHGear := CurrentHedgehog^.Gear;
+        if HHGear <> nil then
+        begin
+            Sentry^.Target.X := Sentry^.Target.X + hwSign(HHGear^.X - int2hwFloat(Sentry^.Target.X));
+            Sentry^.Target.Y := Sentry^.Target.Y + hwSign(HHGear^.Y - int2hwFloat(Sentry^.Target.Y));
+        end;
+    end;
+end;
+
+procedure MakeSentryShot(Sentry: PGear);
+var bullet: PGear;
+    distX, distY, invDistance: HwFloat;
+begin
+    distX := int2hwFloat(Sentry^.Target.X) - Sentry^.X;
+    distY := int2hwFloat(Sentry^.Target.Y) - Sentry^.Y;
+    invDistance := _1 / Distance(distX, distY);
+    distX := distX * invDistance;
+    distY := distY * invDistance;
+
+    bullet := AddGear(
+        hwRound(Sentry^.X), hwRound(Sentry^.Y),
+        gtMinigunBullet, 0,
+        distX * _0_9 + rndSign(getRandomf * _0_1),
+        distY * _0_9 + rndSign(getRandomf * _0_1),
+        0);
+
+    bullet^.Karma := 12;
+    bullet^.Pos := 1; // To tell apart from minigun bullets
+    bullet^.WDTimer := GameTicks;
+    bullet^.PortalCounter := 1;
+    bullet^.Elasticity := Sentry^.X;
+    bullet^.Friction := Sentry^.Y;
+    bullet^.Data := Pointer(Sentry);
+    bullet^.Hedgehog := Sentry^.Hedgehog;
+
+    CreateShellForGear(Sentry, Sentry^.WDTimer and 1);
+    PlaySound(sndGun);
+end;
+
+function GetSentryTarget(sentry: PGear): PGear;
+var HHGear: PGear;
+    friendlyTarget: boolean;
+begin
+    GetSentryTarget := nil;
+    friendlyTarget := false;
+
+    if CurrentHedgehog <> nil then
+    begin
+        HHGear := CurrentHedgehog^.Gear;
+        if HHGear <> nil then
+            if ((HHGear^.State and gstHHDriven) <> 0) and (HHGear^.CollisionIndex < 0) then
+            begin
+                if sentry^.Hedgehog <> nil then
+                    friendlyTarget := sentry^.Hedgehog^.Team^.Clan = CurrentHedgehog^.Team^.Clan;
+                if not friendlyTarget then
+                    GetSentryTarget := HHGear;
+            end
+    end
+end;
+
+procedure doStepSentryLand(Gear: PGear);
+var HHGear: PGear;
+    land: Word;
+const sentry_Idle = 0;
+    sentry_Walking = 1;
+    sentry_Aiming = 2;
+    sentry_Attacking = 3;
+    sentry_Reloading = 4;
+begin
+    HHGear:= nil;
+
+    if CheckGearDrowning(Gear) then
+        exit;
+
+    if CheckSentryDestroyed(Gear, sentry_Reloading) then
+        exit;
+
+    land := TestCollisionYwithGear(Gear, 1);
+    if Gear^.dY.isNegative or (land = 0) or
+        ((Gear^.dY.QWordValue > _0_01.QWordValue) and ((Gear^.State and gstHHJumping) = 0)) then
+    begin
+        DeleteCI(Gear);
+        doStepFallingGear(Gear);
+        if not (Gear^.Tag in [sentry_Idle, sentry_Reloading]) then
+            ResetSentryState(Gear, sentry_Idle, 1000);
+        exit;
+    end
+    else
+    begin
+        AddCI(Gear);
+        Gear^.State := Gear^.State and (not gstHHJumping);
+        Gear^.dX := SignAs(_0, Gear^.dX);
+        Gear^.dY := SignAs(_0, Gear^.dY);
+    end;
+
+    if Gear^.Timer > 0 then dec(Gear^.Timer);
+
+    if Gear^.Timer = 0 then
+    begin
+        DeleteCI(Gear);
+        if Gear^.Tag = sentry_Idle then
+        begin
+            Gear^.Tag := sentry_Walking;
+            Gear^.Timer := 1000 + GetRandom(3000);
+            if GetRandom(4) = 0 then
+            begin
+                if MakeSentryJump(Gear, 80, 60) then
+                    Gear^.Timer := 4000
+                else
+                    Gear^.Timer := 1000;
+                Gear^.Tag := sentry_Idle;
+            end
+            else
+            begin
+                Gear^.dX.isNegative := GetRandom(2) = 1;
+
+                if MakeSentryStep(Gear, 6, true) then
+                begin
+                    if GetRandom(4) = 0 then
+                    begin
+                        Gear^.Timer := 2000;
+                        Gear^.Tag := sentry_Idle;
+                    end;
+                end
+                else
+                begin
+                    Gear^.dX.isNegative := not Gear^.dX.isNegative;
+                    if not MakeSentryStep(Gear, 6, true) then
+                    begin
+                        if GetRandom(2) = 0 then
+                        begin
+                            Gear^.dY := - _0_1;
+                            if TestCollisionYKick(Gear, -1) = 0 then
+                                Gear^.dY := - _0_25;
+                            Gear^.Timer := 3000;
+                        end
+                        else
+                            Gear^.Timer := 5000;
+                        Gear^.Tag := sentry_Idle;
+                    end;
+                end
+            end
+        end
+        else if Gear^.Tag in [sentry_Walking, sentry_Reloading] then
+        begin
+            Gear^.Tag := sentry_Idle;
+            Gear^.Timer := 1000 + GetRandom(1000);
+        end
+        else if Gear^.Tag = sentry_Aiming then
+        begin
+            if CheckSentryAttackRange(Gear, int2hwFloat(Gear^.Target.X), int2hwFloat(Gear^.Target.Y)) then
+            begin
+                Gear^.WDTimer := 5 + GetRandom(3);
+                Gear^.Tag := sentry_Attacking;
+                Gear^.Timer := 100;
+            end
+            else
+            begin
+                Gear^.Target.X := 0;
+                Gear^.Target.Y := 0;
+                Gear^.Tag := sentry_Idle;
+                Gear^.Timer := 5000;
+            end
+        end
+        else if Gear^.Tag = sentry_Attacking then
+        begin
+            MakeSentryShot(Gear);
+
+            if Gear^.WDTimer = 0 then
+                ResetSentryState(Gear, sentry_Reloading, 6000 + GetRandom(2000))
+            else
+            begin
+                dec(Gear^.WDTimer);
+                Gear^.Timer := 100;
+            end
+        end;
+        AddCI(Gear);
+    end;
+
+    if (Gear^.Tag = sentry_Walking) and ((GameTicks and $1F) = 0) then
+    begin
+        DeleteCI(Gear);
+        if not MakeSentryStep(Gear, 6, false) then
+            Gear^.Timer := 0;
+        AddCI(Gear);
+    end;
+
+    if ((GameTicks and $1F) = 0) and (Gear^.Tag = sentry_Aiming) then
+        AimSentry(Gear);
+
+    if ((GameTicks and $FF) = 0)
+        and (Gear^.Tag in [sentry_Idle, sentry_Walking]) then
+    begin
+        HHGear := GetSentryTarget(Gear);
+        if HHGear <> nil then
+            if CheckSentryAttackRange(Gear, HHGear^.X, HHGear^.Y) then
+            begin
+                Gear^.Target.X := hwRound(HHGear^.X);
+                Gear^.Target.Y := hwRound(HHGear^.Y);
+                Gear^.Karma := GameTicks;
+                Gear^.Tag := sentry_Aiming;
+                Gear^.Timer := 1800 + GetRandom(400);
+            end
+    end
+end;
+
+procedure doStepSentryWater(Gear: PGear);
+var HHGear: PGear;
+const sentry_Idle = 0;
+    sentry_Walking = 1;
+    sentry_Aiming = 2;
+    sentry_Attacking = 3;
+    sentry_Reloading = 4;
+begin
+    if Gear^.Tag < 0 then
+    begin
+        CheckGearDrowning(Gear);
+        exit;
+    end;
+
+    Gear^.Y := int2hwFloat(cWaterLine - 3 * Gear^.Radius);
+    if TestCollisionYImpl(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Radius - 1, -1, Gear^.CollisionMask and lfLandMask) <> 0 then
+    begin
+        Gear^.Tag := -1;
+        exit;
+    end;
+
+    if CheckSentryDestroyed(Gear, sentry_Reloading) then
+        exit;
+
+    if Gear^.Timer > 0 then dec(Gear^.Timer);
+
+    if Gear^.Timer = 0 then
+    begin
+        if Gear^.Tag = sentry_Idle then
+        begin
+            Gear^.Tag := sentry_Walking;
+            Gear^.Timer := 3000 + GetRandom(3000);
+            Gear^.dX.isNegative := GetRandom(2) = 1;
+            if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0 then
+                Gear^.dX.isNegative := not Gear^.dX.isNegative;
+        end
+        else if Gear^.Tag in [sentry_Walking, sentry_Reloading] then
+        begin
+            Gear^.Tag := sentry_Idle;
+            Gear^.Timer := 1000 + GetRandom(1000);
+        end
+        else if Gear^.Tag = sentry_Aiming then
+        begin
+            if CheckSentryAttackRange(Gear, int2hwFloat(Gear^.Target.X), int2hwFloat(Gear^.Target.Y)) then
+            begin
+                Gear^.WDTimer := 5 + GetRandom(3);
+                Gear^.Tag := sentry_Attacking;
+                Gear^.Timer := 100;
+            end
+            else
+            begin
+                Gear^.Target.X := 0;
+                Gear^.Target.Y := 0;
+                Gear^.Tag := sentry_Idle;
+                Gear^.Timer := 5000;
+            end
+        end
+        else if Gear^.Tag = sentry_Attacking then
+        begin
+            MakeSentryShot(Gear);
+
+            if Gear^.WDTimer = 0 then
+                ResetSentryState(Gear, sentry_Reloading, 6000 + GetRandom(2000))
+            else
+            begin
+                dec(Gear^.WDTimer);
+                Gear^.Timer := 100;
+            end
+        end;
+    end;
+
+    if (Gear^.Tag = sentry_Walking) and ((GameTicks and $1F) = 0) then
+    begin
+        if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) = 0 then
+        begin
+            Gear^.dX := SignAs(_1, Gear^.dX);
+            Gear^.X := Gear^.X + Gear^.dX;
+            WorldWrap(Gear);
+        end
+        else
+            Gear^.Timer := 0
+    end;
+
+    if ((GameTicks and $1F) = 0) and (Gear^.Tag = sentry_Aiming) then
+        AimSentry(Gear);
+
+    if ((GameTicks and $FF) = 0)
+        and (Gear^.Tag in [sentry_Idle, sentry_Walking]) then
+    begin
+        HHGear := GetSentryTarget(Gear);
+        if HHGear <> nil then
+            if CheckSentryAttackRange(Gear, HHGear^.X, HHGear^.Y) then
+            begin
+                Gear^.Target.X := hwRound(HHGear^.X);
+                Gear^.Target.Y := hwRound(HHGear^.Y);
+                Gear^.Karma := GameTicks;
+                Gear^.Tag := sentry_Aiming;
+                Gear^.Timer := 1800 + GetRandom(400);
+            end
+    end
+end;
+
+procedure doStepSentryDeploy(Gear: PGear);
+begin
+    Gear^.Tag := -1;
+    if hwRound(Gear^.Y) + 3 * Gear^.Radius >= cWaterLine then
+    begin
+        Gear^.Y := int2hwFloat(cWaterLine - 3 * Gear^.Radius);
+        if Gear^.Timer > 0 then dec(Gear^.Timer);
+        if Gear^.Timer = 0 then
+        begin
+            Gear^.Tag := 0;
+            Gear^.doStep := @doStepSentryWater;
+        end;
+    end
+    else if Gear^.dY.isNegative or (TestCollisionYwithGear(Gear, 1) = 0) then
+        doStepFallingGear(Gear)
+    else
+    begin
+        if Gear^.Timer > 0 then dec(Gear^.Timer);
+        if Gear^.Timer = 0 then
+        begin
+            Gear^.Tag := 0;
+            Gear^.doStep := @doStepSentryLand;
+        end;
+    end;
+end;
+
 end.
--- a/hedgewars/uGearsHedgehog.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uGearsHedgehog.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -400,6 +400,7 @@
                                  else
                                      newGear^.Tag:= 1;
                                  end;
+                    amSentry: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtSentry, 0, SignAs(_0_03, dX), _0, 0);
                     amFirePunch: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtFirePunch, 0, xx, _0, 0);
                          amWhip: begin
                                  newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtWhip, 0, SignAs(_1, dX), - _0_8, 0);
@@ -529,7 +530,8 @@
                   amMineStrike, amDrillStrike,
                       amRubber, amMinigun: CurAmmoGear:= newGear;
             end;
-            if CurAmmoType = amCake then FollowGear:= newGear;
+            if (CurAmmoType = amCake) or (CurAmmoType = amPiano) then
+                FollowGear:= newGear;
 
             if ((CurAmmoType = amMine) or (CurAmmoType = amSMine) or (CurAmmoType = amAirMine)) and (GameFlags and gfInfAttack <> 0) then
                 newGear^.FlightTime:= GameTicks + min(TurnTimeLeft,1000)
@@ -1279,7 +1281,7 @@
     uStats.hedgehogFlight(Gear, Gear^.FlightTime);
     Gear^.FlightTime:= 0;
     end;
-if (WorldEdge = weNone) and (not Gear^.Hedgehog^.FlownOffMap) and (not isZero(Gear^.dX)) and (not isUnderwater) and ((Gear^.State and gstHHDriven) = 0) and (hwRound(Gear^.Y) < cWaterLine-300) and ((hwRound(Gear^.X) < leftX-2048) or (hwRound(Gear^.X) > rightX+2048)) then
+if (WorldEdge = weNone) and (not hasBorder) and (not Gear^.Hedgehog^.FlownOffMap) and (not isZero(Gear^.dX)) and (not isUnderwater) and ((Gear^.State and gstHHDriven) = 0) and (hwRound(Gear^.Y) < cWaterLine-300) and ((hwRound(Gear^.X) < -cCamLimitX) or (hwRound(Gear^.X) > LAND_WIDTH+cCamLimitX)) then
     begin
     PlaySoundV(sndFlyAway, Gear^.Hedgehog^.Team^.voicepack);
     Gear^.Hedgehog^.FlownOffMap:= true;
@@ -1409,7 +1411,7 @@
     wasJumping:= ((HHGear^.State and gstHHJumping) <> 0);
 
     if ((HHGear^.Message and gmHJump) <> 0) and wasJumping and ((HHGear^.State and gstHHHJump) = 0) then
-        if (not (hwAbs(HHGear^.dX) > cLittle)) and (HHGear^.dY < -_0_02) then
+        if (not (hwAbs(HHGear^.dX) > cLittle)) and (HHGear^.dY < _0_05) then
             begin
             HHGear^.State:= HHGear^.State or gstHHHJump;
             HHGear^.dY:= -_0_25;
--- a/hedgewars/uGearsList.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uGearsList.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -107,6 +107,7 @@
 (*        gtCreeper *) , amCreeper
 (*        gtMinigun *) , amMinigun
 (*  gtMinigunBullet *) , amMinigun
+(*         gtSentry *) , amSentry
     );
 
 
@@ -259,6 +260,7 @@
             gtSnowball,
             gtKnife,
             gtCreeper,
+            gtSentry,
             gtMolotov,
             gtFlake,
             gtGrave,
@@ -315,7 +317,8 @@
     gtPoisonCloud: Gear^.Boom := 20;
           gtKnife: Gear^.Boom := 40000; // arbitrary scaling factor since impact-based
         gtCreeper: Gear^.Boom := 100;
-    gtMinigunBullet: Gear^.Boom := 2;
+  gtMinigunBullet: Gear^.Boom := 2;
+         gtSentry: Gear^.Boom := 40;
     end;
 
 case Kind of
@@ -560,13 +563,16 @@
                 end;
   gtDEagleShot: begin
                 gear^.Radius:= 1;
-                gear^.Health:= 50
+                gear^.Health:= 50;
+                gear^.Data:= nil;
                 end;
   gtSniperRifleShot: begin
                 gear^.Radius:= 1;
                 gear^.Health:= 50
                 end;
     gtDynamite: begin
+                gear^.ImpactSound:= sndDynamiteImpact;
+                gear^.nImpactSounds:= 1;
                 gear^.Radius:= 3;
                 gear^.Elasticity:= _0_55;
                 gear^.Friction:= _0_03;
@@ -623,7 +629,7 @@
                 gear^.Friction:= _0_995
                 end;
    gtBlowTorch: begin
-                gear^.Radius:= cHHRadius + cBlowTorchC;
+                gear^.Radius:= cHHRadius + cBlowTorchC - 1;
                 if gear^.Timer = 0 then gear^.Timer:= 7500
                 end;
     gtSwitcher: begin
@@ -772,6 +778,7 @@
                 end;
  gtPoisonCloud: begin
                 if gear^.Timer = 0 then gear^.Timer:= 5000;
+                gear^.WDTimer:= gear^.Timer; // initial timer
                 gear^.dY:= int2hwfloat(-4 + longint(getRandom(8))) / 1000;
                 gear^.Tint:= $C0C000C0
                 end;
@@ -825,6 +832,19 @@
  gtMinigunBullet: begin
                 gear^.Radius:= 1;
                 gear^.Health:= 2;
+                gear^.Karma:= 5; //impact radius
+                gear^.Pos:= 0; //uses non-global hit order
+                gear^.Data:= nil;
+                end;
+        gtSentry: begin
+                gear^.Radius:= cHHRadius;
+                gear^.Health:= cSentryHealth;
+                gear^.Friction:= _0_999;
+                gear^.Elasticity:= _0_35;
+                gear^.Density:= _3;
+                gear^.Tag:= 0;
+                gear^.Timer:= 1000;
+                gear^.WDTimer:= 0;
                 end;
 gtGenericFaller:begin
                 gear^.AdvBounce:= 1;
--- a/hedgewars/uGearsRender.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uGearsRender.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -549,14 +549,17 @@
                     ly:= ly + ay;
                     tx:= round(lx);
                     ty:= round(ly);
-                    // reached edge of land.
-                    if ((ty and LAND_HEIGHT_MASK) <> 0) and (((ty < LAND_HEIGHT) and (ay < 0)) or ((ty >= TopY) and (ay > 0))) then
+                    // reached top edge of land mask
+                    if (WorldEdge <> weBounce) and (WorldEdge <> weWrap) and
+                        ((ty and LAND_HEIGHT_MASK) <> 0) and (((ty < LAND_HEIGHT) and (ay < 0)) or ((ty >= TopY) and (ay > 0))) then
                         begin
                         // assume infinite beam. Extend it way out past camera
                         tx:= round(lx + ax * (max(LAND_WIDTH,4096) div 2));
                         ty:= round(ly + ay * (max(LAND_WIDTH,4096) div 2));
                         break;
                         end;
+                    if ((WorldEdge = weWrap) or (WorldEdge = weBounce)) and ((ty < -cCamLimitY) or (ty >= TopY + cCamLimitY)) then
+                        break;
 
                     if ((hogLR < 0) and (tx < LeftX)) or ((hogLR > 0) and (tx >= RightX)) then
                         if (WorldEdge = weWrap) then
@@ -565,7 +568,7 @@
                             if hogLR < 0 then
                                 lx:= RightX - (ax - (lx - LeftX))
                             else
-                                lx:= LeftX + (ax - (RightX - lx));
+                                lx:= LeftX + (-ax - (RightX - lx));
                             tx:= round(lx);
                             inc(wraps);
                             end
@@ -573,16 +576,16 @@
                             // just stop
                             break;
 
-                    if ((tx and LAND_WIDTH_MASK) <> 0) and (((ax > 0) and (tx >= RightX)) or ((ax < 0) and (tx <= LeftX))) then
+                    // reached horizontal edge of land mask
+                    if ((tx and LAND_WIDTH_MASK) <> 0) and (((ax > 0) and (tx >= RightX)) or ((ax < 0) and (tx <= LeftX))) and
+                        (WorldEdge <> weWrap) and (WorldEdge <> weBounce) then
                         begin
-                        if (WorldEdge <> weWrap) and (WorldEdge <> weBounce) then
-                            // assume infinite beam. Extend it way out past camera
-                            begin
-                            tx:= round(lx + ax * (max(LAND_WIDTH,4096) div 2));
-                            ty:= round(ly + ay * (max(LAND_WIDTH,4096) div 2));
-                            end;
+                        // assume infinite beam. Extend it way out past camera
+                        tx:= round(lx + ax * (max(LAND_WIDTH,4096) div 2));
+                        ty:= round(ly + ay * (max(LAND_WIDTH,4096) div 2));
                         break;
                         end;
+
                     inWorldBounds := ((ty and LAND_HEIGHT_MASK) or (tx and LAND_WIDTH_MASK)) = 0;
                     end;
 
@@ -662,8 +665,8 @@
                     end;
                 gtBlowTorch:
                     begin
-                    DrawSpriteRotated(sprBlowTorch, hx, hy, sign, aangle);
-                    DrawHedgehog(sx, sy,
+                    DrawSpriteRotated(sprBlowTorch, ox + 8 * sign, oy - 2, sign, aangle);
+                    DrawHedgehog(ox + 1, oy - 3,
                             sign,
                             3,
                             HH^.visStepPos div 2,
@@ -673,8 +676,8 @@
                             begin
                             DrawTextureF(curhat,
                                 1,
-                                sx,
-                                sy - 5,
+                                ox + 1,
+                                oy - 8,
                                 0,
                                 sign,
                                 32,
@@ -688,8 +691,8 @@
                                 Tint(HH^.Team^.Clan^.Color shl 8 or $FF);
                                 DrawTextureF(curhat,
                                     1,
-                                    sx,
-                                    sy - 5,
+                                    ox + 1,
+                                    oy - 8,
                                     tx,
                                     sign,
                                     32,
@@ -697,7 +700,8 @@
                                 untint
                                 end
                             end;
-                    defaultPos:= false
+                    defaultPos:= false;
+                    sign:= hwSign(Gear^.dX);
                     end;
                 gtFirePunch:
                     begin
@@ -894,6 +898,7 @@
                 amClusterBomb: DrawSpriteRotated(sprHandCluster, hx, hy, sign, aangle);
                 amDynamite: DrawSpriteRotated(sprHandDynamite, hx, hy, sign, aangle);
                 amCreeper: DrawSpriteRotatedF(sprHandCreeper, hx, hy, 0, sign, aangle);
+                amSentry: DrawSpriteRotated(sprHandSentry, hx, hy, sign, aangle);
                 amHellishBomb: DrawSpriteRotated(sprHandHellish, hx, hy, sign, aangle);
                 amGasBomb: DrawSpriteRotated(sprHandCheese, hx, hy, sign, aangle);
                 amMine: DrawSpriteRotated(sprHandMine, hx, hy, sign, aangle);
@@ -1510,7 +1515,10 @@
                         DrawSpriteRotatedF(sprExplosivesRoll, x, y + 4, 1, 0, Gear^.DirAngle)
                     end;
         gtDynamite: begin
-                    DrawSprite(sprDynamite, x - 16, y - 25, Gear^.Tag and 1, Gear^.Tag shr 1);
+                    if ((Gear^.State and gstDrowning) = 0) then
+                        DrawSprite(sprDynamite, x - 16, y - 25, Gear^.Tag and 1, Gear^.Tag shr 1)
+                    else
+                        DrawSprite(sprDynamiteDefused, x - 16, y - 25, Gear^.Tag and 1, Gear^.Tag shr 1);
                     if (random(3) = 0) and ((Gear^.State and gstDrowning) = 0) then
                         begin
                         vg:= AddVisualGear(hwRound(Gear^.X)+12-(Gear^.Tag shr 1), hwRound(Gear^.Y)-16, vgtStraightShot);
@@ -1653,8 +1661,8 @@
      gtPoisonCloud: begin
                     if Gear^.Timer < 1020 then
                         Tint(Gear^.Tint and $FFFFFF00 or Gear^.Timer div 8)
-                    else if Gear^.Timer > 3980 then
-                        Tint(Gear^.Tint and $FFFFFF00 or (5000 - Gear^.Timer) div 8)
+                    else if (Gear^.Timer > Gear^.WDTimer - 1020) and (Gear^.WDTimer > 2040) then
+                        Tint(Gear^.Tint and $FFFFFF00 or (Gear^.WDTimer - Gear^.Timer) div 8)
                     else
                         Tint(Gear^.Tint);
                     DrawTextureRotatedF(SpritesData[sprSmokeWhite].texture, 3, 0, 0, x, y, 0, 1, 22, 22, (RealTicks shr 4 + Gear^.UID * 100) mod 360);
@@ -1738,7 +1746,11 @@
             gtCreeper: if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) then
                          DrawSpriteRotatedF(sprCreeper, x, y, 1, hwRound(SignAs(_1,Gear^.Hedgehog^.Gear^.X-Gear^.X)), 0)
                     else DrawSpriteRotatedF(sprCreeper, x, y, 1, hwRound(SignAs(_1,Gear^.dX)), 0);
-
+            gtSentry: begin
+                DrawSpriteRotated(sprSentry, x, y, hwSign(Gear^.dX), 0);
+                if Gear^.Hedgehog <> nil then
+                    DrawCircle(x, y, Gear^.Radius, 2, Gear^.Hedgehog^.Team^.Clan^.Color shl 8 or $FF);
+            end;
             gtGenericFaller: begin
                              // DEBUG: draw gtGenericFaller
                              if Gear^.Tag <> 0 then
--- a/hedgewars/uGearsUtils.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uGearsUtils.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -41,6 +41,9 @@
 
 procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); inline;
 procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt; skipProximity: boolean);
+procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt; skipProximity, deleteOnFail: boolean);
+procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right, Bottom: LongInt; skipProximity, deleteOnFail: boolean);
+function CountLand(x, y, r, c: LongInt; mask, antimask: LongWord): LongInt;
 
 function  CheckGearNear(Kind: TGearType; X, Y: hwFloat; rX, rY: LongInt): PGear;
 function  CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear;
@@ -55,6 +58,7 @@
 function  SpawnBoxOfSmth: PGear;
 procedure PlayBoxSpawnTaunt(Gear: PGear);
 procedure ShotgunShot(Gear: PGear);
+function  CountHogsInTeam(HHGear: PGear; countHidden: boolean): LongInt;
 function  CanUseTardis(HHGear: PGear): boolean;
 
 procedure SetAllToActive;
@@ -148,7 +152,8 @@
                 gtTarget,
                 gtFlame,
                 gtKnife,
-                gtExplosives: begin
+                gtExplosives,
+                gtSentry: begin
 // Run the calcs only once we know we have a type that will need damage
                         tdX:= Gear^.X-fX;
                         tdY:= Gear^.Y-fY;
@@ -179,6 +184,8 @@
                                     if (not GameOver) then
                                         Gear^.State:= (Gear^.State and (not gstWinner));
                                     end;
+                                if Gear^.Kind = gtSentry then
+                                    Gear^.State:= Gear^.State and (not gstHHJumping);
                                 Gear^.Active:= true;
                                 if Gear^.Kind <> gtFlame then FollowGear:= Gear;
                                 if Gear^.Kind = gtAirMine then
@@ -317,25 +324,25 @@
 
         uStats.HedgehogDamaged(Gear, AttackerHog, Damage, false);
 
-    if AprilOne and (Gear^.Hedgehog^.Hat = 'fr_tomato') and (Damage > 2) then
-        for i := 0 to random(min(Damage,20))+5 do
-        begin
-        vg:= AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtStraightShot);
-        if vg <> nil then
-            with vg^ do
+        if AprilOne and (Gear^.Hedgehog^.Hat = 'fr_tomato') and (Damage > 2) then
+            for i := 0 to random(min(Damage,20))+5 do
             begin
-            dx:= 0.001 * (random(100)+10);
-            dy:= 0.001 * (random(100)+10);
-            tdy:= -cGravityf;
-            if random(2) = 0 then
-                dx := -dx;
-            FrameTicks:= random(500) + 1000;
-            State:= ord(sprBubbles);
-            Tint:= $ff0000ff
+            vg:= AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtStraightShot);
+            if vg <> nil then
+                with vg^ do
+                begin
+                dx:= 0.001 * (random(100)+10);
+                dy:= 0.001 * (random(100)+10);
+                tdy:= -cGravityf;
+                if random(2) = 0 then
+                    dx := -dx;
+                FrameTicks:= random(500) + 1000;
+                State:= ord(sprBubbles);
+                Tint:= $ff0000ff
+                end
             end
-    end
-    end else
-        Gear^.Hedgehog:= AttackerHog;
+        end else if AttackerHog <> nil then
+            Gear^.Hedgehog:= AttackerHog;
     inc(Gear^.Damage, Damage);
 
     ScriptCall('onGearDamage', Gear^.UID, Damage);
@@ -920,10 +927,20 @@
 
 procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); inline;
 begin
-    FindPlace(Gear, withFall, Left, Right, false);
+    FindPlace(Gear, withFall, Left, Right, false, true);
 end;
 
-procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt; skipProximity: boolean);
+procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt; skipProximity: boolean); inline;
+begin
+    FindPlace(Gear, withFall, Left, Right, skipProximity, true);
+end;
+
+procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt; skipProximity, deleteOnFail: boolean); inline;
+begin
+    FindPlace(Gear, withFall, Left, Right, cWaterLine, skipProximity, deleteOnFail);
+end;
+
+procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right, Bottom: LongInt; skipProximity, deleteOnFail: boolean);
 var x: LongInt;
     y, sy, dir: LongInt;
     ar: array[0..1023] of TPoint;
@@ -952,36 +969,35 @@
         repeat
             cnt:= 0;
             y:= min(1024, topY) - Gear^.Radius shl 1;
-            while y < cWaterLine do
+            while y < Bottom do
                 begin
                 repeat
                     inc(y, 2);
-                until (y >= cWaterLine) or
-                    (ignoreOverLap and (CountLand(x, y, Gear^.Radius - 1, 1, $FF00, 0) = 0)) or
-                    (not ignoreOverLap and (CountLand(x, y, Gear^.Radius - 1, 1, $FFFF, 0) = 0));
-
+                until (y >= Bottom) or
+                    (ignoreOverLap and (CountLand(x, y, Gear^.Radius - 1, 1, lfLandMask, 0) = 0)) or
+                    (not ignoreOverLap and (CountLand(x, y, Gear^.Radius - 1, 1, lfAll, 0) = 0));
 
                 sy:= y;
 
                 repeat
                     inc(y);
-                until (y >= cWaterLine) or
+                until (y >= Bottom) or
                         (ignoreOverlap and 
-                                (CountLand(x, y, Gear^.Radius - 1, 1, $FFFF, 0) <> 0)) or
+                                (CountLand(x, y, Gear^.Radius - 1, 1, lfAll, 0) <> 0)) or
                         (not ignoreOverlap and 
                             (CountLand(x, y, Gear^.Radius - 1, 1, lfLandMask, 0) <> 0));
 
-                if (y - sy > Gear^.Radius * 2) and (y < cWaterLine)
+                if (y - sy > Gear^.Radius * 2) and (y < Bottom)
                     and (((Gear^.Kind = gtExplosives)
                         and (ignoreNearObjects or NoGearsToAvoid(x, y - Gear^.Radius, 60, 60))
-                        and (isSteadyPosition(x, y+1, Gear^.Radius - 1, 3, $FFFF)
-                         or (CountLand(x, y+1, Gear^.Radius - 1, Gear^.Radius+1, $FFFF, 0) > Gear^.Radius)
+                        and (isSteadyPosition(x, y+1, Gear^.Radius - 1, 3, lfAll)
+                         or (CountLand(x, y+1, Gear^.Radius - 1, Gear^.Radius+1, lfAll, 0) > Gear^.Radius)
                             ))
                     or
                         ((Gear^.Kind <> gtExplosives)
                         and (ignoreNearObjects or NoGearsToAvoid(x, y - Gear^.Radius, 110, 110))
                         and (isSteadyPosition(x, y+1, Gear^.Radius - 1, 3, lfIce)
-                         or (CountLand(x, y+1, Gear^.Radius - 1, Gear^.Radius+1, $FFFF, lfIce) <> 0)
+                         or (CountLand(x, y+1, Gear^.Radius - 1, Gear^.Radius+1, lfAll, lfIce) <> 0)
                             ))) then
                     begin
                     ar[cnt].X:= x;
@@ -1025,18 +1041,17 @@
         begin
         Gear^.X:= int2hwFloat(x);
         Gear^.Y:= int2hwFloat(y);
-        AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')');
+        AddFileLog('FindPlace: Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')');
         end
     end
 else
     begin
-    OutError('Can''t find place for Gear', false);
+    OutError('FindPlace: Can''t find place for Gear', false);
     if Gear^.Kind = gtHedgehog then
         begin
         cnt:= 0;
         if GameTicks = 0 then
             begin
-            //AddFileLog('Trying to make a hole');
             while (cnt < 1000) do
                 begin
                 inc(cnt);
@@ -1047,20 +1062,22 @@
                     Gear^.State:= Gear^.State or gsttmpFlag;
                     Gear^.X:= int2hwFloat(x);
                     Gear^.Y:= int2hwFloat(y);
-                    AddFileLog('Picked a spot for hog at coordinates (' + inttostr(hwRound(Gear^.X)) + ',' + inttostr(hwRound(Gear^.Y)) + ')');
+                    AddFileLog('FindPlace: Picked alternative spot for hog at coordinates (' + inttostr(hwRound(Gear^.X)) + ',' + inttostr(hwRound(Gear^.Y)) + ')');
                     cnt:= 2000
                     end
                 end;
             end;
-        if cnt < 2000 then
+        if (deleteOnFail) and (cnt < 2000) then
             begin
+            AddFileLog('FindPlace: No place found, deleting hog');
             Gear^.Hedgehog^.Effects[heResurrectable] := 0;
             DeleteGear(Gear);
             Gear:= nil
             end
         end
-    else
+    else if (deleteOnFail) then
         begin
+        AddFileLog('FindPlace: No place found, deleting Gear');
         DeleteGear(Gear);
         Gear:= nil
         end
@@ -1069,11 +1086,11 @@
 
 function CheckGearNearImpl(Kind: TGearType; X, Y: hwFloat; rX, rY: LongInt; exclude: PGear): PGear;
 var t: PGear;
-    width, bound, dX, dY: hwFloat;
+    width, dX, dY: hwFloat;
     isHit: Boolean;
-    i, j: LongWord;
+    i, j, bound: LongWord;
 begin
-    bound:= _1_5 * int2hwFloat(max(rX, rY));
+    bound:= max(rX, rY) * 3 div 2;
     rX:= sqr(rX);
     rY:= sqr(rY);
     width:= int2hwFloat(RightX - LeftX);
@@ -1084,20 +1101,20 @@
                 with TeamsArray[j]^ do
                     for i:= 0 to cMaxHHIndex do
                         with Hedgehogs[i] do
-                            if (Gear <> nil) and (Gear <> exclude) then
+                            if (not Unplaced) and (Gear <> nil) and (Gear <> exclude) then
                                 begin
                                 // code duplication - could throw into an inline function I guess
                                 dX := X - Gear^.X;
                                 dY := Y - Gear^.Y;
-                                isHit := (hwAbs(dX) + hwAbs(dY) < bound)
+                                isHit := (dX.Round + dY.Round < bound)
                                     and (not ((hwSqr(dX) / rX + hwSqr(dY) / rY) > _1));
 
                                 if (not isHit) and (WorldEdge = weWrap) then
                                     begin
-                                    if (hwAbs(dX - width) + hwAbs(dY) < bound)
+                                    if ((dX - width).Round + dY.Round < bound)
                                         and (not ((hwSqr(dX - width) / rX + hwSqr(dY) / rY) > _1)) then
                                         isHit := true
-                                    else if (hwAbs(dX + width) + hwAbs(dY) < bound)
+                                    else if ((dX + width).Round + dY.Round < bound)
                                         and (not ((hwSqr(dX + width) / rX + hwSqr(dY) / rY) > _1)) then
                                         isHit := true
                                     end;
@@ -1119,15 +1136,15 @@
                 begin
                 dX := X - t^.X;
                 dY := Y - t^.Y;
-                isHit := (hwAbs(dX) + hwAbs(dY) < bound)
+                isHit := (dX.Round + dY.Round < bound)
                     and (not ((hwSqr(dX) / rX + hwSqr(dY) / rY) > _1));
 
                 if (not isHit) and (WorldEdge = weWrap) then
                     begin
-                    if (hwAbs(dX - width) + hwAbs(dY) < bound)
+                    if ((dX - width).Round + dY.Round < bound)
                         and (not ((hwSqr(dX - width) / rX + hwSqr(dY) / rY) > _1)) then
                         isHit := true
-                    else if (hwAbs(dX + width) + hwAbs(dY) < bound)
+                    else if ((dX + width).Round + dY.Round < bound)
                         and (not ((hwSqr(dX + width) / rX + hwSqr(dY) / rY) > _1)) then
                         isHit := true
                     end;
@@ -1260,7 +1277,8 @@
             gtKnife,
             gtCase,
             gtTarget,
-            gtExplosives: begin
+            gtExplosives,
+            gtSentry: begin
 //addFileLog('ShotgunShot radius: ' + inttostr(Gear^.Radius) + ', t^.Radius = ' + inttostr(t^.Radius) + ', distance = ' + inttostr(dist) + ', dmg = ' + inttostr(dmg));
                     dmg:= 0;
                     r:= Gear^.Radius + t^.Radius;
@@ -1320,15 +1338,38 @@
     DrawExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cShotgunRadius)
 end;
 
+// Return number of living hogs in HHGear's team
+// * HHGear: hog gear for which to count team hogs
+// * countHidden: if true, also count hidden hogs (e.g. time-travel)
+function CountHogsInTeam(HHGear: PGear; countHidden: boolean): LongInt;
+var i, j, cnt: LongInt;
+    HH: PHedgehog;
+begin
+    if HHGear = nil then
+        exit(0);
+    HH:= HHGear^.Hedgehog;
+    cnt:= 0;
+    for j:= 0 to Pred(HH^.Team^.Clan^.TeamsNumber) do
+        for i:= 0 to Pred(HH^.Team^.Clan^.Teams[j]^.HedgehogsNumber) do
+            if (HH^.Team^.Clan^.Teams[j]^.Hedgehogs[i].Gear <> nil)
+            and ((HH^.Team^.Clan^.Teams[j]^.Hedgehogs[i].Gear^.State and gstDrowning) = 0)
+            and (HH^.Team^.Clan^.Teams[j]^.Hedgehogs[i].Gear^.Health > HH^.Team^.Clan^.Teams[j]^.Hedgehogs[i].Gear^.Damage) then
+                inc(cnt)
+            else if countHidden and (HH^.Team^.Clan^.Teams[j]^.Hedgehogs[i].GearHidden <> nil) then
+                inc(cnt);
+    CountHogsInTeam:= cnt;
+end;
+
+
 // Returns true if the given hog gear can use the tardis
 function CanUseTardis(HHGear: PGear): boolean;
 var usable: boolean;
-    i, j, cnt: LongInt;
+    cnt: LongInt;
     HH: PHedgehog;
 begin
 (*
     Conditions for not activating.
-    1. Hog is last of his clan
+    1. Hog is last of their clan
     2. Sudden Death is in play
     3. Hog is a king
 *)
@@ -1337,13 +1378,7 @@
     if HHGear <> nil then
     if (HHGear = nil) or (HH^.King) or (SuddenDeathActive) then
         usable:= false;
-    cnt:= 0;
-    for j:= 0 to Pred(HH^.Team^.Clan^.TeamsNumber) do
-        for i:= 0 to Pred(HH^.Team^.Clan^.Teams[j]^.HedgehogsNumber) do
-            if (HH^.Team^.Clan^.Teams[j]^.Hedgehogs[i].Gear <> nil)
-            and ((HH^.Team^.Clan^.Teams[j]^.Hedgehogs[i].Gear^.State and gstDrowning) = 0)
-            and (HH^.Team^.Clan^.Teams[j]^.Hedgehogs[i].Gear^.Health > HH^.Team^.Clan^.Teams[j]^.Hedgehogs[i].Gear^.Damage) then
-                inc(cnt);
+    cnt:= CountHogsInTeam(HHGear, false);
     if (cnt < 2) then
         usable:= false;
     CanUseTardis:= usable;
@@ -1377,7 +1412,10 @@
     if (Ammo^.Kind in [gtDEagleShot, gtSniperRifleShot, gtMinigunBullet,
                        gtFirePunch, gtKamikaze, gtWhip, gtShover])
         and (((Ammo^.Data <> nil) and (PGear(Ammo^.Data) = Gear))
-             or (not UpdateHitOrder(Gear, Ammo^.WDTimer))) then
+            or (not UpdateHitOrder(
+                    Gear, 
+                    Ammo^.WDTimer, 
+                    (Ammo^.Kind = gtMinigunBullet) and (Ammo^.Pos <> 0)))) then
         continue;
 
     if ((Ammo^.Kind = gtFlame) or (Ammo^.Kind = gtBlowTorch)) and
@@ -1398,7 +1436,8 @@
             gtKnife,
             gtTarget,
             gtCase,
-            gtExplosives:
+            gtExplosives,
+            gtSentry:
             begin
             if (Ammo^.Kind in [gtFirePunch, gtKamikaze]) and (Gear^.Kind <> gtSMine) then
                 PlaySound(sndFirePunchHit);
@@ -1462,8 +1501,16 @@
                 end
             else if ((Ammo^.Kind <> gtFlame) or (Gear^.Kind = gtHedgehog)) and (Power <> 0) then
                 begin
-                Gear^.dX:= Ammo^.dX * Power * _0_01;
-                Gear^.dY:= Ammo^.dY * Power * _0_01
+                if (Ammo^.Kind in [gtMinigunBullet]) then
+                    begin    
+                    Gear^.dX:= Gear^.dX + Ammo^.dX * Power * _0_01;
+                    Gear^.dY:= Gear^.dY + Ammo^.dY * Power * _0_01
+                    end 
+                else
+                    begin
+                    Gear^.dX:= Ammo^.dX * Power * _0_01;
+                    Gear^.dY:= Ammo^.dY * Power * _0_01
+                    end
                 end;
 
             if (not isZero(Gear^.dX)) or (not isZero(Gear^.dY)) then
@@ -1864,9 +1911,10 @@
 function HomingWrap(var Gear: PGear): boolean;
 var dist_center, dist_right, dist_left: hwFloat;
 begin
+    HomingWrap:= false;
+
     if WorldEdge = weWrap then
         begin
-        HomingWrap:= false;
         // We just check the same target 3 times:
         // 1) in current section (no change)
         // 2) clone in the right section
--- a/hedgewars/uInputHandler.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uInputHandler.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -121,8 +121,6 @@
 
 // Takes a control name (e.g. 'quit') and returns the corresponding
 // human-readable key name from SDL.
-// FIXME: Does not work 100% for all keys yet, but at least it no
-//        longer hardcodes any key name.
 // TODO: Localize
 function KeyBindToName(bind: shortstring): shortstring;
 var code: LongInt;
@@ -141,8 +139,14 @@
             KeyBindToName:= name
         else
             begin
-            WriteLnToConsole('Error: KeyBindToName('+bind+') failed to find SDL key name!');
-            KeyBindToName:= trmsg[sidUnknownKey];
+            if KeyNames[code] <> '' then
+                // Return Hedgewars internal key name if SDL key name is empty
+                KeyBindToName:= KeyNames[code]
+            else
+                begin
+                WriteLnToConsole('Error: KeyBindToName('+bind+'): Hedgewars does not have internal key name for given bind!');
+                KeyBindToName:= trmsg[sidUnknownKey];
+                end;
             end;
         end;
 end;
--- a/hedgewars/uLocale.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uLocale.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -164,6 +164,10 @@
             8: curArg:= arg9;
         end;
 
+        // Replace % sign in argument with ASCII ESC
+        // to prevent infinite loop below.
+        ReplaceChars(curArg, '%', Char($1B));
+
         repeat
         p:= Pos('%'+IntToStr(i+1), tempstr);
         if (p <> 0) then
@@ -173,6 +177,8 @@
             end;
         until (p = 0);
     end;
+
+ReplaceChars(tempstr, Char($1B), '%');
 Format:= tempstr;
 end;
 
@@ -196,6 +202,10 @@
             8: curArg:= arg9;
         end;
 
+        // Replace % sign in argument with ASCII ESC
+        // to prevent infinite loop below.
+        ReplaceCharsA(curArg, '%', Char($1B));
+
         repeat
         p:= Pos('%'+IntToStr(i+1), tempstr);
         if (p <> 0) then
@@ -205,6 +215,8 @@
             end;
         until (p = 0);
     end;
+
+ReplaceCharsA(tempstr, Char($1B), '%');
 FormatA:= tempstr;
 end;
 
--- a/hedgewars/uRender.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uRender.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -50,6 +50,7 @@
 
 procedure DrawCircle            (X, Y, Radius, Width: LongInt);
 procedure DrawCircle            (X, Y, Radius, Width: LongInt; r, g, b, a: Byte);
+procedure DrawCircle            (X, Y, Radius, Width: LongInt; color: LongWord);
 procedure DrawCircleFilled      (X, Y, Radius: LongInt; r, g, b, a: Byte);
 
 procedure DrawLine              (X0, Y0, X1, Y1, Width: Single; color: LongWord); inline;
@@ -1566,6 +1567,13 @@
     untint;
 end;
 
+procedure DrawCircle(X, Y, Radius, Width: LongInt; color: LongWord);
+begin
+    Tint(color);
+    DrawCircle(X, Y, Radius, Width);
+    untint;
+end;
+
 procedure DrawCircle(X, Y, Radius, Width: LongInt);
 var
     i: LongInt;
--- a/hedgewars/uRenderUtils.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uRenderUtils.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -29,6 +29,9 @@
 procedure copyToXY(src, dest: PSDL_Surface; destX, destY: LongInt); inline;
 procedure copyToXYFromRect(src, dest: PSDL_Surface; srcX, srcY, srcW, srcH, destX, destY: LongInt);
 
+function GetSurfaceFrameCoordinateX(Surface: PSDL_Surface; Frame, frameWidth, frameHeight: LongInt): LongInt;
+function GetSurfaceFrameCoordinateY(Surface: PSDL_Surface; Frame, frameHeight: LongInt): LongInt;
+
 procedure DrawSprite2Surf(sprite: TSprite; dest: PSDL_Surface; x,y: LongInt); inline;
 procedure DrawSpriteFrame2Surf(sprite: TSprite; dest: PSDL_Surface; x,y: LongInt; frame: LongInt);
 procedure DrawLine2Surf(dest: PSDL_Surface; x0,y0,x1,y1:LongInt; r,g,b: byte);
@@ -78,6 +81,24 @@
     WriteInRoundRect:= WriteInRoundRect(Surface, X, Y, Color, Font, s, 0);
 end;*)
 
+function GetSurfaceFrameCoordinateX(Surface: PSDL_Surface; Frame, frameWidth, frameHeight: LongInt): LongInt;
+var nx, ny: LongInt;
+begin
+   nx:= Surface^.w div frameWidth; // number of horizontal frames
+   if nx = 0 then nx:= 1; // one frame is minimum
+   ny:= Surface^.h div frameHeight; // number of vertical frames
+   if ny = 0 then ny:= 1;
+   GetSurfaceFrameCoordinateX:= (Frame div ny) * frameWidth;
+end;
+
+function GetSurfaceFrameCoordinateY(Surface: PSDL_Surface; Frame, frameHeight: LongInt): LongInt;
+var ny: LongInt;
+begin
+   ny:= Surface^.h div frameHeight; // number of vertical frames
+   if ny = 0 then ny:= 1; // one frame is minimum
+   GetSurfaceFrameCoordinateY:= (Frame mod ny) * frameHeight;
+end;
+
 function IsTooDarkToRead(TextColor: LongWord): boolean; inline;
 var clr: TSDL_Color;
 begin
@@ -94,7 +115,7 @@
     clr: TSDL_Color;
 begin
     TTF_SizeUTF8(Fontz[Font].Handle, PChar(s), @w, @h);
-    if (maxLength > 0) and (w > maxLength * HDPIScaleFactor) then w := maxLength * HDPIScaleFactor;
+    if (maxLength > 0) and (w > round(maxLength * HDPIScaleFactor)) then w := round(maxLength * HDPIScaleFactor);
     finalRect.x:= X;
     finalRect.y:= Y;
     finalRect.w:= w + cFontBorder * 2 + cFontPadding * 2;
@@ -115,7 +136,7 @@
     finalRect.x:= X + cFontBorder + cFontPadding;
     finalRect.y:= Y + cFontBorder;
     if SDLCheck(tmpsurf <> nil, 'TTF_RenderUTF8_Blended', true) then
-        exit;
+        exit(finalRect);
     SDL_UpperBlit(tmpsurf, @textRect, Surface, @finalRect);
     SDL_FreeSurface(tmpsurf);
     finalRect.x:= X;
@@ -188,9 +209,9 @@
     for iY:= srcY to lY do
         begin
         // src pixel index
-        spi:= iY * src^.w  + iX;
+        spi:= iY * src^.pitch div 4  + iX;
         // dest pixel index
-        dpi:= (iY + dY) * dest^.w + (iX + dX);
+        dpi:= (iY + dY) * dest^.pitch div 4 + (iX + dX);
 
         // get src alpha (and set it as target alpha for now)
         aT:= (srcPixels^[spi] and AMask) shr AShift;
@@ -322,6 +343,29 @@
 
 end;
 
+{$IFNDEF PAS2C}
+// Wraps the text s by inserting breakStr as newlines with
+// maximum column length maxCol.
+// Same as Pascal's WrapText, but without the annoying
+// behavior that text enclosed in " and ' disables word-wrapping
+function SimpleWrapText(s, breakStr: string; maxCol: integer): string;
+var
+    breakChars: set of char = [#9,' ','-'];
+begin
+    // escape the " and ' characters before calling WrapText
+    // using ASCII ESC control character
+    s:= StringReplace(s, '"', #27+'Q', [rfReplaceAll]);
+    s:= StringReplace(s, '''', #27+'q', [rfReplaceAll]);
+
+    s:= WrapText(s, #1, breakChars, maxCol);
+
+    // Undo the escapes
+    s:= StringReplace(s, #27+'Q', '"', [rfReplaceAll]);
+    s:= StringReplace(s, #27+'q', '''', [rfReplaceAll]);
+    SimpleWrapText:= s;
+end;
+{$ENDIF}
+
 function RenderStringTex(s: ansistring; Color: Longword; font: THWFont): PTexture;
 begin
     RenderStringTex:= RenderStringTexLim(s, Color, font, 0);
@@ -341,7 +385,7 @@
         font:= CheckCJKFont(s, font);
         w:= 0; h:= 0; // avoid compiler hints
         TTF_SizeUTF8(Fontz[font].Handle, PChar(s), @w, @h);
-        if (maxLength > 0) and (w > maxLength * HDPIScaleFactor) then w := maxLength * HDPIScaleFactor;
+        if (maxLength > 0) and (w > round(maxLength * HDPIScaleFactor)) then w := round(maxLength * HDPIScaleFactor);
 
         finalSurface:= SDL_CreateRGBSurface(SDL_SWSURFACE, w + cFontBorder*2 + cFontPadding*2, h + cFontBorder * 2,
                 32, RMask, GMask, BMask, AMask);
@@ -413,9 +457,6 @@
 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}
-    breakChars: set of char = [#9,' ','-'];
-    {$ENDIF}
     substr: ansistring;
     edge, corner, tail: TSPrite;
 begin
@@ -444,10 +485,6 @@
     edgeWidth:= SpritesData[edge].Width;
     cornerWidth:= SpritesData[corner].Width;
     cornerHeight:= SpritesData[corner].Height;
-    // This one screws up WrapText
-    //s:= 'This is the song that never ends.  ''cause it goes on and on my friends. Some people, started singing it not knowing what it was. And they''ll just go on singing it forever just because... This is the song that never ends...';
-    // This one does not
-    //s:= 'This is the song that never ends.  cause it goes on and on my friends. Some people, started singing it not knowing what it was. And they will go on singing it forever just because... This is the song that never ends... ';
 
     numLines:= 0;
 
@@ -464,7 +501,7 @@
         w:= 0;
         i:= round(Sqrt(length(s)) * 2);
         {$IFNDEF PAS2C}
-        s:= WrapText(s, #1, breakChars, i);
+        s:= SimpleWrapText(s, #1, i);
         {$ENDIF}
         pos:= 1; line:= 0;
     // Find the longest line for the purposes of centring the text.  Font dependant.
--- a/hedgewars/uScript.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uScript.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -308,6 +308,32 @@
         LuaToSoundOrd:= i;
 end;
 
+function LuaToMsgStrIdOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
+begin
+    if lua_isnoneornil(L, i) then i:= -1
+    else i:= Trunc(lua_tonumber(L, i));
+    if (i < ord(Low(TMsgStrId))) or (i > ord(High(TMsgStrId))) then
+        begin
+        LuaCallError('Invalid message ID!', call, paramsyntax);
+        LuaToMsgStrIdOrd:= -1;
+        end
+    else
+        LuaToMsgStrIdOrd:= i;
+end;
+
+function LuaToGoalStrIdOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
+begin
+    if lua_isnoneornil(L, i) then i:= -1
+    else i:= Trunc(lua_tonumber(L, i));
+    if (i < ord(Low(TGoalStrId))) or (i > ord(High(TGoalStrId))) then
+        begin
+        LuaCallError('Invalid goal string ID!', call, paramsyntax);
+        LuaToGoalStrIdOrd:= -1;
+        end
+    else
+        LuaToGoalStrIdOrd:= i;
+end;
+
 function LuaToHogEffectOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
 begin
     if lua_isnoneornil(L, i) then i:= -1
@@ -456,13 +482,13 @@
 function lc_setweapon(L : Plua_State) : LongInt; Cdecl;
 var at: LongInt;
 const
-    call = 'SetWeapon';
-    params = 'ammoType';
+    callStr = 'SetWeapon';
+    paramsStr = 'ammoType';
 begin
     // no point to run this without any CurrentHedgehog
-    if (CurrentHedgehog <> nil) and (CheckLuaParamCount(L, 1, call, params)) then
+    if (CurrentHedgehog <> nil) and (CheckLuaParamCount(L, 1, callStr, paramsStr)) then
         begin
-        at:= LuaToAmmoTypeOrd(L, 1, call, params);
+        at:= LuaToAmmoTypeOrd(L, 1, callStr, paramsStr);
         if at >= 0 then
             ParseCommand('setweap ' + char(at), true, true);
         end;
@@ -472,10 +498,10 @@
 // enable/disable cinematic effects
 function lc_setcinematicmode(L : Plua_State) : LongInt; Cdecl;
 const
-    call = 'SetCinematicMode';
-    params = 'enable';
-begin
-    if (CheckLuaParamCount(L, 1, call, params)) then
+    callStr = 'SetCinematicMode';
+    paramsStr = 'enable';
+begin
+    if (CheckLuaParamCount(L, 1, callStr, paramsStr)) then
         begin
         CinematicScript:= lua_toboolean(L, 1);
         end;
@@ -486,10 +512,10 @@
 function lc_setmaxbuilddistance(L : Plua_State) : LongInt; Cdecl;
 var np: LongInt;
 const
-    call = 'SetMaxBuildDistance';
-    params = '[ distInPx ]';
-begin
-    if CheckAndFetchParamCountRange(L, 0, 1, call, params, np) then
+    callStr = 'SetMaxBuildDistance';
+    paramsStr = '[ distInPx ]';
+begin
+    if CheckAndFetchParamCountRange(L, 0, 1, callStr, paramsStr, np) then
         begin
         if np = 0 then
             begin
@@ -508,10 +534,10 @@
     nextAmmo    : TAmmo;
     s, a, cs, fa: LongInt;
 const
-    call = 'SetNextWeapon';
-    params = '';
-begin
-    if (CurrentHedgehog <> nil) and (CheckLuaParamCount(L, 0, call, params)) then
+    callStr = 'SetNextWeapon';
+    paramsStr = '';
+begin
+    if (CurrentHedgehog <> nil) and (CheckLuaParamCount(L, 0, callStr, paramsStr)) then
         begin
         at:= -1;
         with CurrentHedgehog^ do
@@ -584,35 +610,76 @@
     lc_hidemission:= 0;
 end;
 
+function lc_getenginestring(L : Plua_state) : LongInt; Cdecl;
+var stringType: shortstring;
+    msgId: LongInt;
+const callStr = 'GetEngineString';
+      paramsStr = 'stringType, msgId';
+begin
+    if CheckLuaParamCount(L, 2, callStr, paramsStr) then
+        begin
+            stringType:= lua_tostring(L, 1);
+            if (not lua_isnumber(L, 2)) then
+                begin
+                LuaError('Argument ''msgId'' must be a number!');
+                lua_pushnil(L);
+                end
+            else if stringType = 'TMsgStrId' then
+                begin
+                msgId:= LuaToMsgStrIdOrd(L, 2, callStr, paramsStr);
+                if msgId = -1 then
+                    lua_pushnil(L)
+                else
+                    lua_pushstring(L, PChar(trmsg[TMsgStrId(msgId)]))
+                end
+            else if stringType = 'TGoalStrId' then
+                begin
+                msgId:= LuaToGoalStrIdOrd(L, 2, callStr, paramsStr);
+                if msgId = -1 then
+                    lua_pushnil(L)
+                else
+                    lua_pushstring(L, PChar(trgoal[TGoalStrId(msgId)]));
+                end
+            else
+                begin
+                LuaError('Invalid stringType!');
+                lua_pushnil(L);
+                end
+        end
+    else
+        lua_pushnil(L);
+    lc_getenginestring:= 1;
+end;
+
 function lc_setammotexts(L : Plua_State) : LongInt; Cdecl;
 const
-    call = 'SetAmmoTexts';
-    params = 'ammoType, name, caption, description [, showExtra]';
+    callStr = 'SetAmmoTexts';
+    paramsStr = 'ammoType, name, caption, description [, showExtra]';
 var n: integer;
     showExtra: boolean;
 begin
-    if CheckAndFetchParamCount(L, 4, 5, call, params, n) then
+    if CheckAndFetchParamCount(L, 4, 5, callStr, paramsStr, n) then
         begin
         if n = 5 then
             showExtra:= lua_toboolean(L, 5)
         else
             showExtra:= true;
-        SetAmmoTexts(TAmmoType(LuaToAmmoTypeOrd(L, 1, call, params)), lua_tostringA(L, 2), lua_tostringA(L, 3), lua_tostringA(L, 4), showExtra);
+        SetAmmoTexts(TAmmoType(LuaToAmmoTypeOrd(L, 1, callStr, paramsStr)), lua_tostringA(L, 2), lua_tostringA(L, 3), lua_tostringA(L, 4), showExtra);
         end;
     lc_setammotexts:= 0;
 end;
 
 function lc_setammodescriptionappendix(L : Plua_State) : LongInt; Cdecl;
 const
-    call = 'SetAmmoDescriptionAppendix';
-    params = 'ammoType, descAppend';
+    callStr = 'SetAmmoDescriptionAppendix';
+    paramsStr = 'ammoType, descAppend';
 var
     ammoType: TAmmoType;
     descAppend: ansistring;
 begin
-    if CheckLuaParamCount(L, 2, call, params) then
+    if CheckLuaParamCount(L, 2, callStr, paramsStr) then
         begin
-        ammoType := TAmmoType(LuaToAmmoTypeOrd(L, 1, call, params));
+        ammoType := TAmmoType(LuaToAmmoTypeOrd(L, 1, callStr, paramsStr));
         descAppend := lua_tostringA(L, 2);
         trluaammoa[Ammoz[ammoType].NameId] := descAppend;
         end;
@@ -667,16 +734,16 @@
 function lc_addcaption(L : Plua_State) : LongInt; Cdecl;
 var cg: LongInt;
 const
-    call = 'AddCaption';
-    params = 'text [, color, captiongroup]';
-begin
-    if CheckAndFetchParamCount(L, 1, 3, call, params, cg) then
+    callStr = 'AddCaption';
+    paramsStr = 'text [, color, captiongroup]';
+begin
+    if CheckAndFetchParamCount(L, 1, 3, callStr, paramsStr, cg) then
         begin
         if cg = 1 then
             AddCaption(lua_tostringA(L, 1), capcolDefault, capgrpMessage)
         else
             begin
-            cg:= LuaToCapGroupOrd(L, 3, call, params);
+            cg:= LuaToCapGroupOrd(L, 3, callStr, paramsStr);
             if cg >= 0 then
                 AddCaption(lua_tostringA(L, 1), Trunc(lua_tonumber(L, 2)) shr 8, TCapGroup(cg));
             end
@@ -846,12 +913,12 @@
     dx, dy: hwFloat;
     gt: TGearType;
 const
-    call = 'AddGear';
-    params = 'x, y, gearType, state, dx, dy, timer';
-begin
-    if CheckLuaParamCount(L, 7, call, params) then
+    callStr = 'AddGear';
+    paramsStr = 'x, y, gearType, state, dx, dy, timer';
+begin
+    if CheckLuaParamCount(L, 7, callStr, paramsStr) then
         begin
-        t:= LuaToGearTypeOrd(L, 3, call, params);
+        t:= LuaToGearTypeOrd(L, 3, callStr, paramsStr);
         if t >= 0 then
             begin
             gt:= TGearType(t);
@@ -893,13 +960,13 @@
     vgt: TVisualGearType;
     uid: Longword;
 const
-    call = 'AddVisualGear';
-    params = 'x, y, visualGearType, state, critical [, layer]';
+    callStr = 'AddVisualGear';
+    paramsStr = 'x, y, visualGearType, state, critical [, layer]';
 begin
     uid:= 0;
-    if CheckAndFetchParamCount(L, 5, 6, call, params, n) then
+    if CheckAndFetchParamCount(L, 5, 6, callStr, paramsStr, n) then
         begin
-        s:= LuaToVisualGearTypeOrd(L, 3, call, params);
+        s:= LuaToVisualGearTypeOrd(L, 3, callStr, paramsStr);
         if s >= 0 then
             begin
             vgt:= TVisualGearType(s);
@@ -1403,7 +1470,7 @@
             end;
 
         FreeAndNilTexture(clan^.HealthTex);
-        clan^.HealthTex:= makeHealthBarTexture(cTeamHealthWidth + 5, clan^.Teams[0]^.NameTagTex^.h, clan^.Color);
+        clan^.HealthTex:= makeHealthBarTexture(cTeamHealthWidth + 5, cTeamHealthHeight, clan^.Color);
         end;
 
     lc_setclancolor:= 0
@@ -1816,12 +1883,12 @@
 var gear : PGear;
     at, n, c: LongInt;
 const
-    call = 'AddAmmo';
-    params = 'gearUid, ammoType [, ammoCount]';
-begin
-    if CheckAndFetchParamCount(L, 2, 3, call, params, n) then
+    callStr = 'AddAmmo';
+    paramsStr = 'gearUid, ammoType [, ammoCount]';
+begin
+    if CheckAndFetchParamCount(L, 2, 3, callStr, paramsStr, n) then
         begin
-        at:= LuaToAmmoTypeOrd(L, 2, call, params);
+        at:= LuaToAmmoTypeOrd(L, 2, callStr, paramsStr);
         if (at >= 0) and (TAmmoType(at) <> amNothing) then
             begin
             gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
@@ -1845,15 +1912,15 @@
     ammo : PAmmo;
     at   : LongInt;
 const
-    call = 'GetAmmoCount';
-    params = 'gearUid, ammoType';
-begin
-    if CheckLuaParamCount(L, 2, call, params) then
+    callStr = 'GetAmmoCount';
+    paramsStr = 'gearUid, ammoType';
+begin
+    if CheckLuaParamCount(L, 2, callStr, paramsStr) then
         begin
         gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
         if (gear <> nil) and (gear^.Hedgehog <> nil) then
             begin
-            at:= LuaToAmmoTypeOrd(L, 2, call, params);
+            at:= LuaToAmmoTypeOrd(L, 2, callStr, paramsStr);
             if at >= 0 then
                 begin
                 ammo:= GetAmmoEntry(gear^.Hedgehog^, TAmmoType(at));
@@ -1955,12 +2022,12 @@
 var gear: PGear;
     t   : LongInt;
 const
-    call = 'SetEffect';
-    params = 'gearUid, effect, effectState';
-begin
-    if CheckLuaParamCount(L, 3, call, params) then
+    callStr = 'SetEffect';
+    paramsStr = 'gearUid, effect, effectState';
+begin
+    if CheckLuaParamCount(L, 3, callStr, paramsStr) then
         begin
-        t:= LuaToHogEffectOrd(L, 2, call, params);
+        t:= LuaToHogEffectOrd(L, 2, callStr, paramsStr);
         if t >= 0 then
             begin
             gear := GearByUID(Trunc(lua_tonumber(L, 1)));
@@ -1975,12 +2042,12 @@
 var gear : PGear;
     t    : LongInt;
 const
-    call = 'GetEffect';
-    params = 'gearUid, effect';
-begin
-    if CheckLuaParamCount(L, 2, call, params) then
+    callStr = 'GetEffect';
+    paramsStr = 'gearUid, effect';
+begin
+    if CheckLuaParamCount(L, 2, callStr, paramsStr) then
         begin
-        t:= LuaToHogEffectOrd(L, 2, call, params);
+        t:= LuaToHogEffectOrd(L, 2, callStr, paramsStr);
         if t >= 0 then
             begin
             gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
@@ -2068,10 +2135,10 @@
 function lc_endturn(L : Plua_State) : LongInt; Cdecl;
 var n: LongInt;
 const
-    call = 'EndTurn';
-    params = '[noTaunts]';
-begin
-    if CheckAndFetchParamCount(L, 0, 1, call, params, n) then
+    callStr = 'EndTurn';
+    paramsStr = '[noTaunts]';
+begin
+    if CheckAndFetchParamCount(L, 0, 1, callStr, paramsStr, n) then
         if n >= 1 then
             LuaNoEndTurnTaunts:= lua_toboolean(L, 1);
     LuaEndTurnRequested:= true;
@@ -2082,10 +2149,10 @@
 var n, time: LongInt;
     respectFactor: Boolean;
 const
-    call = 'Retreat';
-    params = 'time [, respectGetAwayTimeFactor]';
-begin
-    if CheckAndFetchParamCount(L, 1, 2, call, params, n) then
+    callStr = 'Retreat';
+    paramsStr = 'time [, respectGetAwayTimeFactor]';
+begin
+    if CheckAndFetchParamCount(L, 1, 2, callStr, paramsStr, n) then
         begin
         IsGetAwayTime:= true;
         AttackBar:= 0;
@@ -2121,12 +2188,12 @@
     color, tn: shortstring;
     needsTn  : boolean;
 const
-    call = 'SendStat';
-    params = 'statInfoType, color [, teamname]';
-begin
-    if CheckAndFetchParamCount(L, 2, 3, call, params, n) then
+    callStr = 'SendStat';
+    paramsStr = 'statInfoType, color [, teamname]';
+begin
+    if CheckAndFetchParamCount(L, 2, 3, callStr, paramsStr, n) then
         begin
-        i:= LuaToStatInfoTypeOrd(L, 1, call, params);
+        i:= LuaToStatInfoTypeOrd(L, 1, callStr, paramsStr);
         if i >= 0 then
             begin
             statInfo:= TStatInfoType(i);
@@ -2135,9 +2202,9 @@
             if (n = 3) <> needsTn then
                 begin
                 if n = 3 then
-                    LuaCallError(EnumToStr(statInfo) + ' does not support the teamname parameter', call, params)
+                    LuaCallError(EnumToStr(statInfo) + ' does not support the teamname parameter', callStr, paramsStr)
                 else
-                    LuaCallError(EnumToStr(statInfo) + ' requires the teamname parameter', call, params);
+                    LuaCallError(EnumToStr(statInfo) + ' requires the teamname parameter', callStr, paramsStr);
                 end
             else // count is correct!
                 begin
@@ -2239,12 +2306,12 @@
     n, s: LongInt;
     instaVoice: boolean;
 const
-    call = 'PlaySound';
-    params = 'soundId [, hhGearUid [, instaVoice]]';
-begin
-    if CheckAndFetchParamCountRange(L, 1, 3, call, params, n) then
+    callStr = 'PlaySound';
+    paramsStr = 'soundId [, hhGearUid [, instaVoice]]';
+begin
+    if CheckAndFetchParamCountRange(L, 1, 3, callStr, paramsStr, n) then
         begin
-        s:= LuaToSoundOrd(L, 1, call, params);
+        s:= LuaToSoundOrd(L, 1, callStr, paramsStr);
         if s >= 0 then
             begin
             // no gear specified
@@ -2272,12 +2339,12 @@
 function lc_playmusicsound(L : Plua_State) : LongInt; Cdecl;
 var s: LongInt;
 const
-    call = 'PlayMusicSound';
-    params = 'soundId';
-begin
-    if CheckLuaParamCount(L, 1, call, params) then
+    callStr = 'PlayMusicSound';
+    paramsStr = 'soundId';
+begin
+    if CheckLuaParamCount(L, 1, callStr, paramsStr) then
         begin
-        s:= LuaToSoundOrd(L, 1, call, params);
+        s:= LuaToSoundOrd(L, 1, callStr, paramsStr);
         if s >= 0 then
             PlayMusicSound(TSound(s))
         end;
@@ -2287,12 +2354,12 @@
 function lc_stopmusicsound(L : Plua_State) : LongInt; Cdecl;
 var s: LongInt;
 const
-    call = 'StopMusicSound';
-    params = 'soundId';
-begin
-    if CheckLuaParamCount(L, 1, call, params) then
+    callStr = 'StopMusicSound';
+    paramsStr = 'soundId';
+begin
+    if CheckLuaParamCount(L, 1, callStr, paramsStr) then
         begin
-        s:= LuaToSoundOrd(L, 1, call, params);
+        s:= LuaToSoundOrd(L, 1, callStr, paramsStr);
         if s >= 0 then
             StopMusicSound(TSound(s))
         end;
@@ -2304,12 +2371,12 @@
 var s: LongInt;
     soundState: boolean;
 const
-    call = 'SetSoundMask';
-    params = 'soundId, isMasked';
-begin
-    if CheckLuaParamCount(L, 2, call, params) then
+    callStr = 'SetSoundMask';
+    paramsStr = 'soundId, isMasked';
+begin
+    if CheckLuaParamCount(L, 2, callStr, paramsStr) then
         begin
-        s:= LuaToSoundOrd(L, 1, call, params);
+        s:= LuaToSoundOrd(L, 1, callStr, paramsStr);
         if s <> Ord(sndNone) then
             begin
             soundState:= lua_toboolean(L, 2);
@@ -2858,12 +2925,12 @@
 function lc_setammo(L : Plua_State) : LongInt; Cdecl;
 var np, at: LongInt;
 const
-    call = 'SetAmmo';
-    params = 'ammoType, count, probability, delay [, numberInCrate]';
-begin
-    if CheckAndFetchParamCount(L, 4, 5, call, params, np) then
+    callStr = 'SetAmmo';
+    paramsStr = 'ammoType, count, probability, delay [, numberInCrate]';
+begin
+    if CheckAndFetchParamCount(L, 4, 5, callStr, paramsStr, np) then
         begin
-        at:= LuaToAmmoTypeOrd(L, 1, call, params);
+        at:= LuaToAmmoTypeOrd(L, 1, callStr, paramsStr);
         if at >= 0 then
             begin
             if np = 4 then
@@ -2879,13 +2946,13 @@
 function lc_getammo(L : Plua_State) : LongInt; Cdecl;
 var i, at, rawProb, probLevel: LongInt;
 const
-    call = 'GetAmmo';
-    params = 'ammoType';
+    callStr = 'GetAmmo';
+    paramsStr = 'ammoType';
 begin
     lc_getammo:= 0;
-    if CheckLuaParamCount(L, 1, call, params) then
+    if CheckLuaParamCount(L, 1, callStr, paramsStr) then
         begin
-        at:= LuaToAmmoTypeOrd(L, 1, call, params);
+        at:= LuaToAmmoTypeOrd(L, 1, callStr, paramsStr);
         if at >= 0 then
             begin
             // Ammo count
@@ -2913,12 +2980,12 @@
 function lc_setammodelay(L : Plua_State) : LongInt; Cdecl;
 var at, delay: LongInt;
 const
-    call = 'SetAmmoDelay';
-    params = 'ammoType, delay';
-begin
-    if CheckLuaParamCount(L, 2, call, params) then
+    callStr = 'SetAmmoDelay';
+    paramsStr = 'ammoType, delay';
+begin
+    if CheckLuaParamCount(L, 2, callStr, paramsStr) then
         begin
-        at:= LuaToAmmoTypeOrd(L, 1, call, params);
+        at:= LuaToAmmoTypeOrd(L, 1, callStr, paramsStr);
         delay:= Trunc(lua_tonumber(L, 2));
         if (at >= 0) and (TAmmoType(at) <> amNothing) then
             begin
@@ -3065,11 +3132,11 @@
     i, n : LongInt;
     placed, behind, flipHoriz, flipVert : boolean;
 const
-    call = 'PlaceSprite';
-    params = 'x, y, sprite, frameIdx, tint, behind, flipHoriz, flipVert [, landFlag, ... ]';
+    callStr = 'PlaceSprite';
+    paramsStr = 'x, y, sprite, frameIdx, tint, behind, flipHoriz, flipVert [, landFlag, ... ]';
 begin
     placed:= false;
-    if CheckAndFetchLuaParamMinCount(L, 4, call, params, n) then
+    if CheckAndFetchLuaParamMinCount(L, 4, callStr, paramsStr, n) then
         begin
         if not lua_isnoneornil(L, 5) then
             tint := Trunc(lua_tonumber(L, 5))
@@ -3089,12 +3156,12 @@
         for i:= 9 to n do
             lf:= lf or Trunc(lua_tonumber(L, i));
 
-        n:= LuaToSpriteOrd(L, 3, call, params);
+        n:= LuaToSpriteOrd(L, 3, callStr, paramsStr);
         if n >= 0 then
             begin
             spr:= TSprite(n);
             if SpritesData[spr].Surface = nil then
-                LuaError(call + ': ' + EnumToStr(spr) + ' cannot be placed! (required information not loaded)' )
+                LuaError(callStr + ': ' + EnumToStr(spr) + ' cannot be placed! (required information not loaded)' )
             else
                 placed:= ForcePlaceOnLand(
                     Trunc(lua_tonumber(L, 1)) - SpritesData[spr].Width div 2,
@@ -3113,10 +3180,10 @@
     i, n : LongInt;
     eraseOnLFMatch, onlyEraseLF, flipHoriz, flipVert : boolean;
 const
-    call = 'EraseSprite';
-    params = 'x, y, sprite, frameIdx, eraseOnLFMatch, onlyEraseLF, flipHoriz, flipVert [, landFlag, ... ]';
-begin
-    if CheckAndFetchLuaParamMinCount(L, 4, call, params, n) then
+    callStr = 'EraseSprite';
+    paramsStr = 'x, y, sprite, frameIdx, eraseOnLFMatch, onlyEraseLF, flipHoriz, flipVert [, landFlag, ... ]';
+begin
+    if CheckAndFetchLuaParamMinCount(L, 4, callStr, paramsStr, n) then
         begin
         if not lua_isnoneornil(L, 5) then
             eraseOnLFMatch := lua_toboolean(L, 5)
@@ -3136,12 +3203,12 @@
         for i:= 9 to n do
             lf:= lf or Trunc(lua_tonumber(L, i));
 
-        n:= LuaToSpriteOrd(L, 3, call, params);
+        n:= LuaToSpriteOrd(L, 3, callStr, paramsStr);
         if n >= 0 then
             begin
             spr:= TSprite(n);
             if SpritesData[spr].Surface = nil then
-                LuaError(call + ': ' + EnumToStr(spr) + ' cannot be placed! (required information not loaded)' )
+                LuaError(callStr + ': ' + EnumToStr(spr) + ' cannot be placed! (required information not loaded)' )
             else
                 EraseLand(
                     Trunc(lua_tonumber(L, 1)) - SpritesData[spr].Width div 2,
@@ -3388,12 +3455,12 @@
 function lc_getammoname(L : Plua_state) : LongInt; Cdecl;
 var np, at: LongInt;
     ignoreOverwrite: Boolean;
-const call = 'GetAmmoName';
-      params = 'ammoType [, ignoreOverwrite ]';
-begin
-    if CheckAndFetchParamCountRange(L, 1, 2, call, params, np) then
+const callStr = 'GetAmmoName';
+      paramsStr = 'ammoType [, ignoreOverwrite ]';
+begin
+    if CheckAndFetchParamCountRange(L, 1, 2, callStr, paramsStr, np) then
         begin
-        at:= LuaToAmmoTypeOrd(L, 1, call, params);
+        at:= LuaToAmmoTypeOrd(L, 1, callStr, paramsStr);
         ignoreOverwrite := false;
         if np > 1 then
             ignoreOverwrite := lua_toboolean(L, 2);
@@ -3412,15 +3479,15 @@
 var at: LongInt;
     weapon: PAmmo;
     gear: PGear;
-const call = 'GetAmmoTimer';
-      params = 'gearUid, ammoType';
-begin
-    if CheckLuaParamCount(L, 2, call, params) then
+const callStr = 'GetAmmoTimer';
+      paramsStr = 'gearUid, ammoType';
+begin
+    if CheckLuaParamCount(L, 2, callStr, paramsStr) then
         begin
         gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
         if (gear <> nil) and (gear^.Hedgehog <> nil) then
             begin
-            at:= LuaToAmmoTypeOrd(L, 2, call, params);
+            at:= LuaToAmmoTypeOrd(L, 2, callStr, paramsStr);
             weapon:= GetAmmoEntry(gear^.Hedgehog^, TAmmoType(at));
             if (Ammoz[TAmmoType(at)].Ammo.Propz and ammoprop_Timerable) <> 0 then
                 lua_pushnumber(L, weapon^.Timer)
@@ -3600,10 +3667,10 @@
 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
+    callStr = 'EndLuaTest';
+    paramsStr = 'TEST_SUCCESSFUL or TEST_FAILED';
+begin
+    if CheckLuaParamCount(L, 1, callStr, paramsStr) then
         begin
 
         case Trunc(lua_tonumber(L, 1)) of
@@ -3611,7 +3678,7 @@
             HaltTestFailed: rstring:= 'FAILED';
         else
             begin
-            LuaCallError('Parameter must be either ' + params, call, params);
+            LuaCallError('Parameter must be either ' + paramsStr, callStr, paramsStr);
             exit(0);
             end;
         end;
@@ -4257,6 +4324,8 @@
     spr: TSprite;
     mg : TMapGen;
     we : TWorldEdge;
+    msi: TMsgStrId;
+    gsi: TGoalStrId;
 begin
 // initialize lua
 luaState:= lua_open;
@@ -4375,6 +4444,13 @@
 for we:= Low(TWorldEdge) to High(TWorldEdge) do
     ScriptSetInteger(EnumToStr(we), ord(we));
 
+// register message IDs
+for msi:= Low(TMsgStrId) to High(TMsgStrId) do
+    ScriptSetInteger(EnumToStr(msi), ord(msi));
+
+for gsi:= Low(TGoalStrId) to High(TGoalStrId) do
+    ScriptSetInteger(EnumToStr(gsi), ord(gsi));
+
 ScriptSetLongWord('capcolDefault'   , capcolDefaultLua);
 ScriptSetLongWord('capcolSetting'   , capcolSettingLua);
 
@@ -4485,6 +4561,7 @@
 lua_register(luaState, _P'ParseCommand', @lc_parsecommand);
 lua_register(luaState, _P'ShowMission', @lc_showmission);
 lua_register(luaState, _P'HideMission', @lc_hidemission);
+lua_register(luaState, _P'GetEngineString', @lc_getenginestring);
 lua_register(luaState, _P'SetAmmoTexts', @lc_setammotexts);
 lua_register(luaState, _P'SetAmmoDescriptionAppendix', @lc_setammodescriptionappendix);
 lua_register(luaState, _P'AddCaption', @lc_addcaption);
--- a/hedgewars/uSound.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uSound.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -332,7 +332,9 @@
             (FileName:                  'Hmm.ogg'; Path: ptVoices; AltPath: ptNone),// sndHmm
             (FileName:                 'Kiss.ogg'; Path: ptSounds; AltPath: ptNone),// sndKiss
             (FileName:              'Flyaway.ogg'; Path: ptVoices; AltPath: ptNone),// sndFlyAway
-            (FileName:           'planewater.ogg'; Path: ptSounds; AltPath: ptNone) // sndPlaneWater
+            (FileName:           'planewater.ogg'; Path: ptSounds; AltPath: ptNone),// sndPlaneWater
+            (FileName:         'dynamitefuse.ogg'; Path: ptSounds; AltPath: ptNone),// sndDynamiteFuse
+            (FileName:       'dynamiteimpact.ogg'; Path: ptSounds; AltPath: ptNone) // sndDynamiteImpact
             );
 
 
--- a/hedgewars/uStats.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uStats.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -105,15 +105,20 @@
 end;
 
 procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean);
+var sameClan: Boolean;
 begin
-if Attacker^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then
+sameClan := false;
+if Attacker <> nil then
+    sameClan := Attacker^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan;
+
+if sameClan then
     vpHurtSameClan:= Gear^.Hedgehog^.Team^.voicepack
 else
     begin
     if not FirstBlood then
         StepFirstBlood:= true;
     vpHurtEnemy:= Gear^.Hedgehog^.Team^.voicepack;
-    if (not killed) and (not bDuringWaterRise) then
+    if (Attacker <> nil) and (not killed) and (not bDuringWaterRise) then
         begin
         // Check if victim got attacked by RevengeHog again
         if (Gear^.Hedgehog^.RevengeHog <> nil) and (Gear^.Hedgehog^.RevengeHog = Attacker) and (Gear^.Hedgehog^.stats.StepRevenge = false) then
@@ -141,7 +146,8 @@
 
 if (not bDuringWaterRise) then
     begin
-    inc(Attacker^.stats.StepDamageGiven, Damage);
+    if Attacker <> nil then
+        inc(Attacker^.stats.StepDamageGiven, Damage);
     inc(Gear^.Hedgehog^.stats.StepDamageRecv, Damage);
     end;
 
@@ -157,7 +163,7 @@
 
     if bDuringWaterRise then
         inc(KillsSD)
-    else
+    else if Attacker <> nil then
         begin
         inc(Attacker^.stats.StepKills);
         inc(Attacker^.Team^.stats.Kills);
--- a/hedgewars/uStore.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uStore.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -33,6 +33,7 @@
 function makeHealthBarTexture(w, h, Color: Longword): PTexture;
 procedure AddProgress;
 procedure FinishProgress;
+procedure LoadFont(font: THWFont);
 function  LoadImage(const filename: shortstring; imageFlags: LongInt): PSDL_Surface;
 
 // loads an image from the games data files
@@ -115,7 +116,7 @@
 clr.b:= Color and $FF;
 clr.a:= $FF;
 tmpsurf:= TTF_RenderUTF8_Blended(Fontz[Font].Handle, s, clr);
-if tmpsurf = nil then exit;
+if tmpsurf = nil then exit(finalRect);
 tmpsurf:= doSurfaceConversion(tmpsurf);
 
 if tmpsurf <> nil then
@@ -327,9 +328,9 @@
 
 for t:= 0 to Pred(ClansCount) do
     with ClansArray[t]^ do
-        HealthTex:= makeHealthBarTexture(cTeamHealthWidth + 5, 19 * HDPIScaleFactor, Color);
+        HealthTex:= makeHealthBarTexture(cTeamHealthWidth + 5, cTeamHealthHeight, Color);
 
-GenericHealthTexture:= makeHealthBarTexture(cTeamHealthWidth + 5, 19 * HDPIScaleFactor, cWhiteColor)
+GenericHealthTexture:= makeHealthBarTexture(cTeamHealthWidth + 5, cTeamHealthHeight, cWhiteColor)
 end;
 
 
@@ -362,23 +363,35 @@
             end
 end;
 
-procedure LoadFonts();
+procedure LoadFont(font: THWFont);
 var s: shortstring;
-    fi: THWFont;
+begin
+    with Fontz[font] do
+        begin
+        if Handle <> nil then
+            begin
+            TTF_CloseFont(Handle);
+            Handle:= nil;
+            end;
+        s:= cPathz[ptFonts] + '/' + Name;
+        WriteToConsole(msgLoading + s + ' (' + inttostr(Height) + 'pt)... ');
+        Handle:= TTF_OpenFontRW(rwopsOpenRead(s), true, Height);
+        if SDLCheck(Handle <> nil, 'TTF_OpenFontRW', true) then exit;
+        TTF_SetFontStyle(Handle, style);
+        WriteLnToConsole(msgOK)
+        end;
+end;
+
+procedure LoadFonts();
+var fi: THWFont;
 begin
 AddFileLog('LoadFonts();');
 
 if (not cOnlyStats) then
     for fi:= Low(THWFont) to High(THWFont) do
-        with Fontz[fi] do
-            begin
-            s:= cPathz[ptFonts] + '/' + Name;
-            WriteToConsole(msgLoading + s + ' (' + inttostr(Height) + 'pt)... ');
-            Handle:= TTF_OpenFontRW(rwopsOpenRead(s), true, Height);
-            if SDLCheck(Handle <> nil, 'TTF_OpenFontRW', true) then exit;
-            TTF_SetFontStyle(Handle, style);
-            WriteLnToConsole(msgOK)
-            end;
+        begin
+        LoadFont(fi);
+        end;
 end;
 
 procedure StoreLoad(reload: boolean);
@@ -461,12 +474,30 @@
                         end;
                 if (ii in [sprAMAmmos, sprAMAmmosBW]) then
                     begin
+                    // Optionally add ammos overlay from HWP file
                     tmpoverlay := LoadDataImage(Path, copy(FileName, 1, length(FileName)-5), (imflags and (not ifCritical)));
                     if tmpoverlay <> nil then
                         begin
                         copyToXY(tmpoverlay, tmpsurf, 0, 0);
                         SDL_FreeSurface(tmpoverlay)
-                        end
+                        end;
+
+                    // Replace ExtraDamage icon with a variant showing "1,5" instead of "1.5"
+                    // if the current locale uses a comma as a decimal separator.
+                    if lDecimalSeparator = ',' then
+                        begin
+                        if ii = sprAMAmmos then
+                            tmpoverlay:= LoadDataImage(ptAmmoMenu, 'Ammos_ExtraDamage_comma', ifNone)
+                        else
+                            tmpoverlay:= LoadDataImage(ptAmmoMenu, 'Ammos_bw_ExtraDamage_comma', ifNone);
+                        if tmpoverlay <> nil then
+                            begin
+                            copyToXY(tmpoverlay, tmpsurf,
+                               GetSurfaceFrameCoordinateX(tmpsurf, ord(amExtraDamage)-1, SpritesData[ii].Width, SpritesData[ii].Height),
+                               GetSurfaceFrameCoordinateY(tmpsurf, ord(amExtraDamage)-1, SpritesData[ii].Height));
+                            SDL_FreeSurface(tmpoverlay);
+                            end;
+                        end;
                     end;
                 if (ii in [sprSky, sprSkyL, sprSkyR, sprHorizont, sprHorizontL, sprHorizontR]) then
                     begin
--- a/hedgewars/uTypes.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uTypes.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -94,8 +94,8 @@
             sprFlakeL, sprSDFlakeL, sprCloudL, sprSDCloudL, sprCreeper, sprHandCreeper, sprMinigun,
             sprSliderInverted, sprFingerBack, sprFingerBackInv, sprTargetPBack, sprTargetPBackInv,
             sprHealthHud, sprHealthPoisonHud, sprVampHud, sprKarmaHud, sprMedicHud, sprMedicPoisonHud,
-            sprHaloHud, sprInvulnHUD, sprAmPiano, sprHandLandGun, sprFirePunch, sprThroughWrap
-            );
+            sprHaloHud, sprInvulnHUD, sprAmPiano, sprHandLandGun, sprFirePunch, sprThroughWrap,
+            sprDynamiteDefused, sprHogBubble, sprHappy, sprSentry, sprHandSentry);
 
     // Gears that interact with other Gears and/or Land
     // first row of gears (<gtExplosives) should be avoided when searching a spawn place
@@ -112,7 +112,7 @@
             gtEgg, gtPortal, gtPiano, gtGasBomb, gtSineGunShot, gtFlamethrower, // 51
             gtSMine, gtPoisonCloud, gtHammer, gtHammerHit, gtResurrector, // 56
             gtNapalmBomb, gtSnowball, gtFlake, gtLandGun, gtTardis, // 61
-            gtIceGun, gtAddAmmo, gtGenericFaller, gtKnife, gtCreeper, gtMinigun, gtMinigunBullet); // 68
+            gtIceGun, gtAddAmmo, gtGenericFaller, gtKnife, gtCreeper, gtMinigun, gtMinigunBullet, gtSentry); // 69
 
     // Gears that are _only_ of visual nature (e.g. background stuff, visual effects, speechbubbles, etc.)
     TVisualGearType = (vgtFlake, vgtCloud, vgtExplPart, vgtExplPart2, vgtFire,
@@ -158,7 +158,8 @@
             sndLandGun, sndCaseImpact, sndExtraDamage, sndFirePunchHit, sndGrenade, sndThisOneIsMine,
             sndWhatThe, sndSoLong, sndOhDear, sndGonnaGetYou, sndDrat, sndBugger, sndAmazing,
             sndBrilliant, sndExcellent, sndFire, sndWatchThis, sndRunAway, sndRevenge, sndCutItOut,
-            sndLeaveMeAlone, sndOuch, sndHmm, sndKiss, sndFlyAway, sndPlaneWater);
+            sndLeaveMeAlone, sndOuch, sndHmm, sndKiss, sndFlyAway, sndPlaneWater, sndDynamiteFuse,
+            sndDynamiteImpact);
 
     // Available ammo types to be used by hedgehogs
     TAmmoType  = (amNothing, amGrenade, amClusterBomb, amBazooka, amBee, amShotgun, amPickHammer, // 6
@@ -170,14 +171,14 @@
             amLaserSight, amVampiric, amSniperRifle, amJetpack, amMolotov, amBirdy, amPortalGun, // 42
             amPiano, amGasBomb, amSineGun, amFlamethrower, amSMine, amHammer, // 48
             amResurrector, amDrillStrike, amSnowball, amTardis, amLandGun, // 53
-            amIceGun, amKnife, amRubber, amAirMine, amCreeper, amMinigun); // 59
+            amIceGun, amKnife, amRubber, amAirMine, amCreeper, amMinigun, amSentry); // 60
     // NOTE: If we ever reach 126 ammo types, make sure to skip ammo type number 126 because it's
     // reserved as synonym for amNothing. See also chSetWeapon.
 
     // Different kind of crates that e.g. hedgehogs can pick up
     TCrateType = (HealthCrate, AmmoCrate, UtilityCrate);
 
-    THWFont = (fnt16, fntBig, fntSmall {$IFNDEF MOBILE}, CJKfnt16, CJKfntBig, CJKfntSmall{$ENDIF});
+    THWFont = (fnt16, fntBig, fntSmall, fntChat {$IFNDEF MOBILE}, CJKfnt16, CJKfntBig, CJKfntSmall, CJKfntChat{$ENDIF});
 
     TCapGroup = (capgrpGameState, capgrpAmmoinfo, capgrpVolume,
             capgrpMessage, capgrpMessage2, capgrpAmmostate);
@@ -188,7 +189,8 @@
             siPointType, siTeamRank, siEverAfter);
 
     // Various 'emote' animations a hedgehog can do
-    TWave = (waveRollup, waveSad, waveWave, waveHurrah, waveLemonade, waveShrug, waveJuggle);
+    TWave = (waveRollup, waveSad, waveWave, waveHurrah, waveLemonade, waveShrug, waveJuggle, waveBubble,
+             waveHappy);
 
     TRenderMode = (rmDefault, rmLeftEye, rmRightEye);
     TStereoMode = (smNone, smRedCyan, smCyanRed, smRedBlue, smBlueRed, smRedGreen, smGreenRed, smHorizontal, smVertical);
@@ -504,7 +506,7 @@
             sidSineGun, sidFlamethrower,sidSMine, sidHammer, sidResurrector,
             sidDrillStrike, sidSnowball, sidNothing, sidTardis,
             sidLandGun, sidIceGun, sidKnife, sidRubber, sidAirMine,
-            sidCreeper, sidMinigun);
+            sidCreeper, sidMinigun, sidSentry);
 
     TMsgStrId = (sidLoading, sidDraw, sidWinner, sidVolume, sidPaused,
             sidConfirm, sidSuddenDeath, sidRemaining, sidFuel, sidSync,
@@ -515,7 +517,8 @@
             sidWinner2, sidWinner3, sidWinner4, sidWinner5, sidWinner6,
             sidWinner7, sidWinnerAll, sidTeamGone, sidTeamBack, sidAutoSkip,
             sidFPS, sidLuaParsingOff, sidLuaParsingOn, sidLuaParsingDenied,
-            sidAmmoCount, sidChat, sidChatTeam, sidChatHog, sidUnknownGearValue);
+            sidAmmoCount, sidChat, sidChatTeam, sidChatHog, sidUnknownGearValue,
+            sidVideoRecLuaFail);
 
     TCmdHelpStrId = (
             sidCmdHeaderBasic, sidCmdTogglechat, sidCmdTeam, sidCmdMe,
@@ -526,7 +529,8 @@
             sidCmdSpeechNumberHint, sidCmdHsa, sidCmdHta, sidCmdHya,
             sidCmdHurrah, sidCmdIlovelotsoflemonade, sidCmdJuggle,
             sidCmdRollup, sidCmdShrug, sidCmdWave, sidCmdUnknown,
-            sidCmdHelpRoom, sidCmdHelpRoomFail);
+            sidCmdHelpRoom, sidCmdHelpRoomFail, sidCmdBubble, sidCmdHappy,
+            sidCmdSad);
 
     // Events that are important for the course of the game or at least interesting for other reasons
     TEventId = (eidDied, eidDrowned, eidRoundStart, eidRoundWin, eidRoundDraw,
--- a/hedgewars/uUtils.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uUtils.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -26,6 +26,7 @@
 // returns s with whitespaces (chars <= #32) removed form both ends
 function Trim(s: shortstring) : shortstring;
 
+function CountChar(s : shortstring; c: char) : LongInt;
 procedure SplitBySpace(var a, b: shortstring);
 procedure SplitByChar(var a, b: shortstring; c: char);
 procedure SplitByCharA(var a, b: ansistring; c: char);
@@ -33,6 +34,9 @@
 procedure EscapeCharA(var a: ansistring; e: char);
 procedure UnEscapeCharA(var a: ansistring; e: char);
 
+procedure ReplaceChars(var a: shortstring; c1, c2: char);
+procedure ReplaceCharsA(var a: ansistring; c1, c2: char);
+
 function ExtractFileDir(s: shortstring) : shortstring;
 function ExtractFileName(s: shortstring) : shortstring;
 
@@ -46,6 +50,8 @@
 function  EnumToStr(const en : TSprite) : shortstring; overload;
 function  EnumToStr(const en : TMapGen) : shortstring; overload;
 function  EnumToStr(const en : TWorldEdge) : shortstring; overload;
+function  EnumToStr(const en : TMsgStrId) : shortstring; overload;
+function  EnumToStr(const en : TGoalStrId) : shortstring; overload;
 
 function  Min(a, b: LongInt): LongInt; inline;
 function  MinD(a, b: double) : double; inline;
@@ -218,6 +224,18 @@
 ExtractFilename:= copy(s, lslash + 1, len);
 end;
 
+function CountChar(s : shortstring; c: char): LongInt;
+var i, res : LongInt;
+begin
+    res:= 0;
+    for i:= 1 to Length(s) do
+    begin
+        if s[i] = c then
+           Inc(res)
+    end;
+    CountChar:= res
+end;
+
 procedure SplitBySpace(var a,b: shortstring);
 begin
 SplitByChar(a,b,' ');
@@ -291,6 +309,28 @@
 until (i <= 0);
 end; { UnEscapeCharA }
 
+// Replace all characters c1 with c2 in shortstring a
+procedure ReplaceChars(var a: shortstring; c1, c2: char);
+var i: LongInt;
+begin
+repeat
+    i:= Pos(c1, a);
+    if (i > 0) then
+        a[i]:= c2;
+until (i <= 0);
+end; { ReplaceChars }
+
+// Replace all characters c1 with c2 in antistring a
+procedure ReplaceCharsA(var a: ansistring; c1, c2: char);
+var i: LongInt;
+begin
+repeat
+    i:= Pos(c1, a);
+    if (i > 0) then
+        a[i]:= c2;
+until (i <= 0);
+end; { ReplaceCharsA }
+
 function EnumToStr(const en : TGearType) : shortstring; overload;
 begin
 EnumToStr:= GetEnumName(TypeInfo(TGearType), ord(en))
@@ -341,6 +381,15 @@
 EnumToStr := GetEnumName(TypeInfo(TWorldEdge), ord(en))
 end;
 
+function EnumToStr(const en: TMsgStrId) : shortstring; overload;
+begin
+EnumToStr := GetEnumName(TypeInfo(TMsgStrId), ord(en))
+end;
+
+function EnumToStr(const en: TGoalStrId) : shortstring; overload;
+begin
+EnumToStr := GetEnumName(TypeInfo(TGoalStrId), ord(en))
+end;
 
 function Min(a, b: LongInt): LongInt;
 begin
--- a/hedgewars/uVariables.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uVariables.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -86,6 +86,7 @@
     SpeedStart      : LongWord;
 
     fastUntilLag    : boolean;
+    fastForward     : boolean;
     fastScrolling   : boolean;
     autoCameraOn    : boolean;
 
@@ -93,6 +94,7 @@
     CampaignVariable: shortstring;
     MissionVariable : shortstring;
     GameTicks       : LongWord;
+    FFGameTick      : LongWord;
     OuchTauntTimer  : LongWord; // Timer which blocks sndOuch from being played too often and fast
     GameState       : TGameState;
     GameType        : TGameType;
@@ -105,6 +107,7 @@
     TurnClockActive : boolean;
     TagTurnTimeLeft : Longword;
     ReadyTimeLeft   : Longword;
+    TimeNotInTurn   : Longword; // Milliseconds that passed while no turn is active
     IsGetAwayTime   : boolean;
     GameOver        : boolean;
     cSuddenDTurns   : LongInt;
@@ -140,6 +143,9 @@
     zoom             : GLfloat; // current zoom
     ZoomValue        : GLfloat; // aimed zoom
     UserZoom         : GLfloat; // user-chosen initial and default zoom
+    ChatScaleValue   : real;
+    cDefaultChatScale: real;
+    UIScaleValue     : real;
 
     cWaterLine       : LongInt;
     cGearScrEdgesDist: LongInt;
@@ -176,6 +182,7 @@
 
     cLandMines      : Longword;
     cAirMines       : Longword;
+    cSentries       : Longword;
     cExplosives     : Longword;
 
     cScriptName     : shortstring;
@@ -262,6 +269,8 @@
 
     // for tracking the limits of the visible grid based on cScaleFactor
     ViewLeftX, ViewRightX, ViewBottomY, ViewTopY, ViewWidth, ViewHeight: LongInt;
+    // for tracking the limits of the visible UI space based on cUIScaleFactor
+    UIWidth, UIHeight: LongInt;
 
     // for debugging the view limits visually
     cViewLimitsDebug: boolean;
@@ -348,28 +357,36 @@
 const
     FontzInit: array[THWFont] of THHFont = (
             (Handle: nil;
-            Height: 12*HDPIScaleFactor;
+            Height: round(12*HDPIScaleFactor);
             style: TTF_STYLE_NORMAL;
             Name: 'DejaVuSans-Bold.ttf'),
             (Handle: nil;
-            Height: 24*HDPIScaleFactor;
+            Height: round(24*HDPIScaleFactor);
             style: TTF_STYLE_NORMAL;
             Name: 'DejaVuSans-Bold.ttf'),
             (Handle: nil;
-            Height: 10*HDPIScaleFactor;
+            Height: round(10*HDPIScaleFactor);
+            style: TTF_STYLE_NORMAL;
+            Name: 'DejaVuSans-Bold.ttf'),
+            (Handle: nil; // fntChat
+            Height: round(12*HDPIScaleFactor);
             style: TTF_STYLE_NORMAL;
             Name: 'DejaVuSans-Bold.ttf')
             {$IFNDEF MOBILE}, // remove chinese fonts for now
             (Handle: nil;
-            Height: 12*HDPIScaleFactor;
+            Height: round(12*HDPIScaleFactor);
             style: TTF_STYLE_NORMAL;
             Name: 'wqy-zenhei.ttc'),
             (Handle: nil;
-            Height: 24*HDPIScaleFactor;
+            Height: round(24*HDPIScaleFactor);
             style: TTF_STYLE_NORMAL;
             Name: 'wqy-zenhei.ttc'),
             (Handle: nil;
-            Height: 10*HDPIScaleFactor;
+            Height: round(10*HDPIScaleFactor);
+            style: TTF_STYLE_NORMAL;
+            Name: 'wqy-zenhei.ttc'),
+            (Handle: nil; // CJKfntChat
+            Height: round(12*HDPIScaleFactor);
             style: TTF_STYLE_NORMAL;
             Name: 'wqy-zenhei.ttc')
             {$ENDIF}
@@ -852,7 +869,17 @@
             (FileName: 'amShoryuken'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
             Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprFirePunch
             (FileName: 'throughWrap'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
-            Width:  16; Height: 13; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true) // sprTroughWrap
+            Width:  16; Height: 13; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprTroughWrap
+            (FileName: 'dynamiteDefused'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
+            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprDynamiteDefused
+            (FileName:     'Bubble'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
+            Width:  32; Height: 38; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprHogBubble
+            (FileName: 'Happy'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
+            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprHappy
+           (FileName: 'Duck'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
+  Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSentry
+            (FileName: 'amDuck'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
+  Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true) // sprHandSentry
             );
 
 
@@ -871,7 +898,9 @@
             (Sprite:   sprHurrah; FramesCount: 14; Interval: 125; cmd: '/hurrah'; Voice: sndNone; VoiceDelay: 0),
             (Sprite: sprLemonade; FramesCount: 24; Interval: 125; cmd: '/ilovelotsoflemonade'; Voice: sndNone; VoiceDelay: 0),
             (Sprite:    sprShrug; FramesCount: 24; Interval: 125; cmd: '/shrug'; Voice: sndNone; VoiceDelay: 0),
-            (Sprite:   sprJuggle; FramesCount: 49; Interval:  38; cmd: '/juggle'; Voice: sndNone; VoiceDelay: 0)
+            (Sprite:   sprJuggle; FramesCount: 49; Interval:  38; cmd: '/juggle'; Voice: sndNone; VoiceDelay: 0),
+            (Sprite:sprHogBubble; FramesCount: 19; Interval: 125; cmd: '/bubble'; Voice: sndNone; VoiceDelay: 0),
+            (Sprite:    sprHappy; FramesCount: 14; Interval: 125; cmd: '/happy'; Voice: sndNone; VoiceDelay: 0)
             );
 
 type
@@ -2531,7 +2560,32 @@
             PosCount: 0;
             PosSprite: sprWater;
             ejectX: 0; //23;
-            ejectY: 0) //-6;
+            ejectY: 0), //-6;
+// Sentry
+            (NameId: sidSentry;
+            NameTex: nil;
+            Probability: 100;
+            NumberInCase: 1;
+            Ammo: (Propz: ammoprop_NoCrosshair or
+                    ammoprop_AttackInMove or
+                    ammoprop_DontHold;
+                Count: 1;
+                NumPerTurn: 0;
+                Timer: 0;
+                Pos: 0;
+                AmmoType: amSentry;
+                AttackVoice: sndLaugh;
+                Bounciness: defaultBounciness);
+            Slot: 9;
+            TimeAfterTurn: 3000;
+            minAngle: 0;
+            maxAngle: 0;
+            isDamaging: true;
+            SkipTurns: 0;
+            PosCount: 0;
+            PosSprite: sprWater;
+            ejectX: 10;
+            ejectY: -5)
         );
 
 var
@@ -2592,6 +2646,7 @@
     SyncTexture,
     ConfirmTexture: PTexture;
     cScaleFactor: GLfloat;
+    cUIScaleFactor: float;
     cStereoDepth: GLfloat;
     SupportNPOTT: Boolean;
     Step: LongInt;
@@ -2717,6 +2772,8 @@
     cAudioCodec        := '';
 {$ENDIF}
 
+    cDefaultChatScale:= 1.0;
+
     cTagsMask:= htTeamName or htName or htHealth;
     cPrevTagsMask:= cTagsMask;
 end;
@@ -2875,6 +2932,7 @@
     CursorMovementX     := 0;
     CursorMovementY     := 0;
     GameTicks           := 0;
+    FFGameTick          := 0;
     OuchTauntTimer      := 0;
     CheckSum            := 0;
     cWaterLine          := LAND_HEIGHT;
@@ -2890,6 +2948,7 @@
     GameOver            := false;
     TurnClockActive     := true;
     TagTurnTimeLeft     := 0;
+    TimeNotInTurn       := 0;
     cSuddenDTurns       := 15;
     LastSuddenDWarn     := -2;
     cInitHealth         := 100;
@@ -2920,9 +2979,18 @@
     cMaxCaseDrops   := 5;
     cLandMines      := 4;
     cAirMines       := 0;
+    cSentries       := 0;
     cExplosives     := 2;
 
     GameState       := Low(TGameState);
+
+    if cDefaultChatScale < cMinChatScaleValue then
+        cDefaultChatScale := cMinChatScaleValue
+    else if cDefaultChatScale > cMaxChatScaleValue then
+        cDefaultChatScale := cMaxChatScaleValue;
+    ChatScaleValue  := cDefaultChatScale;
+    UIScaleValue    := cDefaultUIScaleLevel;
+
     WeaponTooltipTex:= nil;
     cLaserSighting  := false;
     cLaserSightingSniper := false;
@@ -2943,6 +3011,7 @@
     isForceMission  := false;
     SpeedStart      := 0;
     fastUntilLag    := false;
+    fastForward     := false;
     fastScrolling   := false;
     autoCameraOn    := true;
     cSeed           := '';
--- a/hedgewars/uVideoRec.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uVideoRec.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -48,7 +48,7 @@
 procedure freeModule;
 
 implementation
-uses uVariables, GLunit, SDLh, SysUtils, uUtils, uSound, uIO, uMisc, uTypes, uDebug;
+uses uVariables, GLunit, SDLh, SysUtils, uUtils, uSound, uChat, uIO, uMisc, uTypes, uDebug;
 
 type TAddFileLogRaw = procedure (s: pchar); cdecl;
 const AvwrapperLibName = {$IFDEF WIN32_VCPKG}'avwrapper'{$ELSE}'libavwrapper'{$ENDIF};
@@ -289,8 +289,8 @@
     // Videos don't work if /lua command was used, so we forbid them
     if luaCmdUsed then
         begin
-        // TODO: Show message to player
         PlaySound(sndDenied);
+        AddChatString(#0 + shortstring(trmsg[sidVideoRecLuaFail]));
         AddFileLog('Pre-recording prevented; /lua command was used before');
         exit;
         end;
--- a/hedgewars/uVisualGears.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uVisualGears.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -55,7 +55,7 @@
 begin
 if cAltDamage then
     begin
-    Gear:= AddVisualGear(X, Y, vgtSmallDamageTag);
+    Gear:= AddVisualGear(X, Y, vgtSmallDamageTag, Damage);
     if Gear <> nil then
         with Gear^ do
             Tex:= RenderStringTex(ansistring(inttostr(Damage)), Color, fntSmall);
@@ -265,7 +265,17 @@
                                         end
                                     else if (Gear^.Tex <> nil) and (((Gear^.State = 0) and ((Gear^.Hedgehog = nil) or (Gear^.Hedgehog^.Team = CurrentTeam))) or (Gear^.State = 2)) then
                                         DrawTextureCentered(round(Gear^.X) + WorldDx, round(Gear^.Y) + WorldDy, Gear^.Tex);
-               vgtSmallDamageTag: DrawTextureCentered(round(Gear^.X) + WorldDx, round(Gear^.Y) + WorldDy, Gear^.Tex);
+               vgtSmallDamageTag: if Gear^.Tex <> nil then
+                                    begin
+                                    if Gear^.Frame = 0 then
+                                        DrawTextureCentered(round(Gear^.X) + WorldDx, round(Gear^.Y) + WorldDy, Gear^.Tex)
+                                    else
+                                        begin
+                                        SetScale(cDefaultZoomLevel);
+                                        DrawTexture(round(Gear^.X), round(Gear^.Y), Gear^.Tex);
+                                        SetScale(zoom);
+                                        end
+                                    end;
                vgtHealthTag: if Gear^.Tex <> nil then
                                begin
                                if Gear^.Frame = 0 then
@@ -463,7 +473,7 @@
 var i: LongInt;
 begin
 for i:= 0 to cCloudsNumber - 1 do
-    AddVisualGear(cLeftScreenBorder + i * LongInt(cScreenSpace div (cCloudsNumber + 1)), LAND_HEIGHT-1184, vgtCloud, 0, true)
+    AddVisualGear(cLeftScreenBorder + i * LongInt(cScreenSpace div (cCloudsNumber + 1)), LAND_HEIGHT-cCloudOffset, vgtCloud, 0, true)
 end;
 
 procedure ChangeToSDClouds;
@@ -484,10 +494,15 @@
             end
         else vg:= vg^.NextGear;
     for j:= 0 to cSDCloudsNumber - 1 do
-        AddVisualGear(cLeftScreenBorder + j * LongInt(cScreenSpace div (cSDCloudsNumber + 1)), LAND_HEIGHT-1184, vgtCloud, 0, true)
+        AddVisualGear(cLeftScreenBorder + j * LongInt(cScreenSpace div (cSDCloudsNumber + 1)), LAND_HEIGHT-cCloudOffset, vgtCloud, 0, true)
     end;
 end;
 
+procedure AddFlake; inline;
+begin
+    AddVisualGear(cLeftScreenBorder + random(cScreenSpace), LAND_HEIGHT-cCloudOffset+ random(cCloudOffset), vgtFlake);
+end;
+
 procedure AddFlakes;
 var i: LongInt;
 begin
@@ -496,10 +511,10 @@
 
 if hasBorder or (not cSnow) then
     for i:= 0 to Pred(vobCount * cScreenSpace div 4096) do
-        AddVisualGear(cLeftScreenBorder + random(cScreenSpace), random(1024+200) - 100 + LAND_HEIGHT, vgtFlake)
+        AddFlake
 else
     for i:= 0 to Pred((vobCount * cScreenSpace div 4096) div 3) do
-        AddVisualGear(cLeftScreenBorder + random(cScreenSpace), random(1024+200) - 100 + LAND_HEIGHT, vgtFlake);
+        AddFlake;
 end;
 
 procedure ChangeToSDFlakes;
@@ -526,10 +541,10 @@
     end;
 if hasBorder or (not cSnow) then
     for i:= 0 to Pred(vobSDCount * cScreenSpace div 4096) do
-        AddVisualGear(cLeftScreenBorder + random(cScreenSpace), random(1024+200) - 100 + LAND_HEIGHT, vgtFlake)
+        AddFlake
 else
     for i:= 0 to Pred((vobSDCount * cScreenSpace div 4096) div 3) do
-        AddVisualGear(cLeftScreenBorder + random(cScreenSpace), random(1024+200) - 100 + LAND_HEIGHT, vgtFlake);
+        AddFlake;
 end;
 
 procedure initModule;
--- a/hedgewars/uVisualGearsHandlers.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uVisualGearsHandlers.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -43,7 +43,7 @@
 procedure doStepEgg(Gear: PVisualGear; Steps: Longword);
 procedure doStepFire(Gear: PVisualGear; Steps: Longword);
 procedure doStepShell(Gear: PVisualGear; Steps: Longword);
-procedure doStepSmallDamage(Gear: PVisualGear; Steps: Longword);
+procedure doStepSmallDamageTag(Gear: PVisualGear; Steps: Longword);
 procedure doStepBubble(Gear: PVisualGear; Steps: Longword);
 procedure doStepSteam(Gear: PVisualGear; Steps: Longword);
 procedure doStepAmmo(Gear: PVisualGear; Steps: Longword);
@@ -79,11 +79,12 @@
 
 procedure doStepFlake(Gear: PVisualGear; Steps: Longword);
 var sign: real;
-    moved, rising, outside: boolean;
-    vfc, vft: LongWord;
+    moved, rising, outside, fallingFadeIn: boolean;
+    vfc, vft, diff: LongWord;
     spawnMargin: LongInt;
 const
     randMargin = 50;
+    maxFallSpeedForFadeIn = 750;
 begin
 if SuddenDeathDmg then
     begin
@@ -103,12 +104,14 @@
         Y:= Y + (dY + tdY + cGravityf * vobSDFallSpeed) * Steps * Gear^.Scale;
         vfc:= vobSDFramesCount;
         vft:= vobSDFrameTicks;
+        fallingFadeIn := vobSDFallSpeed <= maxFallSpeedForFadeIn;
         end
     else
         begin
         Y:= Y + (dY + tdY + cGravityf * vobFallSpeed) * Steps * Gear^.Scale;
         vfc:= vobFramesCount;
         vft:= vobFrameTicks;
+        fallingFadeIn := vobFallSpeed <= maxFallSpeedForFadeIn;
         end;
 
     if vft > 0 then
@@ -180,17 +183,60 @@
         // flake fell far below map?
         outside:= (not rising) and (round(Y) - spawnMargin + randMargin > LAND_HEIGHT);
         // if not, did it rise far above map?
-        outside:= outside or (rising and (round(Y) < LAND_HEIGHT - 1024 - spawnMargin - randMargin));
+        outside:= outside or (rising and (round(Y) < LAND_HEIGHT - (cCloudOffset - 110)));
 
         // if flake left acceptable vertical area, respawn it opposite side
         if outside then
             begin
-            X:= cLeftScreenBorder + random(cScreenSpace);
             if rising then
-                Y:= Y + (1024 + spawnMargin + random(50))
+                // rising flake
+                begin
+                if State = 0 then
+                    begin
+                    // fade out rising flake
+                    diff:= (LAND_HEIGHT - (cCloudOffset - 110)) - round(Y);
+                    diff:= Min(diff*2, $FF);
+                    if diff >= $FF then
+                        begin
+                        // end of fade-out
+                        diff:= $FF;
+                        State:= 1;
+                        end;
+                    Tint:= (Tint and $FFFFFF00) or ($FF - diff);
+                    end
+                else
+                    begin
+                    // reset and move back to bottom
+                    Y:= LAND_HEIGHT + spawnMargin + random(50);
+                    moved:= true;
+                    State:= 0;
+                    Tint:= Tint or $FF;
+                    end;
+                end
             else
+                // falling flake
+                begin
+                // move back to top
                 Y:= Y - (1024 + spawnMargin + random(50));
-            moved:= true;
+                moved:= true;
+                // activate fade-in if not falling too fast
+                if fallingFadeIn then
+                    begin
+                    State:= $FF;
+                    Tint:= (Tint and $FFFFFF00) or ($FF - State);
+                    end;
+                end;
+            if moved then
+                X:= cLeftScreenBorder + random(cScreenSpace);
+            end
+        else if (not rising) and (State > 0) then
+            begin
+            // quickly fade in falling flake after appearing at top
+            if State > 16 then
+                Dec(State, 16)
+            else
+                State:= 0;
+            Tint:= (Tint and $FFFFFF00) or ($FF - State);
             end;
 
         if moved then
@@ -229,7 +275,7 @@
 t := 8 * Gear^.Scale * hwFloat2Float(AngleSin(s mod 2048));
 if (s < 2048) then t := -t;
 
-Gear^.Y := LAND_HEIGHT - 1184 + LongInt(Gear^.Timer mod 8) + t;
+Gear^.Y := LAND_HEIGHT - cCloudOffset + LongInt(Gear^.Timer mod 8) + t;
 
 if round(Gear^.X) < cLeftScreenBorder then
     Gear^.X:= Gear^.X + cScreenSpace
@@ -356,9 +402,17 @@
     dec(Gear^.FrameTicks, Steps)
 end;
 
-procedure doStepSmallDamage(Gear: PVisualGear; Steps: Longword);
+procedure doStepSmallDamageTag(Gear: PVisualGear; Steps: Longword);
+var s: shortstring;
 begin
-Gear^.Y:= Gear^.Y - 0.02 * Steps;
+if Gear^.Tex = nil then
+    begin
+    s:= IntToStr(Gear^.State);
+    Gear^.Tex:= RenderStringTex(ansistring(s), cWhiteColor, fntSmall);
+    end;
+
+Gear^.X:= Gear^.X + Gear^.dX * Steps;
+Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
 
 if Gear^.FrameTicks <= Steps then
     DeleteVisualGear(Gear)
@@ -990,7 +1044,7 @@
             @doStepExpl,
             @doStepExpl,
             @doStepFire,
-            @doStepSmallDamage,
+            @doStepSmallDamageTag,
             @doStepTeamHealthSorter,
             @doStepSpeechBubble,
             @doStepBubble,
--- a/hedgewars/uVisualGearsList.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uVisualGearsList.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -64,6 +64,8 @@
     sp: real;
 begin
 AddVisualGear:= nil;
+if fastUntilLag and (not Critical) then
+   exit;
 if (GameType <> gmtRecord) and
    (((GameType = gmtSave) or (fastUntilLag and (GameType = gmtNet)) or fastScrolling) and // we are scrolling now
    (not Critical)) then
@@ -100,6 +102,7 @@
     case Kind of
     vgtFlake:
                 begin
+                State:= 0;
                 Timer:= 0;
                 tdX:= 0;
                 tdY:= 0;
@@ -176,7 +179,10 @@
         vgtShell: FrameTicks:= 500;
     vgtSmallDamageTag:
                 begin
-                gear^.FrameTicks:= 1100
+                gear^.Frame:= 0;
+                gear^.FrameTicks:= 1100;
+                gear^.dX:= 0;
+                gear^.dY:= -0.02;
                 end;
     vgtBubble:
                 begin
--- a/hedgewars/uWorld.pas	Sun Mar 24 14:19:02 2024 -0400
+++ b/hedgewars/uWorld.pas	Sun Mar 24 14:34:27 2024 -0400
@@ -877,6 +877,43 @@
     end
 end;
 
+// Force camera to stay within a certain area
+procedure CameraBounds;
+var lowBound: LongInt;
+begin
+if (not hasBorder) then
+    begin
+    if WorldDy > (-(cScreenHeight / cScaleFactor) + cScreenHeight div 2 - TopY + cCamLimitY) then
+        WorldDy:= (-trunc(cScreenHeight / cScaleFactor) + cScreenHeight div 2 - TopY + cCamLimitY);
+    if (RightX - LeftX + cCamLimitX * 2) div 2 < cScreenWidth / cScaleFactor then
+        WorldDx:= -((LeftX + RightX) div 2)
+    else
+        begin
+        if WorldDx < -LAND_WIDTH - cCamLimitX + (cScreenWidth / cScaleFactor) then
+            WorldDx:= -LAND_WIDTH - cCamLimitX + trunc(cScreenWidth / cScaleFactor);
+        if WorldDx > cCamLimitX - (cScreenWidth / cScaleFactor) then
+            WorldDx:= cCamLimitX - trunc(cScreenWidth / cScaleFactor);
+        end;
+    end
+else
+    begin
+    if WorldDy > (-(cScreenHeight / cScaleFactor) + cScreenHeight div 2 - TopY + cCamLimitBorderY) then
+        WorldDy:= (-trunc(cScreenHeight / cScaleFactor) + cScreenHeight div 2 - TopY + cCamLimitBorderY);
+    if (RightX - LeftX + cCamLimitBorderX * 2) div 2 < cScreenWidth / cScaleFactor then
+        WorldDx:= -((LeftX + RightX) div 2)
+    else
+        begin
+        if WorldDx > -LeftX + cCamLimitBorderX - (cScreenWidth / cScaleFactor) then
+            WorldDx:= -LeftX + cCamLimitBorderX - trunc(cScreenWidth / cScaleFactor);
+        if WorldDx < -RightX - cCamLimitBorderX + (cScreenWidth / cScaleFactor) then
+            WorldDx:= -RightX - cCamLimitBorderX  + trunc(cScreenWidth / cScaleFactor);
+        end;
+    end;
+
+lowBound:= trunc(cScreenHeight / cScaleFactor) + cScreenHeight div 2 - cWaterLine - (cVisibleWater + trunc(CinematicBarH / (cScaleFactor / 2.0)));
+if WorldDy < lowBound then
+    WorldDy:= lowBound;
+end;
 
 procedure DrawWorld(Lag: LongInt);
 begin
@@ -897,7 +934,9 @@
         ZoomValue:= zoom;
 
     if (not isPaused) and (not isAFK) and (GameType <> gmtRecord) then
-        MoveCamera;
+        MoveCamera
+    else if (isPaused) then
+        CameraBounds;
 
     if cStereoMode = smNone then
         begin
@@ -1280,7 +1319,7 @@
 // line at airplane height for certain airstrike types (when spawning height is important)
 with CurrentHedgehog^ do
     if (isCursorVisible) and ((CurAmmoType = amNapalm) or (CurAmmoType = amMineStrike) or (((GameFlags and gfMoreWind) <> 0) and ((CurAmmoType = amDrillStrike) or (CurAmmoType = amAirAttack)))) then
-        DrawLine(-3000, topY-300, 7000, topY-300, 3.0, (Team^.Clan^.Color shr 16), (Team^.Clan^.Color shr 8) and $FF, Team^.Clan^.Color and $FF, $FF);
+        DrawLine(-cCamLimitX, topY-300, LAND_WIDTH + cCamLimitX, topY-300, 3.0, (Team^.Clan^.Color shr 16), (Team^.Clan^.Color shr 8) and $FF, Team^.Clan^.Color and $FF, $FF);
 
 // gear HUD extras (fuel indicator, secondary ammo, etc.)
 if replicateToLeft then
@@ -1504,13 +1543,14 @@
     i:= t + pauseButton.frame.y + pauseButton.frame.h;
 {$ENDIF}
 
+    inc(t, CurrentHedgehog^.HealthTagTex^.h);
+    cDemoClockFPSOffsetY:= t;
+
     // Hide health and healh icons in gfInvulnerable mode (except heResurrectable)
     if ((GameFlags and gfInvulnerable) = 0) then
     begin
     // Health tag
     DrawTexture(cScreenWidth div 2 - CurrentHedgehog^.HealthTagTex^.w - 16, i, CurrentHedgehog^.HealthTagTex);
-    inc(t, CurrentHedgehog^.HealthTagTex^.h);
-    cDemoClockFPSOffsetY:= t;
 
     t:= SpritesData[sprHealthHud].Width + 18;
     // Main health icon. Appearance depends on game mode and poisoning state
@@ -1550,9 +1590,21 @@
         end;
     end
     // in gfInvulnerable mode ...
-    else if (CurrentHedgehog^.Effects[heResurrectable] <> 0) then
-        // show halo for resurrectable hog
-        DrawSprite(sprHaloHud, (cScreenWidth div 2 - CurrentHedgehog^.HealthTagTex^.w - t - 2), i, 0);
+    else
+        begin
+        // Invulnerable
+        inc(t, 8);
+        DrawSprite(sprInvulnHud, cScreenWidth div 2 - t, i, 0);
+        if (CurrentHedgehog^.Effects[heResurrectable] <> 0) then
+            // show halo for resurrectable hog
+            DrawSprite(sprHaloHud, cScreenWidth div 2 - t - 2, i - SpritesData[sprHaloHud].Height + 1, 0);
+        // Vampirism
+        if cVampiric then
+            begin
+            inc(t, SpritesData[sprVampHud].Width + 2);
+            DrawSprite(sprVampHud, (cScreenWidth div 2 - t), i, 0);
+            end;
+        end;
     end
 else
     cDemoClockFPSOffsetY:= 0;
@@ -1889,7 +1941,7 @@
 var PrevSentPointTime: LongWord = 0;
 
 procedure MoveCamera;
-var EdgesDist, wdy, shs,z, dstX: LongInt;
+var EdgesDist, shs,z, dstX: LongInt;
     inbtwnTrgtAttks: Boolean;
 begin
 {$IFNDEF MOBILE}
@@ -1937,12 +1989,11 @@
             WorldDx:= WorldDx + rightX - leftX;
     end;
 
-wdy:= trunc(cScreenHeight / cScaleFactor) + cScreenHeight div 2 - cWaterLine - (cVisibleWater + trunc(CinematicBarH / (cScaleFactor / 2.0)));
-if WorldDy < wdy then
-    WorldDy:= wdy;
-
 if ((CursorPoint.X = prevPoint.X) and (CursorPoint.Y = prevpoint.Y)) then
+    begin
+    CameraBounds;
     exit;
+    end;
 
 if (AMState = AMShowingUp) or (AMState = AMShowing) then
 begin
@@ -1955,6 +2006,7 @@
     if CursorPoint.Y < cScreenHeight - (AmmoRect.y + AmmoRect.h - AMSlotSize - 5) then//check bottom
         CursorPoint.Y:= cScreenHeight - (AmmoRect.y + AmmoRect.h - AMSlotSize - 5);
     prevPoint:= CursorPoint;
+    CameraBounds;
     exit
 end;
 
@@ -1974,16 +2026,16 @@
 if (CurrentTeam^.ExtDriven and isCursorVisible and autoCameraOn) or
    (not CurrentTeam^.ExtDriven and isCursorVisible) or ((FollowGear <> nil) and autoCameraOn) then
     begin
-    if CursorPoint.X < - cScreenWidth div 2 + EdgesDist then
+    if CursorPoint.X < - trunc(cScreenWidth / cScaleFactor) + EdgesDist then
         begin
-        WorldDx:= WorldDx - CursorPoint.X - cScreenWidth div 2 + EdgesDist;
-        CursorPoint.X:= - cScreenWidth div 2 + EdgesDist
+        WorldDx:= WorldDx - CursorPoint.X - trunc(cScreenWidth / cScaleFactor) + EdgesDist;
+        CursorPoint.X:= - trunc(cScreenWidth / cScaleFactor) + EdgesDist
         end
     else
-        if CursorPoint.X > cScreenWidth div 2 - EdgesDist then
+        if CursorPoint.X > trunc(cScreenWidth / cScaleFactor) - EdgesDist then
             begin
-            WorldDx:= WorldDx - CursorPoint.X + cScreenWidth div 2 - EdgesDist;
-            CursorPoint.X:= cScreenWidth div 2 - EdgesDist
+            WorldDx:= WorldDx - CursorPoint.X + trunc(cScreenWidth / cScaleFactor) - EdgesDist;
+            CursorPoint.X:= trunc(cScreenWidth / cScaleFactor) - EdgesDist
             end;
 
     shs:= min(cScreenHeight div 2 - trunc(cScreenHeight / cScaleFactor) + EdgesDist, cScreenHeight - EdgesDist);
@@ -2010,14 +2062,10 @@
 
 // this moves the camera according to CursorPoint X and Y
 prevPoint:= CursorPoint;
-if WorldDy > LAND_HEIGHT + 1024 then
-    WorldDy:= LAND_HEIGHT + 1024;
-if WorldDy < wdy then
-    WorldDy:= wdy;
-if WorldDx < - LAND_WIDTH - 1024 then
-    WorldDx:= - LAND_WIDTH - 1024;
-if WorldDx > 1024 then
-    WorldDx:= 1024;
+
+// enforce camera bounds
+CameraBounds();
+
 end;
 
 procedure ShowMission(caption, subcaption, text: ansistring; icon, time : LongInt);
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/flags_js.xhtml	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,234 @@
+<!DOCTYPE HTML>
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<!-- There is, at present, no official xsd for (X)HTML5. A pity. Usefulness would depend on the parser and extensions made by the site.  -->
+    <title>Hedgewars Flags</title>
+
+    <style type="text/css">
+* {padding: 0; margin: 0; }
+body
+{
+    background-color: #0B203D;
+    color: #FFD902;
+    background-size: 100% 100%;
+    font-family: sans-serif;
+}
+form, p
+{
+    background-color: #0B203D;
+    padding: 1em;
+    margin: 1em;
+    border-style: solid;
+    border-radius: 5px;
+    border-width: 2px;
+    border-color: #FFD902;
+}
+h1 {
+    margin:10px;
+}
+a {
+    color: #BFBED0;
+    text-decoration: none;
+}
+.flag
+{
+    margin-top: 12px;
+    margin-left: 20px;
+    float: left;
+    border-radius: 3px;
+    border-color: white;
+    border-width: 1px;
+    border-style: solid;
+    height: 17px;
+    width: 24px;
+    color: transparent;
+}
+a div
+{
+    height: 15px;
+    width: 22px;
+    border-radius: 3px;
+    border-color: black;
+    border-width: 1px;
+    border-style: solid;
+}
+    </style>
+    <script type="application/ecmascript">
+//<![CDATA[
+"use strict";
+let IS_LOCAL=false; // set to true to fetch flags locally. Useful for testing.
+let flags;
+if (IS_LOCAL) {
+/* JavaScript version of a sprite sheet - this could be pretty trivially done in pure HTML, but maintenance
+would be easier with a server-side portion. list of sprites could be gotten from server, but would require XSS whitelisting */
+// Last updated: 1.0.0
+flags=["afghanistan","albania","algeria","american_samoa","andorra","angola","anguilla","antigua_and_barbuda","arabemirates",
+"argentina","armenia","aruba","australia","austria","azerbaijan","bahamas","bahrain","bangladesh","barbados","belarus","belgium",
+"belize","benin","bhutan","bolivia","bosnia_and_herzegovina","botswana","brazil","brunei","bulgaria","burkina_faso","burundi",
+"cambodia","cameroon","canada","cape_verde","central_african_republic","chad","chile","china","christmas_island","cm_42",
+"cm_anarchy","cm_balls","cm_balrog","cm_bars","cm_belarus","cm_binary","cm_birdy","cm_bloodyblade","cm_brittany","cm_bubbles",
+"cm_bustamove","cm_cheese","cm_cog","cm_crossedswords","cm_crosshair","cm_cyborg","cm_danger_fire","cm_danger_stripes",
+"cm_dragonrb","cm_duckhead","cm_earth2","cm_earth","cm_eyeofhorus","cm_eyes","cm_face","cm_fcw","cm_female","cm_firstaid",
+"cm_flames","cm_flower","cm_galaxy","cm_girder","cm_grenade","cm_hax0r","cm_heart","cm_hellish","cm_hurrah","cm_hw2",
+"cm_hw","cm_iluvu","cm_kiwi","cm_lips","cm_magicskull","cm_male","cm_mog","cm_music","cm_pacman2","cm_pacman","cm_pentagram",
+"cm_piet","cm_pirate","cm_pokemon","cm_scout","cm_shoppa","cm_sine","cm_skull","cm_sonic","cm_soviet","cm_spider","cm_star",
+"cm_swordshield2","cm_swordshield","cm_test","cm_vampire","cm_waves","cm_yinyang","colombia","comoros",
+"congo-brazzaville","congo_kinshasa","cook_islands","costa_rica","cote_divoire","croatia","cuba","cyprus",
+"czech_republic","denmark","djibouti","dominican_republic","dominica","easttimor","ecuador","egypt","el_salvador",
+"equatorial_guinea","eritrea","esperanto","estonia","ethiopia","europeanunion","fiji","finland","france","gabon","gambia",
+"georgia","germany","ghana","greece","grenada","guam","guatemala","guinea","guyana","haiti","hedgewars","honduras","hungary",
+"iceland","india","indonesia","iran","iraq","ireland","israel","italy","jamaica","japan","jordan","kazakhstan","kenya","kiribati",
+"kuwait","kyrgyzstan","laos","latvia","lebanon","lesotho","liberia","libya","liechtenstein","lithuania","luxembourg","macau",
+"macedonia","madagascar","malawi","malaysia","maldives","mali","malta","marshall_islands","mauritania","mauritius",
+"mexico","micronesia","moldova","monaco","mongolia","montenegro","montserrat","morocco","mozambique","myanmar","namibia","nauru",
+"nepal","netherlands","new_zealand","nicaragua","nigeria","niger","niue","northern_mariana","northkorea","norway","oman",
+"pakistan","palau","palestine","panama","papua_new_guinea","paraguay","peru","philippines","poland","portugal","puerto_rico",
+"qatar","quebec","romania","russian_federation","rwanda","saint_kitts_and_nevis","saint_lucia","saint_vincent_and_the_grenadines",
+"samoa","san_marino","saotomeandprincipe","saudiarabia","senegal","serbia_and_montenegro","serbia","seychelles","sicily",
+"sierra_leone","singapore","slovakia","slovenia","solomon_islands","somalia","south_africa","south_korea","south_sudan","spain",
+"sri_lanka","sudan","suisse","suriname","swaziland","sweden","syrian_arab_republic","taiwan","tajikistan","tanzania","thailand",
+"tibet","timor_leste","togo","tokelau","tonga","trinidad_and_tobago","tunisia","turkey","turkmenistan","tuvalu","uganda","ukraine",
+"uk_scotland","united_arab_emirates","united_kingdom","united_states","uruguay","uzbekistan","vanuatu","vatican","venezuela","vietnam",
+"western_sahara","yemen","yugoslavia","zambia","zimbabwe"
+//,"cpu","cpu_plain"
+];
+}
+else
+{
+flags = [];
+}
+
+let on_xml_loaded = function(ex)
+{
+    let resp = this.responseText;
+    let r = />([^<]*).png</g;
+    let x;
+    while(x = r.exec(resp))
+    {
+        flags.push(x[1]);
+    }
+    on_flags_loaded();
+}
+
+let on_xml_error = function()
+{
+    let p = document.createElement("p");
+    p.appendChild(document.createTextNode("ERROR: List of flags could not be fetched from the server!"));
+    document.body.appendChild(p);
+}
+
+let on_flags_loaded;
+
+window.onload = function()
+{
+    // Load list of flags
+    if (!IS_LOCAL) {
+        // Request list of flags from repository URL
+        let xml=new XMLHttpRequest();
+        xml.open("GET", "//hg.hedgewars.org/hedgewars/file/tip/share/hedgewars/Data/Graphics/Flags/");
+        xml.addEventListener("error", on_xml_error);
+        xml.onload = on_xml_loaded;
+        xml.send();
+    }
+    else
+    {
+        on_flags_loaded();
+    }
+}
+
+on_flags_loaded = function()
+{
+    // Sort flags
+    let flag_compare = function(a, b)
+    {
+        if (a === "hedgewars")
+            return -1;
+        else if (b === "hedgewars")
+            return 1;
+        else if (a.startsWith("cm_") && !b.startsWith("cm_"))
+            return 1;
+        else if (!a.startsWith("cm_") && b.startsWith("cm_"))
+            return -1;
+        else if (a > b)
+            return 1;
+        else if (a < b)
+            return -1;
+        else
+            return 0;
+    }
+
+    flags.sort(flag_compare);
+
+    // Render flags
+    let img;
+    let j = 0;
+    let toDelete = [];
+    let a = document.createElement("a");
+    a.className="flag";
+    a.appendChild(document.createElement("div"));
+    a.lastChild.appendChild(document.createTextNode(""));
+
+    let flagState = 0; // 0 = hedgewars, 1 = country flag, 2 = community flag ("cm_")
+
+    for (let i=0;i<flags.length;i++)
+    {
+        let flag = flags[i];
+        // Skip CPU flags
+        if (flag === "cpu" || flag === "cpu_plain")
+            continue;
+
+        let oldFlagState = flagState;
+        if (flagState === 0 && flag !== "hedgewars")
+            flagState++;
+        else if (flagState === 1 && flag.startsWith("cm_"))
+            flagState++;
+        if (flagState !== oldFlagState)
+        {
+            j = 0;
+            document.body.appendChild(document.createElement("br"));
+            document.body.appendChild(document.createElement("br"));
+            document.body.appendChild(document.createElement("br"));
+        }
+
+        let h = document.body.appendChild(a.cloneNode(true));
+        if (IS_LOCAL)
+            h.href = "../share/hedgewars/Data/Graphics/Flags/"+flag+".png";
+        else
+            h.href = "//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Graphics/Flags/"+flag+".png";
+
+        img = new Image();
+        img.onload = function() {
+            let name = this.id.substr(7);
+            if (this.height === 32) {
+                staticMasks[name] = true;
+            }
+            this.remove();
+        }
+        img.src = h.href;
+        img.id = "__flag_"+flag;
+
+        h.lastChild.style.backgroundImage = 'url("'+h.href+'")';
+        h.title = flag;
+
+        if (j%17 === 16 || i === flags.length-1)
+        {
+            document.body.appendChild(document.createElement("br"));
+            document.body.appendChild(document.createElement("br"));
+            j = 0;
+        } else
+            j++;
+    }
+
+}
+
+//]]>
+    </script>
+</head>
+<body>
+<h1>List of Hedgewars flags</h1>
+<noscript>
+<p><strong>ERROR</strong>: We're so sorry, but this webpage only works with JavaScript enabled. It seems JavaScript is disabled or not supported in your browser.<br/>
+Normally, this webpage would display a preview of the flags in Hedgewars.</p>
+</noscript>
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/graves_js_anim.xhtml	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,319 @@
+<!DOCTYPE HTML>
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<!-- There is, at present, no official xsd for (X)HTML5. A pity. Usefulness would depend on the parser and extensions made by the site.  -->
+    <title>Hedgewars Graves</title>
+
+    <style type="text/css">
+* {padding: 0; margin: 0; }
+body
+{
+    background: url('//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Themes/Nature/Sky.png') fixed no-repeat bottom left;
+    background-color: #0B203D;
+    color: #FFD902;
+    -moz-background-size: 200%;
+    background-size: 100% 100%;
+    font-family: sans-serif;
+}
+form, p
+{
+    background-color: #0B203D;
+    padding: 1em;
+    margin: 1em;
+    border-style: solid;
+    border-radius: 5px;
+    border-width: 2px;
+    border-color: #FFD902;
+}
+h1 {
+    text-shadow: 0 0 2px white;
+    color: black;
+    margin:10px;
+}
+a {
+    color: #BFBED0;
+    text-decoration: none;
+}
+.grave
+{
+    margin-top: 12px;
+    margin-left: 20px;
+    float: left;
+    height: 32px;
+    width: 32px;
+    color: transparent;
+}
+.girder
+{
+    width: 100%;
+    height: 30px;
+    clear: left;
+    background-image: url('//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Themes/Nature/Girder.png');
+    background-repeat: repeat-x;
+}
+.hide { visibility: hidden; }
+a div
+{
+    margin-top: 6px;
+    height: 32px;
+    width: 32px;
+}
+    </style>
+    <script type="application/ecmascript">
+//<![CDATA[
+let IS_LOCAL=false; // set to true to fetch flags locally. Useful for testing.
+let graves;
+if (IS_LOCAL) {
+/* JavaScript version of a sprite sheet - this could be pretty trivially done in pure HTML, but maintenance
+would be easier with a server-side portion. list of sprites could be gotten from server, but would require XSS whitelisting */
+// Last updated: 1.0.0
+graves=["Badger","Bone","bp2","bubble","Cherry","chest","Clover","coffin",
+"deadhog","dragonball","Duck2","Earth","Egg","eyecross","Flower","Ghost",
+"Grave","heart","money","mouton1","octopus","Old_Apple","pi","plant2",
+"plant3","Plinko","pokeball","pyramid","ring","Rip","Rubberduck","Simple",
+"Simple_reversed","skull","star","Statue","TV","Whisky","Yin_and_Yang"];
+}
+else
+{
+graves = [];
+}
+
+let themes = {
+// Last updated: 1.0.0
+"Art":1,
+"Beach":1,
+"Bamboo":1,
+"Bath":1,
+//"Blox":0, //unused, has no Sky.png or Border.png
+"Brick":0,
+"Cake":0,
+"Castle":1,
+"Cave":1,
+"City":1,
+"Cheese":0,
+"Christmas":1,
+"Compost":1,
+"CrazyMission":0,
+"Deepspace":0,
+"Desert":1,
+"EarthRise":0,
+"Eyes":0,
+"Freeway":0,
+"Fruit":1,
+"Halloween":1,
+"Hell":0,
+"Hoggywood":1,
+"Island":0,
+"Jungle":1,
+"Golf":1,
+"Nature":1,
+"Olympics":1,
+"Planes":0,
+"Sheep":1,
+"Snow":1,
+"Stage":1,
+"Underwater":1};
+let girder;
+let animationInterval;
+
+on_xml_loaded = function(ex)
+{
+    let resp = this.responseText;
+    let r = />([^<]*).png</g;
+    let x;
+    while(x = r.exec(resp))
+    {
+        graves.push(x[1]);
+    }
+    on_graves_loaded();
+}
+
+on_xml_error = function()
+{
+    let p = document.createElement("p");
+    p.appendChild(document.createTextNode("ERROR: List of graves could not be fetched from the server!"));
+    document.body.appendChild(p);
+}
+
+window.onload = function()
+{
+    // Load list of graves
+    if (!IS_LOCAL) {
+        // Request list of graves from repository URL
+        let xml=new XMLHttpRequest();
+        xml.open("GET", "//hg.hedgewars.org/hedgewars/file/tip/share/hedgewars/Data/Graphics/Graves/");
+        xml.addEventListener("error", on_xml_error);
+        xml.onload = on_xml_loaded;
+        xml.send();
+    }
+    else
+    {
+        on_graves_loaded();
+    }
+}
+
+on_graves_loaded = function()
+{
+    // Render girders
+    let s = document.styleSheets[0].cssRules;
+    for(let i=0;i<s.length;i++)
+    {
+        if (s[i].selectorText.toLowerCase() === ".girder")
+            girder = s[i];
+    }
+
+    let a = document.createElement("a");
+    let g = document.createElement("div");
+    g.className="girder";
+    a.className="grave";
+    a.appendChild(document.createElement("div"));
+    a.lastChild.appendChild(document.createTextNode(""));
+
+    // Render graves
+    let missingGraves = [];
+    let img;
+    let j = 0;
+    let toDelete = [];
+    for (let i=0;i<graves.length;i++)
+    {
+        let h = document.body.appendChild(a.cloneNode(true));
+        if (IS_LOCAL)
+            h.href = "../share/hedgewars/Data/Graphics/Graves/"+graves[i]+".png";
+        else
+            h.href = "//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Graphics/Graves/"+graves[i]+".png";
+
+        h.lastChild.style.backgroundImage = 'url("'+h.href+'")';
+        h.title = graves[i];
+        h.idle = Math.floor(Math.random()*16);
+        if (j%8 === 7 || i === graves.length-1)
+            document.body.appendChild(g.cloneNode(false));
+        j++;
+    }
+
+    // Quick and dirty animation
+    animationInterval = setInterval(animateGraves, 128);
+
+    // Theme selection drop-down list
+    let form = document.body.appendChild(document.createElement("form"));
+
+    let opt = document.createElement("option");
+    opt.appendChild(document.createTextNode(""));
+
+    let label = document.createElement("label");
+    label.htmlFor = "theme_select";
+    label.appendChild(document.createTextNode("Theme: "));
+    form.appendChild(label);
+
+    let sel = form.appendChild(document.createElement("select"));
+    sel.id = "theme_select";
+    sel.onchange = switchTheme;
+    for(let theme in themes)
+    {
+        sel.appendChild(opt.cloneNode(true));
+        sel.lastChild.value = theme;
+        sel.lastChild.lastChild.data = theme;
+        if(theme === "Nature")
+            sel.lastChild.selected = true;
+    }
+    form.appendChild(document.createElement("br"));
+
+    // Checkbox: Switch animation
+    let chk = document.createElement("input");
+    chk.id = "anim";
+    chk.type = "checkbox";
+    chk.onclick = switchAnim;
+    chk.checked = true;
+    form.appendChild(chk);
+    label = document.createElement("label");
+    label.htmlFor = "anim";
+    label.appendChild(document.createTextNode(" Animate graves"));
+    form.appendChild(label);
+
+    form.appendChild(document.createElement("br"));
+
+    // Checkbox: Hide girders
+    chk = document.createElement("input");
+    chk.id = "hide_girders";
+    chk.type = "checkbox";
+    chk.onclick = hideGirders;
+    chk.checked = true;
+    form.appendChild(chk);
+    label = document.createElement("label");
+    label.htmlFor = "hide_girders";
+    label.appendChild(document.createTextNode(" Show girders"));
+    form.appendChild(label);
+
+    document.body.appendChild(form);
+
+    switchTheme();
+}
+
+function animateGraves()
+{
+    let a = document.getElementsByTagName("a");
+    for (let i=0;i<a.length;i++)
+    {
+        if (a[i].className !== "grave")
+            continue;
+        // Cycle thru animation frames
+
+        let maskName = a[i].title;
+        // Grave
+        a[i].firstChild.style.backgroundPosition=Math.floor(a[i].idle/16)*-32+"px "+(a[i].idle%16)*-32+"px";
+
+        // Next frame
+        a[i].idle++;
+        if (a[i].idle > 15)
+            a[i].idle = 0;
+    }
+}
+
+// Turn on or off grave animation
+function switchAnim()
+{
+    if (animationInterval)
+    {
+        clearInterval(animationInterval);
+        animationInterval = null;
+    }
+    else animationInterval = setInterval(animateGraves, 128);
+}
+
+// Turn on or off girders
+function hideGirders()
+{
+    let g = document.getElementsByClassName("girder");
+    for(let i=0;i<g.length;i++)
+        if (this.checked)
+            g[i].className = "girder";
+        else
+            g[i].className = "girder hide";
+
+}
+
+// Select theme according to drop-down list value
+function switchTheme()
+{
+    let prefix;
+    if (!IS_LOCAL)
+        prefix = "//hg.hedgewars.org/hedgewars/raw-file/tip";
+    else
+        prefix = "..";
+    let theme = this.value || "Nature";
+    document.body.style.backgroundImage='url("'+prefix+'/share/hedgewars/Data/Themes/'+theme+'/Sky.png")';
+    if (themes[theme])
+        girder.style.backgroundImage='url("'+prefix+'/share/hedgewars/Data/Themes/'+theme+'/Girder.png")';
+    else
+        girder.style.backgroundImage='url("'+prefix+'/share/hedgewars/Data/Graphics/Girder.png")';
+}
+//]]>
+    </script>
+</head>
+<body>
+<h1>List of Hedgewars graves</h1>
+<noscript>
+<p><strong>ERROR</strong>: We're so sorry, but this webpage only works with JavaScript enabled. It seems JavaScript is disabled or not supported in your browser.<br/>
+Normally, this webpage would display an animated preview of the graves in Hedgewars.</p>
+</noscript>
+</body>
+</html>
--- a/misc/hats_js_anim.xhtml	Sun Mar 24 14:19:02 2024 -0400
+++ b/misc/hats_js_anim.xhtml	Sun Mar 24 14:34:27 2024 -0400
@@ -6,7 +6,7 @@
 
     <style type="text/css">
 * {padding: 0; margin: 0; }
-body 
+body
 {
     background: url('//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Themes/Nature/Sky.png') fixed no-repeat bottom left;
     background-color: #0B203D;
@@ -15,8 +15,26 @@
     background-size: 100% 100%;
     font-family: sans-serif;
 }
-h1 { text-shadow: 0 0 2px white; color: black;}
-a 
+form, p
+{
+    background-color: #0B203D;
+    padding: 1em;
+    margin: 1em;
+    border-style: solid;
+    border-radius: 5px;
+    border-width: 2px;
+    border-color: #FFD902;
+}
+h1 {
+    text-shadow: 0 0 2px white;
+    color: black;
+    margin:10px;
+}
+a {
+    color: #BFBED0;
+    text-decoration: none;
+}
+.hat, .hatLocal
 {
     margin-top: 12px;
     margin-left: 20px;
@@ -24,8 +42,15 @@
     height: 32px;
     width: 32px;
     color: transparent;
+}
+.hat
+{
     background-image: url("//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Graphics/Hedgehog/Idle.png");
 }
+.hatLocal
+{
+    background-image: url("../share/hedgewars/Data/Graphics/Hedgehog/Idle.png");
+}
 .girder
 {
     width: 100%;
@@ -44,117 +69,292 @@
     </style>
     <script type="application/ecmascript">
 //<![CDATA[
-/* javascript version of a sprite sheet - this could be pretty trivially done in pure HTML, but maintenance
+let IS_LOCAL=false; // set to true to fetch graves locally. Useful for testing.
+let masks;
+if (IS_LOCAL) {
+/* JavaScript version of a sprite sheet - this could be pretty trivially done in pure HTML, but maintenance
 would be easier with a server-side portion. list of sprites could be gotten from server, but would require XSS whitelisting */
-/*var masks = ['2001suit2', '2001suit', '4gsuif', 'AkuAku', 'android', 'angel', 'anzac', 'apple', 'ash', 'Balrog', 'banana', 'Bandit', 'bat', 'beaver', 'beefeater', 'Blanka', 'BlankaToothless', 'BlueCap', 'BlueHair', 'bobby2v', 'bobby', 'Bob', 'BrainSlugMouth', 'BrainSlug', 'britishpithhelmet', 'britmedic', 'britsapper', 'Bub', 'Bunny', 'bushhider', 'charlesdegaulle', 'charmander', 'chef', 'chikorita', 'Chunli', 'clown-copper', 'clown-crossed', 'clown', 'Coonskin3', 'Cororon', 'Cowboy', 'crown', 'cyborg', 'darthvader', 'Deer', 'desertgrenadier01', 'desertgrenadier02', 'desertgrenadier04', 'desertgrenadier05', 'desertgrenadierofficer', 'desertmedic', 'desertsapper1', 'desertsapper2', 'diglett', 'Disguise', 'Dragon', 'dwarf', 'eastertop', 'Elvis', 'Eva_00b', 'Eva_00y', 'Falcon', 'frenchwwigasmask', 'frenchwwihelmet', 'Gasmask', 'Geordi', 'germanwiimedichelmet', 'germanwwihelmetmustache', 'germanwwiipithhelmetdes', 'germanwwitankhelmet', 'Glasses', 'GreenCap', 'GreenHair', 'grenadier1', 'GreyHair', 'Guile', 'hedgehogk', 'HogInTheHat', 'hogpharoah', 'Honda', 'IndianChief', 'infernalhorns', 'InfernalHorns', 'Jason', 'jigglypuff', 'judo', 'junior', 'Ken', 'KirbyMask', 'kiss_criss', 'kiss_frehley', 'kiss_simmons', 'kiss_stanley', 'knight', 'Kululun', 'Ladle', 'lambda', 'Laminaria', 'laurel', 'lemon', 'link', 'lugia', 'Luigi', 'Mario', 'MegaHogX', 'metalband', 'mexicansunbrero', 'mickey_ears', 'Moose', 'mp3', 'mudkip', 'Mummy', 'naruto', 'NinjaFull', 'NinjaStraight', 'NinjaTriangle', 'OldMan', 'OrangeHair', 'orange', 'Pantsu', 'Pig', 'pikachu', 'PinkHair', 'pinksunhat', 'pirate_jack_bandana', 'pirate_jack', 'plainpith', 'Plunger', 'policecap', 'porkey', 'PrincessDaisy', 'PrincessPeach', 'Pumpkin_Hat', 'PurpleHair', 'quotecap', 'Rain', 'Rambo', 'rasta', 'RedCap', 'RedHair', 'RobinHood', 'royalguard', 'RSR', 'Ryu', 'Samurai', 'Samus', 'Santa', 'SauceBoatSilver', 'ShaggyYeti', 'sheep', 'ShortHair_Black', 'ShortHair_Brown', 'ShortHair_Grey', 'ShortHair_Red', 'ShortHair_Yellow', 'Skull', 'Sleepwalker', 'slowpoke', 'Sniper', 'Sonic', 'sovietcomrade2', 'sovietcomrade', 'SparkleSuperFun', 'SparkssHelmet', 'spartan', 'spcartman', 'spidey', 'spkenny', 'spkyle', 'spstan', 'squirtle', 'sth_AmyClassic', 'sth_Amy', 'sth_Eggman', 'sth_Knux', 'sth_Metal', 'sth_Shadow', 'sth_Sonic', 'sth_Super', 'sth_Tails', 'stormcloud', 'stormtrooper', 'StrawHatEyes', 'StrawHatFacial', 'StrawHat', 'Sunglasses', 'SunWukong', 'Teacup', 'Teapot', 'terminatorc', 'Terminator_Glasses', 'thug', 'Toad', 'tophats', 'touhou_chen', 'touhou_marisa', 'touhou_patchouli', 'touhou_remelia', 'touhou_suwako', 'touhou_yukari', 'trenchgrenadier1', 'trenchgrenadier2', 'trenchgrenadier3', 'ushanka', 'vampirichog', 'Vega', 'venom', 'Viking', 'voltorb', 'Wario', 'WhySoSerious', 'WizardHat', 'YellowCap', 'YellowHair', 'Zombi'];*/
-var masks = [];
-var themes = {
+// Last updated: 1.0.0
+masks = ['4gsuif','AkuAku','android','angel','anzac','Bandit','barrelhider','bb_bob','bb_bub','bb_cororon','bb_kululun','beefeater','beefeaterhat','bishop','bobby','bobby2v','bubble','bushhider','cap_blue','cap_green','cap_junior','cap_red','cap_thinking','cap_yellow','car','chef','chuckl','clown','clown-copper','clown-crossed','constructor','Coonskin3','Cowboy','cratehider','crown','cyborg1','cyborg2','cyclops','Dan','Dauber','DayAndNight','Disguise','dish_Ladle','dish_SauceBoatSilver','dish_Teacup','dish_Teapot','doctor','Dragon','dwarf','eastertop','Einstein','Elvis','Eva_00b','Eva_00y','Evil','flag_french','flag_germany','flag_italy','flag_usa','footballhelmet','fr_apple','fr_banana','fr_lemon','fr_orange','fr_pumpkin','fr_tomato','Gasmask','Glasses','hair_blue','hair_green','hair_grey','hair_orange','hair_pink','hair_purple','hair_red','hair_yellow','HogInTheHat','hogpharoah','IndianChief','InfernalHorns','Jason','jester','Joker','judo','kiss_criss','kiss_frehley','kiss_simmons','kiss_stanley','knight','lambda','lambdahat','Laminaria','lamp','laurel','leprechaun','mechanicaltoy','MegaHogX','metalband','Meteorhelmet','mexicansunbrero','mickey_ears','Moustache','Moustache_glasses','mp3','Mummy','mv_Spidey','mv_Venom','naruto','NinjaFull','NinjaStraight','NinjaTriangle','noface','ntd_Falcon','ntd_Kirby','ntd_Link','ntd_Samus','nurse','nursehat','OldMan','Pantsu','pinksunhat','pirate_bandana','pirate_eyepatch','pirate_hat','pirate_jack','pirate_jack_bandana','Plunger',
+'poke_ash','poke_ash_hat','poke_charmander','poke_chikorita','poke_diglett','poke_jigglypuff','poke_lugia','poke_mudkip','poke_pikachu','poke_slowpoke','poke_squirtle','poke_voltorb','policecap','policegirl','punkman','quotecap','Rain','Rambo','RamboClean','rasta','RobinHood','royalguard','RSR','Samurai','Santa','scif_2001O','scif_2001Y','scif_BrainSlug','scif_BrainSlug2','scif_cosmonaut','scif_cyberpunk','scif_Geordi','scif_SparkssHelmet','scif_swDarthvader','scif_swStormtrooper','sf_balrog','sf_blanka','sf_blankatoothless','sf_chunli','sf_guile','sf_guile_hat','sf_honda','sf_ken','sf_ryu','sf_vega','sf_vega_hat','ShaggyYeti','ShortHair_Black','ShortHair_Brown','ShortHair_Grey','ShortHair_Red','ShortHair_Yellow','simple_green','simple_red','simple_yellow','Skull','Sleepwalker','sm_daisy','sm_luigi','sm_mario','sm_peach','sm_toad','sm_wario','Sniper','snorkel','snowhog','SparkleSuperFun','spartan','spcartman','spkenny','spkyle','spstan','sth_Amy','sth_AmyClassic','sth_Eggman','sth_Knux','sth_Metal','sth_Shadow','sth_Sonic','sth_SonicClassic','sth_Super','sth_Tails','stormcloud',
+'StrawHat','StrawHatEyes','StrawHatFacial','Sunglasses','SunWukong','swordsmensquire','TeamHeadband','TeamSoldier','TeamWheatley','Terminator_Glasses','tf_demoman','tf_scout','thug','thugclean','tiara','tophats','touhou_chen','touhou_marisa','touhou_patchouli','touhou_remelia','touhou_suwako','touhou_yukari','ushanka','vampirichog','vc_gakupo','vc_gumi','vc_kaito','vc_len','vc_luka','vc_meiko','vc_miku','vc_rin','Viking','war_airwarden02','war_airwarden03','war_americanww2helmet','war_britmedic','war_britpthhelmet','war_britsapper','war_desertgrenadier1','war_desertgrenadier2','war_desertgrenadier4','war_desertgrenadier5','war_desertmedic','war_desertofficer','war_desertsapper1','war_desertsapper2','war_frenchww1gasmask','war_frenchww1helmet','war_germanww1helmet2','war_germanww1tankhelm','war_germanww2medic','war_germanww2pith','war_grenadier1','war_plainpith','war_sovietcomrade1','war_sovietcomrade2','war_trenchfrench01','war_trenchfrench02','war_trenchgrenadier1','war_trenchgrenadier2','war_trenchgrenadier3','war_UNPeacekeeper01','war_UNPeacekeeper02','WhySoSerious','WizardHat','Zombi','zoo_Bat','zoo_Beaver','zoo_Bunny','zoo_chicken','zoo_crocodile','zoo_Deer','zoo_elephant','zoo_fish','zoo_frog','zoo_Hedgehog','zoo_Moose','zoo_octopus','zoo_Pig','zoo_Porkey','zoo_Sheep','zoo_snail','zoo_turtle'
+,'NoHat','cap_team','hair_team','TeamTophat'
+];
+}
+else
+{
+masks = [];
+}
+
+let themes = {
+// Last updated: 1.0.0
+"Art":1,
+"Beach":1,
+"Bamboo":1,
+"Bath":1,
+//"Blox":0, //unused, has no Sky.png or Border.png
+"Brick":0,
+"Cake":0,
+"Castle":1,
 "Cave":1,
-"Golf":1,
-"Stage":1,
-"Island":0,
-"Eyes":0,
+"City":1,
+"Cheese":0,
+"Christmas":1,
+"Compost":1,
+"CrazyMission":0,
 "Deepspace":0,
-"Jungle":1,
-"Cake":0,
-"Compost":1,
-"Planes":0,
-"Olympics":1,
-"Bath":1,
-"Cheese":0,
 "Desert":1,
-"Christmas":1,
-"CrazyMission":0,
-"Sheep":1,
-"Brick":0,
-"Underwater":1,
-"City":1,
 "EarthRise":0,
-"Blox":0,
+"Eyes":0,
+"Freeway":0,
+"Fruit":1,
+"Halloween":1,
 "Hell":0,
-"Bamboo":1,
-"Freeway":0,
+"Hoggywood":1,
+"Island":0,
+"Jungle":1,
+"Golf":1,
 "Nature":1,
-"Art":1,
-"Halloween":1,
+"Olympics":1,
+"Planes":0,
+"Sheep":1,
 "Snow":1,
-"Castle":1};
-var girder;
-var animationInterval;
+"Stage":1,
+"Underwater":1};
+let girder;
+let animationInterval;
+
+let staticMasks = [];
+
+on_xml_loaded = function(ex)
+{
+    let resp = this.responseText;
+    let r = />([^<]*).png</g;
+    let x;
+    while(x = r.exec(resp))
+    {
+        masks.push(x[1]);
+    }
+    on_hats_loaded();
+}
+
+on_xml_error = function()
+{
+    let p = document.createElement("p");
+    p.appendChild(document.createTextNode("ERROR: List of hats could not be fetched from the server!"));
+    document.body.appendChild(p);
+}
+
 window.onload = function()
 {
-    var xml=new XMLHttpRequest();
-    xml.open("GET", "/hedgewars/file/tip/share/hedgewars/Data/Graphics/Hats/", false);
-    xml.send(null);
-    /*var resp = xml.responseXML; unfortunately not served as XHTML
-    var a = resp.getElementsByTagName("a");
-    for(var i=0;i<a.length;i++);
-        if (/\.png/.test(a[0].href)) m.push(a[0].replace(/.png/,''));*/
+    // Load list of hats
+    if (!IS_LOCAL) {
+        // Request list of hats from repository URL
+        let xml=new XMLHttpRequest();
+        xml.open("GET", "//hg.hedgewars.org/hedgewars/file/tip/share/hedgewars/Data/Graphics/Hats/");
+        xml.addEventListener("error", on_xml_error);
+        xml.onload = on_xml_loaded;
+        xml.send();
+    }
+    else
+    {
+        on_hats_loaded();
+    }
+}
+
+on_hats_loaded = function()
+{
+    // Exclude NoHat as uninteresting. Exclude team hats as we can't properly display them yet
+    // TODO: Add support for team hats
+    let disallowedMasks = {
+        "NoHat":true,
+        "hair_team":true,
+        "cap_team":true,
+        "TeamTophat":true,
+    };
+
+    // Render girders
+    let s = document.styleSheets[0].cssRules;
+    for(let i=0;i<s.length;i++)
+    {
+        if (s[i].selectorText.toLowerCase() === ".girder")
+            girder = s[i];
+    }
+
+    let a = document.createElement("a");
+    let g = document.createElement("div");
+    g.className="girder";
+    if (IS_LOCAL) {
+        a.className="hatLocal";
+    } else {
+        a.className="hat";
+    }
+    a.appendChild(document.createElement("div"));
+    a.lastChild.appendChild(document.createTextNode(""));
+
+    // Render hats
+    let missingMasks = [];
+    let img;
+    let j = 0;
+    let toDelete = [];
+    for (let i=0;i<masks.length;i++)
+    {
+        if (disallowedMasks[masks[i]] === true) {
+            missingMasks.push(masks[i]);
+            toDelete.push(i);
+            continue;
+        }
+        let h = document.body.appendChild(a.cloneNode(true));
+        if (IS_LOCAL)
+            h.href = "../share/hedgewars/Data/Graphics/Hats/"+masks[i]+".png";
+        else
+            h.href = "//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Graphics/Hats/"+masks[i]+".png";
 
-    var resp = xml.responseText;
-    var r = />([^<]*).png</g;
-    var x;
-    while(x = r.exec(resp)) 
-        if (!/NoHat|hair_team|cap_team|TeamTophat/.test(x[1])) // Exclude NoHat as uninteresting. hair_team, cap_team and TeamTophat as repetitive team hats
-            masks.push(x[1]);
+        img = new Image();
+        img.onload = function() {
+            let name = this.id.substr(7);
+            if (this.height === 32) {
+                staticMasks[name] = true;
+            }
+            this.remove();
+        }
+        img.src = h.href;
+        img.id = "__mask_"+masks[i];
+
+        h.lastChild.style.backgroundImage = 'url("'+h.href+'")';
+        h.title = masks[i];
+        h.idle = Math.floor(Math.random()*19);
+        if (j%17 === 16 || i === masks.length-1)
+            document.body.appendChild(g.cloneNode(false));
+        j++;
+    }
+    // Cleanup masks array
+    for (let i=0; i<toDelete.length; i++)
+        masks.splice(toDelete[i], 1);
 
-    var opt = document.createElement("option");
+    // List missing hats
+    if (missingMasks.length > 0)
+    {
+        let pm = document.createElement("p");
+        pm.appendChild(document.createTextNode("Other hats: "));
+        for (let i=0; i<missingMasks.length; i++)
+        {
+            if (missingMasks[i] === "NoHat")
+                continue;
+            let link = document.createElement("a");
+            if (IS_LOCAL)
+                link.href = "../share/hedgewars/Data/Graphics/Hats/"+missingMasks[i]+".png";
+            else
+                link.href = "//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Graphics/Hats/"+missingMasks[i]+".png";
+            link.appendChild(document.createTextNode(missingMasks[i]));
+            pm.appendChild(link);
+            if (i < missingMasks.length -1)
+                pm.appendChild(document.createTextNode(", "));
+        }
+        document.body.appendChild(document.createElement("br"));
+        document.body.appendChild(pm);
+    }
+
+    // Quick and dirty animation
+    animationInterval = setInterval(animateHogs, 128);
+
+    // Theme selection drop-down list
+    let form = document.body.appendChild(document.createElement("form"));
+
+    let opt = document.createElement("option");
     opt.appendChild(document.createTextNode(""));
-    var sel = document.body.appendChild(document.createElement("select"));
+
+    let label = document.createElement("label");
+    label.htmlFor = "theme_select";
+    label.appendChild(document.createTextNode("Theme: "));
+    form.appendChild(label);
+
+    let sel = form.appendChild(document.createElement("select"));
+    sel.id = "theme_select";
     sel.onchange = switchTheme;
-    for(var theme in themes)
+    for(let theme in themes)
     {
         sel.appendChild(opt.cloneNode(true));
         sel.lastChild.value = theme;
         sel.lastChild.lastChild.data = theme;
-        if(theme === "Nature") sel.lastChild.selected = true;
+        if(theme === "Nature")
+            sel.lastChild.selected = true;
     }
-    var chk = document.createElement("input");
+    form.appendChild(document.createElement("br"));
+
+    // Checkbox: Switch animation
+    let chk = document.createElement("input");
+    chk.id = "anim";
     chk.type = "checkbox";
     chk.onclick = switchAnim;
-    document.body.appendChild(chk);
-    chk = chk.cloneNode(false);
+    chk.checked = true;
+    form.appendChild(chk);
+    label = document.createElement("label");
+    label.htmlFor = "anim";
+    label.appendChild(document.createTextNode(" Animate hats"));
+    form.appendChild(label);
+
+    form.appendChild(document.createElement("br"));
+
+    // Checkbox: Hide girders
+    chk = document.createElement("input");
+    chk.id = "hide_girders";
+    chk.type = "checkbox";
     chk.onclick = hideGirders;
-    document.body.appendChild(chk);
-    var s = document.styleSheets[0].cssRules;
-    for(var i=0;i<s.length;i++)
-        if (s[i].selectorText.toLowerCase() === ".girder") girder = s[i];
-        
-    var a = document.createElement("a");
-    var g = document.createElement("div");
-    g.className="girder";
-    a.appendChild(document.createElement("div"));
-    a.lastChild.appendChild(document.createTextNode(""));
-    for (var i=0;i<masks.length;i++)
-    {
-        var h = document.body.appendChild(a.cloneNode(true));
-        h.href = "//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Graphics/Hats/"+masks[i]+".png";
-        h.lastChild.style.backgroundImage = 'url("'+h.href+'")';
-        h.lastChild.lastChild.data = masks[i];
-        h.title = masks[i];
-        h.idle = Math.floor(Math.random()*19);
-        if (i%17 === 16 || i === masks.length-1) document.body.appendChild(g.cloneNode(false));
-    }
-    
-/* quick and dirty animation */
-animationInterval = setInterval(animateHogs, 128);
+    chk.checked = true;
+    form.appendChild(chk);
+    label = document.createElement("label");
+    label.htmlFor = "hide_girders";
+    label.appendChild(document.createTextNode(" Show girders"));
+    form.appendChild(label);
+
+    document.body.appendChild(form);
+
+    switchTheme();
 }
 
 function animateHogs()
 {
-    var a = document.getElementsByTagName("a");
-    for (var i=0;i<a.length;i++)
+    let a = document.getElementsByTagName("a");
+    for (let i=0;i<a.length;i++)
     {
+        if (a[i].className !== "hat" && a[i].className !== "hatLocal")
+            continue;
+        // Cycle through hedgehog and hat animation frames
+
+        // Hedgehog
         a[i].style.backgroundPosition=Math.floor(a[i].idle/16)*-32+"px "+(a[i].idle%16)*-32+"px";
-        a[i].firstChild.style.backgroundPosition=Math.floor(a[i].idle/16)*-32+"px "+(a[i].idle%16)*-32+"px";
+
+        let maskName = a[i].title;
+        // Hat
+        if (staticMasks[maskName] === true) {
+            // Hat offset for static hats
+            if (a[i].idle === 2 || a[i].idle === 7 || a[i].idle === 12)
+                a[i].firstChild.style.marginTop="-4px";
+            else if (a[i].idle === 16)
+                a[i].firstChild.style.marginTop="-6px";
+            else
+                a[i].firstChild.style.marginTop="-5px";
+
+            a[i].firstChild.style.backgroundPosition="0px 0px";
+        }
+        else
+        {
+            // Animated hat frames
+            a[i].firstChild.style.backgroundPosition=Math.floor(a[i].idle/16)*-32+"px "+(a[i].idle%16)*-32+"px";
+        }
+
+        // Next frame
         a[i].idle++;
-        if (a[i].idle > 18) a[i].idle = 0;
+        if (a[i].idle > 18)
+            a[i].idle = 0;
     }
 }
 
+// Turn on or off hog+hat animation
 function switchAnim()
 {
-    if (animationInterval) 
+    if (animationInterval)
     {
         clearInterval(animationInterval);
         animationInterval = null;
@@ -162,24 +362,32 @@
     else animationInterval = setInterval(animateHogs, 128);
 }
 
+// Turn on or off girders
 function hideGirders()
 {
-    var g = document.getElementsByClassName("girder");
-    for(var i=0;i<g.length;i++) 
+    let g = document.getElementsByClassName("girder");
+    for(let i=0;i<g.length;i++)
         if (this.checked)
+            g[i].className = "girder";
+        else
             g[i].className = "girder hide";
-        else
-            g[i].className = "girder";
-    
+
 }
 
+// Select theme according to drop-down list value
 function switchTheme()
 {
-    document.body.style.backgroundImage='url("//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Themes/'+this.value+'/Sky.png")';
-    if (themes[this.value])
-        girder.style.backgroundImage='url("//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Themes/'+this.value+'/Girder.png")';
+    let prefix;
+    if (!IS_LOCAL)
+        prefix = "//hg.hedgewars.org/hedgewars/raw-file/tip";
     else
-        girder.style.backgroundImage='url("//hg.hedgewars.org/hedgewars/raw-file/tip/share/hedgewars/Data/Graphics/Girder.png")';
+        prefix = "..";
+    let theme = this.value || "Nature";
+    document.body.style.backgroundImage='url("'+prefix+'/share/hedgewars/Data/Themes/'+theme+'/Sky.png")';
+    if (themes[theme])
+        girder.style.backgroundImage='url("'+prefix+'/share/hedgewars/Data/Themes/'+theme+'/Girder.png")';
+    else
+        girder.style.backgroundImage='url("'+prefix+'/share/hedgewars/Data/Graphics/Girder.png")';
 }
 //]]>
     </script>
@@ -187,8 +395,8 @@
 <body>
 <h1>List of Hedgewars hats</h1>
 <noscript>
-<p><strong>ERROR</strong>: We're so sorry, but this webpage only works with JavaScript enabled. It seems JavaScript is disabled or not supported in your browser.</p>
-<p>Normally, this webpage would display an animated preview of the hats in Hedgewars.</p>
+<p><strong>ERROR</strong>: We're so sorry, but this webpage only works with JavaScript enabled. It seems JavaScript is disabled or not supported in your browser.<br/>
+Normally, this webpage would display an animated preview of the hats in Hedgewars.</p>
 </noscript>
 </body>
 </html>
--- a/misc/libphyslayer/CMakeLists.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/misc/libphyslayer/CMakeLists.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -17,7 +17,11 @@
 set_target_properties(physlayer PROPERTIES
                           VERSION 1.0
                           SOVERSION 1.0)
-target_link_libraries(physlayer ${SDL2_LIBRARIES} lua physfs)
+if(WIN32 AND VCPKG_TOOLCHAIN)                          
+    target_link_libraries(physlayer SDL2::SDL2 lua physfs)
+else()
+    target_link_libraries(physlayer ${SDL2_LIBRARIES} lua physfs)
+endif()
 install(TARGETS physlayer RUNTIME DESTINATION ${target_binary_install_dir}
                           LIBRARY DESTINATION ${target_library_install_dir}
                           ARCHIVE DESTINATION ${target_library_install_dir})
--- a/misc/libphyslayer/hwpacksmounter.c	Sun Mar 24 14:19:02 2024 -0400
+++ b/misc/libphyslayer/hwpacksmounter.c	Sun Mar 24 14:34:27 2024 -0400
@@ -8,6 +8,8 @@
 {
     char ** filesList = PHYSFS_enumerateFiles("/");
     char **i;
+    
+    if (!filesList) return;
 
     for (i = filesList; *i != NULL; i++)
     {
--- a/misc/libphyslayer/physfscompat.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/misc/libphyslayer/physfscompat.h	Sun Mar 24 14:34:27 2024 -0400
@@ -21,6 +21,10 @@
 
 #include "physfs.h"
 
+#if defined(_WIN32) 
+#define PHYSFS_DECL __declspec(dllexport)
+#endif
+
 #if PHYSFS_VER_MAJOR == 2
 #if PHYSFS_VER_MINOR == 0
 
--- a/misc/racer.yaml	Sun Mar 24 14:19:02 2024 -0400
+++ b/misc/racer.yaml	Sun Mar 24 14:34:27 2024 -0400
@@ -43,7 +43,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -105,7 +105,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '1'
@@ -167,7 +167,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -229,7 +229,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -291,7 +291,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -353,7 +353,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -415,7 +415,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '1'
@@ -477,7 +477,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -539,7 +539,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -601,7 +601,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -663,7 +663,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -725,7 +725,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -787,7 +787,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '1'
@@ -849,7 +849,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -911,7 +911,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -973,7 +973,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -1035,7 +1035,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -1097,7 +1097,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '1'
@@ -1159,7 +1159,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -1221,7 +1221,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -1283,7 +1283,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '1'
@@ -1345,7 +1345,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -1407,7 +1407,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -1469,7 +1469,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '1'
@@ -1531,7 +1531,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
@@ -1593,7 +1593,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '1'
@@ -1655,7 +1655,7 @@
     - 'false'
     - 'false'
     - '100'
-    - '30'
+    - '90'
     - '100'
     - '50'
     - '0'
--- a/project_files/HedgewarsMobile/Classes/SupportViewController.m	Sun Mar 24 14:19:02 2024 -0400
+++ b/project_files/HedgewarsMobile/Classes/SupportViewController.m	Sun Mar 24 14:34:27 2024 -0400
@@ -131,7 +131,7 @@
                 urlString = @"https://www.hedgewars.org";
                 break;
             case 3:
-                urlString = @"https://webchat.freenode.net/?channels=hedgewars";
+                urlString = @"https://web.libera.chat/#hedgewars";
                 break;
             default:
                 DLog(@"No way");
--- a/project_files/hwc/CMakeLists.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/project_files/hwc/CMakeLists.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -112,7 +112,7 @@
                                 ${LUA_LIBRARY}
                                 ${OPENGL_LIBRARY}
                                 ${SDL2_LIBRARIES}
-                                ${SDL2_MIXER_LIBRARIES}
+                                ${SDL2_MIXER_LIBRARY}
                                 ${SDL2_NET_LIBRARIES}
                                 ${SDL2_IMAGE_LIBRARIES}
                                 ${SDL2_TTF_LIBRARIES}
--- a/project_files/hwc/rtl/sysutils.c	Sun Mar 24 14:19:02 2024 -0400
+++ b/project_files/hwc/rtl/sysutils.c	Sun Mar 24 14:34:27 2024 -0400
@@ -83,7 +83,7 @@
 // Semi-dummy implementation of FormatDateTime
 string255 fpcrtl_formatDateTime(string255 FormatStr, TDateTime DateTime)
 {
-    string255 buffer = STRINIT(FormatStr.str);
+    string255 buffer = FormatStr;
     time_t rawtime;
     struct tm* my_tm;
 
--- a/qmlfrontend/CMakeLists.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/qmlfrontend/CMakeLists.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -1,7 +1,10 @@
-cmake_minimum_required(VERSION 2.8.12)
+cmake_minimum_required(VERSION 3.8)
 
 project(qmlfrontend LANGUAGES CXX)
 
+set(CMAKE_CXX_STANDARD 17)
+set(CMAKE_CXX_STANDARD_REQUIRED ON)
+
 set(CMAKE_INCLUDE_CURRENT_DIR ON)
 set(CMAKE_AUTOMOC ON)
 set(CMAKE_AUTORCC ON)
--- a/qmlfrontend/Page1.qml	Sun Mar 24 14:19:02 2024 -0400
+++ b/qmlfrontend/Page1.qml	Sun Mar 24 14:34:27 2024 -0400
@@ -2,66 +2,67 @@
 import Hedgewars.Engine 1.0
 
 Page1Form {
-  focus: true
+    focus: true
 
-  property HWEngine hwEngine
-  property NetSession netSession
+    property HWEngine hwEngine
+    property NetSession netSession
+
+    Component {
+        id: hwEngineComponent
 
-  Component {
-    id: hwEngineComponent
-
-    HWEngine {
-      engineLibrary: "./libhedgewars_engine.so"
-      previewAcceptor: PreviewAcceptor
-      onPreviewImageChanged: previewImage.source = "image://preview/image"
-      onPreviewIsRendering: previewImage.source = "qrc:/res/iconTime.png"
+        HWEngine {
+            engineLibrary: "../rust/lib-hedgewars-engine/target/debug/libhedgewars_engine.so"
+            dataPath: "../share/hedgewars/Data"
+            previewAcceptor: PreviewAcceptor
+            onPreviewImageChanged: previewImage.source = "image://preview/image"
+            onPreviewIsRendering: previewImage.source = "qrc:/res/iconTime.png"
+        }
     }
-  }
 
-  Component {
-    id: netSessionComponent
+    Component {
+        id: netSessionComponent
 
-    NetSession {
-      nickname: "test0272"
-      url: "hwnet://gameserver.hedgewars.org:46632"
+        NetSession {
+            nickname: "test0272"
+            url: "hwnet://gameserver.hedgewars.org:46632"
+        }
     }
-  }
 
-  Component.onCompleted: {
-    hwEngine = hwEngineComponent.createObject()
-  }
+    Component.onCompleted: {
+        hwEngine = hwEngineComponent.createObject()
+    }
 
-  tickButton {
-    onClicked: {
-      tickButton.visible = false
-      gameView.tick(100)
+    tickButton {
+        onClicked: {
+            tickButton.visible = false
+            gameView.tick(100)
+        }
     }
-  }
-  gameButton {
-    visible: !gameView.engineInstance
-    onClicked: {
-      var engineInstance = hwEngine.runQuickGame()
-      gameView.engineInstance = engineInstance
+    gameButton {
+        visible: !gameView.engineInstance
+        onClicked: {
+            const engineInstance = hwEngine.runQuickGame()
+            gameView.engineInstance = engineInstance
+        }
     }
-  }
-  button1 {
-    visible: !gameView.engineInstance
-    onClicked: {
-      hwEngine.getPreview()
+    button1 {
+        visible: !gameView.engineInstance
+        onClicked: {
+            hwEngine.getPreview()
+        }
+    }
+    netButton.onClicked: {
+        netSession = netSessionComponent.createObject()
+        netSession.open()
     }
-  }
-  netButton.onClicked: {
-    netSession = netSessionComponent.createObject()
-    netSession.open()
-  }
+
+    Keys.onPressed: {
+        if (event.key === Qt.Key_Enter)
+            gameView.engineInstance.longEvent(Engine.Attack, Engine.Set)
+    }
 
-  Keys.onPressed: {
-    if (event.key === Qt.Key_Enter)
-      gameView.engineInstance.longEvent(Engine.Attack, Engine.Set)
-  }
-
-  Keys.onReleased: {
-    if (event.key === Qt.Key_Enter)
-      gameView.engineInstance.longEvent(Engine.Attack, Engine.Unset)
-  }
+    Keys.onReleased: {
+        if (event.key === Qt.Key_Enter)
+            gameView.engineInstance.longEvent(Engine.Attack, Engine.Unset)
+    }
 }
--- a/qmlfrontend/engine_instance.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/qmlfrontend/engine_instance.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -6,15 +6,15 @@
 #include <QSurface>
 
 static QOpenGLContext* currentOpenglContext = nullptr;
-extern "C" void (*getProcAddress(const char* fn))() {
+extern "C" void* getProcAddress(const char* fn) {
   if (!currentOpenglContext)
     return nullptr;
   else
-    return currentOpenglContext->getProcAddress(fn);
+    return reinterpret_cast<void*>(currentOpenglContext->getProcAddress(fn));
 }
 
-EngineInstance::EngineInstance(const QString& libraryPath, QObject* parent)
-    : QObject(parent) {
+EngineInstance::EngineInstance(const QString& libraryPath, const QString&dataPath, QObject* parent)
+    : QObject(parent), m_instance{nullptr, nullptr} {
   QLibrary hwlib(libraryPath);
 
   if (!hwlib.load())
@@ -62,52 +62,52 @@
     qDebug() << "Loaded engine library with protocol version"
              << hedgewars_engine_protocol_version();
 
-    m_instance = start_engine();
+    m_instance = std::unique_ptr<Engine::EngineInstance, Engine::cleanup_t*>(
+        start_engine(reinterpret_cast<const int8_t*>(dataPath.toUtf8().data())),
+        cleanup);
   } else {
     qDebug("Engine library load failed");
   }
 }
 
-EngineInstance::~EngineInstance() {
-  if (m_isValid) cleanup(m_instance);
-}
+EngineInstance::~EngineInstance() = default;
 
 void EngineInstance::sendConfig(const GameConfig& config) {
   for (auto b : config.config()) {
-    send_ipc(m_instance, reinterpret_cast<uint8_t*>(b.data()),
+    send_ipc(m_instance.get(), reinterpret_cast<uint8_t*>(b.data()),
              static_cast<size_t>(b.size()));
   }
 }
 
 void EngineInstance::advance(quint32 ticks) {
-  advance_simulation(m_instance, ticks);
+  advance_simulation(m_instance.get(), ticks);
 }
 
 void EngineInstance::moveCamera(const QPoint& delta) {
-  move_camera(m_instance, delta.x(), delta.y());
+  move_camera(m_instance.get(), delta.x(), delta.y());
 }
 
 void EngineInstance::simpleEvent(Engine::SimpleEventType event_type) {
-  simple_event(m_instance, event_type);
+  simple_event(m_instance.get(), event_type);
 }
 
 void EngineInstance::longEvent(Engine::LongEventType event_type,
                                Engine::LongEventState state) {
-  long_event(m_instance, event_type, state);
+  long_event(m_instance.get(), event_type, state);
 }
 
 void EngineInstance::positionedEvent(Engine::PositionedEventType event_type,
                                      qint32 x, qint32 y) {
-  positioned_event(m_instance, event_type, x, y);
+  positioned_event(m_instance.get(), event_type, x, y);
 }
 
-void EngineInstance::renderFrame() { render_frame(m_instance); }
+void EngineInstance::renderFrame() { render_frame(m_instance.get()); }
 
 void EngineInstance::setOpenGLContext(QOpenGLContext* context) {
   currentOpenglContext = context;
 
   auto size = context->surface()->size();
-  setup_current_gl_context(m_instance, static_cast<quint16>(size.width()),
+  setup_current_gl_context(m_instance.get(), static_cast<quint16>(size.width()),
                            static_cast<quint16>(size.height()),
                            &getProcAddress);
 }
@@ -115,7 +115,7 @@
 QImage EngineInstance::generatePreview() {
   Engine::PreviewInfo pinfo;
 
-  generate_preview(m_instance, &pinfo);
+  generate_preview(m_instance.get(), &pinfo);
 
   QVector<QRgb> colorTable;
   colorTable.resize(256);
@@ -126,7 +126,7 @@
   previewImage.setColorTable(colorTable);
 
   // Cannot use it here, since QImage refers to original bytes
-  // dispose_preview(m_instance);
+  // dispose_preview(m_instance.get());
 
   return previewImage;
 }
--- a/qmlfrontend/engine_instance.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/qmlfrontend/engine_instance.h	Sun Mar 24 14:34:27 2024 -0400
@@ -4,6 +4,7 @@
 #include <QImage>
 #include <QObject>
 #include <QOpenGLContext>
+#include <memory>
 
 #include "engine_interface.h"
 #include "game_config.h"
@@ -12,7 +13,7 @@
   Q_OBJECT
 
  public:
-  explicit EngineInstance(const QString& libraryPath,
+  explicit EngineInstance(const QString& libraryPath,const QString& dataPath,
                           QObject* parent = nullptr);
   ~EngineInstance();
 
@@ -38,7 +39,7 @@
                        qint32 y);
 
  private:
-  Engine::EngineInstance* m_instance;
+  std::unique_ptr<Engine::EngineInstance, Engine::cleanup_t*> m_instance;
 
   Engine::hedgewars_engine_protocol_version_t*
       hedgewars_engine_protocol_version;
--- a/qmlfrontend/engine_interface.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/qmlfrontend/engine_interface.h	Sun Mar 24 14:34:27 2024 -0400
@@ -4,8 +4,7 @@
 #include <stddef.h>
 #include <stdint.h>
 
-#ifdef __cplusplus
-#define ENUM_CLASS enum
+#include "../rust/lib-hedgewars-engine/target/lib-hedgewars-engine.hpp"
 
 #ifndef Q_NAMESPACE
 #define Q_NAMESPACE
@@ -21,69 +20,35 @@
 
 namespace Engine {
 extern "C" {
-#else
-#define ENUM_CLASS enum class
-#endif
-
-typedef struct _EngineInstance EngineInstance;
-
-typedef struct {
-  uint32_t width;
-  uint32_t height;
-  uint8_t hedgehogs_number;
-  unsigned char* land;
-} PreviewInfo;
 
-typedef uint32_t hedgewars_engine_protocol_version_t();
-typedef EngineInstance* start_engine_t();
-typedef void generate_preview_t(EngineInstance* engine_state,
-                                PreviewInfo* preview);
-typedef void dispose_preview_t(EngineInstance* engine_state);
-typedef void cleanup_t(EngineInstance* engine_state);
+using EngineInstance = hwengine::EngineInstance;
+using PreviewInfo = hwengine::PreviewInfo;
 
-typedef void send_ipc_t(EngineInstance* engine_state, uint8_t* buf,
-                        size_t size);
-typedef size_t read_ipc_t(EngineInstance* engine_state, uint8_t* buf,
-                          size_t size);
-
-typedef void setup_current_gl_context_t(EngineInstance* engine_state,
-                                        uint16_t width, uint16_t height,
-                                        void (*(const char*))());
-typedef void render_frame_t(EngineInstance* engine_state);
+using hedgewars_engine_protocol_version_t =
+    decltype(hwengine::hedgewars_engine_protocol_version);
 
-typedef bool advance_simulation_t(EngineInstance* engine_state, uint32_t ticks);
-
-typedef void move_camera_t(EngineInstance* engine_state, int32_t delta_x,
-                           int32_t delta_y);
-
-ENUM_CLASS SimpleEventType{
-    SwitchHedgehog, Timer, LongJump, HighJump, Accept, Deny,
-};
-
-ENUM_CLASS LongEventType{
-    ArrowUp, ArrowDown, ArrowLeft, ArrowRight, Precision, Attack,
-};
+using start_engine_t = decltype(hwengine::start_engine);
+using generate_preview_t = decltype(hwengine::generate_preview);
+using dispose_preview_t = decltype(hwengine::dispose_preview);
+using cleanup_t = decltype(hwengine::cleanup);
+using send_ipc_t = decltype(hwengine::send_ipc);
+using read_ipc_t = decltype(hwengine::read_ipc);
+using setup_current_gl_context_t = decltype(hwengine::setup_current_gl_context);
+using render_frame_t = decltype(hwengine::render_frame);
+using advance_simulation_t = decltype(hwengine::advance_simulation);
+using move_camera_t = decltype(hwengine::move_camera);
 
-ENUM_CLASS LongEventState{
-    Set,
-    Unset,
-};
+using simple_event_t = decltype(hwengine::simple_event);
+using long_event_t = decltype(hwengine::long_event);
+using positioned_event_t = decltype(hwengine::positioned_event);
 
-ENUM_CLASS PositionedEventType{
-    CursorMove,
-    CursorClick,
-};
+using SimpleEventType = hwengine::SimpleEventType;
+using LongEventType = hwengine::LongEventType;
+using LongEventState = hwengine::LongEventState;
+using PositionedEventType = hwengine::PositionedEventType;
 
-typedef void simple_event_t(EngineInstance* engine_state,
-                            SimpleEventType event_type);
-typedef void long_event_t(EngineInstance* engine_state,
-                          LongEventType event_type, LongEventState state);
-typedef void positioned_event_t(EngineInstance* engine_state,
-                                PositionedEventType event_type, int32_t x,
-                                int32_t y);
 }  // extern "C"
 
-#ifdef __cplusplus
 Q_NAMESPACE
 
 Q_ENUM_NS(SimpleEventType)
@@ -97,6 +62,5 @@
 Q_DECLARE_METATYPE(Engine::LongEventType)
 Q_DECLARE_METATYPE(Engine::LongEventState)
 Q_DECLARE_METATYPE(Engine::PositionedEventType)
-#endif
 
 #endif  // ENGINE_H
--- a/qmlfrontend/game_view.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/qmlfrontend/game_view.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -42,7 +42,9 @@
 void GameView::cleanup() { m_renderer.reset(); }
 
 void GameView::setEngineInstance(EngineInstance* engineInstance) {
-  if (m_engineInstance == engineInstance) return;
+  if (m_engineInstance == engineInstance) {
+    return;
+  }
 
   cleanup();
   m_engineInstance = engineInstance;
@@ -59,23 +61,27 @@
             &GameViewRenderer::paint, Qt::DirectConnection);
   }
 
-  if (m_windowChanged || (m_viewportSize != window()->size())) {
+  if (m_windowChanged || (m_viewportSize != size())) {
     m_windowChanged = false;
 
     if (m_engineInstance)
       m_engineInstance->setOpenGLContext(window()->openglContext());
 
-    m_viewportSize = window()->size();
+    m_viewportSize = size().toSize();
     m_centerPoint = QPoint(m_viewportSize.width(), m_viewportSize.height()) / 2;
   }
 
   if (m_engineInstance) {
-    QPoint mousePos = mapFromGlobal(QCursor::pos()).toPoint();
-    m_engineInstance->moveCamera(mousePos - m_centerPoint);
-    QCursor::setPos(mapToGlobal(m_centerPoint).toPoint());
+    const auto delta = mapFromGlobal(QCursor::pos()).toPoint() - m_centerPoint;
+
+    m_engineInstance->moveCamera(delta);
+
+    QCursor::setPos(window()->screen(), mapToGlobal(m_centerPoint).toPoint());
   }
 
-  if (m_renderer) m_renderer->tick(m_delta);
+  if (m_renderer) {
+    m_renderer->tick(m_delta);
+  }
 }
 
 GameViewRenderer::GameViewRenderer()
@@ -90,7 +96,9 @@
 }
 
 void GameViewRenderer::paint() {
-  if (m_delta == 0) return;
+  if (m_delta == 0) {
+    return;
+  }
 
   if (m_engineInstance) {
     m_engineInstance->advance(m_delta);
--- a/qmlfrontend/hwengine.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/qmlfrontend/hwengine.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -9,7 +9,7 @@
 #include "game_view.h"
 #include "preview_acceptor.h"
 
-HWEngine::HWEngine(QObject* parent) : QObject(parent) {}
+HWEngine::HWEngine(QObject* parent) : QObject(parent), m_dataPath{QStringLiteral("Data")} {}
 
 HWEngine::~HWEngine() {}
 
@@ -19,7 +19,7 @@
   m_gameConfig = GameConfig();
   m_gameConfig.cmdSeed(QUuid::createUuid().toByteArray());
 
-  EngineInstance engine(m_engineLibrary);
+  EngineInstance engine(m_engineLibrary, m_dataPath);
   if (!engine.isValid())  // TODO: error notification
     return;
 
@@ -43,7 +43,8 @@
   m_gameConfig.cmdTeam(team1);
   m_gameConfig.cmdTeam(team2);
 
-  EngineInstance* engine = new EngineInstance(m_engineLibrary, this);
+  EngineInstance* engine = new EngineInstance(m_engineLibrary, m_dataPath, this);
+  engine->sendConfig(m_gameConfig);
 
   return engine;
   // m_runQueue->queue(m_gameConfig);
@@ -68,3 +69,16 @@
   m_engineLibrary = engineLibrary;
   emit engineLibraryChanged(m_engineLibrary);
 }
+
+const QString &HWEngine::dataPath() const
+{
+  return m_dataPath;
+}
+
+void HWEngine::setDataPath(const QString &newDataPath)
+{
+  if (m_dataPath == newDataPath)
+    return;
+  m_dataPath = newDataPath;
+  emit dataPathChanged();
+}
--- a/qmlfrontend/hwengine.h	Sun Mar 24 14:19:02 2024 -0400
+++ b/qmlfrontend/hwengine.h	Sun Mar 24 14:34:27 2024 -0400
@@ -20,6 +20,7 @@
                  setPreviewAcceptor NOTIFY previewAcceptorChanged)
   Q_PROPERTY(QString engineLibrary READ engineLibrary WRITE setEngineLibrary
                  NOTIFY engineLibraryChanged)
+  Q_PROPERTY(QString dataPath READ dataPath WRITE setDataPath NOTIFY dataPathChanged)
 
  public:
   explicit HWEngine(QObject* parent = nullptr);
@@ -32,7 +33,10 @@
   PreviewAcceptor* previewAcceptor() const;
   QString engineLibrary() const;
 
- public slots:
+  const QString &dataPath() const;
+  void setDataPath(const QString &newDataPath);
+
+public slots:
   void setPreviewAcceptor(PreviewAcceptor* previewAcceptor);
   void setEngineLibrary(const QString& engineLibrary);
 
@@ -45,12 +49,15 @@
   void previewAcceptorChanged(PreviewAcceptor* previewAcceptor);
   void engineLibraryChanged(const QString& engineLibrary);
 
- private:
+  void dataPathChanged();
+
+private:
   QQmlEngine* m_engine;
   GameConfig m_gameConfig;
   int m_previewHedgehogsCount;
   PreviewAcceptor* m_previewAcceptor;
   QString m_engineLibrary;
+  QString m_dataPath;
 };
 
 #endif  // HWENGINE_H
--- a/qmlfrontend/net_session.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/qmlfrontend/net_session.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -340,7 +340,7 @@
   QString hash =
       QCryptographicHash::hash(m_clientSalt.toLatin1()
                                    .append(m_serverSalt.toLatin1())
-                                   .append(m_passwordHash)
+                                   .append(m_passwordHash.toLatin1())
                                    .append(QByteArray::number(cProtocolVersion))
                                    .append("!hedgewars"),
                                QCryptographicHash::Sha1)
@@ -349,7 +349,7 @@
   m_serverHash =
       QCryptographicHash::hash(m_serverSalt.toLatin1()
                                    .append(m_clientSalt.toLatin1())
-                                   .append(m_passwordHash)
+                                   .append(m_passwordHash.toLatin1())
                                    .append(QByteArray::number(cProtocolVersion))
                                    .append("!hedgewars"),
                                QCryptographicHash::Sha1)
--- a/qmlfrontend/players_model.cpp	Sun Mar 24 14:19:02 2024 -0400
+++ b/qmlfrontend/players_model.cpp	Sun Mar 24 14:34:27 2024 -0400
@@ -355,10 +355,10 @@
 
   stream << "; this list is used by Hedgewars - do not edit it unless you know "
             "what you're doing!"
-         << endl;
+         << Qt::endl;
 
   foreach (const QString &nick, set.values())
-    stream << nick << endl;
+    stream << nick << Qt::endl;
 
   txt.close();
 }
--- a/rust/fpnum/src/lib.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/fpnum/src/lib.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -344,7 +344,7 @@
 
             FPNum {
                 sign_mask: POSITIVE_MASK,
-                value: integral_sqrt_ext(sqr) as u64,
+                value: integral_sqrt_ext(sqr),
             }
         }
     }
@@ -473,7 +473,7 @@
 bin_assign_op_impl!(FPPoint, ops::DivAssign<FPNum>, div_assign, /);
 
 pub fn integral_sqrt(value: u64) -> u64 {
-    let mut digits = (64u32 - 1).saturating_sub(value.leading_zeros()) & 0xFFFF_FFFE;
+    let mut digits = (64u32 - 1).saturating_sub(value.leading_zeros()) & 0xFE;
     let mut result = if value == 0 { 0u64 } else { 1u64 };
 
     while digits != 0 {
@@ -487,21 +487,18 @@
     result
 }
 
-pub fn integral_sqrt_ext(mut value: u128) -> u128 {
-    let mut digit_sqr =
-        0x40000000_00000000_00000000_00000000u128.wrapping_shr(value.leading_zeros() & 0xFFFF_FFFE);
-    let mut result = 0u128;
+pub fn integral_sqrt_ext(value: u128) -> u64 {
+    let mut digits = (128u32 - 1).saturating_sub(value.leading_zeros()) & 0xFE;
+    let mut result = if value == 0 { 0u64 } else { 1u64 };
 
-    while digit_sqr != 0 {
-        let approx = result + digit_sqr;
-        result >>= 1;
+    while digits != 0 {
+        result <<= 1;
+        if ((result + 1) as u128).pow(2) <= value >> (digits - 2) {
+            result += 1;
+        }
+        digits -= 2;
+    }
 
-        if approx <= value {
-            value -= approx;
-            result += digit_sqr;
-        }
-        digit_sqr >>= 2;
-    }
     result
 }
 
@@ -514,7 +511,7 @@
 
     FPNum {
         sign_mask: POSITIVE_MASK,
-        value: integral_sqrt_ext(sqr) as u64,
+        value: integral_sqrt_ext(sqr),
     }
 }
 
@@ -523,7 +520,6 @@
  AngleCos
 */
 
-#[cfg(test)]
 #[test]
 fn basics() {
     let n = fp!(15 / 2);
@@ -541,6 +537,8 @@
     assert_eq!((-n).round(), -7);
 
     assert_eq!(f64::from(fp!(5/2)), 2.5f64);
+
+    assert_eq!(integral_sqrt_ext(0xFFFF_FFFF_FFFF_FFFF_FFFF_FFFF_FFFF_FFFF), 0xFFFF_FFFF_FFFF_FFFF);
 }
 
 #[test]
--- a/rust/hedgewars-checker/Cargo.toml	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-checker/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -5,11 +5,14 @@
 edition = "2018"
 
 [dependencies]
-rust-ini = "0.13"
-dirs = "1.0"
-argparse = "0.2.2"
+rust-ini = "0.19"
+dirs = "5.0"
+argparse = "0.2"
 log = "0.4"
-stderrlog = "0.4"
+stderrlog = "0.5"
 netbuf = "0.4"
 tempfile = "3.0"
-base64 = "0.9.3"
+base64 = "0.21"
+hedgewars-network-protocol = { path = "../hedgewars-network-protocol" }
+anyhow = "1.0"
+tokio = {version="1", features = ["full"]}
--- a/rust/hedgewars-checker/src/main.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-checker/src/main.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,38 +1,26 @@
+use anyhow::{anyhow, bail, Result};
 use argparse::{ArgumentParser, Store};
+use base64::{engine::general_purpose, Engine};
+use hedgewars_network_protocol::{
+    messages::HwProtocolMessage as ClientMessage, messages::HwServerMessage::*, parser,
+};
 use ini::Ini;
+use log::{debug, info, warn};
 use netbuf::Buf;
-use log::{debug, warn, info};
-use std::{
-    io::Write,
-    net::TcpStream,
-    process::Command,
-    str::FromStr
-};
-
-type CheckError = Box<std::error::Error>;
+use std::{io::Write, str::FromStr};
+use tokio::time::MissedTickBehavior;
+use tokio::{io, io::AsyncWriteExt, net::TcpStream, process::Command, sync::mpsc};
 
-fn extract_packet(buf: &mut Buf) -> Option<netbuf::Buf> {
-    let packet_end = (&buf[..]).windows(2).position(|window| window == b"\n\n")?;
-
-    let mut tail = buf.split_off(packet_end);
-
-    std::mem::swap(&mut tail, buf);
-
-    buf.consume(2);
-
-    Some(tail)
-}
-
-fn check(executable: &str, data_prefix: &str, buffer: &[u8]) -> Result<Vec<Vec<u8>>, CheckError> {
+async fn check(executable: &str, data_prefix: &str, buffer: &[String]) -> Result<Vec<String>> {
     let mut replay = tempfile::NamedTempFile::new()?;
 
-    for line in buffer.split(|b| *b == '\n' as u8) {
-        replay.write(&base64::decode(line)?)?;
+    for line in buffer.iter() {
+        replay.write_all(&general_purpose::STANDARD.decode(line)?)?;
     }
 
     let temp_file_path = replay.path();
 
-    let mut home_dir = dirs::home_dir().unwrap();
+    let mut home_dir = dirs::home_dir().ok_or(anyhow!("Home path not detected"))?;
     home_dir.push(".hedgewars");
 
     debug!("Checking replay in {}", temp_file_path.to_string_lossy());
@@ -46,152 +34,251 @@
         .arg("--nosound")
         .arg("--stats-only")
         .arg(temp_file_path)
-        .output()?;
+        //.spawn()?
+        //.wait_with_output()
+        .output()
+        .await?;
+
+    debug!("Engine finished!");
 
     let mut result = Vec::new();
 
     let mut engine_lines = output
         .stderr
-        .split(|b| *b == '\n' as u8)
+        .split(|b| *b == b'\n')
         .skip_while(|l| *l != b"WINNERS" && *l != b"DRAW");
 
+    // debug!("Engine lines: {:?}", &engine_lines);
+
     loop {
         match engine_lines.next() {
-            Some(b"DRAW") => result.push(b"DRAW".to_vec()),
+            Some(b"DRAW") => result.push("DRAW".to_owned()),
             Some(b"WINNERS") => {
-                result.push(b"WINNERS".to_vec());
+                result.push("WINNERS".to_owned());
                 let winners = engine_lines.next().unwrap();
                 let winners_num = u32::from_str(&String::from_utf8(winners.to_vec())?)?;
-                result.push(winners.to_vec());
+                result.push(String::from_utf8(winners.to_vec())?);
 
                 for _i in 0..winners_num {
-                    result.push(engine_lines.next().unwrap().to_vec());
+                    result.push(String::from_utf8(engine_lines.next().unwrap().to_vec())?);
                 }
             }
             Some(b"GHOST_POINTS") => {
-                result.push(b"GHOST_POINTS".to_vec());
+                result.push("GHOST_POINTS".to_owned());
                 let points = engine_lines.next().unwrap();
                 let points_num = u32::from_str(&String::from_utf8(points.to_vec())?)? * 2;
-                result.push(points.to_vec());
+                result.push(String::from_utf8(points.to_vec())?);
 
                 for _i in 0..points_num {
-                    result.push(engine_lines.next().unwrap().to_vec());
+                    result.push(String::from_utf8(engine_lines.next().unwrap().to_vec())?);
                 }
             }
             Some(b"ACHIEVEMENT") => {
-                result.push(b"ACHIEVEMENT".to_vec());
+                result.push("ACHIEVEMENT".to_owned());
                 for _i in 0..4 {
-                    result.push(engine_lines.next().unwrap().to_vec());
+                    result.push(String::from_utf8(engine_lines.next().unwrap().to_vec())?);
                 }
             }
             _ => break,
         }
     }
 
-    if result.len() > 0 {
+    // println!("Engine lines: {:?}", &result);
+
+    if !result.is_empty() {
         Ok(result)
     } else {
-        Err("no data from engine".into())
+        bail!("no data from engine")
     }
 }
 
-fn connect_and_run(
-    username: &str,
-    password: &str,
-    protocol_number: u32,
+async fn check_loop(
     executable: &str,
     data_prefix: &str,
-) -> Result<(), CheckError> {
+    results_sender: mpsc::Sender<Result<Vec<String>>>,
+    mut replay_receiver: mpsc::Receiver<Vec<String>>,
+) -> Result<()> {
+    while let Some(replay) = replay_receiver.recv().await {
+        results_sender
+            .send(check(executable, data_prefix, &replay).await)
+            .await?;
+    }
+
+    Ok(())
+}
+
+async fn connect_and_run(
+    username: &str,
+    password: &str,
+    protocol_number: u16,
+    replay_sender: mpsc::Sender<Vec<String>>,
+    mut results_receiver: mpsc::Receiver<Result<Vec<String>>>,
+) -> Result<()> {
     info!("Connecting...");
 
-    let mut stream = TcpStream::connect("hedgewars.org:46631")?;
-    stream.set_nonblocking(false)?;
+    let mut stream = TcpStream::connect("hedgewars.org:46631").await?;
 
     let mut buf = Buf::new();
 
+    let mut interval = tokio::time::interval(tokio::time::Duration::from_secs(30));
+    interval.set_missed_tick_behavior(MissedTickBehavior::Delay);
+
     loop {
-        buf.read_from(&mut stream)?;
+        let r = tokio::select! {
+            _ = interval.tick() => {
+                // Send Ping
+                stream.write_all(ClientMessage::Ping.to_raw_protocol().as_bytes()).await?;
+                None
+            },
+            _ = stream.readable() => None,
+            r = results_receiver.recv() => r
+        };
+
+        //println!("Loop: {:?}", &r);
+
+        if let Some(execution_result) = r {
+            match execution_result {
+                Ok(result) => {
+                    info!("Checked");
+                    debug!("Check result: [{:?}]", result);
 
-        while let Some(msg) = extract_packet(&mut buf) {
-            if msg[..].starts_with(b"CONNECTED") {
-                info!("Connected");
-                let p = format!(
-                    "CHECKER\n{}\n{}\n{}\n\n",
-                    protocol_number, username, password
-                );
-                stream.write(p.as_bytes())?;
-            } else if msg[..].starts_with(b"PING") {
-                stream.write(b"PONG\n\n")?;
-            } else if msg[..].starts_with(b"LOGONPASSED") {
-                info!("Logged in");
-                stream.write(b"READY\n\n")?;
-            } else if msg[..].starts_with(b"REPLAY") {
-                info!("Got a replay");
-                match check(executable, data_prefix, &msg[7..]) {
-                    Ok(result) => {
-                        info!("Checked");
-                        debug!(
-                            "Check result: [{}]",
-                            String::from_utf8_lossy(&result.join(&(',' as u8)))
-                        );
+                    stream
+                        .write_all(
+                            ClientMessage::CheckedOk(result)
+                                .to_raw_protocol()
+                                .as_bytes(),
+                        )
+                        .await?;
+                    stream
+                        .write_all(ClientMessage::CheckerReady.to_raw_protocol().as_bytes())
+                        .await?;
+                }
+                Err(e) => {
+                    info!("Check failed: {:?}", e);
+                    stream
+                        .write_all(
+                            ClientMessage::CheckedFail("error".to_owned())
+                                .to_raw_protocol()
+                                .as_bytes(),
+                        )
+                        .await?;
+                    stream
+                        .write_all(ClientMessage::CheckerReady.to_raw_protocol().as_bytes())
+                        .await?;
+                }
+            }
+        } else {
+            let mut msg = [0; 4096];
+            // Try to read data, this may still fail with `WouldBlock`
+            // if the readiness event is a false positive.
+            match stream.try_read(&mut msg) {
+                Ok(n) => {
+                    //println!("{:?}", &msg);
+                    buf.write_all(&msg[0..n])?;
+                }
+                Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {}
+                Err(e) => {
+                    return Err(e.into());
+                }
+            }
+        }
+
+        while let Ok((tail, msg)) = parser::server_message(buf.as_ref()) {
+            let tail_len = tail.len();
+            buf.consume(buf.len() - tail_len);
+
+            // println!("Message from server: {:?}", &msg);
 
-                        stream.write(b"CHECKED\nOK\n")?;
-                        stream.write(&result.join(&('\n' as u8)))?;
-                        stream.write(b"\n\nREADY\n\n")?;
-                    }
-                    Err(e) => {
-                        info!("Check failed: {:?}", e);
-                        stream.write(b"CHECKED\nFAIL\nerror\n\nREADY\n\n")?;
+            match msg {
+                Connected(_, _) => {
+                    info!("Connected");
+                    stream
+                        .write_all(
+                            ClientMessage::Checker(
+                                protocol_number,
+                                username.to_owned(),
+                                password.to_owned(),
+                            )
+                            .to_raw_protocol()
+                            .as_bytes(),
+                        )
+                        .await?;
+                }
+                Ping => {
+                    stream
+                        .write_all(ClientMessage::Pong.to_raw_protocol().as_bytes())
+                        .await?;
+                }
+                Pong => {
+                    // do nothing
+                }
+                LogonPassed => {
+                    stream
+                        .write_all(ClientMessage::CheckerReady.to_raw_protocol().as_bytes())
+                        .await?;
+                }
+                Replay(lines) => {
+                    info!("Got a replay");
+                    replay_sender.send(lines).await?;
+                }
+                Bye(message) => {
+                    warn!("Received BYE: {}", message);
+                    return Ok(());
+                }
+                ChatMsg { nick, msg } => {
+                    info!("Chat [{}]: {}", nick, msg);
+                }
+                RoomAdd(fields) => {
+                    let mut l = fields.into_iter();
+                    info!("Room added: {}", l.nth(1).unwrap());
+                }
+                RoomUpdated(name, fields) => {
+                    let mut l = fields.into_iter();
+                    let new_name = l.nth(1).unwrap();
+
+                    if name != new_name {
+                        info!("Room renamed: {}", new_name);
                     }
                 }
-            } else if msg[..].starts_with(b"BYE") {
-                warn!("Received BYE: {}", String::from_utf8_lossy(&msg[..]));
-                return Ok(());
-            } else if msg[..].starts_with(b"CHAT") {
-                let body = String::from_utf8_lossy(&msg[5..]);
-                let mut l = body.lines();
-                info!("Chat [{}]: {}", l.next().unwrap(), l.next().unwrap());
-            } else if msg[..].starts_with(b"ROOM") {
-                let body = String::from_utf8_lossy(&msg[5..]);
-                let mut l = body.lines();
-                if let Some(action) = l.next() {
-                    if action == "ADD" {
-                        info!("Room added: {}", l.skip(1).next().unwrap());
-                    }
+                RoomRemove(_) => {
+                    // ignore
                 }
-            } else if msg[..].starts_with(b"ERROR") {
-                warn!("Received ERROR: {}", String::from_utf8_lossy(&msg[..]));
-                return Ok(());
-            } else {
-                warn!(
-                    "Unknown protocol command: {}",
-                    String::from_utf8_lossy(&msg[..])
-                )
+                Error(message) => {
+                    warn!("Received ERROR: {}", message);
+                    return Ok(());
+                }
+                something => {
+                    warn!("Unexpected protocol command: {:?}", something)
+                }
             }
         }
     }
 }
 
-fn get_protocol_number(executable: &str) -> std::io::Result<u32> {
-    let output = Command::new(executable).arg("--protocol").output()?;
+async fn get_protocol_number(executable: &str) -> Result<u16> {
+    let output = Command::new(executable).arg("--protocol").output().await?;
 
-    Ok(u32::from_str(&String::from_utf8(output.stdout).unwrap().trim()).unwrap_or(55))
+    Ok(u16::from_str(String::from_utf8(output.stdout)?.trim()).unwrap_or(55))
 }
 
-fn main() {
+#[tokio::main]
+async fn main() -> Result<()> {
     stderrlog::new()
         .verbosity(3)
         .timestamp(stderrlog::Timestamp::Second)
         .module(module_path!())
-        .init()
-        .unwrap();
+        .init()?;
 
-    let mut frontend_settings = dirs::home_dir().unwrap();
+    let mut frontend_settings = dirs::home_dir().ok_or(anyhow!("Home path not detected"))?;
     frontend_settings.push(".hedgewars/settings.ini");
 
     let i = Ini::load_from_file(frontend_settings.to_str().unwrap()).unwrap();
-    let username = i.get_from(Some("net"), "nick").unwrap();
-    let password = i.get_from(Some("net"), "passwordhash").unwrap();
+    let username = i
+        .get_from(Some("net"), "nick")
+        .ok_or(anyhow!("Nickname not found in frontend config"))?;
+    let password = i
+        .get_from(Some("net"), "passwordhash")
+        .ok_or(anyhow!("Password not found in frontend config"))?;
 
     let mut exe = "/usr/local/bin/hwengine".to_string();
     let mut prefix = "/usr/local/share/hedgewars/Data".to_string();
@@ -208,29 +295,24 @@
     info!("Executable: {}", exe);
     info!("Data dir: {}", prefix);
 
-    let protocol_number = get_protocol_number(&exe.as_str()).unwrap_or_default();
+    let protocol_number = get_protocol_number(exe.as_str()).await?;
 
     info!("Using protocol number {}", protocol_number);
 
-    connect_and_run(&username, &password, protocol_number, &exe, &prefix).unwrap();
-}
+    let (replay_sender, replay_receiver) = mpsc::channel(1);
+    let (results_sender, results_receiver) = mpsc::channel(1);
 
-#[cfg(test)]
-#[test]
-fn test() {
-    let mut buf = Buf::new();
-    buf.extend(b"Hell");
-    if let Some(_) = extract_packet(&mut buf) {
-        assert!(false)
-    }
+    let (network_result, checker_result) = tokio::join!(
+        connect_and_run(
+            username,
+            password,
+            protocol_number,
+            replay_sender,
+            results_receiver
+        ),
+        check_loop(&exe, &prefix, results_sender, replay_receiver)
+    );
 
-    buf.extend(b"o\n\nWorld");
-
-    let packet2 = extract_packet(&mut buf).unwrap();
-    assert_eq!(&buf[..], b"World");
-    assert_eq!(&packet2[..], b"Hello");
-
-    if let Some(_) = extract_packet(&mut buf) {
-        assert!(false)
-    }
+    network_result?;
+    checker_result
 }
--- a/rust/hedgewars-engine-messages/Cargo.toml	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-engine-messages/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -5,6 +5,6 @@
 edition = "2018"
 
 [dependencies]
-nom = "4.1"
+nom = "7.1"
 byteorder = "1.2"
 queues = "1.1"
--- a/rust/hedgewars-engine-messages/src/messages.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-engine-messages/src/messages.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -128,7 +128,7 @@
 
 #[derive(Debug, PartialEq, Clone)]
 pub enum EngineMessage {
-    Unknown,
+    Unknown(Vec<u8>),
     Empty,
     Synced(SyncedEngineMessage, u32),
     Unsynced(UnsyncedEngineMessage),
@@ -172,7 +172,7 @@
             NextTurn => em![b'N'],
             Switch => em![b'S'],
             Timer(t) => vec![b'0' + t],
-            Slot(s) => vec![b'~' , *s],
+            Slot(s) => vec![b'~', *s],
             SetWeapon(s) => vec![b'~', *s],
             Put(x, y) => {
                 let mut v = vec![b'p'];
@@ -180,14 +180,14 @@
                 v.write_i24::<BigEndian>(*y).unwrap();
 
                 v
-            },
+            }
             CursorMove(x, y) => {
                 let mut v = vec![b'P'];
                 v.write_i24::<BigEndian>(*x).unwrap();
                 v.write_i24::<BigEndian>(*y).unwrap();
 
                 v
-            },
+            }
             HighJump => em![b'J'],
             LongJump => em![b'j'],
             Skip => em![b','],
@@ -242,7 +242,7 @@
     fn to_unwrapped(&self) -> Vec<u8> {
         use self::EngineMessage::*;
         match self {
-            Unknown => unreachable!("you're not supposed to construct such messages"),
+            Unknown(_) => unreachable!("you're not supposed to construct such messages"),
             Empty => unreachable!("you're not supposed to construct such messages"),
             Synced(SyncedEngineMessage::TimeWrap, _) => vec![b'#', 0xff, 0xff],
             Synced(msg, timestamp) => {
--- a/rust/hedgewars-engine-messages/src/parser.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-engine-messages/src/parser.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,125 +1,169 @@
+use std::str;
+
+use nom::branch::alt;
+use nom::bytes::streaming::*;
+use nom::combinator::*;
+use nom::error::{ErrorKind, ParseError};
+use nom::multi::*;
+use nom::number::streaming::*;
+use nom::sequence::{pair, preceded, terminated, tuple};
+use nom::{Err, IResult, Parser};
+
 use crate::messages::{
     ConfigEngineMessage::*, EngineMessage::*, KeystrokeAction::*, SyncedEngineMessage::*,
     UnorderedEngineMessage::*, *,
 };
-use nom::{Err::Error, *};
-use std::str;
 
-macro_rules! eof_slice (
-  ($i:expr,) => (
-    {
-      if ($i).input_len() == 0 {
-        Ok(($i, $i))
-      } else {
-        Err(Error(error_position!($i, ErrorKind::Eof::<u32>)))
-      }
+fn eof_slice<I>(i: I) -> IResult<I, I>
+where
+    I: nom::InputLength + Clone,
+{
+    if i.input_len() == 0 {
+        Ok((i.clone(), i))
+    } else {
+        Err(Err::Error(nom::error::Error::new(i, ErrorKind::Eof)))
     }
-  );
-);
+}
+fn unrecognized_message(input: &[u8]) -> IResult<&[u8], EngineMessage> {
+    map(rest, |i: &[u8]| Unknown(i.to_owned()))(input)
+}
 
-named!(unrecognized_message<&[u8], EngineMessage>,
-    do_parse!(rest >> (Unknown))
-);
+fn string_tail(input: &[u8]) -> IResult<&[u8], String> {
+    map_res(rest, str::from_utf8)(input).map(|(i, s)| (i, s.to_owned()))
+}
 
-named!(string_tail<&[u8], String>, map!(map_res!(rest, str::from_utf8), String::from));
-
-named!(length_without_timestamp<&[u8], usize>,
-    map_opt!(rest_len, |l| if l > 2 { Some(l - 2) } else { None } )
-);
+fn length_without_timestamp(input: &[u8]) -> IResult<&[u8], usize> {
+    map_opt(rest_len, |l| if l > 2 { Some(l - 2) } else { None })(input)
+}
 
-named!(synced_message<&[u8], SyncedEngineMessage>, alt!(
-        do_parse!(tag!("L") >> (Left(Press)))
-      | do_parse!(tag!("l") >> ( Left(Release) ))
-      | do_parse!(tag!("R") >> ( Right(Press) ))
-      | do_parse!(tag!("r") >> ( Right(Release) ))
-      | do_parse!(tag!("U") >> ( Up(Press) ))
-      | do_parse!(tag!("u") >> ( Up(Release) ))
-      | do_parse!(tag!("D") >> ( Down(Press) ))
-      | do_parse!(tag!("d") >> ( Down(Release) ))
-      | do_parse!(tag!("Z") >> ( Precise(Press) ))
-      | do_parse!(tag!("z") >> ( Precise(Release) ))
-      | do_parse!(tag!("A") >> ( Attack(Press) ))
-      | do_parse!(tag!("a") >> ( Attack(Release) ))
-      | do_parse!(tag!("N") >> ( NextTurn ))
-      | do_parse!(tag!("j") >> ( LongJump ))
-      | do_parse!(tag!("J") >> ( HighJump ))
-      | do_parse!(tag!("S") >> ( Switch ))
-      | do_parse!(tag!(",") >> ( Skip ))
-      | do_parse!(tag!("1") >> ( Timer(1) ))
-      | do_parse!(tag!("2") >> ( Timer(2) ))
-      | do_parse!(tag!("3") >> ( Timer(3) ))
-      | do_parse!(tag!("4") >> ( Timer(4) ))
-      | do_parse!(tag!("5") >> ( Timer(5) ))
-      | do_parse!(tag!("p") >> x: be_i24 >> y: be_i24 >> ( Put(x, y) ))
-      | do_parse!(tag!("P") >> x: be_i24 >> y: be_i24 >> ( CursorMove(x, y) ))
-      | do_parse!(tag!("f") >> s: string_tail >> ( SyncedEngineMessage::TeamControlLost(s) ))
-      | do_parse!(tag!("g") >> s: string_tail >> ( SyncedEngineMessage::TeamControlGained(s) ))
-      | do_parse!(tag!("t") >> t: be_u8 >> ( Taunt(t) ))
-      | do_parse!(tag!("w") >> w: be_u8 >> ( SetWeapon(w) ))
-      | do_parse!(tag!("~") >> s: be_u8 >> ( Slot(s) ))
-      | do_parse!(tag!("+") >> ( Heartbeat ))
-));
+fn synced_message(input: &[u8]) -> IResult<&[u8], SyncedEngineMessage> {
+    alt((
+        alt((
+            map(tag(b"L"), |_| Left(Press)),
+            map(tag(b"l"), |_| Left(Release)),
+            map(tag(b"R"), |_| Right(Press)),
+            map(tag(b"r"), |_| Right(Release)),
+            map(tag(b"U"), |_| Up(Press)),
+            map(tag(b"u"), |_| Up(Release)),
+            map(tag(b"D"), |_| Down(Press)),
+            map(tag(b"d"), |_| Down(Release)),
+            map(tag(b"Z"), |_| Precise(Press)),
+            map(tag(b"z"), |_| Precise(Release)),
+            map(tag(b"A"), |_| Attack(Press)),
+            map(tag(b"a"), |_| Attack(Release)),
+            map(tag(b"N"), |_| NextTurn),
+            map(tag(b"j"), |_| LongJump),
+            map(tag(b"J"), |_| HighJump),
+            map(tag(b"S"), |_| Switch),
+        )),
+        alt((
+            map(tag(b","), |_| Skip),
+            map(tag(b"1"), |_| Timer(1)),
+            map(tag(b"2"), |_| Timer(2)),
+            map(tag(b"3"), |_| Timer(3)),
+            map(tag(b"4"), |_| Timer(4)),
+            map(tag(b"5"), |_| Timer(5)),
+            map(tuple((tag(b"p"), be_i24, be_i24)), |(_, x, y)| Put(x, y)),
+            map(tuple((tag(b"P"), be_i24, be_i24)), |(_, x, y)| {
+                CursorMove(x, y)
+            }),
+            map(preceded(tag(b"f"), string_tail), TeamControlLost),
+            map(preceded(tag(b"g"), string_tail), TeamControlGained),
+            map(preceded(tag(b"t"), be_u8), Taunt),
+            map(preceded(tag(b"w"), be_u8), SetWeapon),
+            map(preceded(tag(b"~"), be_u8), Slot),
+            map(tag(b"+"), |_| Heartbeat),
+        )),
+    ))(input)
+}
 
-named!(unsynced_message<&[u8], UnsyncedEngineMessage>, alt!(
-        do_parse!(tag!("F") >> s: string_tail >> ( UnsyncedEngineMessage::TeamControlLost(s) ))
-      | do_parse!(tag!("G") >> s: string_tail >> ( UnsyncedEngineMessage::TeamControlGained(s) ))
-      | do_parse!(tag!("h") >> s: string_tail >> ( UnsyncedEngineMessage::HogSay(s) ))
-      | do_parse!(tag!("s") >> s: string_tail >> ( UnsyncedEngineMessage::ChatMessage(s)) )
-      | do_parse!(tag!("b") >> s: string_tail >> ( UnsyncedEngineMessage::TeamMessage(s)) ) // TODO: wtf is the format
-));
+fn unsynced_message(input: &[u8]) -> IResult<&[u8], UnsyncedEngineMessage> {
+    alt((
+        map(
+            preceded(tag(b"F"), string_tail),
+            UnsyncedEngineMessage::TeamControlLost,
+        ),
+        map(
+            preceded(tag(b"G"), string_tail),
+            UnsyncedEngineMessage::TeamControlGained,
+        ),
+        map(
+            preceded(tag(b"h"), string_tail),
+            UnsyncedEngineMessage::HogSay,
+        ),
+        map(
+            preceded(tag(b"s"), string_tail),
+            UnsyncedEngineMessage::ChatMessage,
+        ),
+        map(
+            preceded(tag(b"b"), string_tail),
+            UnsyncedEngineMessage::TeamMessage,
+        ),
+    ))(input)
+}
 
-named!(unordered_message<&[u8], UnorderedEngineMessage>, alt!(
-      do_parse!(tag!("?") >> ( Ping ))
-    | do_parse!(tag!("!") >> ( Pong ))
-    | do_parse!(tag!("E") >> s: string_tail >> ( UnorderedEngineMessage::Error(s)) )
-    | do_parse!(tag!("W") >> s: string_tail >> ( Warning(s)) )
-    | do_parse!(tag!("M") >> s: string_tail >> ( GameSetupChecksum(s)) )
-    | do_parse!(tag!("o") >> ( StopSyncing ))
-    | do_parse!(tag!("I") >> ( PauseToggled ))
-));
-
-named!(config_message<&[u8], ConfigEngineMessage>, alt!(
-    do_parse!(tag!("C") >> (ConfigRequest))
-    | do_parse!(tag!("eseed ") >> s: string_tail >> ( SetSeed(s)) )
-));
-
-named!(timestamped_message<&[u8], (SyncedEngineMessage, u16)>,
-    do_parse!(msg: length_value!(length_without_timestamp, terminated!(synced_message, eof_slice!()))
-        >> timestamp: be_u16
-        >> ((msg, timestamp))
-    )
-);
+fn unordered_message(input: &[u8]) -> IResult<&[u8], UnorderedEngineMessage> {
+    alt((
+        map(tag(b"?"), |_| Ping),
+        map(tag(b"!"), |_| Pong),
+        map(preceded(tag(b"E"), string_tail), Error),
+        map(preceded(tag(b"W"), string_tail), Warning),
+        map(preceded(tag(b"M"), string_tail), GameSetupChecksum),
+        map(tag(b"o"), |_| StopSyncing),
+        map(tag(b"I"), |_| PauseToggled),
+    ))(input)
+}
 
-named!(unwrapped_message<&[u8], EngineMessage>,
-    alt!(
-        map!(timestamped_message, |(m, t)| Synced(m, t as u32))
-        | do_parse!(tag!("#") >> (Synced(TimeWrap, 65535)))
-        | map!(unordered_message, |m| Unordered(m))
-        | map!(unsynced_message, |m| Unsynced(m))
-        | map!(config_message, |m| Config(m))
-        | unrecognized_message
-));
+fn config_message(input: &[u8]) -> IResult<&[u8], ConfigEngineMessage> {
+    alt((
+        map(tag(b"C"), |_| ConfigRequest),
+        map(preceded(tag(b"eseed "), string_tail), SetSeed),
+        map(preceded(tag(b"e$feature_size "), string_tail), |s| {
+            SetFeatureSize(s.parse().unwrap_or_default())
+        }),
+    ))(input)
+}
 
-named!(length_specifier<&[u8], u16>, alt!(
-    verify!(map!(take!(1), |a : &[u8]| a[0] as u16), |l| l < 64)
-    | map!(take!(2), |a| (a[0] as u16 - 64) * 256 + a[1] as u16 + 64)
-    )
-);
-
-named!(empty_message<&[u8], EngineMessage>,
-    do_parse!(tag!("\0") >> (Empty))
-);
+fn timestamped_message(input: &[u8]) -> IResult<&[u8], (SyncedEngineMessage, u16)> {
+    terminated(pair(synced_message, be_u16), eof_slice)(input)
+}
+fn unwrapped_message(input: &[u8]) -> IResult<&[u8], EngineMessage> {
+    alt((
+        map(timestamped_message, |(m, t)| {
+            EngineMessage::Synced(m, t as u32)
+        }),
+        map(tag(b"#"), |_| Synced(TimeWrap, 65535u32)),
+        map(unordered_message, Unordered),
+        map(unsynced_message, Unsynced),
+        map(config_message, Config),
+        unrecognized_message,
+    ))(input)
+}
 
-named!(non_empty_message<&[u8], EngineMessage>,
-    length_value!(length_specifier, terminated!(unwrapped_message, eof_slice!())));
+fn length_specifier(input: &[u8]) -> IResult<&[u8], u16> {
+    alt((
+        verify(map(take(1usize), |a: &[u8]| a[0] as u16), |&l| l < 64),
+        map(take(2usize), |a: &[u8]| {
+            (a[0] as u16 - 64) * 256 + a[1] as u16 + 64
+        }),
+    ))(input)
+}
 
-named!(message<&[u8], EngineMessage>, alt!(
-      empty_message
-    | non_empty_message
-    )
-);
+fn empty_message(input: &[u8]) -> IResult<&[u8], EngineMessage> {
+    map(tag(b"\0"), |_| Empty)(input)
+}
+
+fn non_empty_message(input: &[u8]) -> IResult<&[u8], EngineMessage> {
+    map_parser(length_data(length_specifier), unwrapped_message)(input)
+}
 
-named!(pub extract_messages<&[u8], Vec<EngineMessage> >, many0!(complete!(message)));
+fn message(input: &[u8]) -> IResult<&[u8], EngineMessage> {
+    alt((empty_message, non_empty_message))(input)
+}
+
+pub fn extract_messages(input: &[u8]) -> IResult<&[u8], Vec<EngineMessage>> {
+    many0(complete(message))(input)
+}
 
 pub fn extract_message(buf: &[u8]) -> Option<(usize, EngineMessage)> {
     let parse_result = message(buf);
@@ -177,10 +221,13 @@
     #[test]
     fn parse_incorrect_messages() {
         assert_eq!(message(b"\x00"), Ok((&b""[..], Empty)));
-        assert_eq!(message(b"\x01\x00"), Ok((&b""[..], Unknown)));
+        assert_eq!(message(b"\x01\x00"), Ok((&b""[..], Unknown(vec![0]))));
 
         // garbage after correct message
-        assert_eq!(message(b"\x04La\x01\x02"), Ok((&b""[..], Unknown)));
+        assert_eq!(
+            message(b"\x04La\x01\x02"),
+            Ok((&b""[..], Unknown(vec![76, 97, 1, 2])))
+        );
     }
 
     #[test]
@@ -193,6 +240,9 @@
         assert_eq!(string_tail(b"abc"), Ok((&b""[..], String::from("abc"))));
 
         assert_eq!(extract_message(b"\x02#"), None);
+
+        assert_eq!(synced_message(b"L"), Ok((&b""[..], Left(Press))));
+
         assert_eq!(
             extract_message(b"\x01#"),
             Some((2, Synced(TimeWrap, 65535)))
--- a/rust/hedgewars-engine/Cargo.toml	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-engine/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -7,4 +7,4 @@
 [dependencies]
 lib-hedgewars-engine = { path = "../lib-hedgewars-engine" }
 libloading = "0.5.0"
-
+getopts = "0.2"
--- a/rust/hedgewars-engine/src/main.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-engine/src/main.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -2,13 +2,81 @@
 
 use libloading::{Library, Symbol};
 use std::ops::Deref;
+use std::cmp::{min,max};
+use std::env;
+use getopts::Options;
+use std::io::prelude::*;
+use std::io::{self, Read};
+use std::net::{Shutdown, TcpStream};
 
 struct EngineInstance {}
 
 struct Engine<'a> {
     protocol_version: Symbol<'a, unsafe fn() -> u32>,
     start_engine: Symbol<'a, unsafe fn() -> *mut EngineInstance>,
+    generate_preview: Symbol<'a, unsafe fn(engine_state: &mut EngineInstance, preview: &mut PreviewInfo)>,
+    dispose_preview: Symbol<'a, unsafe fn(engine_state: &mut EngineInstance, preview: &mut PreviewInfo)>,
     cleanup: Symbol<'a, unsafe fn(engine_state: *mut EngineInstance)>,
+    send_ipc: Symbol<'a, unsafe fn(engine_state: &mut EngineInstance, buf: *const u8, size: usize)>,
+    read_ipc: Symbol<'a, unsafe fn(engine_state: &mut EngineInstance, buf: *mut u8, size: usize) -> usize>,
+}
+
+#[repr(C)]
+#[derive(Copy, Clone)]
+struct PreviewInfo {
+  width: u32,
+  height: u32,
+  hedgehogs_number: u8,
+  land: *const u8,
+}
+
+const PREVIEW_WIDTH: u32 = 256;
+const PREVIEW_HEIGHT: u32 = 128;
+const PREVIEW_NPIXELS: usize = (PREVIEW_WIDTH * PREVIEW_HEIGHT) as usize;
+const SCALE_FACTOR: u32 = 16;
+const VALUE_PER_INPIXEL: u8 = 1;
+
+/// Resizes the land preview from the library into appropriate format for --preview command.
+///
+/// # Arguments
+///
+/// * `mono_pixels` - Raw pixels of a land preview (monochrome, 0 = empty, else = filled)
+/// * `in_width` - Width of the preview stored in `mono_pixels`
+/// * `in_height` - Height of the preview stored in `mono_pixels`
+/// * `preview_pixels` - Used as **output** for a resized and (kinda) anti-aliased grayscale preview
+fn resize_mono_preview(mono_pixels: &[u8], in_width: u32, in_height: u32, preview_pixels: &mut [u8]) {
+
+    assert!(mono_pixels.len() == (in_width * in_height) as usize);
+
+    let v_offset: u32 = max(0, PREVIEW_HEIGHT as i64 - (in_height / SCALE_FACTOR) as i64) as u32;
+    let h_offset: u32 = max(0, (PREVIEW_WIDTH as i64 / 2) - (in_width / SCALE_FACTOR / 2) as i64) as u32;
+
+    for y in v_offset..PREVIEW_HEIGHT {
+
+        let in_y = v_offset + (y * SCALE_FACTOR);
+
+        for x in h_offset..(PREVIEW_WIDTH - h_offset) {
+
+            let in_x = h_offset + (x * SCALE_FACTOR);
+
+            let out_px_address = (PREVIEW_WIDTH * y + x) as usize;
+
+            let mut in_px_address = (in_width * in_y + in_x) as usize;
+
+            let mut value = 0;
+
+            for i in 0..SCALE_FACTOR as usize {
+                for j in 0..SCALE_FACTOR as usize {
+                    if (value < 0xff) && (mono_pixels[in_px_address + j] != 0) {
+                        value += VALUE_PER_INPIXEL;
+                    }
+                }
+                in_px_address += in_width as usize;
+            }
+
+            preview_pixels[out_px_address] = value;
+        }
+    }
 }
 
 fn main() {
@@ -16,11 +84,104 @@
 
     unsafe {
         let engine = Engine {
-            protocol_version: hwlib.get(b"protocol_version").unwrap(),
+            protocol_version: hwlib.get(b"hedgewars_engine_protocol_version").unwrap(),
             start_engine: hwlib.get(b"start_engine").unwrap(),
+            generate_preview: hwlib.get(b"generate_preview").unwrap(),
+            dispose_preview: hwlib.get(b"dispose_preview").unwrap(),
             cleanup: hwlib.get(b"cleanup").unwrap(),
+            send_ipc: hwlib.get(b"send_ipc").unwrap(),
+            read_ipc: hwlib.get(b"read_ipc").unwrap(),
         };
 
         println!("Hedgewars engine, protocol version {}", engine.protocol_version.deref()());
+
+        let args: Vec<String> = env::args().collect();
+
+        let mut opts = getopts::Options::new();
+        opts.optflag("", "internal", "[internal]");
+        opts.optflag("", "landpreview", "[internal]");
+        opts.optflag("", "recorder", "[internal]");
+        opts.optopt("", "port", "[internal]", "PORT");
+        opts.optopt("", "user-prefix", "Set the path to the custom data folder to find game content", "PATH_TO_FOLDER");
+        opts.optopt("", "prefix", "Set the path to the system game data folder", "PATH_TO_FOLDER");
+
+        let matches = match opts.parse(&args[1..]) {
+            Ok(m) => { m }
+            Err(f) => { panic!(f.to_string()) }
+        };
+
+        let engine_state = &mut *engine.start_engine.deref()();
+
+        let port: String = matches.opt_str("port").expect("Need IPC port number!");
+
+        println!("PORT: {}", port);
+
+        if matches.opt_present("landpreview") {
+
+            let mut stream = TcpStream::connect(format!("127.0.0.1:{}", port)).expect("Failed to connect to IPC port. Feelsbadman.");
+
+            //stream.write(b"\x01C").unwrap(); // config
+            //stream.write(b"\x01?").unwrap(); // ping
+
+            let mut buf = [0;1];
+            loop {
+                let bytes_read = stream.read(&mut buf).unwrap();
+                if bytes_read == 0 {
+                    break;
+                }
+                engine.send_ipc.deref()(engine_state, &buf[0], buf.len());
+                // this looks like length 1 is being announced
+                if buf[0] == 1 {
+                    let bytes_read = stream.read(&mut buf).unwrap();
+                    if bytes_read == 0 {
+                        break;
+                    }
+                    if buf[0] == 33 {
+                        println!("Ping? Pong!");
+                        break;
+                    }
+                }
+            };
+
+            let preview_info = &mut PreviewInfo {
+                width: 0,
+                height: 0,
+                hedgehogs_number: 0,
+                land: std::ptr::null(),
+            };
+
+            println!("Generating preview...");
+
+            engine.generate_preview.deref()(engine_state, preview_info);
+
+            //println!("Preview: w = {}, h = {}, n = {}", preview_info.width, preview_info.height, preview_info.hedgehogs_number);
+
+            let land_size: usize = (preview_info.width * preview_info.height) as usize;
+
+            let land_array: &[u8] = std::slice::from_raw_parts(preview_info.land, land_size);
+
+            const PREVIEW_WIDTH: u32 = 256;
+            const PREVIEW_HEIGHT: u32 = 128;
+
+            println!("Resizing preview...");
+
+            let preview_image: &mut [u8] = &mut [0; PREVIEW_NPIXELS];
+            resize_mono_preview(land_array, preview_info.width, preview_info.height, preview_image);
+
+            println!("Sending preview...");
+
+            stream.write(preview_image).unwrap();
+            stream.flush().unwrap();
+            stream.write(&[preview_info.hedgehogs_number]).unwrap();
+            stream.flush().unwrap();
+
+            println!("Preview sent, disconnect");
+
+            stream.shutdown(Shutdown::Both).expect("IPC shutdown call failed");
+
+            engine.dispose_preview.deref()(engine_state, preview_info);
+        }
+
+        engine.cleanup.deref()(engine_state);
     }
 }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-network-protocol/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,13 @@
+[package]
+name = "hedgewars-network-protocol"
+version = "0.1.0"
+authors = ["Andrey Korotaev <a.korotaev@hedgewars.org>"]
+edition = "2021"
+
+[dependencies]
+nom = "7.1"
+serde_derive = "1.0"
+serde = "1.0"
+
+[dev-dependencies]
+proptest = "1.0"
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-network-protocol/src/lib.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,5 @@
+pub mod messages;
+pub mod parser;
+#[cfg(test)]
+mod tests;
+pub mod types;
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-network-protocol/src/messages.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,423 @@
+use crate::types::{GameCfg, ServerVar, TeamInfo, VoteType};
+use std::iter::once;
+
+#[derive(PartialEq, Eq, Clone, Debug)]
+pub enum HwProtocolMessage {
+    // common messages
+    Ping,
+    Pong,
+    Quit(Option<String>),
+    Global(String),
+    Watch(u32),
+    ToggleServerRegisteredOnly,
+    SuperPower,
+    Info(String),
+    // anteroom messages
+    Nick(String),
+    Proto(u16),
+    Password(String, String),
+    Checker(u16, String, String),
+    // lobby messages
+    List,
+    Chat(String),
+    CreateRoom(String, Option<String>),
+    JoinRoom(String, Option<String>),
+    Follow(String),
+    Rnd(Vec<String>),
+    Kick(String),
+    Ban(String, String, u32),
+    BanIp(String, String, u32),
+    BanNick(String, String, u32),
+    BanList,
+    Unban(String),
+    SetServerVar(ServerVar),
+    GetServerVar,
+    RestartServer,
+    Stats,
+    // room messages
+    Part(Option<String>),
+    Cfg(GameCfg),
+    AddTeam(Box<TeamInfo>),
+    RemoveTeam(String),
+    SetHedgehogsNumber(String, u8),
+    SetTeamColor(String, u8),
+    ToggleReady,
+    StartGame,
+    EngineMessage(String),
+    RoundFinished,
+    ToggleRestrictJoin,
+    ToggleRestrictTeams,
+    ToggleRegisteredOnly,
+    RoomName(String),
+    Delegate(String),
+    TeamChat(String),
+    MaxTeams(u8),
+    Fix,
+    Unfix,
+    Greeting(Option<String>),
+    CallVote(Option<VoteType>),
+    Vote(bool),
+    ForceVote(bool),
+    Save(String, String),
+    Delete(String),
+    SaveRoom(String),
+    LoadRoom(String),
+    CheckerReady,
+    CheckedOk(Vec<String>),
+    CheckedFail(String),
+}
+
+#[derive(Debug, Clone, Copy)]
+pub enum ProtocolFlags {
+    InRoom,
+    RoomMaster,
+    Ready,
+    InGame,
+    Registered,
+    Admin,
+    Contributor,
+}
+
+impl ProtocolFlags {
+    #[inline]
+    fn flag_char(&self) -> char {
+        match self {
+            ProtocolFlags::InRoom => 'i',
+            ProtocolFlags::RoomMaster => 'h',
+            ProtocolFlags::Ready => 'r',
+            ProtocolFlags::InGame => 'g',
+            ProtocolFlags::Registered => 'u',
+            ProtocolFlags::Admin => 'a',
+            ProtocolFlags::Contributor => 'c',
+        }
+    }
+
+    #[inline]
+    fn format(prefix: char, flags: &[ProtocolFlags]) -> String {
+        once(prefix)
+            .chain(flags.iter().map(|f| f.flag_char()))
+            .collect()
+    }
+}
+
+#[inline]
+pub fn add_flags(flags: &[ProtocolFlags]) -> String {
+    ProtocolFlags::format('+', flags)
+}
+
+#[inline]
+pub fn remove_flags(flags: &[ProtocolFlags]) -> String {
+    ProtocolFlags::format('-', flags)
+}
+
+#[derive(PartialEq, Eq, Clone, Debug)]
+pub enum HwServerMessage {
+    Connected(String, u32),
+    Redirect(u16),
+
+    Ping,
+    Pong,
+    Bye(String),
+
+    Nick(String),
+    Proto(u16),
+    AskPassword(String),
+    ServerAuth(String),
+    LogonPassed,
+
+    LobbyLeft(String, String),
+    LobbyJoined(Vec<String>),
+    ChatMsg { nick: String, msg: String },
+    ClientFlags(String, Vec<String>),
+    Rooms(Vec<String>),
+    RoomAdd(Vec<String>),
+    RoomJoined(Vec<String>),
+    RoomLeft(String, String),
+    RoomRemove(String),
+    RoomUpdated(String, Vec<String>),
+    Joining(String),
+    TeamAdd(Vec<String>),
+    TeamRemove(String),
+    TeamAccepted(String),
+    TeamColor(String, u8),
+    HedgehogsNumber(String, u8),
+    ConfigEntry(String, Vec<String>),
+    Kicked,
+    RunGame,
+    ForwardEngineMessage(Vec<String>),
+    RoundFinished,
+    ReplayStart,
+
+    Info(Vec<String>),
+    ServerMessage(String),
+    ServerVars(Vec<String>),
+    Notice(String),
+    Warning(String),
+    Error(String),
+
+    Replay(Vec<String>),
+
+    //Deprecated messages
+    LegacyReady(bool, Vec<String>),
+}
+
+fn special_chat(nick: &str, msg: String) -> HwServerMessage {
+    HwServerMessage::ChatMsg {
+        nick: nick.to_string(),
+        msg,
+    }
+}
+
+pub fn server_chat(msg: String) -> HwServerMessage {
+    special_chat("[server]", msg)
+}
+
+pub fn global_chat(msg: String) -> HwServerMessage {
+    special_chat("(global notice)", msg)
+}
+
+impl ServerVar {
+    pub fn to_protocol(&self) -> Vec<String> {
+        use ServerVar::*;
+        match self {
+            MOTDNew(s) => vec!["MOTD_NEW".to_string(), s.clone()],
+            MOTDOld(s) => vec!["MOTD_OLD".to_string(), s.clone()],
+            LatestProto(n) => vec!["LATEST_PROTO".to_string(), n.to_string()],
+        }
+    }
+}
+
+impl VoteType {
+    pub fn to_protocol(&self) -> Vec<String> {
+        use VoteType::*;
+        match self {
+            Kick(nick) => vec!["KICK".to_string(), nick.clone()],
+            Map(None) => vec!["MAP".to_string()],
+            Map(Some(name)) => vec!["MAP".to_string(), name.clone()],
+            Pause => vec!["PAUSE".to_string()],
+            NewSeed => vec!["NEWSEED".to_string()],
+            HedgehogsPerTeam(count) => vec!["HEDGEHOGS".to_string(), count.to_string()],
+        }
+    }
+}
+
+impl GameCfg {
+    pub fn to_protocol(&self) -> (String, Vec<String>) {
+        use GameCfg::*;
+        match self {
+            FeatureSize(s) => ("FEATURE_SIZE".to_string(), vec![s.to_string()]),
+            MapType(t) => ("MAP".to_string(), vec![t.to_string()]),
+            MapGenerator(g) => ("MAPGEN".to_string(), vec![g.to_string()]),
+            MazeSize(s) => ("MAZE_SIZE".to_string(), vec![s.to_string()]),
+            Seed(s) => ("SEED".to_string(), vec![s.to_string()]),
+            Template(t) => ("TEMPLATE".to_string(), vec![t.to_string()]),
+
+            Ammo(n, None) => ("AMMO".to_string(), vec![n.to_string()]),
+            Ammo(n, Some(s)) => ("AMMO".to_string(), vec![n.to_string(), s.to_string()]),
+            Scheme(n, s) if s.is_empty() => ("SCHEME".to_string(), vec![n.to_string()]),
+            Scheme(n, s) => ("SCHEME".to_string(), {
+                let mut v = vec![n.to_string()];
+                v.extend(s.clone());
+                v
+            }),
+            Script(s) => ("SCRIPT".to_string(), vec![s.to_string()]),
+            Theme(t) => ("THEME".to_string(), vec![t.to_string()]),
+            DrawnMap(m) => ("DRAWNMAP".to_string(), vec![m.to_string()]),
+        }
+    }
+
+    pub fn to_server_msg(&self) -> HwServerMessage {
+        let (name, args) = self.to_protocol();
+        HwServerMessage::ConfigEntry(name, args)
+    }
+}
+
+impl TeamInfo {
+    pub fn to_protocol(&self) -> Vec<String> {
+        let mut info = vec![
+            self.name.clone(),
+            self.grave.clone(),
+            self.fort.clone(),
+            self.voice_pack.clone(),
+            self.flag.clone(),
+            self.owner.clone(),
+            self.difficulty.to_string(),
+        ];
+        let hogs = self
+            .hedgehogs
+            .iter()
+            .flat_map(|h| once(h.name.clone()).chain(once(h.hat.clone())));
+        info.extend(hogs);
+        info
+    }
+}
+
+macro_rules! const_braces {
+    ($e: expr) => {
+        "{}\n"
+    };
+}
+
+macro_rules! msg {
+    [$($part: expr),*] => {
+        format!(concat!($(const_braces!($part)),*, "\n"), $($part),*)
+    };
+}
+
+impl HwProtocolMessage {
+    /** Converts the message to a raw `String`, which can be sent over the network.
+     *
+     * This is the inverse of the `message` parser.
+     */
+    pub fn to_raw_protocol(&self) -> String {
+        use self::HwProtocolMessage::*;
+        match self {
+            Ping => msg!["PING"],
+            Pong => msg!["PONG"],
+            Quit(None) => msg!["QUIT"],
+            Quit(Some(msg)) => msg!["QUIT", msg],
+            Global(msg) => msg!["CMD", format!("GLOBAL {}", msg)],
+            Watch(name) => msg!["CMD", format!("WATCH {}", name)],
+            ToggleServerRegisteredOnly => msg!["CMD", "REGISTERED_ONLY"],
+            SuperPower => msg!["CMD", "SUPER_POWER"],
+            Info(info) => msg!["CMD", format!("INFO {}", info)],
+            Nick(nick) => msg!("NICK", nick),
+            Proto(version) => msg!["PROTO", version],
+            Password(p, s) => msg!["PASSWORD", p, s],
+            Checker(i, n, p) => msg!["CHECKER", i, n, p],
+            List => msg!["LIST"],
+            Chat(msg) => msg!["CHAT", msg],
+            CreateRoom(name, None) => msg!["CREATE_ROOM", name],
+            CreateRoom(name, Some(password)) => msg!["CREATE_ROOM", name, password],
+            JoinRoom(name, None) => msg!["JOIN_ROOM", name],
+            JoinRoom(name, Some(password)) => msg!["JOIN_ROOM", name, password],
+            Follow(name) => msg!["FOLLOW", name],
+            Rnd(args) => {
+                if args.is_empty() {
+                    msg!["CMD", "RND"]
+                } else {
+                    msg!["CMD", format!("RND {}", args.join(" "))]
+                }
+            }
+            Kick(name) => msg!["KICK", name],
+            Ban(name, reason, time) => msg!["BAN", name, reason, time],
+            BanIp(ip, reason, time) => msg!["BAN_IP", ip, reason, time],
+            BanNick(nick, reason, time) => msg!("BAN_NICK", nick, reason, time),
+            BanList => msg!["BANLIST"],
+            Unban(name) => msg!["UNBAN", name],
+            SetServerVar(var) => construct_message(&["SET_SERVER_VAR"], &var.to_protocol()),
+            GetServerVar => msg!["GET_SERVER_VAR"],
+            RestartServer => msg!["CMD", "RESTART_SERVER YES"],
+            Stats => msg!["CMD", "STATS"],
+            Part(None) => msg!["PART"],
+            Part(Some(msg)) => msg!["PART", msg],
+            Cfg(config) => {
+                let (name, args) = config.to_protocol();
+                msg!["CFG", name, args.join("\n")]
+            }
+            AddTeam(info) => msg![
+                "ADD_TEAM",
+                info.name,
+                info.color,
+                info.grave,
+                info.fort,
+                info.voice_pack,
+                info.flag,
+                info.difficulty,
+                &(info.hedgehogs.iter())
+                    .flat_map(|h| [&h.name[..], &h.hat[..]])
+                    .collect::<Vec<_>>()
+                    .join("\n")
+            ],
+            RemoveTeam(name) => msg!["REMOVE_TEAM", name],
+            SetHedgehogsNumber(team, number) => msg!["HH_NUM", team, number],
+            SetTeamColor(team, color) => msg!["TEAM_COLOR", team, color],
+            ToggleReady => msg!["TOGGLE_READY"],
+            StartGame => msg!["START_GAME"],
+            EngineMessage(msg) => msg!["EM", msg],
+            RoundFinished => msg!["ROUNDFINISHED"],
+            ToggleRestrictJoin => msg!["TOGGLE_RESTRICT_JOINS"],
+            ToggleRestrictTeams => msg!["TOGGLE_RESTRICT_TEAMS"],
+            ToggleRegisteredOnly => msg!["TOGGLE_REGISTERED_ONLY"],
+            RoomName(name) => msg!["ROOM_NAME", name],
+            Delegate(name) => msg!["CMD", format!("DELEGATE {}", name)],
+            TeamChat(msg) => msg!["TEAMCHAT", msg],
+            MaxTeams(count) => msg!["CMD", format!("MAXTEAMS {}", count)],
+            Fix => msg!["CMD", "FIX"],
+            Unfix => msg!["CMD", "UNFIX"],
+            Greeting(None) => msg!["CMD", "GREETING"],
+            Greeting(Some(msg)) => msg!["CMD", format!("GREETING {}", msg)],
+            CallVote(None) => msg!["CMD", "CALLVOTE"],
+            CallVote(Some(vote)) => {
+                msg!["CMD", format!("CALLVOTE {}", &vote.to_protocol().join(" "))]
+            }
+            Vote(msg) => msg!["CMD", format!("VOTE {}", if *msg { "YES" } else { "NO" })],
+            ForceVote(msg) => msg!["CMD", format!("FORCE {}", if *msg { "YES" } else { "NO" })],
+            Save(name, location) => msg!["CMD", format!("SAVE {} {}", name, location)],
+            Delete(name) => msg!["CMD", format!("DELETE {}", name)],
+            SaveRoom(name) => msg!["CMD", format!("SAVEROOM {}", name)],
+            LoadRoom(name) => msg!["CMD", format!("LOADROOM {}", name)],
+            CheckerReady => msg!["READY"],
+            CheckedOk(args) => msg!["CHECKED", "OK", args.join("\n")],
+            CheckedFail(message) => msg!["CHECKED", "FAIL", message],
+        }
+    }
+}
+
+fn construct_message(header: &[&str], msg: &[String]) -> String {
+    let mut v: Vec<_> = header.iter().cloned().collect();
+    v.extend(msg.iter().map(|s| &s[..]));
+    v.push("\n");
+    v.join("\n")
+}
+
+impl HwServerMessage {
+    pub fn to_raw_protocol(&self) -> String {
+        use self::HwServerMessage::*;
+        match self {
+            Ping => msg!["PING"],
+            Pong => msg!["PONG"],
+            Connected(message, protocol_version) => msg!["CONNECTED", message, protocol_version],
+            Redirect(port) => msg!["REDIRECT", port],
+            Bye(msg) => msg!["BYE", msg],
+            Nick(nick) => msg!["NICK", nick],
+            Proto(proto) => msg!["PROTO", proto],
+            AskPassword(salt) => msg!["ASKPASSWORD", salt],
+            ServerAuth(hash) => msg!["SERVER_AUTH", hash],
+            LogonPassed => msg!["LOGONPASSED"],
+            LobbyLeft(nick, msg) => msg!["LOBBY:LEFT", nick, msg],
+            LobbyJoined(nicks) => construct_message(&["LOBBY:JOINED"], &nicks),
+            ClientFlags(flags, nicks) => construct_message(&["CLIENT_FLAGS", flags], &nicks),
+            Rooms(info) => construct_message(&["ROOMS"], &info),
+            RoomAdd(info) => construct_message(&["ROOM", "ADD"], &info),
+            RoomJoined(nicks) => construct_message(&["JOINED"], &nicks),
+            RoomLeft(nick, msg) => msg!["LEFT", nick, msg],
+            RoomRemove(name) => msg!["ROOM", "DEL", name],
+            RoomUpdated(name, info) => construct_message(&["ROOM", "UPD", name], &info),
+            Joining(name) => msg!["JOINING", name],
+            TeamAdd(info) => construct_message(&["ADD_TEAM"], &info),
+            TeamRemove(name) => msg!["REMOVE_TEAM", name],
+            TeamAccepted(name) => msg!["TEAM_ACCEPTED", name],
+            TeamColor(name, color) => msg!["TEAM_COLOR", name, color],
+            HedgehogsNumber(name, number) => msg!["HH_NUM", name, number],
+            ConfigEntry(name, values) => construct_message(&["CFG", name], &values),
+            Kicked => msg!["KICKED"],
+            RunGame => msg!["RUN_GAME"],
+            ForwardEngineMessage(em) => construct_message(&["EM"], &em),
+            RoundFinished => msg!["ROUND_FINISHED"],
+            ChatMsg { nick, msg } => msg!["CHAT", nick, msg],
+            Info(info) => construct_message(&["INFO"], &info),
+            ServerMessage(msg) => msg!["SERVER_MESSAGE", msg],
+            ServerVars(vars) => construct_message(&["SERVER_VARS"], &vars),
+            Notice(msg) => msg!["NOTICE", msg],
+            Warning(msg) => msg!["WARNING", msg],
+            Error(msg) => msg!["ERROR", msg],
+            ReplayStart => msg!["REPLAY_START"],
+            Replay(em) => construct_message(&["REPLAY"], &em),
+
+            LegacyReady(is_ready, nicks) => {
+                construct_message(&[if *is_ready { "READY" } else { "NOT_READY" }], &nicks)
+            }
+        }
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-network-protocol/src/parser.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,675 @@
+/** The parsers for the chat and multiplayer protocol. The main parser is `message`.
+ * # Protocol
+ * All messages consist of `\n`-separated strings. The end of a message is
+ * indicated by a double newline - `\n\n`.
+ *
+ * For example, a nullary command like PING will be actually sent as `PING\n\n`.
+ * A unary command, such as `START_GAME nick` will be actually sent as `START_GAME\nnick\n\n`.
+ */
+use nom::{
+    branch::alt,
+    bytes::complete::{tag, tag_no_case, take_until, take_while},
+    character::complete::{newline, not_line_ending},
+    combinator::{map, peek},
+    error::{ErrorKind, ParseError},
+    multi::separated_list0,
+    sequence::{delimited, pair, preceded, terminated, tuple},
+    Err, IResult, Parser
+};
+
+use std::{
+    num::ParseIntError,
+    str,
+    str::{FromStr, Utf8Error},
+};
+
+use crate::{
+    messages::{HwProtocolMessage, HwProtocolMessage::*, HwServerMessage},
+    types::{GameCfg, HedgehogInfo, ServerVar, TeamInfo, VoteType},
+};
+
+#[derive(Debug, PartialEq)]
+pub struct HwProtocolError {}
+
+impl HwProtocolError {
+    pub fn new() -> Self {
+        HwProtocolError {}
+    }
+}
+
+impl<I> ParseError<I> for HwProtocolError {
+    fn from_error_kind(_input: I, _kind: ErrorKind) -> Self {
+        HwProtocolError::new()
+    }
+
+    fn append(_input: I, _kind: ErrorKind, _other: Self) -> Self {
+        HwProtocolError::new()
+    }
+}
+
+impl From<Utf8Error> for HwProtocolError {
+    fn from(_: Utf8Error) -> Self {
+        HwProtocolError::new()
+    }
+}
+
+impl From<ParseIntError> for HwProtocolError {
+    fn from(_: ParseIntError) -> Self {
+        HwProtocolError::new()
+    }
+}
+
+pub type HwResult<'a, O> = IResult<&'a [u8], O, HwProtocolError>;
+
+fn end_of_message(input: &[u8]) -> HwResult<&[u8]> {
+    tag("\n\n")(input)
+}
+
+fn convert_utf8(input: &[u8]) -> HwResult<&str> {
+    match str::from_utf8(input) {
+        Ok(str) => Ok((b"", str)),
+        Err(utf_err) => Result::Err(Err::Failure(utf_err.into())),
+    }
+}
+
+fn convert_from_str<T>(str: &str) -> HwResult<T>
+where
+    T: FromStr<Err = ParseIntError>,
+{
+    match T::from_str(str) {
+        Ok(x) => Ok((b"", x)),
+        Err(format_err) => Result::Err(Err::Failure(format_err.into())),
+    }
+}
+
+fn str_line(input: &[u8]) -> HwResult<&str> {
+    let (i, text) = not_line_ending(<&[u8]>::clone(&input))?;
+    if i != input {
+        Ok((i, convert_utf8(text)?.1))
+    } else {
+        Err(Err::Error(HwProtocolError::new()))
+    }
+}
+
+fn a_line(input: &[u8]) -> HwResult<String> {
+    map(str_line, String::from)(input)
+}
+
+fn cmd_arg(input: &[u8]) -> HwResult<String> {
+    let delimiters = b" \n";
+    let (i, str) = take_while(move |c| !delimiters.contains(&c))(<&[u8]>::clone(&input))?;
+    if i != input {
+        Ok((i, convert_utf8(str)?.1.to_string()))
+    } else {
+        Err(Err::Error(HwProtocolError::new()))
+    }
+}
+
+fn u8_line(input: &[u8]) -> HwResult<u8> {
+    let (i, str) = str_line(input)?;
+    Ok((i, convert_from_str(str)?.1))
+}
+
+fn u16_line(input: &[u8]) -> HwResult<u16> {
+    let (i, str) = str_line(input)?;
+    Ok((i, convert_from_str(str)?.1))
+}
+
+fn u32_line(input: &[u8]) -> HwResult<u32> {
+    let (i, str) = str_line(input)?;
+    Ok((i, convert_from_str(str)?.1))
+}
+
+fn yes_no_line(input: &[u8]) -> HwResult<bool> {
+    alt((
+        map(tag_no_case(b"YES"), |_| true),
+        map(tag_no_case(b"NO"), |_| false),
+    ))(input)
+}
+
+fn opt_arg(input: &[u8]) -> HwResult<Option<String>> {
+    alt((
+        map(peek(end_of_message), |_| None),
+        map(preceded(tag("\n"), a_line), Some),
+    ))(input)
+}
+
+fn spaces(input: &[u8]) -> HwResult<&[u8]> {
+    preceded(tag(" "), take_while(|c| c == b' '))(input)
+}
+
+fn opt_space_arg(input: &[u8]) -> HwResult<Option<String>> {
+    alt((
+        map(peek(end_of_message), |_| None),
+        map(preceded(spaces, a_line), Some),
+    ))(input)
+}
+
+fn hedgehog_array(input: &[u8]) -> HwResult<[HedgehogInfo; 8]> {
+    fn hedgehog_line(input: &[u8]) -> HwResult<HedgehogInfo> {
+        map(
+            tuple((terminated(a_line, newline), a_line)),
+            |(name, hat)| HedgehogInfo { name, hat },
+        )(input)
+    }
+
+    let (i, (h1, h2, h3, h4, h5, h6, h7, h8)) = tuple((
+        terminated(hedgehog_line, newline),
+        terminated(hedgehog_line, newline),
+        terminated(hedgehog_line, newline),
+        terminated(hedgehog_line, newline),
+        terminated(hedgehog_line, newline),
+        terminated(hedgehog_line, newline),
+        terminated(hedgehog_line, newline),
+        hedgehog_line,
+    ))(input)?;
+
+    Ok((i, [h1, h2, h3, h4, h5, h6, h7, h8]))
+}
+
+fn voting(input: &[u8]) -> HwResult<VoteType> {
+    alt((
+        map(tag_no_case("PAUSE"), |_| VoteType::Pause),
+        map(tag_no_case("NEWSEED"), |_| VoteType::NewSeed),
+        map(
+            preceded(pair(tag_no_case("KICK"), spaces), a_line),
+            VoteType::Kick,
+        ),
+        map(
+            preceded(pair(tag_no_case("HEDGEHOGS"), spaces), u8_line),
+            VoteType::HedgehogsPerTeam,
+        ),
+        map(preceded(tag_no_case("MAP"), opt_space_arg), VoteType::Map),
+    ))(input)
+}
+
+fn no_arg_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
+    fn message(
+        name: &str,
+        msg: HwProtocolMessage,
+    ) -> impl Fn(&[u8]) -> HwResult<HwProtocolMessage> + '_ {
+        move |i| map(tag(name), |_| msg.clone())(i)
+    }
+
+    alt((
+        message("PING", Ping),
+        message("PONG", Pong),
+        message("LIST", List),
+        message("BANLIST", BanList),
+        message("GET_SERVER_VAR", GetServerVar),
+        message("TOGGLE_READY", ToggleReady),
+        message("START_GAME", StartGame),
+        message("TOGGLE_RESTRICT_JOINS", ToggleRestrictJoin),
+        message("TOGGLE_RESTRICT_TEAMS", ToggleRestrictTeams),
+        message("TOGGLE_REGISTERED_ONLY", ToggleRegisteredOnly),
+        message("READY", CheckerReady),
+    ))(input)
+}
+
+fn single_arg_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
+    fn message<'a, T: 'a, F, G>(
+        name: &'a str,
+        parser: F,
+        constructor: G,
+    ) -> impl FnMut(&'a [u8]) -> HwResult<HwProtocolMessage> + '_
+    where
+        F: Parser<&'a [u8], T, HwProtocolError> + 'a,
+        G: FnMut(T) -> HwProtocolMessage + 'a
+    {
+        map(preceded(tag(name), parser), constructor)
+    }
+
+    alt((
+        message("NICK\n", a_line, Nick),
+        message("INFO\n", a_line, Info),
+        message("CHAT\n", a_line, Chat),
+        message("PART", opt_arg, Part),
+        message("FOLLOW\n", a_line, Follow),
+        message("KICK\n", a_line, Kick),
+        message("UNBAN\n", a_line, Unban),
+        message("EM\n", a_line, EngineMessage),
+        message("TEAMCHAT\n", a_line, TeamChat),
+        message("ROOM_NAME\n", a_line, RoomName),
+        message("REMOVE_TEAM\n", a_line, RemoveTeam),
+        message("ROUNDFINISHED", opt_arg, |_| RoundFinished),
+        message("PROTO\n", u16_line, Proto),
+        message("QUIT", opt_arg, Quit),
+        message("CHECKED\nFAIL\n", a_line, CheckedFail),
+    ))(input)
+}
+
+fn cmd_message<'a>(input: &'a [u8]) -> HwResult<'a, HwProtocolMessage> {
+    fn cmd_no_arg(
+        name: &str,
+        msg: HwProtocolMessage,
+    ) -> impl Fn(&[u8]) -> HwResult<HwProtocolMessage> + '_ {
+        move |i| map(tag_no_case(name), |_| msg.clone())(i)
+    }
+
+    fn cmd_single_arg<'a, T, F, G>(
+        name: &'a str,
+        parser: F,
+        constructor: G,
+    ) -> impl FnMut(&'a [u8]) -> HwResult<'a, HwProtocolMessage>
+    where
+        F: Fn(&'a [u8]) -> HwResult<'a, T>,
+        G: Fn(T) -> HwProtocolMessage,
+    {
+        map(
+            preceded(pair(tag_no_case(name), spaces), parser),
+            constructor,
+        )
+    }
+
+    fn cmd_no_arg_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
+        alt((
+            cmd_no_arg("STATS", Stats),
+            cmd_no_arg("FIX", Fix),
+            cmd_no_arg("UNFIX", Unfix),
+            cmd_no_arg("REGISTERED_ONLY", ToggleServerRegisteredOnly),
+            cmd_no_arg("SUPER_POWER", SuperPower),
+        ))(input)
+    }
+
+    fn cmd_single_arg_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
+        alt((
+            cmd_single_arg("RESTART_SERVER", |i| tag("YES")(i), |_| RestartServer),
+            cmd_single_arg("DELEGATE", a_line, Delegate),
+            cmd_single_arg("DELETE", a_line, Delete),
+            cmd_single_arg("SAVEROOM", a_line, SaveRoom),
+            cmd_single_arg("LOADROOM", a_line, LoadRoom),
+            cmd_single_arg("GLOBAL", a_line, Global),
+            cmd_single_arg("WATCH", u32_line, Watch),
+            cmd_single_arg("VOTE", yes_no_line, Vote),
+            cmd_single_arg("FORCE", yes_no_line, ForceVote),
+            cmd_single_arg("INFO", a_line, Info),
+            cmd_single_arg("MAXTEAMS", u8_line, MaxTeams),
+            cmd_single_arg("CALLVOTE", voting, |v| CallVote(Some(v))),
+        ))(input)
+    }
+
+    preceded(
+        tag("CMD\n"),
+        alt((
+            cmd_no_arg_message,
+            cmd_single_arg_message,
+            map(tag_no_case("CALLVOTE"), |_| CallVote(None)),
+            map(preceded(tag_no_case("GREETING"), opt_space_arg), Greeting),
+            map(preceded(tag_no_case("PART"), opt_space_arg), Part),
+            map(preceded(tag_no_case("QUIT"), opt_space_arg), Quit),
+            map(
+                preceded(
+                    tag_no_case("SAVE"),
+                    pair(preceded(spaces, cmd_arg), preceded(spaces, cmd_arg)),
+                ),
+                |(n, l)| Save(n, l),
+            ),
+            map(
+                preceded(
+                    tag_no_case("RND"),
+                    alt((
+                        map(peek(end_of_message), |_| vec![]),
+                        preceded(spaces, separated_list0(spaces, cmd_arg)),
+                    )),
+                ),
+                Rnd,
+            ),
+        )),
+    )(input)
+}
+
+fn config_message<'a>(input: &'a [u8]) -> HwResult<'a, HwProtocolMessage> {
+    fn cfg_single_arg<'a, T: 'a, F, G>(
+        name: &'a str,
+        parser: F,
+        constructor: G,
+    ) -> impl FnMut(&'a [u8]) -> HwResult<GameCfg> + '_
+    where
+        F: Parser<&'a [u8], T, HwProtocolError> + 'a,
+        G: Fn(T) -> GameCfg + 'a,
+    {
+        map(preceded(pair(tag(name), newline), parser), constructor)
+    }
+
+    let (i, cfg) = preceded(
+        tag("CFG\n"),
+        alt((
+            cfg_single_arg("THEME", a_line, GameCfg::Theme),
+            cfg_single_arg("SCRIPT", a_line, GameCfg::Script),
+            cfg_single_arg("MAP", a_line, GameCfg::MapType),
+            cfg_single_arg("MAPGEN", u32_line, GameCfg::MapGenerator),
+            cfg_single_arg("MAZE_SIZE", u32_line, GameCfg::MazeSize),
+            cfg_single_arg("TEMPLATE", u32_line, GameCfg::Template),
+            cfg_single_arg("FEATURE_SIZE", u32_line, GameCfg::FeatureSize),
+            cfg_single_arg("SEED", a_line, GameCfg::Seed),
+            cfg_single_arg("DRAWNMAP", a_line, GameCfg::DrawnMap),
+            preceded(pair(tag("AMMO"), newline), |i| {
+                let (i, name) = a_line(i)?;
+                let (i, value) = opt_arg(i)?;
+                Ok((i, GameCfg::Ammo(name, value)))
+            }),
+            preceded(
+                pair(tag("SCHEME"), newline),
+                map(
+                    pair(
+                        a_line,
+                        alt((
+                            map(peek(end_of_message), |_| None),
+                            map(preceded(newline, separated_list0(newline, a_line)), Some),
+                        )),
+                    ),
+                    |(name, values)| GameCfg::Scheme(name, values.unwrap_or_default()),
+                ),
+            ),
+        )),
+    )(input)?;
+    Ok((i, Cfg(cfg)))
+}
+
+fn server_var_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
+    map(
+        preceded(
+            tag("SET_SERVER_VAR\n"),
+            alt((
+                map(preceded(tag("MOTD_NEW\n"), a_line), ServerVar::MOTDNew),
+                map(preceded(tag("MOTD_OLD\n"), a_line), ServerVar::MOTDOld),
+                map(
+                    preceded(tag("LATEST_PROTO\n"), u16_line),
+                    ServerVar::LatestProto,
+                ),
+            )),
+        ),
+        SetServerVar,
+    )(input)
+}
+
+fn complex_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
+    alt((
+        preceded(
+            pair(tag("PASSWORD"), newline),
+            map(pair(terminated(a_line, newline), a_line), |(pass, salt)| {
+                Password(pass, salt)
+            }),
+        ),
+        preceded(
+            pair(tag("CHECKER"), newline),
+            map(
+                tuple((
+                    terminated(u16_line, newline),
+                    terminated(a_line, newline),
+                    a_line,
+                )),
+                |(protocol, name, pass)| Checker(protocol, name, pass),
+            ),
+        ),
+        preceded(
+            pair(tag("CREATE_ROOM"), newline),
+            map(pair(a_line, opt_arg), |(name, pass)| CreateRoom(name, pass)),
+        ),
+        preceded(
+            pair(tag("JOIN_ROOM"), newline),
+            map(pair(a_line, opt_arg), |(name, pass)| JoinRoom(name, pass)),
+        ),
+        preceded(
+            pair(tag("ADD_TEAM"), newline),
+            map(
+                tuple((
+                    terminated(a_line, newline),
+                    terminated(u8_line, newline),
+                    terminated(a_line, newline),
+                    terminated(a_line, newline),
+                    terminated(a_line, newline),
+                    terminated(a_line, newline),
+                    terminated(u8_line, newline),
+                    hedgehog_array,
+                )),
+                |(name, color, grave, fort, voice_pack, flag, difficulty, hedgehogs)| {
+                    AddTeam(Box::new(TeamInfo {
+                        owner: String::new(),
+                        name,
+                        color,
+                        grave,
+                        fort,
+                        voice_pack,
+                        flag,
+                        difficulty,
+                        hedgehogs,
+                        hedgehogs_number: 0,
+                    }))
+                },
+            ),
+        ),
+        preceded(
+            pair(tag("HH_NUM"), newline),
+            map(
+                pair(terminated(a_line, newline), u8_line),
+                |(name, count)| SetHedgehogsNumber(name, count),
+            ),
+        ),
+        preceded(
+            pair(tag("TEAM_COLOR"), newline),
+            map(
+                pair(terminated(a_line, newline), u8_line),
+                |(name, color)| SetTeamColor(name, color),
+            ),
+        ),
+        preceded(
+            pair(tag("BAN"), newline),
+            map(
+                tuple((
+                    terminated(a_line, newline),
+                    terminated(a_line, newline),
+                    u32_line,
+                )),
+                |(name, reason, time)| Ban(name, reason, time),
+            ),
+        ),
+        preceded(
+            pair(tag("BAN_IP"), newline),
+            map(
+                tuple((
+                    terminated(a_line, newline),
+                    terminated(a_line, newline),
+                    u32_line,
+                )),
+                |(ip, reason, time)| BanIp(ip, reason, time),
+            ),
+        ),
+        preceded(
+            pair(tag("BAN_NICK"), newline),
+            map(
+                tuple((
+                    terminated(a_line, newline),
+                    terminated(a_line, newline),
+                    u32_line,
+                )),
+                |(nick, reason, time)| BanNick(nick, reason, time),
+            ),
+        ),
+        map(
+            preceded(
+                tag("CHECKED\nOK"),
+                alt((
+                    map(peek(end_of_message), |_| None),
+                    map(preceded(newline, separated_list0(newline, a_line)), Some),
+                )),
+            ),
+            |values| CheckedOk(values.unwrap_or_default()),
+        ),
+    ))(input)
+}
+
+pub fn malformed_message(input: &[u8]) -> HwResult<()> {
+    map(terminated(take_until(&b"\n\n"[..]), end_of_message), |_| ())(input)
+}
+
+pub fn message(input: &[u8]) -> HwResult<HwProtocolMessage> {
+    delimited(
+        take_while(|c| c == b'\n'),
+        alt((
+            no_arg_message,
+            single_arg_message,
+            cmd_message,
+            config_message,
+            server_var_message,
+            complex_message,
+        )),
+        end_of_message,
+    )(input)
+}
+
+pub fn server_message(input: &[u8]) -> HwResult<HwServerMessage> {
+    use HwServerMessage::*;
+
+    fn single_arg_message<'a, T: 'a, F, G>(
+        name: &'a str,
+        parser: F,
+        constructor: G,
+    ) -> impl FnMut(&'a [u8]) -> HwResult<HwServerMessage> + '_
+    where
+        F: Parser<&'a [u8], T, HwProtocolError> + 'a,
+        G: Fn(T) -> HwServerMessage + 'a,
+    {
+        map(
+            preceded(terminated(tag(name), newline), parser),
+            constructor,
+        )
+    }
+
+    fn list_message<'a, G>(
+        name: &'a str,
+        constructor: G,
+    ) -> impl FnMut(&'a [u8]) -> HwResult<HwServerMessage> + '_
+    where
+        G: Fn(Vec<String>) -> HwServerMessage + 'a,
+    {
+        map(
+            preceded(
+                tag(name),
+                alt((
+                    map(peek(end_of_message), |_| None),
+                    map(preceded(newline, separated_list0(newline, a_line)), Some),
+                )),
+            ),
+            move |values| constructor(values.unwrap_or_default()),
+        )
+    }
+
+    fn string_and_list_message<'a, G>(
+        name: &'a str,
+        constructor: G,
+    ) -> impl FnMut(&'a [u8]) -> HwResult<HwServerMessage> + '_
+    where
+        G: Fn(String, Vec<String>) -> HwServerMessage + 'a,
+    {
+        preceded(
+            pair(tag(name), newline),
+            map(
+                pair(
+                    a_line,
+                    alt((
+                        map(peek(end_of_message), |_| None),
+                        map(preceded(newline, separated_list0(newline, a_line)), Some),
+                    )),
+                ),
+                move |(name, values)| constructor(name, values.unwrap_or_default()),
+            ),
+        )
+    }
+
+    fn message(
+        name: &str,
+        msg: HwServerMessage,
+    ) -> impl Fn(&[u8]) -> HwResult<HwServerMessage> + '_ {
+        move |i| map(tag(name), |_| msg.clone())(i)
+    }
+
+    delimited(
+        take_while(|c| c == b'\n'),
+        alt((
+            alt((
+                message("PING", Ping),
+                message("PONG", Pong),
+                message("LOGONPASSED", LogonPassed),
+                message("KICKED", Kicked),
+                message("RUN_GAME", RunGame),
+                message("ROUND_FINISHED", RoundFinished),
+                message("REPLAY_START", ReplayStart),
+            )),
+            alt((
+                single_arg_message("REDIRECT", u16_line, Redirect),
+                single_arg_message("BYE", a_line, Bye),
+                single_arg_message("NICK", a_line, Nick),
+                single_arg_message("PROTO", u16_line, Proto),
+                single_arg_message("ASKPASSWORD", a_line, AskPassword),
+                single_arg_message("SERVER_AUTH", a_line, ServerAuth),
+                single_arg_message("ROOM\nDEL", a_line, RoomRemove),
+                single_arg_message("JOINING", a_line, Joining),
+                single_arg_message("REMOVE_TEAM", a_line, TeamRemove),
+                single_arg_message("TEAM_ACCEPTED", a_line, TeamAccepted),
+                single_arg_message("SERVER_MESSAGE", a_line, ServerMessage),
+                single_arg_message("NOTICE", a_line, Notice),
+                single_arg_message("WARNING", a_line, Warning),
+                single_arg_message("ERROR", a_line, Error),
+            )),
+            alt((
+                preceded(
+                    pair(tag("LOBBY:LEFT"), newline),
+                    map(pair(terminated(a_line, newline), a_line), |(nick, msg)| {
+                        LobbyLeft(nick, msg)
+                    }),
+                ),
+                preceded(
+                    pair(tag("CHAT"), newline),
+                    map(pair(terminated(a_line, newline), a_line), |(nick, msg)| {
+                        ChatMsg { nick, msg }
+                    }),
+                ),
+                preceded(
+                    pair(tag("TEAM_COLOR"), newline),
+                    map(
+                        pair(terminated(a_line, newline), u8_line),
+                        |(name, color)| TeamColor(name, color),
+                    ),
+                ),
+                preceded(
+                    pair(tag("HH_NUM"), newline),
+                    map(
+                        pair(terminated(a_line, newline), u8_line),
+                        |(name, count)| HedgehogsNumber(name, count),
+                    ),
+                ),
+                preceded(
+                    pair(tag("CONNECTED"), newline),
+                    map(
+                        pair(terminated(a_line, newline), u32_line),
+                        |(msg, server_protocol_version)| Connected(msg, server_protocol_version),
+                    ),
+                ),
+                preceded(
+                    pair(tag("LEFT"), newline),
+                    map(pair(terminated(a_line, newline), a_line), |(nick, msg)| {
+                        RoomLeft(nick, msg)
+                    }),
+                ),
+            )),
+            alt((
+                string_and_list_message("CLIENT_FLAGS", ClientFlags),
+                string_and_list_message("ROOM\nUPD", RoomUpdated),
+                string_and_list_message("CFG", ConfigEntry),
+            )),
+            alt((
+                list_message("LOBBY:JOINED", LobbyJoined),
+                list_message("ROOMS", Rooms),
+                list_message("ROOM\nADD", RoomAdd),
+                list_message("JOINED", RoomJoined),
+                list_message("ADD_TEAM", TeamAdd),
+                list_message("EM", ForwardEngineMessage),
+                list_message("INFO", Info),
+                list_message("SERVER_VARS", ServerVars),
+                list_message("REPLAY", Replay),
+            )),
+        )),
+        end_of_message,
+    )(input)
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-network-protocol/src/tests/mod.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,2 @@
+mod parser;
+mod test;
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-network-protocol/src/tests/parser.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,76 @@
+use crate::{
+    parser::HwProtocolError,
+    parser::{message, server_message},
+    types::GameCfg,
+};
+
+#[test]
+fn parse_test() {
+    use crate::messages::HwProtocolMessage::*;
+
+    assert_eq!(message(b"PING\n\n"), Ok((&b""[..], Ping)));
+    assert_eq!(message(b"START_GAME\n\n"), Ok((&b""[..], StartGame)));
+    assert_eq!(
+        message(b"NICK\nit's me\n\n"),
+        Ok((&b""[..], Nick("it's me".to_string())))
+    );
+    assert_eq!(message(b"PROTO\n51\n\n"), Ok((&b""[..], Proto(51))));
+    assert_eq!(
+        message(b"QUIT\nbye-bye\n\n"),
+        Ok((&b""[..], Quit(Some("bye-bye".to_string()))))
+    );
+    assert_eq!(message(b"QUIT\n\n"), Ok((&b""[..], Quit(None))));
+    assert_eq!(
+        message(b"CMD\nwatch 49471\n\n"),
+        Ok((&b""[..], Watch(49471)))
+    );
+    assert_eq!(
+        message(b"BAN\nme\nbad\n77\n\n"),
+        Ok((&b""[..], Ban("me".to_string(), "bad".to_string(), 77)))
+    );
+
+    assert_eq!(message(b"CMD\nPART\n\n"), Ok((&b""[..], Part(None))));
+    assert_eq!(
+        message(b"CMD\nPART _msg_\n\n"),
+        Ok((&b""[..], Part(Some("_msg_".to_string()))))
+    );
+
+    assert_eq!(message(b"CMD\nRND\n\n"), Ok((&b""[..], Rnd(vec![]))));
+    assert_eq!(
+        message(b"CMD\nRND A B\n\n"),
+        Ok((&b""[..], Rnd(vec![String::from("A"), String::from("B")])))
+    );
+
+    assert_eq!(
+        message(b"CFG\nSCHEME\na\nA\n\n"),
+        Ok((
+            &b""[..],
+            Cfg(GameCfg::Scheme("a".to_string(), vec!["A".to_string()]))
+        ))
+    );
+
+    assert_eq!(
+        message(b"QUIT\n1\n2\n\n"),
+        Err(nom::Err::Error(HwProtocolError::new()))
+    );
+}
+
+#[test]
+fn parse_server_messages_test() {
+    use crate::messages::HwServerMessage::*;
+
+    assert_eq!(server_message(b"PING\n\n"), Ok((&b""[..], Ping)));
+
+    assert_eq!(
+        server_message(b"JOINING\nnoone\n\n"),
+        Ok((&b""[..], Joining("noone".to_string())))
+    );
+
+    assert_eq!(
+        server_message(b"CLIENT_FLAGS\naaa\nA\nB\n\n"),
+        Ok((
+            &b""[..],
+            ClientFlags("aaa".to_string(), vec!["A".to_string(), "B".to_string()])
+        ))
+    )
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-network-protocol/src/tests/test.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,325 @@
+use crate::{
+    messages::{HwProtocolMessage, HwServerMessage},
+    parser::{message, server_message},
+    types::ServerVar::*,
+    types::*,
+    types::{GameCfg, ServerVar, TeamInfo, VoteType},
+};
+
+use proptest::{
+    arbitrary::{any, Arbitrary},
+    proptest,
+    strategy::{BoxedStrategy, Just, Strategy},
+};
+
+// Due to inability to define From between Options
+pub trait Into2<T>: Sized {
+    fn into2(self) -> T;
+}
+impl<T> Into2<T> for T {
+    fn into2(self) -> T {
+        self
+    }
+}
+impl Into2<Vec<String>> for Vec<Ascii> {
+    fn into2(self) -> Vec<String> {
+        self.into_iter().map(|x| x.0).collect()
+    }
+}
+impl Into2<String> for Ascii {
+    fn into2(self) -> String {
+        self.0
+    }
+}
+impl Into2<Option<String>> for Option<Ascii> {
+    fn into2(self) -> Option<String> {
+        self.map(|x| x.0)
+    }
+}
+
+#[macro_export]
+macro_rules! proto_msg_case {
+    ($val: ident()) => {
+        Just($val)
+    };
+    ($val: ident($arg: ty)) => {
+        any::<$arg>().prop_map(|v| $val(v.into2()))
+    };
+    ($val: ident($arg1: ty, $arg2: ty)) => {
+        any::<($arg1, $arg2)>().prop_map(|v| $val(v.0.into2(), v.1.into2()))
+    };
+    ($val: ident($arg1: ty, $arg2: ty, $arg3: ty)) => {
+        any::<($arg1, $arg2, $arg3)>().prop_map(|v| $val(v.0.into2(), v.1.into2(), v.2.into2()))
+    };
+}
+
+macro_rules! proto_msg_match {
+($var: expr, def = $default: expr, $($num: expr => $constr: ident $res: tt),*) => (
+    match $var {
+        $($num => (proto_msg_case!($constr $res)).boxed()),*,
+        _ => Just($default).boxed()
+    }
+)
+}
+
+/// Wrapper type for generating non-empty strings
+#[derive(Debug)]
+pub struct Ascii(String);
+
+impl Arbitrary for Ascii {
+    type Parameters = <String as Arbitrary>::Parameters;
+
+    fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy {
+        "[a-zA-Z0-9]+".prop_map(Ascii).boxed()
+    }
+
+    type Strategy = BoxedStrategy<Ascii>;
+}
+
+impl Arbitrary for GameCfg {
+    type Parameters = ();
+
+    fn arbitrary_with(_args: <Self as Arbitrary>::Parameters) -> <Self as Arbitrary>::Strategy {
+        use crate::types::GameCfg::*;
+        (0..10)
+            .no_shrink()
+            .prop_flat_map(|i| {
+                proto_msg_match!(i, def = FeatureSize(0),
+        0 => FeatureSize(u32),
+        1 => MapType(Ascii),
+        2 => MapGenerator(u32),
+        3 => MazeSize(u32),
+        4 => Seed(Ascii),
+        5 => Template(u32),
+        6 => Ammo(Ascii, Option<Ascii>),
+        7 => Scheme(Ascii, Vec<Ascii>),
+        8 => Script(Ascii),
+        9 => Theme(Ascii),
+        10 => DrawnMap(Ascii))
+            })
+            .boxed()
+    }
+
+    type Strategy = BoxedStrategy<GameCfg>;
+}
+
+impl Arbitrary for TeamInfo {
+    type Parameters = ();
+
+    fn arbitrary_with(_args: <Self as Arbitrary>::Parameters) -> <Self as Arbitrary>::Strategy {
+        (
+            "[a-z]+",
+            0u8..127u8,
+            "[a-z]+",
+            "[a-z]+",
+            "[a-z]+",
+            "[a-z]+",
+            0u8..127u8,
+        )
+            .prop_map(|(name, color, grave, fort, voice_pack, flag, difficulty)| {
+                fn hog(n: u8) -> HedgehogInfo {
+                    HedgehogInfo {
+                        name: format!("hog{}", n),
+                        hat: format!("hat{}", n),
+                    }
+                }
+                let hedgehogs = [
+                    hog(1),
+                    hog(2),
+                    hog(3),
+                    hog(4),
+                    hog(5),
+                    hog(6),
+                    hog(7),
+                    hog(8),
+                ];
+                TeamInfo {
+                    owner: String::new(),
+                    name,
+                    color,
+                    grave,
+                    fort,
+                    voice_pack,
+                    flag,
+                    difficulty,
+                    hedgehogs,
+                    hedgehogs_number: 0,
+                }
+            })
+            .boxed()
+    }
+
+    type Strategy = BoxedStrategy<TeamInfo>;
+}
+
+impl Arbitrary for ServerVar {
+    type Parameters = ();
+
+    fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy {
+        (0..=2)
+            .no_shrink()
+            .prop_flat_map(|i| {
+                proto_msg_match!(i, def = ServerVar::LatestProto(0),
+                    0 => MOTDNew(Ascii),
+                    1 => MOTDOld(Ascii),
+                    2 => LatestProto(u16)
+                )
+            })
+            .boxed()
+    }
+
+    type Strategy = BoxedStrategy<ServerVar>;
+}
+
+impl Arbitrary for VoteType {
+    type Parameters = ();
+
+    fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy {
+        use VoteType::*;
+        (0..=4)
+            .no_shrink()
+            .prop_flat_map(|i| {
+                proto_msg_match!(i, def = VoteType::Pause,
+                    0 => Kick(Ascii),
+                    1 => Map(Option<Ascii>),
+                    2 => Pause(),
+                    3 => NewSeed(),
+                    4 => HedgehogsPerTeam(u8)
+                )
+            })
+            .boxed()
+    }
+
+    type Strategy = BoxedStrategy<VoteType>;
+}
+
+pub fn gen_proto_msg() -> BoxedStrategy<HwProtocolMessage> where {
+    use HwProtocolMessage::*;
+
+    let res = (0..=58).no_shrink().prop_flat_map(|i| {
+        proto_msg_match!(i, def = Ping,
+            0 => Ping(),
+            1 => Pong(),
+            2 => Quit(Option<Ascii>),
+            4 => Global(Ascii),
+            5 => Watch(u32),
+            6 => ToggleServerRegisteredOnly(),
+            7 => SuperPower(),
+            8 => Info(Ascii),
+            9 => Nick(Ascii),
+            10 => Proto(u16),
+            11 => Password(Ascii, Ascii),
+            12 => Checker(u16, Ascii, Ascii),
+            13 => List(),
+            14 => Chat(Ascii),
+            15 => CreateRoom(Ascii, Option<Ascii>),
+            16 => JoinRoom(Ascii, Option<Ascii>),
+            17 => Follow(Ascii),
+            18 => Rnd(Vec<Ascii>),
+            19 => Kick(Ascii),
+            20 => Ban(Ascii, Ascii, u32),
+            21 => BanIp(Ascii, Ascii, u32),
+            22 => BanNick(Ascii, Ascii, u32),
+            23 => BanList(),
+            24 => Unban(Ascii),
+            25 => SetServerVar(ServerVar),
+            26 => GetServerVar(),
+            27 => RestartServer(),
+            28 => Stats(),
+            29 => Part(Option<Ascii>),
+            30 => Cfg(GameCfg),
+            31 => AddTeam(Box<TeamInfo>),
+            32 => RemoveTeam(Ascii),
+            33 => SetHedgehogsNumber(Ascii, u8),
+            34 => SetTeamColor(Ascii, u8),
+            35 => ToggleReady(),
+            36 => StartGame(),
+            37 => EngineMessage(Ascii),
+            38 => RoundFinished(),
+            39 => ToggleRestrictJoin(),
+            40 => ToggleRestrictTeams(),
+            41 => ToggleRegisteredOnly(),
+            42 => RoomName(Ascii),
+            43 => Delegate(Ascii),
+            44 => TeamChat(Ascii),
+            45 => MaxTeams(u8),
+            46 => Fix(),
+            47 => Unfix(),
+            48 => Greeting(Option<Ascii>),
+            49 => CallVote(Option<VoteType>),
+            50 => Vote(bool),
+            51 => ForceVote(bool),
+            52 => Save(Ascii, Ascii),
+            53 => Delete(Ascii),
+            54 => SaveRoom(Ascii),
+            55 => LoadRoom(Ascii),
+            56 => CheckerReady(),
+            57 => CheckedOk(Vec<Ascii>),
+            58 => CheckedFail(Ascii)
+        )
+    });
+    res.boxed()
+}
+
+pub fn gen_server_msg() -> BoxedStrategy<HwServerMessage> where {
+    use HwServerMessage::*;
+
+    let res = (0..=38).no_shrink().prop_flat_map(|i| {
+        proto_msg_match!(i, def = Ping,
+                    0 => Connected(Ascii, u32),
+                    1 => Redirect(u16),
+                    2 => Ping(),
+                    3 => Pong(),
+                    4 => Bye(Ascii),
+                    5 => Nick(Ascii),
+                    6 => Proto(u16),
+                    7 => AskPassword(Ascii),
+                    8 => ServerAuth(Ascii),
+                    9 => LogonPassed(),
+                    10 => LobbyLeft(Ascii, Ascii),
+                    11 => LobbyJoined(Vec<Ascii>),
+        //            12 => ChatMsg { Ascii, Ascii },
+                    13 => ClientFlags(Ascii, Vec<Ascii>),
+                    14 => Rooms(Vec<Ascii>),
+                    15 => RoomAdd(Vec<Ascii>),
+                    16=> RoomJoined(Vec<Ascii>),
+                    17 => RoomLeft(Ascii, Ascii),
+                    18 => RoomRemove(Ascii),
+                    19 => RoomUpdated(Ascii, Vec<Ascii>),
+                    20 => Joining(Ascii),
+                    21 => TeamAdd(Vec<Ascii>),
+                    22 => TeamRemove(Ascii),
+                    23 => TeamAccepted(Ascii),
+                    24 => TeamColor(Ascii, u8),
+                    25 => HedgehogsNumber(Ascii, u8),
+                    26 => ConfigEntry(Ascii, Vec<Ascii>),
+                    27 => Kicked(),
+                    28 => RunGame(),
+                    29 => ForwardEngineMessage(Vec<Ascii>),
+                    30 => RoundFinished(),
+                    31 => ReplayStart(),
+                    32 => Info(Vec<Ascii>),
+                    33 => ServerMessage(Ascii),
+                    34 => ServerVars(Vec<Ascii>),
+                    35 => Notice(Ascii),
+                    36 => Warning(Ascii),
+                    37 => Error(Ascii),
+                    38 => Replay(Vec<Ascii>)
+                )
+    });
+    res.boxed()
+}
+
+proptest! {
+    #[test]
+    fn is_parser_composition_idempotent(ref msg in gen_proto_msg()) {
+        println!("!! Msg: {:?}, Bytes: {:?} !!", msg, msg.to_raw_protocol().as_bytes());
+        assert_eq!(message(msg.to_raw_protocol().as_bytes()), Ok((&b""[..], msg.clone())))
+    }
+
+    #[test]
+    fn is_server_message_parser_composition_idempotent(ref msg in gen_server_msg()) {
+        println!("!! Msg: {:?}, Bytes: {:?} !!", msg, msg.to_raw_protocol().as_bytes());
+        assert_eq!(server_message(msg.to_raw_protocol().as_bytes()), Ok((&b""[..], msg.clone())))
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-network-protocol/src/types.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,165 @@
+use serde_derive::{Deserialize, Serialize};
+
+pub const MAX_HEDGEHOGS_PER_TEAM: u8 = 8;
+
+#[derive(PartialEq, Eq, Clone, Debug)]
+pub enum ServerVar {
+    MOTDNew(String),
+    MOTDOld(String),
+    LatestProto(u16),
+}
+
+#[derive(PartialEq, Eq, Clone, Debug)]
+pub enum GameCfg {
+    FeatureSize(u32),
+    MapType(String),
+    MapGenerator(u32),
+    MazeSize(u32),
+    Seed(String),
+    Template(u32),
+
+    Ammo(String, Option<String>),
+    Scheme(String, Vec<String>),
+    Script(String),
+    Theme(String),
+    DrawnMap(String),
+}
+
+#[derive(PartialEq, Eq, Clone, Debug, Default)]
+pub struct TeamInfo {
+    pub owner: String,
+    pub name: String,
+    pub color: u8,
+    pub grave: String,
+    pub fort: String,
+    pub voice_pack: String,
+    pub flag: String,
+    pub difficulty: u8,
+    pub hedgehogs_number: u8,
+    pub hedgehogs: [HedgehogInfo; MAX_HEDGEHOGS_PER_TEAM as usize],
+}
+
+#[derive(PartialEq, Eq, Clone, Debug, Default)]
+pub struct HedgehogInfo {
+    pub name: String,
+    pub hat: String,
+}
+
+#[derive(Clone, Serialize, Deserialize, Debug)]
+pub struct Ammo {
+    pub name: String,
+    pub settings: Option<String>,
+}
+
+#[derive(Clone, Serialize, Deserialize, Debug)]
+pub struct Scheme {
+    pub name: String,
+    pub settings: Vec<String>,
+}
+
+#[derive(Clone, Serialize, Deserialize, Debug)]
+pub struct RoomConfig {
+    pub feature_size: u32,
+    pub map_type: String,
+    pub map_generator: u32,
+    pub maze_size: u32,
+    pub seed: String,
+    pub template: u32,
+
+    pub ammo: Ammo,
+    pub scheme: Scheme,
+    pub script: String,
+    pub theme: String,
+    pub drawn_map: Option<String>,
+}
+
+impl RoomConfig {
+    pub fn new() -> RoomConfig {
+        RoomConfig {
+            feature_size: 12,
+            map_type: "+rnd+".to_string(),
+            map_generator: 0,
+            maze_size: 0,
+            seed: "seed".to_string(),
+            template: 0,
+
+            ammo: Ammo {
+                name: "Default".to_string(),
+                settings: None,
+            },
+            scheme: Scheme {
+                name: "Default".to_string(),
+                settings: Vec::new(),
+            },
+            script: "Normal".to_string(),
+            theme: "\u{1f994}".to_string(),
+            drawn_map: None,
+        }
+    }
+
+    pub fn set_config(&mut self, cfg: GameCfg) {
+        match cfg {
+            GameCfg::FeatureSize(s) => self.feature_size = s,
+            GameCfg::MapType(t) => self.map_type = t,
+            GameCfg::MapGenerator(g) => self.map_generator = g,
+            GameCfg::MazeSize(s) => self.maze_size = s,
+            GameCfg::Seed(s) => self.seed = s,
+            GameCfg::Template(t) => self.template = t,
+
+            GameCfg::Ammo(n, s) => {
+                self.ammo = Ammo {
+                    name: n,
+                    settings: s,
+                }
+            }
+            GameCfg::Scheme(n, s) => {
+                self.scheme = Scheme {
+                    name: n,
+                    settings: s,
+                }
+            }
+            GameCfg::Script(s) => self.script = s,
+            GameCfg::Theme(t) => self.theme = t,
+            GameCfg::DrawnMap(m) => self.drawn_map = Some(m),
+        };
+    }
+
+    pub fn to_map_config(&self) -> Vec<String> {
+        vec![
+            self.feature_size.to_string(),
+            self.map_type.to_string(),
+            self.map_generator.to_string(),
+            self.maze_size.to_string(),
+            self.seed.to_string(),
+            self.template.to_string(),
+        ]
+    }
+
+    pub fn to_game_config(&self) -> Vec<GameCfg> {
+        use GameCfg::*;
+        let mut v = vec![
+            Ammo(self.ammo.name.to_string(), self.ammo.settings.clone()),
+            Scheme(self.scheme.name.to_string(), self.scheme.settings.clone()),
+            Script(self.script.to_string()),
+            Theme(self.theme.to_string()),
+        ];
+        if let Some(ref m) = self.drawn_map {
+            v.push(DrawnMap(m.to_string()))
+        }
+        v
+    }
+}
+
+#[derive(PartialEq, Eq, Clone, Debug)]
+pub enum VoteType {
+    Kick(String),
+    Map(Option<String>),
+    Pause,
+    NewSeed,
+    HedgehogsPerTeam(u8),
+}
+
+pub struct Vote {
+    pub is_pro: bool,
+    pub is_forced: bool,
+}
--- a/rust/hedgewars-server/Cargo.toml	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -1,31 +1,34 @@
 [package]
-edition = "2018"
+edition = "2021"
 name = "hedgewars-server"
-version = "0.0.1"
+version = "0.9.0"
 authors = [ "Andrey Korotaev <a.korotaev@hedgewars.org>" ]
 
 [features]
-official-server = ["openssl", "mysql"]
-tls-connections = ["openssl"]
+tls-connections = ["tokio-native-tls"]
+official-server = ["mysql_async", "sha1", "tls-connections"]
 default = []
 
 [dependencies]
-getopts = "0.2.18"
-rand = "0.6"
-mio = "0.6"
-mio-extras = "2.0.5"
-slab = "0.4"
-netbuf = "0.4"
-nom = "5.0"
-env_logger = "0.6"
+base64 = "0.13"
+bitflags = "1.3"
+bytes = "1.1"
+chrono = "0.4"
+env_logger = "0.8"
+getopts = "0.2"
 log = "0.4"
-base64 = "0.10"
-bitflags = "1.0"
+mysql_async = { version = "0.29.0", optional = true }
+nom = "7.1"
+rand = "0.8"
 serde = "1.0"
 serde_yaml = "0.8"
 serde_derive = "1.0"
-openssl = { version = "0.10", optional = true }
-mysql = { version = "15.0", optional = true }
+sha1 = { version = "0.10.0", optional = true }
+slab = "0.4"
+tokio = { version = "1.36", features = ["full"]}
+tokio-native-tls = { version = "0.3", optional = true }
+
+hedgewars-network-protocol = { path = "../hedgewars-network-protocol" }
 
 [dev-dependencies]
-proptest = "0.9"
+proptest = "1.0"
--- a/rust/hedgewars-server/src/core.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/core.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,3 +1,4 @@
+pub mod anteroom;
 pub mod client;
 pub mod indexslab;
 pub mod room;
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-server/src/core/anteroom.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,89 @@
+use super::{indexslab::IndexSlab, types::ClientId};
+use chrono::{offset, DateTime};
+use std::{iter::Iterator, num::NonZeroU16};
+
+pub struct HwAnteroomClient {
+    pub nick: Option<String>,
+    pub protocol_number: Option<NonZeroU16>,
+    pub server_salt: String,
+    pub is_checker: bool,
+    pub is_local_admin: bool,
+    pub is_registered: bool,
+    pub is_admin: bool,
+    pub is_contributor: bool,
+}
+
+struct Ipv4AddrRange {
+    min: [u8; 4],
+    max: [u8; 4],
+}
+
+impl Ipv4AddrRange {
+    fn contains(&self, addr: [u8; 4]) -> bool {
+        (0..4).all(|i| self.min[i] <= addr[i] && addr[i] <= self.max[i])
+    }
+}
+
+struct BanCollection {
+    ban_ips: Vec<Ipv4AddrRange>,
+    ban_timeouts: Vec<DateTime<offset::Utc>>,
+    ban_reasons: Vec<String>,
+}
+
+impl BanCollection {
+    fn new() -> Self {
+        //todo!("add nick bans");
+        Self {
+            ban_ips: vec![],
+            ban_timeouts: vec![],
+            ban_reasons: vec![],
+        }
+    }
+
+    fn find(&self, addr: [u8; 4]) -> Option<String> {
+        let time = offset::Utc::now();
+        self.ban_ips
+            .iter()
+            .enumerate()
+            .find(|(i, r)| r.contains(addr) && time < self.ban_timeouts[*i])
+            .map(|(i, _)| self.ban_reasons[i].clone())
+    }
+}
+
+pub struct HwAnteroom {
+    pub clients: IndexSlab<HwAnteroomClient>,
+    bans: BanCollection,
+}
+
+impl HwAnteroom {
+    pub fn new(clients_limit: usize) -> Self {
+        let clients = IndexSlab::with_capacity(clients_limit);
+        HwAnteroom {
+            clients,
+            bans: BanCollection::new(),
+        }
+    }
+
+    pub fn find_ip_ban(&self, addr: [u8; 4]) -> Option<String> {
+        self.bans.find(addr)
+    }
+
+    pub fn add_client(&mut self, client_id: ClientId, salt: String, is_local_admin: bool) {
+        let client = HwAnteroomClient {
+            nick: None,
+            protocol_number: None,
+            server_salt: salt,
+            is_checker: false,
+            is_local_admin,
+            is_registered: false,
+            is_admin: false,
+            is_contributor: false,
+        };
+        self.clients.insert(client_id, client);
+    }
+
+    pub fn remove_client(&mut self, client_id: ClientId) -> Option<HwAnteroomClient> {
+        let client = self.clients.remove(client_id);
+        client
+    }
+}
--- a/rust/hedgewars-server/src/core/client.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/core/client.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -2,16 +2,15 @@
 use bitflags::*;
 
 bitflags! {
-    pub struct ClientFlags: u16 {
+    pub struct ClientFlags: u8 {
         const IS_ADMIN = 0b0000_0001;
         const IS_MASTER = 0b0000_0010;
         const IS_READY = 0b0000_0100;
         const IS_IN_GAME = 0b0000_1000;
-        const IS_JOINED_MID_GAME = 0b0001_0000;
-        const IS_CHECKER = 0b0010_0000;
-        const IS_CONTRIBUTOR = 0b0100_0000;
-        const HAS_SUPER_POWER = 0b1000_0000;
-        const IS_REGISTERED = 0b0001_0000_0000;
+        const IS_CONTRIBUTOR = 0b0001_0000;
+        const HAS_SUPER_POWER = 0b0010_0000;
+        const IS_REGISTERED = 0b0100_0000;
+        const IS_MODERATOR = 0b1000_0000;
 
         const NONE = 0b0000_0000;
         const DEFAULT = Self::NONE.bits;
@@ -31,6 +30,7 @@
 
 impl HwClient {
     pub fn new(id: ClientId, protocol_number: u16, nick: String) -> HwClient {
+        //todo!("add quiet flag");
         HwClient {
             id,
             nick,
@@ -63,12 +63,6 @@
     pub fn is_in_game(&self) -> bool {
         self.contains(ClientFlags::IS_IN_GAME)
     }
-    pub fn is_joined_mid_game(&self) -> bool {
-        self.contains(ClientFlags::IS_JOINED_MID_GAME)
-    }
-    pub fn is_checker(&self) -> bool {
-        self.contains(ClientFlags::IS_CHECKER)
-    }
     pub fn is_contributor(&self) -> bool {
         self.contains(ClientFlags::IS_CONTRIBUTOR)
     }
@@ -91,12 +85,6 @@
     pub fn set_is_in_game(&mut self, value: bool) {
         self.set(ClientFlags::IS_IN_GAME, value)
     }
-    pub fn set_is_joined_mid_game(&mut self, value: bool) {
-        self.set(ClientFlags::IS_JOINED_MID_GAME, value)
-    }
-    pub fn set_is_checker(&mut self, value: bool) {
-        self.set(ClientFlags::IS_CHECKER, value)
-    }
     pub fn set_is_contributor(&mut self, value: bool) {
         self.set(ClientFlags::IS_CONTRIBUTOR, value)
     }
--- a/rust/hedgewars-server/src/core/room.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/core/room.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,17 +1,18 @@
 use super::{
     client::HwClient,
-    types::{
-        ClientId, GameCfg, GameCfg::*, RoomConfig, RoomId, TeamInfo, Voting, MAX_HEDGEHOGS_PER_TEAM,
-    },
+    types::{ClientId, RoomId, Voting},
 };
 use bitflags::*;
+use hedgewars_network_protocol::types::{
+    GameCfg, GameCfg::*, RoomConfig, TeamInfo, MAX_HEDGEHOGS_PER_TEAM,
+};
 use serde::{Deserialize, Serialize};
 use serde_derive::{Deserialize, Serialize};
 use serde_yaml;
 use std::{collections::HashMap, iter};
 
 pub const MAX_TEAMS_IN_ROOM: u8 = 8;
-pub const MAX_HEDGEHOGS_IN_ROOM: u8 = MAX_HEDGEHOGS_PER_TEAM * MAX_HEDGEHOGS_PER_TEAM;
+pub const MAX_HEDGEHOGS_IN_ROOM: u8 = MAX_TEAMS_IN_ROOM * MAX_HEDGEHOGS_PER_TEAM;
 
 fn client_teams_impl(
     teams: &[(ClientId, TeamInfo)],
@@ -24,13 +25,12 @@
 }
 
 pub struct GameInfo {
-    pub teams_in_game: u8,
-    pub teams_at_start: Vec<(ClientId, TeamInfo)>,
+    pub original_teams: Vec<(ClientId, TeamInfo)>,
     pub left_teams: Vec<String>,
     pub msg_log: Vec<String>,
     pub sync_msg: Option<String>,
     pub is_paused: bool,
-    config: RoomConfig,
+    original_config: RoomConfig,
 }
 
 impl GameInfo {
@@ -40,14 +40,30 @@
             msg_log: Vec::new(),
             sync_msg: None,
             is_paused: false,
-            teams_in_game: teams.len() as u8,
-            teams_at_start: teams,
-            config,
+            original_teams: teams,
+            original_config: config,
         }
     }
 
     pub fn client_teams(&self, client_id: ClientId) -> impl Iterator<Item = &TeamInfo> + Clone {
-        client_teams_impl(&self.teams_at_start, client_id)
+        client_teams_impl(&self.original_teams, client_id)
+    }
+
+    pub fn mark_left_teams<'a, I>(&mut self, team_names: I)
+    where
+        I: Iterator<Item = &'a String>,
+    {
+        if let Some(m) = &self.sync_msg {
+            self.msg_log.push(m.clone());
+            self.sync_msg = None
+        }
+
+        for team_name in team_names {
+            self.left_teams.push(team_name.clone());
+
+            let remove_msg = crate::utils::to_engine_msg(iter::once(b'F').chain(team_name.bytes()));
+            self.msg_log.push(remove_msg);
+        }
     }
 }
 
@@ -62,7 +78,7 @@
         const FIXED = 0b0000_0001;
         const RESTRICTED_JOIN = 0b0000_0010;
         const RESTRICTED_TEAM_ADD = 0b0000_0100;
-        const RESTRICTED_UNREGISTERED_PLAYERS = 0b0000_1000;
+        const REGISTRATION_REQUIRED = 0b0000_1000;
     }
 }
 
@@ -142,18 +158,15 @@
         &self.teams.last().unwrap().1
     }
 
-    pub fn remove_team(&mut self, name: &str) {
-        if let Some(index) = self.teams.iter().position(|(_, t)| t.name == name) {
+    pub fn remove_team(&mut self, team_name: &str) {
+        if let Some(index) = self.teams.iter().position(|(_, t)| t.name == team_name) {
             self.teams.remove(index);
         }
     }
 
     pub fn set_hedgehogs_number(&mut self, n: u8) -> Vec<String> {
         let mut names = Vec::new();
-        let teams = match self.game_info {
-            Some(ref mut info) => &mut info.teams_at_start,
-            None => &mut self.teams,
-        };
+        let teams = &mut self.teams;
 
         if teams.len() as u8 * n <= MAX_HEDGEHOGS_IN_ROOM {
             for (_, team) in teams.iter_mut() {
@@ -165,6 +178,12 @@
         names
     }
 
+    pub fn teams_in_game(&self) -> Option<u8> {
+        self.game_info
+            .as_ref()
+            .map(|info| (info.original_teams.len() - info.left_teams.len()) as u8)
+    }
+
     pub fn find_team_and_owner_mut<F>(&mut self, f: F) -> Option<(ClientId, &mut TeamInfo)>
     where
         F: Fn(&TeamInfo) -> bool,
@@ -239,9 +258,8 @@
     pub fn is_team_add_restricted(&self) -> bool {
         self.flags.contains(RoomFlags::RESTRICTED_TEAM_ADD)
     }
-    pub fn are_unregistered_players_restricted(&self) -> bool {
-        self.flags
-            .contains(RoomFlags::RESTRICTED_UNREGISTERED_PLAYERS)
+    pub fn is_registration_required(&self) -> bool {
+        self.flags.contains(RoomFlags::REGISTRATION_REQUIRED)
     }
 
     pub fn set_is_fixed(&mut self, value: bool) {
@@ -254,8 +272,7 @@
         self.flags.set(RoomFlags::RESTRICTED_TEAM_ADD, value)
     }
     pub fn set_unregistered_players_restriction(&mut self, value: bool) {
-        self.flags
-            .set(RoomFlags::RESTRICTED_UNREGISTERED_PLAYERS, value)
+        self.flags.set(RoomFlags::REGISTRATION_REQUIRED, value)
     }
 
     fn flags_string(&self) -> String {
@@ -269,7 +286,7 @@
         if self.is_join_restricted() {
             result += "j"
         }
-        if self.are_unregistered_players_restricted() {
+        if self.is_registration_required() {
             result += "r"
         }
         result
@@ -290,23 +307,27 @@
         ]
     }
 
+    pub fn config(&self) -> &RoomConfig {
+        &self.config
+    }
+
     pub fn active_config(&self) -> &RoomConfig {
         match self.game_info {
-            Some(ref info) => &info.config,
+            Some(ref info) => &info.original_config,
             None => &self.config,
         }
     }
 
     pub fn map_config(&self) -> Vec<String> {
         match self.game_info {
-            Some(ref info) => info.config.to_map_config(),
+            Some(ref info) => info.original_config.to_map_config(),
             None => self.config.to_map_config(),
         }
     }
 
     pub fn game_config(&self) -> Vec<GameCfg> {
         match self.game_info {
-            Some(ref info) => info.config.to_game_config(),
+            Some(ref info) => info.original_config.to_game_config(),
             None => self.config.to_game_config(),
         }
     }
--- a/rust/hedgewars-server/src/core/server.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/core/server.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,18 +1,20 @@
 use super::{
+    anteroom::HwAnteroomClient,
     client::HwClient,
     indexslab::IndexSlab,
     room::HwRoom,
-    types::{ClientId, RoomId, ServerVar},
+    types::{CheckerId, ClientId, RoomId, Voting},
 };
-use crate::{protocol::messages::HwProtocolMessage::Greeting, utils};
+use crate::utils;
+use hedgewars_network_protocol::types::{GameCfg, ServerVar, TeamInfo, Vote, VoteType};
 
-use crate::core::server::JoinRoomError::WrongProtocol;
+use crate::server::replaystorage::ReplayStorage;
+
 use bitflags::*;
 use log::*;
-use slab;
-use std::{borrow::BorrowMut, collections::HashSet, iter, num::NonZeroU16};
-
-type Slab<T> = slab::Slab<T>;
+use rand::{self, seq::SliceRandom, thread_rng, Rng};
+use slab::Slab;
+use std::{borrow::BorrowMut, cmp::min, collections::HashSet, iter, mem::replace};
 
 #[derive(Debug)]
 pub enum CreateRoomError {
@@ -24,8 +26,122 @@
 pub enum JoinRoomError {
     DoesntExist,
     WrongProtocol,
+    WrongPassword,
     Full,
     Restricted,
+    RegistrationRequired,
+}
+
+#[derive(Debug)]
+pub enum LeaveRoomResult {
+    RoomRemoved,
+    RoomRemains {
+        is_empty: bool,
+        was_master: bool,
+        was_in_game: bool,
+        new_master: Option<ClientId>,
+        removed_teams: Vec<String>,
+    },
+}
+
+#[derive(Debug)]
+pub struct ChangeMasterResult {
+    pub old_master_id: Option<ClientId>,
+    pub new_master_id: ClientId,
+}
+
+#[derive(Debug)]
+pub enum ChangeMasterError {
+    NoAccess,
+    AlreadyMaster,
+    NoClient,
+    ClientNotInRoom,
+}
+
+#[derive(Debug)]
+pub enum AddTeamError {
+    TooManyTeams,
+    TooManyHedgehogs,
+    TeamAlreadyExists,
+    Restricted,
+}
+
+#[derive(Debug)]
+pub enum RemoveTeamError {
+    NoTeam,
+    TeamNotOwned,
+}
+
+#[derive(Debug)]
+pub enum ModifyTeamError {
+    NoTeam,
+    NotMaster,
+}
+
+#[derive(Debug)]
+pub enum SetTeamCountError {
+    InvalidNumber,
+    NotMaster,
+}
+
+#[derive(Debug)]
+pub enum SetHedgehogsError {
+    NoTeam,
+    InvalidNumber(u8),
+    NotMaster,
+}
+
+#[derive(Debug)]
+pub enum SetConfigError {
+    NotMaster,
+    RoomFixed,
+}
+
+#[derive(Debug)]
+pub enum ModifyRoomNameError {
+    AccessDenied,
+    InvalidName,
+    DuplicateName,
+}
+
+#[derive(Debug)]
+pub enum StartVoteError {
+    VotingInProgress,
+}
+
+#[derive(Debug)]
+pub enum VoteEffect {
+    Kicked(ClientId, LeaveRoomResult),
+    Map(String),
+    Pause,
+    NewSeed(GameCfg),
+    HedgehogsPerTeam(u8, Vec<String>),
+}
+
+#[derive(Debug)]
+pub enum VoteResult {
+    Submitted,
+    Succeeded(VoteEffect),
+    Failed,
+}
+
+#[derive(Debug)]
+pub enum VoteError {
+    NoVoting,
+    AlreadyVoted,
+}
+
+#[derive(Debug)]
+pub enum StartGameError {
+    NotEnoughClans,
+    NotReady,
+    AlreadyInGame,
+}
+
+#[derive(Debug)]
+pub struct EndGameResult {
+    pub left_teams: Vec<String>,
+    pub unreadied_nicks: Vec<String>,
 }
 
 #[derive(Debug)]
@@ -33,47 +149,6 @@
 #[derive(Debug)]
 pub struct AccessError();
 
-pub struct HwAnteClient {
-    pub nick: Option<String>,
-    pub protocol_number: Option<NonZeroU16>,
-    pub server_salt: String,
-    pub is_checker: bool,
-    pub is_local_admin: bool,
-    pub is_registered: bool,
-    pub is_admin: bool,
-    pub is_contributor: bool,
-}
-
-pub struct HwAnteroom {
-    pub clients: IndexSlab<HwAnteClient>,
-}
-
-impl HwAnteroom {
-    pub fn new(clients_limit: usize) -> Self {
-        let clients = IndexSlab::with_capacity(clients_limit);
-        HwAnteroom { clients }
-    }
-
-    pub fn add_client(&mut self, client_id: ClientId, salt: String, is_local_admin: bool) {
-        let client = HwAnteClient {
-            nick: None,
-            protocol_number: None,
-            server_salt: salt,
-            is_checker: false,
-            is_local_admin,
-            is_registered: false,
-            is_admin: false,
-            is_contributor: false,
-        };
-        self.clients.insert(client_id, client);
-    }
-
-    pub fn remove_client(&mut self, client_id: ClientId) -> Option<HwAnteClient> {
-        let client = self.clients.remove(client_id);
-        client
-    }
-}
-
 pub struct ServerGreetings {
     pub for_latest_protocol: String,
     pub for_old_protocols: String,
@@ -94,26 +169,48 @@
     }
 }
 
+pub struct HwChecker {
+    pub id: ClientId,
+    pub is_ready: bool,
+}
+
+impl HwChecker {
+    pub fn new(id: ClientId) -> Self {
+        Self {
+            id,
+            is_ready: false,
+        }
+    }
+
+    pub fn set_is_ready(&mut self, ready: bool) {
+        self.is_ready = ready
+    }
+}
+
 pub struct HwServer {
-    pub clients: IndexSlab<HwClient>,
-    pub rooms: Slab<HwRoom>,
-    pub anteroom: HwAnteroom,
-    pub latest_protocol: u16,
-    pub flags: ServerFlags,
-    pub greetings: ServerGreetings,
+    clients: IndexSlab<HwClient>,
+    rooms: Slab<HwRoom>,
+    checkers: IndexSlab<HwChecker>,
+    latest_protocol: u16,
+    flags: ServerFlags,
+    greetings: ServerGreetings,
+    replay_storage: Option<ReplayStorage>,
 }
 
 impl HwServer {
     pub fn new(clients_limit: usize, rooms_limit: usize) -> Self {
+        //todo!("add reconnection IDs");
         let rooms = Slab::with_capacity(rooms_limit);
         let clients = IndexSlab::with_capacity(clients_limit);
+        let checkers = IndexSlab::new();
         Self {
             clients,
             rooms,
-            anteroom: HwAnteroom::new(clients_limit),
+            checkers,
             greetings: ServerGreetings::new(),
             latest_protocol: 58,
             flags: ServerFlags::empty(),
+            replay_storage: None,
         }
     }
 
@@ -123,8 +220,18 @@
     }
 
     #[inline]
-    pub fn client_mut(&mut self, client_id: ClientId) -> &mut HwClient {
-        &mut self.clients[client_id]
+    pub fn get_checker_mut(&mut self, checker_id: CheckerId) -> Option<&mut HwChecker> {
+        self.checkers.get_mut(checker_id)
+    }
+
+    #[inline]
+    pub fn has_client(&self, client_id: ClientId) -> bool {
+        self.clients.contains(client_id)
+    }
+
+    #[inline]
+    pub fn iter_clients(&self) -> impl Iterator<Item = &HwClient> + Clone {
+        self.clients.iter().map(|(_, c)| c)
     }
 
     #[inline]
@@ -133,8 +240,38 @@
     }
 
     #[inline]
-    pub fn room_mut(&mut self, room_id: RoomId) -> &mut HwRoom {
-        &mut self.rooms[room_id]
+    pub fn get_room(&self, room_id: RoomId) -> Option<&HwRoom> {
+        self.rooms.get(room_id)
+    }
+
+    #[inline]
+    fn get_room_mut(&mut self, room_id: RoomId) -> Option<&mut HwRoom> {
+        self.rooms.get_mut(room_id)
+    }
+
+    #[inline]
+    pub fn iter_rooms(&self) -> impl Iterator<Item = &HwRoom> {
+        self.rooms.iter().map(|(_, r)| r)
+    }
+
+    #[inline]
+    pub fn client_and_room(&self, client_id: ClientId, room_id: RoomId) -> (&HwClient, &HwRoom) {
+        (&self.clients[client_id], &self.rooms[room_id])
+    }
+
+    #[inline]
+    fn client_and_room_mut(&mut self, client_id: ClientId) -> Option<(&mut HwClient, &mut HwRoom)> {
+        let client = &mut self.clients[client_id];
+        if let Some(room_id) = client.room_id {
+            Some((client, &mut self.rooms[room_id]))
+        } else {
+            None
+        }
+    }
+
+    #[inline]
+    pub fn get_room_control(&mut self, client_id: ClientId) -> Option<HwRoomControl> {
+        HwRoomControl::new(self, client_id)
     }
 
     #[inline]
@@ -145,18 +282,24 @@
             .unwrap_or(false)
     }
 
-    pub fn add_client(&mut self, client_id: ClientId, data: HwAnteClient) {
-        if let (Some(protocol), Some(nick)) = (data.protocol_number, data.nick) {
+    #[inline]
+    pub fn is_checker(&self, client_id: ClientId) -> bool {
+        self.checkers.contains(client_id)
+    }
+
+    pub fn add_client(&mut self, client_id: ClientId, data: HwAnteroomClient) {
+        if data.is_checker {
+            self.checkers.insert(client_id, HwChecker::new(client_id));
+        } else if let (Some(protocol), Some(nick)) = (data.protocol_number, data.nick) {
             let mut client = HwClient::new(client_id, protocol.get(), nick);
-            client.set_is_checker(data.is_checker);
             #[cfg(not(feature = "official-server"))]
             client.set_is_admin(data.is_local_admin);
 
             #[cfg(feature = "official-server")]
             {
-                client.set_is_registered(info.is_registered);
-                client.set_is_admin(info.is_admin);
-                client.set_is_contributor(info.is_contributor);
+                client.set_is_registered(data.is_registered);
+                client.set_is_admin(data.is_admin);
+                client.set_is_contributor(data.is_contributor);
             }
 
             self.clients.insert(client_id, client);
@@ -176,11 +319,6 @@
     }
 
     #[inline]
-    pub fn get_client_nick(&self, client_id: ClientId) -> &str {
-        &self.clients[client_id].nick
-    }
-
-    #[inline]
     pub fn create_room(
         &mut self,
         creator_id: ClientId,
@@ -206,6 +344,7 @@
         &mut self,
         client_id: ClientId,
         room_id: RoomId,
+        room_password: Option<&str>,
     ) -> Result<(&HwClient, &HwRoom, impl Iterator<Item = &HwClient> + Clone), JoinRoomError> {
         use JoinRoomError::*;
         let room = &mut self.rooms[room_id];
@@ -213,8 +352,15 @@
 
         if client.protocol_number != room.protocol_number {
             Err(WrongProtocol)
+        } else if room.password.is_some()
+            && room_password != room.password.as_deref()
+            && !client.has_super_power()
+        {
+            Err(WrongPassword)
         } else if room.is_join_restricted() {
             Err(Restricted)
+        } else if room.is_registration_required() {
+            Err(RegistrationRequired)
         } else if room.players_number == u8::max_value() {
             Err(Full)
         } else {
@@ -223,7 +369,8 @@
             Ok((
                 &self.clients[client_id],
                 &self.rooms[room_id],
-                self.clients.iter().map(|(_, c)| c),
+                self.iter_clients()
+                    .filter(move |c| c.room_id == Some(room_id)),
             ))
         }
     }
@@ -233,17 +380,26 @@
         &mut self,
         client_id: ClientId,
         room_name: &str,
+        room_password: Option<&str>,
     ) -> Result<(&HwClient, &HwRoom, impl Iterator<Item = &HwClient> + Clone), JoinRoomError> {
         use JoinRoomError::*;
         let room = self.rooms.iter().find(|(_, r)| r.name == room_name);
         if let Some((_, room)) = room {
             let room_id = room.id;
-            self.join_room(client_id, room_id)
+            self.join_room(client_id, room_id, room_password)
         } else {
             Err(DoesntExist)
         }
     }
 
+    pub fn enable_super_power(&mut self, client_id: ClientId) -> bool {
+        let client = &mut self.clients[client_id];
+        if client.is_admin() {
+            client.set_has_super_power(true);
+        }
+        client.is_admin()
+    }
+
     #[inline]
     pub fn set_var(&mut self, client_id: ClientId, var: ServerVar) -> Result<(), AccessError> {
         if self.clients[client_id].is_admin() {
@@ -299,7 +455,7 @@
             .find_map(|(_, r)| Some(r).filter(|r| r.name == name))
     }
 
-    pub fn find_room_mut(&mut self, name: &str) -> Option<&mut HwRoom> {
+    fn find_room_mut(&mut self, name: &str) -> Option<&mut HwRoom> {
         self.rooms
             .iter_mut()
             .find_map(|(_, r)| Some(r).filter(|r| r.name == name))
@@ -311,13 +467,13 @@
             .find_map(|(_, c)| Some(c).filter(|c| c.nick == nick))
     }
 
-    pub fn find_client_mut(&mut self, nick: &str) -> Option<&mut HwClient> {
+    fn find_client_mut(&mut self, nick: &str) -> Option<&mut HwClient> {
         self.clients
             .iter_mut()
             .find_map(|(_, c)| Some(c).filter(|c| c.nick == nick))
     }
 
-    pub fn all_clients(&self) -> impl Iterator<Item = ClientId> + '_ {
+    pub fn iter_client_ids(&self) -> impl Iterator<Item = ClientId> + '_ {
         self.clients.iter().map(|(id, _)| id)
     }
 
@@ -335,7 +491,7 @@
         self.rooms.iter().filter(f).map(|(_, c)| c.id)
     }
 
-    pub fn collect_clients<F>(&self, f: F) -> Vec<ClientId>
+    pub fn collect_client_ids<F>(&self, f: F) -> Vec<ClientId>
     where
         F: Fn(&(usize, &HwClient)) -> bool,
     {
@@ -353,25 +509,25 @@
             .collect()
     }
 
-    pub fn lobby_clients(&self) -> impl Iterator<Item = ClientId> + '_ {
+    pub fn lobby_client_ids(&self) -> impl Iterator<Item = ClientId> + '_ {
         self.filter_clients(|(_, c)| c.room_id == None)
     }
 
-    pub fn room_clients(&self, room_id: RoomId) -> impl Iterator<Item = ClientId> + '_ {
+    pub fn room_client_ids(&self, room_id: RoomId) -> impl Iterator<Item = ClientId> + '_ {
         self.filter_clients(move |(_, c)| c.room_id == Some(room_id))
     }
 
-    pub fn protocol_clients(&self, protocol: u16) -> impl Iterator<Item = ClientId> + '_ {
+    pub fn protocol_client_ids(&self, protocol: u16) -> impl Iterator<Item = ClientId> + '_ {
         self.filter_clients(move |(_, c)| c.protocol_number == protocol)
     }
 
-    pub fn protocol_rooms(&self, protocol: u16) -> impl Iterator<Item = RoomId> + '_ {
+    pub fn protocol_room_ids(&self, protocol: u16) -> impl Iterator<Item = RoomId> + '_ {
         self.filter_rooms(move |(_, r)| r.protocol_number == protocol)
     }
 
-    pub fn other_clients_in_room(&self, self_id: ClientId) -> Vec<ClientId> {
+    pub fn other_client_ids_in_room(&self, self_id: ClientId) -> Vec<ClientId> {
         let room_id = self.clients[self_id].room_id;
-        self.collect_clients(|(id, c)| *id != self_id && c.room_id == room_id)
+        self.collect_client_ids(|(id, c)| *id != self_id && c.room_id == room_id)
     }
 
     pub fn is_registered_only(&self) -> bool {
@@ -381,6 +537,597 @@
     pub fn set_is_registered_only(&mut self, value: bool) {
         self.flags.set(ServerFlags::REGISTERED_ONLY, value)
     }
+
+    pub fn set_room_saves(&mut self, room_id: RoomId, text: &str) -> Result<(), serde_yaml::Error> {
+        if let Some(room) = self.rooms.get_mut(room_id) {
+            room.set_saves(text)
+        } else {
+            Ok(())
+        }
+    }
+}
+
+pub struct HwRoomControl<'a> {
+    server: &'a mut HwServer,
+    client_id: ClientId,
+    room_id: RoomId,
+    is_room_removed: bool,
+}
+
+impl<'a> HwRoomControl<'a> {
+    #[inline]
+    pub fn new(server: &'a mut HwServer, client_id: ClientId) -> Option<Self> {
+        if let Some(room_id) = server.clients[client_id].room_id {
+            Some(Self {
+                server,
+                client_id,
+                room_id,
+                is_room_removed: false,
+            })
+        } else {
+            None
+        }
+    }
+
+    #[inline]
+    pub fn cleanup_room(self) {
+        if self.is_room_removed {
+            self.server.rooms.remove(self.room_id);
+        }
+    }
+
+    #[inline]
+    pub fn server(&self) -> &HwServer {
+        self.server
+    }
+
+    #[inline]
+    pub fn client(&self) -> &HwClient {
+        &self.server.clients[self.client_id]
+    }
+
+    #[inline]
+    fn client_mut(&mut self) -> &mut HwClient {
+        &mut self.server.clients[self.client_id]
+    }
+
+    #[inline]
+    pub fn room(&self) -> &HwRoom {
+        &self.server.rooms[self.room_id]
+    }
+
+    #[inline]
+    fn room_mut(&mut self) -> &mut HwRoom {
+        &mut self.server.rooms[self.room_id]
+    }
+
+    #[inline]
+    pub fn get(&self) -> (&HwClient, &HwRoom) {
+        (self.client(), self.room())
+    }
+
+    #[inline]
+    fn get_mut(&mut self) -> (&mut HwClient, &mut HwRoom) {
+        (
+            &mut self.server.clients[self.client_id],
+            &mut self.server.rooms[self.room_id],
+        )
+    }
+
+    pub fn change_client<'b: 'a>(self, client_id: ClientId) -> Option<HwRoomControl<'a>> {
+        let room_id = self.room_id;
+        HwRoomControl::new(self.server, client_id).filter(|c| c.room_id == room_id)
+    }
+
+    fn remove_from_room(&mut self, client_id: ClientId) -> LeaveRoomResult {
+        let (client, room) = self.server.client_and_room_mut(client_id).expect("Caller should have ensured the client is in this room");
+        room.players_number -= 1;
+        client.room_id = None;
+
+        let is_empty = room.players_number == 0;
+        let is_fixed = room.is_fixed();
+        let was_master = room.master_id == Some(client.id);
+        let was_in_game = client.is_in_game();
+        let mut removed_teams = vec![];
+
+        if is_empty && !is_fixed {
+            if client.is_ready() && room.ready_players_number > 0 {
+                room.ready_players_number -= 1;
+            }
+
+            if let Some(ref mut info) = room.game_info {
+                removed_teams = info
+                    .client_teams(client.id)
+                    .map(|t| t.name.clone())
+                    .collect();
+                info.mark_left_teams(removed_teams.iter());
+            } else {
+                removed_teams = room
+                    .client_teams(client.id)
+                    .map(|t| t.name.clone())
+                    .collect();
+                for team_name in &removed_teams {
+                    room.remove_team(team_name);
+                }
+            }
+
+            if client.is_master() && !is_fixed {
+                client.set_is_master(false);
+                room.master_id = None;
+            }
+        }
+
+        client.set_is_ready(false);
+        client.set_is_in_game(false);
+
+        if !is_fixed {
+            if room.players_number == 0 {
+                self.is_room_removed = true
+            } else if room.master_id == None {
+                let protocol_number = room.protocol_number;
+                let new_master_id = self.server.room_client_ids(self.room_id).next();
+
+                if let Some(new_master_id) = new_master_id {
+                    let room = self.room_mut();
+                    room.master_id = Some(new_master_id);
+                    let new_master = &mut self.server.clients[new_master_id];
+                    new_master.set_is_master(true);
+
+                    if protocol_number < 42 {
+                        let nick = new_master.nick.clone();
+                        self.room_mut().name = nick;
+                    }
+
+                    let room = self.room_mut();
+                    room.set_join_restriction(false);
+                    room.set_team_add_restriction(false);
+                    room.set_unregistered_players_restriction(true);
+                }
+            }
+        }
+
+        if is_empty && !is_fixed {
+            LeaveRoomResult::RoomRemoved
+        } else {
+            LeaveRoomResult::RoomRemains {
+                is_empty,
+                was_master,
+                was_in_game,
+                new_master: self.room().master_id,
+                removed_teams,
+            }
+        }
+    }
+
+    pub fn leave_room(&mut self) -> LeaveRoomResult {
+        self.remove_from_room(self.client_id)
+    }
+
+    pub fn change_master(
+        &mut self,
+        new_master_nick: String,
+    ) -> Result<ChangeMasterResult, ChangeMasterError> {
+        use ChangeMasterError::*;
+        let (client, room) = self.get_mut();
+
+        if client.is_admin() || room.master_id == Some(client.id) {
+            let new_master_id = self
+                .server
+                .clients
+                .iter()
+                .find(|(_, c)| c.nick == new_master_nick)
+                .map(|(id, _)| id);
+
+            match new_master_id {
+                Some(new_master_id) if new_master_id == self.client_id => Err(AlreadyMaster),
+                Some(new_master_id) => {
+                    let new_master = &mut self.server.clients[new_master_id];
+                    if new_master.room_id == Some(self.room_id) {
+                        self.server.clients[new_master_id].set_is_master(true);
+                        let old_master_id = self.room().master_id;
+
+                        if let Some(master_id) = old_master_id {
+                            self.server.clients[master_id].set_is_master(false);
+                        }
+                        self.room_mut().master_id = Some(new_master_id);
+                        Ok(ChangeMasterResult {
+                            old_master_id,
+                            new_master_id,
+                        })
+                    } else {
+                        Err(ClientNotInRoom)
+                    }
+                }
+                None => Err(NoClient),
+            }
+        } else {
+            Err(NoAccess)
+        }
+    }
+
+    pub fn start_vote(&mut self, kind: VoteType) -> Result<(), StartVoteError> {
+        use StartVoteError::*;
+        match self.room().voting {
+            Some(_) => Err(VotingInProgress),
+            None => {
+                let voting = Voting::new(kind, self.server.room_client_ids(self.room_id).collect());
+                self.room_mut().voting = Some(voting);
+                Ok(())
+            }
+        }
+    }
+
+    fn apply_vote(&mut self, kind: VoteType) -> Option<VoteEffect> {
+        match kind {
+            VoteType::Kick(nick) => {
+                if let Some(kicked_id) = self
+                    .server
+                    .find_client(&nick)
+                    .filter(|c| c.room_id == Some(self.room_id))
+                    .map(|c| c.id)
+                {
+                    let leave_result = self.remove_from_room(kicked_id);
+                    Some(VoteEffect::Kicked(kicked_id, leave_result))
+                } else {
+                    None
+                }
+            }
+            VoteType::Map(None) => None,
+            VoteType::Map(Some(name)) => self
+                .load_config(&name)
+                .map(|s| VoteEffect::Map(s.to_string())),
+            VoteType::Pause => Some(VoteEffect::Pause).filter(|_| self.toggle_pause()),
+            VoteType::NewSeed => {
+                let seed = thread_rng().gen_range(0..1_000_000_000).to_string();
+                let cfg = GameCfg::Seed(seed);
+                //todo!("Protocol backwards compatibility");
+                self.room_mut().set_config(cfg.clone());
+                Some(VoteEffect::NewSeed(cfg))
+            }
+            VoteType::HedgehogsPerTeam(number) => {
+                let nicks = self.set_hedgehogs_number(number);
+                Some(VoteEffect::HedgehogsPerTeam(number, nicks))
+            }
+        }
+    }
+
+    pub fn vote(&mut self, vote: Vote) -> Result<VoteResult, VoteError> {
+        use self::{VoteError::*, VoteResult::*};
+        let client_id = self.client_id;
+        if let Some(ref mut voting) = self.room_mut().voting {
+            if vote.is_forced || voting.votes.iter().all(|(id, _)| client_id != *id) {
+                voting.votes.push((client_id, vote.is_pro));
+                let i = voting.votes.iter();
+                let pro = i.clone().filter(|(_, v)| *v).count();
+                let contra = i.filter(|(_, v)| !*v).count();
+                let success_quota = voting.voters.len() / 2 + 1;
+
+                if vote.is_forced && vote.is_pro || pro >= success_quota {
+                    let voting = self.room_mut().voting.take().unwrap();
+                    if let Some(effect) = self.apply_vote(voting.kind) {
+                        Ok(Succeeded(effect))
+                    } else {
+                        Ok(Failed)
+                    }
+                } else if vote.is_forced && !vote.is_pro
+                    || contra > voting.voters.len() - success_quota
+                {
+                    Ok(Failed)
+                } else {
+                    Ok(Submitted)
+                }
+            } else {
+                Err(AlreadyVoted)
+            }
+        } else {
+            Err(NoVoting)
+        }
+    }
+
+    pub fn toggle_flag(&mut self, flags: super::room::RoomFlags) -> bool {
+        let (client, room) = self.get_mut();
+        if client.is_master() {
+            room.flags.toggle(flags);
+        }
+        client.is_master()
+    }
+
+    pub fn fix_room(&mut self) -> Result<(), AccessError> {
+        let (client, room) = self.get_mut();
+        if client.is_admin() {
+            room.set_is_fixed(true);
+            room.set_join_restriction(false);
+            room.set_team_add_restriction(false);
+            room.set_unregistered_players_restriction(true);
+            Ok(())
+        } else {
+            Err(AccessError())
+        }
+    }
+
+    pub fn unfix_room(&mut self) -> Result<(), AccessError> {
+        let (client, room) = self.get_mut();
+        if client.is_admin() {
+            room.set_is_fixed(false);
+            Ok(())
+        } else {
+            Err(AccessError())
+        }
+    }
+
+    pub fn set_room_name(&mut self, mut name: String) -> Result<String, ModifyRoomNameError> {
+        use ModifyRoomNameError::*;
+        let room_exists = self.server.has_room(&name);
+        let (client, room) = self.get_mut();
+        if room.is_fixed() || room.master_id != Some(client.id) {
+            Err(AccessDenied)
+        } else if utils::is_name_illegal(&name) {
+            Err(InvalidName)
+        } else if room_exists {
+            Err(DuplicateName)
+        } else {
+            std::mem::swap(&mut room.name, &mut name);
+            Ok(name)
+        }
+    }
+
+    pub fn set_room_greeting(&mut self, greeting: Option<String>) -> Result<(), AccessError> {
+        let (client, room) = self.get_mut();
+        if client.is_admin() {
+            room.greeting = greeting.unwrap_or(String::new());
+            Ok(())
+        } else {
+            Err(AccessError())
+        }
+    }
+
+    pub fn set_room_max_teams(&mut self, count: u8) -> Result<(), SetTeamCountError> {
+        use SetTeamCountError::*;
+        let (client, room) = self.get_mut();
+        if !client.is_master() {
+            Err(NotMaster)
+        } else if !(2..=super::room::MAX_TEAMS_IN_ROOM).contains(&count) {
+            Err(InvalidNumber)
+        } else {
+            room.max_teams = count;
+            Ok(())
+        }
+    }
+
+    pub fn set_team_hedgehogs_number(
+        &mut self,
+        team_name: &str,
+        number: u8,
+    ) -> Result<(), SetHedgehogsError> {
+        use SetHedgehogsError::*;
+        let (client, room) = self.get_mut();
+        let addable_hedgehogs = room.addable_hedgehogs();
+        if let Some((_, team)) = room.find_team_and_owner_mut(|t| t.name == team_name) {
+            let max_hedgehogs = min(
+                super::room::MAX_HEDGEHOGS_IN_ROOM,
+                addable_hedgehogs + team.hedgehogs_number,
+            );
+            if !client.is_master() {
+                Err(NotMaster)
+            } else if !(1..=max_hedgehogs).contains(&number) {
+                Err(InvalidNumber(team.hedgehogs_number))
+            } else {
+                team.hedgehogs_number = number;
+                Ok(())
+            }
+        } else {
+            Err(NoTeam)
+        }
+    }
+
+    pub fn set_hedgehogs_number(&mut self, number: u8) -> Vec<String> {
+        self.room_mut().set_hedgehogs_number(number)
+    }
+
+    pub fn add_team(&mut self, mut info: Box<TeamInfo>) -> Result<&TeamInfo, AddTeamError> {
+        use AddTeamError::*;
+        let (client, room) = self.get_mut();
+        if room.teams.len() >= room.max_teams as usize {
+            Err(TooManyTeams)
+        } else if room.addable_hedgehogs() == 0 {
+            Err(TooManyHedgehogs)
+        } else if room.find_team(|t| t.name == info.name) != None {
+            Err(TeamAlreadyExists)
+        } else if room.is_team_add_restricted() {
+            Err(Restricted)
+        } else {
+            info.owner = client.nick.clone();
+            let team = room.add_team(client.id, *info, client.protocol_number < 42);
+            client.teams_in_game += 1;
+            client.clan = Some(team.color);
+            Ok(team)
+        }
+    }
+
+    pub fn remove_team(&mut self, team_name: &str) -> Result<(), RemoveTeamError> {
+        use RemoveTeamError::*;
+        let (client, room) = self.get_mut();
+        match room.find_team_owner(team_name) {
+            None => Err(NoTeam),
+            Some((id, _)) if id != client.id => Err(RemoveTeamError::TeamNotOwned),
+            Some(_) => {
+                client.teams_in_game -= 1;
+                client.clan = room.find_team_color(client.id);
+                room.remove_team(team_name);
+                Ok(())
+            }
+        }
+    }
+
+    pub fn set_team_color(&mut self, team_name: &str, color: u8) -> Result<(), ModifyTeamError> {
+        use ModifyTeamError::*;
+        let (client, room) = self.get_mut();
+        if let Some((owner, team)) = room.find_team_and_owner_mut(|t| t.name == team_name) {
+            if !client.is_master() {
+                Err(NotMaster)
+            } else {
+                team.color = color;
+                self.server.clients[owner].clan = Some(color);
+                Ok(())
+            }
+        } else {
+            Err(NoTeam)
+        }
+    }
+
+    pub fn set_config(&mut self, cfg: GameCfg) -> Result<(), SetConfigError> {
+        use SetConfigError::*;
+        let (client, room) = self.get_mut();
+        if room.is_fixed() {
+            Err(RoomFixed)
+        } else if !client.is_master() {
+            Err(NotMaster)
+        } else {
+            let cfg = match cfg {
+                GameCfg::Scheme(name, mut values) => {
+                    if client.protocol_number == 49 && values.len() >= 2 {
+                        let mut s = "X".repeat(50);
+                        s.push_str(&values.pop().unwrap());
+                        values.push(s);
+                    }
+                    GameCfg::Scheme(name, values)
+                }
+                cfg => cfg,
+            };
+            room.set_config(cfg);
+            Ok(())
+        }
+    }
+
+    pub fn save_config(&mut self, name: String, location: String) {
+        self.room_mut().save_config(name, location);
+    }
+
+    pub fn load_config(&mut self, name: &str) -> Option<&str> {
+        self.room_mut().load_config(name)
+    }
+
+    pub fn delete_config(&mut self, name: &str) -> bool {
+        self.room_mut().delete_config(name)
+    }
+
+    pub fn toggle_ready(&mut self) -> bool {
+        let (client, room) = self.get_mut();
+        client.set_is_ready(!client.is_ready());
+        if client.is_ready() {
+            room.ready_players_number += 1;
+        } else {
+            room.ready_players_number -= 1;
+        }
+        client.is_ready()
+    }
+
+    pub fn start_game(&mut self) -> Result<Vec<String>, StartGameError> {
+        use StartGameError::*;
+        let (room_clients, room_nicks): (Vec<_>, Vec<_>) = self
+            .server
+            .clients
+            .iter()
+            .map(|(id, c)| (id, c.nick.clone()))
+            .unzip();
+
+        let room = self.room_mut();
+
+        if !room.has_multiple_clans() {
+            Err(NotEnoughClans)
+        } else if room.protocol_number <= 43 && room.players_number != room.ready_players_number {
+            Err(NotReady)
+        } else if room.game_info.is_some() {
+            Err(AlreadyInGame)
+        } else {
+            room.start_round();
+            for id in room_clients {
+                let team_indices = self.room().client_team_indices(id);
+                let c = &mut self.server.clients[id];
+                c.set_is_in_game(true);
+                c.team_indices = team_indices;
+            }
+            Ok(room_nicks)
+        }
+    }
+
+    pub fn toggle_pause(&mut self) -> bool {
+        if let Some(ref mut info) = self.room_mut().game_info {
+            info.is_paused = !info.is_paused;
+        }
+        self.room_mut().game_info.is_some()
+    }
+
+    pub fn leave_game(&mut self) -> Option<Vec<String>> {
+        let (client, room) = self.get_mut();
+        let client_left = client.is_in_game();
+        if client_left {
+            client.set_is_in_game(false);
+
+            if let Some(ref mut info) = room.game_info {
+                let team_names: Vec<_> = info
+                    .client_teams(client.id)
+                    .map(|t| t.name.clone())
+                    .collect();
+
+                info.mark_left_teams(team_names.iter());
+
+                Some(team_names)
+            } else {
+                None
+            }
+        } else {
+            None
+        }
+    }
+
+    pub fn end_game(&mut self) -> Option<EndGameResult> {
+        let room = self.room_mut();
+        room.ready_players_number = room.master_id.is_some() as u8;
+
+        if let Some(mut info) = replace(&mut room.game_info, None) {
+            let room_id = room.id;
+            for team_name in &info.left_teams {
+                room.remove_team(team_name);
+            }
+
+            let unreadied_nicks: Vec<_> = self
+                .server
+                .clients
+                .iter_mut()
+                .filter(|(_, c)| c.room_id == Some(room_id))
+                .map(|(_, c)| {
+                    c.set_is_ready(c.is_master());
+                    c
+                })
+                .filter_map(|c| {
+                    if !c.is_master() {
+                        Some(c.nick.clone())
+                    } else {
+                        None
+                    }
+                })
+                .collect();
+
+            Some(EndGameResult {
+                left_teams: replace(&mut info.left_teams, vec![]),
+                unreadied_nicks,
+            })
+        } else {
+            None
+        }
+    }
+
+    pub fn log_engine_msg(&mut self, log_msg: String, sync_msg: Option<Option<String>>) {
+        if let Some(ref mut info) = self.room_mut().game_info {
+            if !log_msg.is_empty() {
+                info.msg_log.push(log_msg);
+            }
+            if let Some(msg) = sync_msg {
+                info.sync_msg = msg;
+            }
+        }
+    }
 }
 
 fn allocate_room(rooms: &mut Slab<HwRoom>) -> &mut HwRoom {
@@ -408,7 +1155,10 @@
     client.room_id = Some(room.id);
     client.set_is_master(true);
     client.set_is_ready(true);
-    client.set_is_joined_mid_game(false);
+    client.set_is_in_game(false);
+    client.clan = None;
+    client.teams_in_game = 0;
+    client.team_indices = vec![];
 
     (client, room)
 }
@@ -419,7 +1169,6 @@
     room.players_number += 1;
 
     client.room_id = Some(room.id);
-    client.set_is_joined_mid_game(room.game_info.is_some());
     client.set_is_in_game(room.game_info.is_some());
 
     if let Some(ref mut info) = room.game_info {
@@ -430,13 +1179,6 @@
 
         if !team_names.is_empty() {
             info.left_teams.retain(|name| !team_names.contains(&name));
-            info.teams_in_game += team_names.len() as u8;
-            room.teams = info
-                .teams_at_start
-                .iter()
-                .filter(|(_, t)| !team_names.contains(&t.name))
-                .cloned()
-                .collect();
         }
     }
 }
--- a/rust/hedgewars-server/src/core/types.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/core/types.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,158 +1,10 @@
+use hedgewars_network_protocol::types::{RoomConfig, TeamInfo, VoteType};
 use serde_derive::{Deserialize, Serialize};
 
+pub type CheckerId = usize;
 pub type ClientId = usize;
 pub type RoomId = usize;
 
-pub const MAX_HEDGEHOGS_PER_TEAM: u8 = 8;
-
-#[derive(PartialEq, Eq, Clone, Debug)]
-pub enum ServerVar {
-    MOTDNew(String),
-    MOTDOld(String),
-    LatestProto(u16),
-}
-
-#[derive(PartialEq, Eq, Clone, Debug)]
-pub enum GameCfg {
-    FeatureSize(u32),
-    MapType(String),
-    MapGenerator(u32),
-    MazeSize(u32),
-    Seed(String),
-    Template(u32),
-
-    Ammo(String, Option<String>),
-    Scheme(String, Vec<String>),
-    Script(String),
-    Theme(String),
-    DrawnMap(String),
-}
-
-#[derive(PartialEq, Eq, Clone, Debug)]
-pub struct TeamInfo {
-    pub owner: String,
-    pub name: String,
-    pub color: u8,
-    pub grave: String,
-    pub fort: String,
-    pub voice_pack: String,
-    pub flag: String,
-    pub difficulty: u8,
-    pub hedgehogs_number: u8,
-    pub hedgehogs: [HedgehogInfo; MAX_HEDGEHOGS_PER_TEAM as usize],
-}
-
-#[derive(PartialEq, Eq, Clone, Debug)]
-pub struct HedgehogInfo {
-    pub name: String,
-    pub hat: String,
-}
-
-#[derive(Clone, Serialize, Deserialize, Debug)]
-pub struct Ammo {
-    pub name: String,
-    pub settings: Option<String>,
-}
-
-#[derive(Clone, Serialize, Deserialize, Debug)]
-pub struct Scheme {
-    pub name: String,
-    pub settings: Vec<String>,
-}
-
-#[derive(Clone, Serialize, Deserialize, Debug)]
-pub struct RoomConfig {
-    pub feature_size: u32,
-    pub map_type: String,
-    pub map_generator: u32,
-    pub maze_size: u32,
-    pub seed: String,
-    pub template: u32,
-
-    pub ammo: Ammo,
-    pub scheme: Scheme,
-    pub script: String,
-    pub theme: String,
-    pub drawn_map: Option<String>,
-}
-
-impl RoomConfig {
-    pub fn new() -> RoomConfig {
-        RoomConfig {
-            feature_size: 12,
-            map_type: "+rnd+".to_string(),
-            map_generator: 0,
-            maze_size: 0,
-            seed: "seed".to_string(),
-            template: 0,
-
-            ammo: Ammo {
-                name: "Default".to_string(),
-                settings: None,
-            },
-            scheme: Scheme {
-                name: "Default".to_string(),
-                settings: Vec::new(),
-            },
-            script: "Normal".to_string(),
-            theme: "\u{1f994}".to_string(),
-            drawn_map: None,
-        }
-    }
-
-    pub fn set_config(&mut self, cfg: GameCfg) {
-        match cfg {
-            GameCfg::FeatureSize(s) => self.feature_size = s,
-            GameCfg::MapType(t) => self.map_type = t,
-            GameCfg::MapGenerator(g) => self.map_generator = g,
-            GameCfg::MazeSize(s) => self.maze_size = s,
-            GameCfg::Seed(s) => self.seed = s,
-            GameCfg::Template(t) => self.template = t,
-
-            GameCfg::Ammo(n, s) => {
-                self.ammo = Ammo {
-                    name: n,
-                    settings: s,
-                }
-            }
-            GameCfg::Scheme(n, s) => {
-                self.scheme = Scheme {
-                    name: n,
-                    settings: s,
-                }
-            }
-            GameCfg::Script(s) => self.script = s,
-            GameCfg::Theme(t) => self.theme = t,
-            GameCfg::DrawnMap(m) => self.drawn_map = Some(m),
-        };
-    }
-
-    pub fn to_map_config(&self) -> Vec<String> {
-        vec![
-            self.feature_size.to_string(),
-            self.map_type.to_string(),
-            self.map_generator.to_string(),
-            self.maze_size.to_string(),
-            self.seed.to_string(),
-            self.template.to_string(),
-        ]
-    }
-
-    pub fn to_game_config(&self) -> Vec<GameCfg> {
-        use GameCfg::*;
-        let mut v = vec![
-            Ammo(self.ammo.name.to_string(), self.ammo.settings.clone()),
-            Scheme(self.scheme.name.to_string(), self.scheme.settings.clone()),
-            Script(self.script.to_string()),
-            Theme(self.theme.to_string()),
-        ];
-        if let Some(ref m) = self.drawn_map {
-            v.push(DrawnMap(m.to_string()))
-        }
-        v
-    }
-}
-
 #[derive(Debug)]
 pub struct Replay {
     pub config: RoomConfig,
@@ -160,20 +12,6 @@
     pub message_log: Vec<String>,
 }
 
-#[derive(PartialEq, Eq, Clone, Debug)]
-pub enum VoteType {
-    Kick(String),
-    Map(Option<String>),
-    Pause,
-    NewSeed,
-    HedgehogsPerTeam(u8),
-}
-
-pub struct Vote {
-    pub is_pro: bool,
-    pub is_forced: bool,
-}
-
 #[derive(Clone, Debug)]
 pub struct Voting {
     pub ttl: u32,
--- a/rust/hedgewars-server/src/handlers.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/handlers.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,4 +1,3 @@
-use mio;
 use std::{
     cmp::PartialEq,
     collections::HashMap,
@@ -11,18 +10,24 @@
     inanteroom::LoginResult,
     strings::*,
 };
+use crate::handlers::actions::ToPendingMessage;
 use crate::{
     core::{
+        anteroom::HwAnteroom,
         room::RoomSave,
         server::HwServer,
-        types::{ClientId, GameCfg, Replay, RoomId, TeamInfo},
+        types::{ClientId, Replay, RoomId},
     },
-    protocol::messages::{
+    utils,
+};
+use hedgewars_network_protocol::{
+    messages::{
         global_chat, server_chat, HwProtocolMessage, HwProtocolMessage::EngineMessage,
         HwServerMessage, HwServerMessage::*,
     },
-    utils,
+    types::{GameCfg, TeamInfo},
 };
+
 use base64::encode;
 use log::*;
 use rand::{thread_rng, RngCore};
@@ -82,6 +87,20 @@
     }
 }
 
+pub struct ServerState {
+    pub server: HwServer,
+    pub anteroom: HwAnteroom,
+}
+
+impl ServerState {
+    pub fn new(clients_limit: usize, rooms_limit: usize) -> Self {
+        Self {
+            server: HwServer::new(clients_limit, rooms_limit),
+            anteroom: HwAnteroom::new(clients_limit),
+        }
+    }
+}
+
 #[derive(Debug)]
 pub struct AccountInfo {
     pub is_registered: bool,
@@ -101,6 +120,10 @@
         client_salt: String,
         server_salt: String,
     },
+    GetCheckerAccount {
+        nick: String,
+        password: String,
+    },
     GetReplay {
         id: u32,
     },
@@ -119,6 +142,7 @@
 pub enum IoResult {
     AccountRegistered(bool),
     Account(Option<AccountInfo>),
+    CheckerAccount { is_registered: bool },
     Replay(Option<Replay>),
     SaveRoom(RoomId, bool),
     LoadRoom(RoomId, Option<String>),
@@ -219,10 +243,10 @@
         Destination::ToIds(ids) => ids,
         Destination::ToAll { group, skip_self } => {
             let mut ids: Vec<_> = match group {
-                DestinationGroup::All => server.all_clients().collect(),
-                DestinationGroup::Lobby => server.lobby_clients().collect(),
-                DestinationGroup::Protocol(proto) => server.protocol_clients(proto).collect(),
-                DestinationGroup::Room(id) => server.room_clients(id).collect(),
+                DestinationGroup::All => server.iter_client_ids().collect(),
+                DestinationGroup::Lobby => server.lobby_client_ids().collect(),
+                DestinationGroup::Protocol(proto) => server.protocol_client_ids(proto).collect(),
+                DestinationGroup::Room(id) => server.room_client_ids(id).collect(),
             };
 
             if skip_self {
@@ -237,7 +261,7 @@
 }
 
 pub fn handle(
-    server: &mut HwServer,
+    state: &mut ServerState,
     client_id: ClientId,
     response: &mut Response,
     message: HwProtocolMessage,
@@ -246,35 +270,42 @@
         HwProtocolMessage::Ping => response.add(Pong.send_self()),
         HwProtocolMessage::Pong => (),
         _ => {
-            if server.anteroom.clients.contains(client_id) {
-                match inanteroom::handle(server, client_id, response, message) {
+            if state.anteroom.clients.contains(client_id) {
+                match inanteroom::handle(state, client_id, response, message) {
                     LoginResult::Unchanged => (),
                     LoginResult::Complete => {
-                        if let Some(client) = server.anteroom.remove_client(client_id) {
-                            server.add_client(client_id, client);
-                            common::get_lobby_join_data(server, response);
+                        if let Some(client) = state.anteroom.remove_client(client_id) {
+                            let is_checker = client.is_checker;
+                            state.server.add_client(client_id, client);
+                            if !is_checker {
+                                common::get_lobby_join_data(&state.server, response);
+                            }
                         }
                     }
                     LoginResult::Exit => {
-                        server.anteroom.remove_client(client_id);
+                        state.anteroom.remove_client(client_id);
                         response.remove_client(client_id);
                     }
                 }
-            } else if server.clients.contains(client_id) {
+            } else if state.server.has_client(client_id) {
                 match message {
                     HwProtocolMessage::Quit(Some(msg)) => {
-                        common::remove_client(server, response, "User quit: ".to_string() + &msg);
+                        common::remove_client(
+                            &mut state.server,
+                            response,
+                            "User quit: ".to_string() + &msg,
+                        );
                     }
                     HwProtocolMessage::Quit(None) => {
-                        common::remove_client(server, response, "User quit".to_string());
+                        common::remove_client(&mut state.server, response, "User quit".to_string());
                     }
                     HwProtocolMessage::Info(nick) => {
-                        if let Some(client) = server.find_client(&nick) {
+                        if let Some(client) = state.server.find_client(&nick) {
                             let admin_sign = if client.is_admin() { "@" } else { "" };
                             let master_sign = if client.is_master() { "+" } else { "" };
                             let room_info = match client.room_id {
                                 Some(room_id) => {
-                                    let room = server.room(room_id);
+                                    let room = state.server.room(room_id);
                                     let status = match room.game_info {
                                         Some(_) if client.teams_in_game == 0 => "(spectating)",
                                         Some(_) => "(playing)",
@@ -300,11 +331,13 @@
                         }
                     }
                     HwProtocolMessage::ToggleServerRegisteredOnly => {
-                        if !server.is_admin(client_id) {
+                        if !state.server.is_admin(client_id) {
                             response.warn(ACCESS_DENIED);
                         } else {
-                            server.set_is_registered_only(!server.is_registered_only());
-                            let msg = if server.is_registered_only() {
+                            state
+                                .server
+                                .set_is_registered_only(!state.server.is_registered_only());
+                            let msg = if state.server.is_registered_only() {
                                 REGISTERED_ONLY_ENABLED
                             } else {
                                 REGISTERED_ONLY_DISABLED
@@ -313,21 +346,20 @@
                         }
                     }
                     HwProtocolMessage::Global(msg) => {
-                        if !server.is_admin(client_id) {
+                        if !state.server.is_admin(client_id) {
                             response.warn(ACCESS_DENIED);
                         } else {
                             response.add(global_chat(msg).send_all())
                         }
                     }
                     HwProtocolMessage::SuperPower => {
-                        let client = server.client_mut(client_id);
-                        if !client.is_admin() {
+                        if state.server.enable_super_power(client_id) {
+                            response.add(server_chat(SUPER_POWER.to_string()).send_self())
+                        } else {
                             response.warn(ACCESS_DENIED);
-                        } else {
-                            client.set_has_super_power(true);
-                            response.add(server_chat(SUPER_POWER.to_string()).send_self())
                         }
                     }
+                    #[allow(unused_variables)]
                     HwProtocolMessage::Watch(id) => {
                         #[cfg(feature = "official-server")]
                         {
@@ -339,11 +371,9 @@
                             response.warn(REPLAY_NOT_SUPPORTED);
                         }
                     }
-                    _ => match server.client(client_id).room_id {
-                        None => inlobby::handle(server, client_id, response, message),
-                        Some(room_id) => {
-                            inroom::handle(server, client_id, response, room_id, message)
-                        }
+                    _ => match state.server.get_room_control(client_id) {
+                        None => inlobby::handle(&mut state.server, client_id, response, message),
+                        Some(control) => inroom::handle(control, response, message),
                     },
                 }
             }
@@ -352,62 +382,87 @@
 }
 
 pub fn handle_client_accept(
-    server: &mut HwServer,
+    state: &mut ServerState,
     client_id: ClientId,
     response: &mut Response,
+    addr: [u8; 4],
     is_local: bool,
-) {
-    let mut salt = [0u8; 18];
-    thread_rng().fill_bytes(&mut salt);
+) -> bool {
+    let ban_reason = Some(addr)
+        .filter(|_| !is_local)
+        .and_then(|a| state.anteroom.find_ip_ban(a));
+    if let Some(reason) = ban_reason {
+        response.add(HwServerMessage::Bye(reason).send_self());
+        response.remove_client(client_id);
+        false
+    } else {
+        let mut salt = [0u8; 18];
+        thread_rng().fill_bytes(&mut salt);
 
-    server
-        .anteroom
-        .add_client(client_id, encode(&salt), is_local);
+        state
+            .anteroom
+            .add_client(client_id, encode(&salt), is_local);
 
-    response.add(HwServerMessage::Connected(utils::SERVER_VERSION).send_self());
+        response.add(
+            HwServerMessage::Connected(utils::SERVER_MESSAGE.to_owned(), utils::SERVER_VERSION)
+                .send_self(),
+        );
+        true
+    }
 }
 
-pub fn handle_client_loss(server: &mut HwServer, client_id: ClientId, response: &mut Response) {
-    if server.anteroom.remove_client(client_id).is_none() {
-        common::remove_client(server, response, "Connection reset".to_string());
+pub fn handle_client_loss(state: &mut ServerState, client_id: ClientId, response: &mut Response) {
+    if state.anteroom.remove_client(client_id).is_none() {
+        common::remove_client(&mut state.server, response, "Connection reset".to_string());
     }
 }
 
 pub fn handle_io_result(
-    server: &mut HwServer,
+    state: &mut ServerState,
     client_id: ClientId,
     response: &mut Response,
     io_result: IoResult,
 ) {
     match io_result {
         IoResult::AccountRegistered(is_registered) => {
-            if !is_registered && server.is_registered_only() {
+            if !is_registered && state.server.is_registered_only() {
                 response.add(Bye(REGISTRATION_REQUIRED.to_string()).send_self());
                 response.remove_client(client_id);
             } else if is_registered {
-                let salt = server.anteroom.clients[client_id].server_salt.clone();
-                response.add(AskPassword(salt).send_self());
-            } else if let Some(client) = server.anteroom.remove_client(client_id) {
-                server.add_client(client_id, client);
-                common::get_lobby_join_data(server, response);
+                let client = &state.anteroom.clients[client_id];
+                response.add(AskPassword(client.server_salt.clone()).send_self());
+            } else if let Some(client) = state.anteroom.remove_client(client_id) {
+                state.server.add_client(client_id, client);
+                common::get_lobby_join_data(&state.server, response);
             }
         }
+        IoResult::Account(None) => {
+            response.add(Bye(AUTHENTICATION_FAILED.to_string()).send_self());
+            response.remove_client(client_id);
+        }
         IoResult::Account(Some(info)) => {
             response.add(ServerAuth(format!("{:x}", info.server_hash)).send_self());
-            if let Some(mut client) = server.anteroom.remove_client(client_id) {
+            if let Some(mut client) = state.anteroom.remove_client(client_id) {
                 client.is_registered = info.is_registered;
                 client.is_admin = info.is_admin;
                 client.is_contributor = info.is_contributor;
-                server.add_client(client_id, client);
-                common::get_lobby_join_data(server, response);
+                state.server.add_client(client_id, client);
+                common::get_lobby_join_data(&state.server, response);
             }
         }
-        IoResult::Account(None) => {
-            response.error(AUTHENTICATION_FAILED);
-            response.remove_client(client_id);
+        IoResult::CheckerAccount { is_registered } => {
+            if is_registered {
+                if let Some(client) = state.anteroom.remove_client(client_id) {
+                    state.server.add_client(client_id, client);
+                    response.add(LogonPassed.send_self());
+                }
+            } else {
+                response.add(Bye(NO_CHECKER_RIGHTS.to_string()).send_self());
+                response.remove_client(client_id);
+            }
         }
         IoResult::Replay(Some(replay)) => {
-            let client = server.client(client_id);
+            let client = state.server.client(client_id);
             let protocol = client.protocol_number;
             let start_msg = if protocol < 58 {
                 RoomJoined(vec![client.nick.clone()])
@@ -416,8 +471,8 @@
             };
             response.add(start_msg.send_self());
 
-            common::get_room_config_impl(&replay.config, client_id, response);
-            common::get_teams(replay.teams.iter(), client_id, response);
+            common::get_room_config_impl(&replay.config, Destination::ToSelf, response);
+            common::get_teams(replay.teams.iter(), Destination::ToSelf, response);
             response.add(RunGame.send_self());
             response.add(ForwardEngineMessage(replay.message_log).send_self());
 
@@ -435,13 +490,11 @@
             response.warn(ROOM_CONFIG_SAVE_FAILED);
         }
         IoResult::LoadRoom(room_id, Some(contents)) => {
-            if let Some(ref mut room) = server.rooms.get_mut(room_id) {
-                match room.set_saves(&contents) {
-                    Ok(_) => response.add(server_chat(ROOM_CONFIG_LOADED.to_string()).send_self()),
-                    Err(e) => {
-                        warn!("Error while deserializing the room configs: {}", e);
-                        response.warn(ROOM_CONFIG_DESERIALIZE_FAILED);
-                    }
+            match state.server.set_room_saves(room_id, &contents) {
+                Ok(_) => response.add(server_chat(ROOM_CONFIG_LOADED.to_string()).send_self()),
+                Err(e) => {
+                    warn!("Error while deserializing the room configs: {}", e);
+                    response.warn(ROOM_CONFIG_DESERIALIZE_FAILED);
                 }
             }
         }
--- a/rust/hedgewars-server/src/handlers/actions.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/handlers/actions.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -4,14 +4,18 @@
         room::HwRoom,
         room::{GameInfo, RoomFlags},
         server::HwServer,
-        types::{ClientId, GameCfg, RoomId, VoteType},
+        types::{ClientId, RoomId},
     },
-    protocol::messages::{server_chat, HwProtocolMessage, HwServerMessage, HwServerMessage::*},
     utils::to_engine_msg,
 };
+use hedgewars_network_protocol::{
+    messages::{server_chat, HwProtocolMessage, HwServerMessage, HwServerMessage::*},
+    types::{GameCfg, VoteType},
+};
 use rand::{distributions::Uniform, thread_rng, Rng};
 use std::{io, io::Write, iter::once, mem::replace};
 
+#[derive(Clone)]
 pub enum DestinationGroup {
     All,
     Lobby,
@@ -19,6 +23,7 @@
     Protocol(u16),
 }
 
+#[derive(Clone)]
 pub enum Destination {
     ToId(ClientId),
     ToIds(Vec<ClientId>),
@@ -99,17 +104,31 @@
     }
 }
 
-impl HwServerMessage {
-    pub fn send(self, client_id: ClientId) -> PendingMessage {
+pub trait ToPendingMessage {
+    fn send(self, client_id: ClientId) -> PendingMessage;
+    fn send_many(self, client_ids: Vec<ClientId>) -> PendingMessage;
+    fn send_self(self) -> PendingMessage;
+    fn send_all(self) -> PendingMessage;
+    fn send_to_destination(self, destination: Destination) -> PendingMessage;
+}
+
+impl ToPendingMessage for HwServerMessage {
+    fn send(self, client_id: ClientId) -> PendingMessage {
         PendingMessage::send(self, client_id)
     }
-    pub fn send_many(self, client_ids: Vec<ClientId>) -> PendingMessage {
+    fn send_many(self, client_ids: Vec<ClientId>) -> PendingMessage {
         PendingMessage::send_many(self, client_ids)
     }
-    pub fn send_self(self) -> PendingMessage {
+    fn send_self(self) -> PendingMessage {
         PendingMessage::send_self(self)
     }
-    pub fn send_all(self) -> PendingMessage {
+    fn send_all(self) -> PendingMessage {
         PendingMessage::send_all(self)
     }
+    fn send_to_destination(self, destination: Destination) -> PendingMessage {
+        PendingMessage {
+            destination,
+            message: self,
+        }
+    }
 }
--- a/rust/hedgewars-server/src/handlers/checker.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/handlers/checker.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,13 +1,27 @@
 use log::*;
-use mio;
+
+use crate::core::{server::HwServer, types::CheckerId};
+use hedgewars_network_protocol::messages::HwProtocolMessage;
 
-use crate::{
-    core::{server::HwServer, types::ClientId},
-    protocol::messages::HwProtocolMessage,
-};
-
-pub fn handle(_server: &mut HwServer, _client_id: ClientId, message: HwProtocolMessage) {
+pub fn handle(
+    server: &mut HwServer,
+    checker_id: CheckerId,
+    _response: &mut super::Response,
+    message: HwProtocolMessage,
+) {
     match message {
+        HwProtocolMessage::CheckerReady => {
+            server
+                .get_checker_mut(checker_id)
+                .map(|c| c.set_is_ready(true));
+            warn!("Unimplemented")
+        }
+        HwProtocolMessage::CheckedOk(info) => {
+            warn!("Unimplemented")
+        }
+        HwProtocolMessage::CheckedFail(message) => {
+            warn!("Unimplemented")
+        }
         _ => warn!("Unknown command"),
     }
 }
--- a/rust/hedgewars-server/src/handlers/common.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/handlers/common.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,22 +1,29 @@
+use super::{
+    actions::{Destination, DestinationGroup},
+    Response,
+};
+use crate::handlers::actions::ToPendingMessage;
 use crate::{
     core::{
         client::HwClient,
         room::HwRoom,
-        server::{HwServer, JoinRoomError},
-        types::{ClientId, GameCfg, RoomId, TeamInfo, Vote, VoteType},
+        server::{
+            EndGameResult, HwRoomControl, HwServer, JoinRoomError, LeaveRoomResult, StartGameError,
+            VoteEffect, VoteError, VoteResult,
+        },
+        types::{ClientId, RoomId},
     },
-    protocol::messages::{
+    utils::to_engine_msg,
+};
+use hedgewars_network_protocol::{
+    messages::{
         add_flags, remove_flags, server_chat,
         HwProtocolMessage::{self, Rnd},
         HwServerMessage::{self, *},
         ProtocolFlags as Flags,
     },
-    utils::to_engine_msg,
+    types::{GameCfg, RoomConfig, TeamInfo, Vote, VoteType, MAX_HEDGEHOGS_PER_TEAM},
 };
-
-use super::Response;
-
-use crate::core::types::RoomConfig;
 use rand::{self, seq::SliceRandom, thread_rng, Rng};
 use std::{iter::once, mem::replace};
 
@@ -73,10 +80,9 @@
 
     let rooms_msg = Rooms(
         server
-            .rooms
-            .iter()
-            .filter(|(_, r)| r.protocol_number == client.protocol_number)
-            .flat_map(|(_, r)| r.info(r.master_id.map(|id| &server.clients[id])))
+            .iter_rooms()
+            .filter(|r| r.protocol_number == client.protocol_number)
+            .flat_map(|r| r.info(r.master_id.map(|id| server.client(id))))
             .collect(),
     );
 
@@ -98,135 +104,6 @@
     response.add(rooms_msg.send_self());
 }
 
-pub fn remove_teams(
-    room: &mut HwRoom,
-    team_names: Vec<String>,
-    is_in_game: bool,
-    response: &mut Response,
-) {
-    if let Some(ref mut info) = room.game_info {
-        for team_name in &team_names {
-            info.left_teams.push(team_name.clone());
-
-            if is_in_game {
-                let msg = once(b'F').chain(team_name.bytes());
-                response.add(
-                    ForwardEngineMessage(vec![to_engine_msg(msg)])
-                        .send_all()
-                        .in_room(room.id)
-                        .but_self(),
-                );
-
-                info.teams_in_game -= 1;
-
-                let remove_msg = to_engine_msg(once(b'F').chain(team_name.bytes()));
-                if let Some(m) = &info.sync_msg {
-                    info.msg_log.push(m.clone());
-                    info.sync_msg = None
-                }
-                info.msg_log.push(remove_msg.clone());
-
-                response.add(
-                    ForwardEngineMessage(vec![remove_msg])
-                        .send_all()
-                        .in_room(room.id)
-                        .but_self(),
-                );
-            }
-        }
-    }
-
-    for team_name in team_names {
-        room.remove_team(&team_name);
-        response.add(TeamRemove(team_name).send_all().in_room(room.id));
-    }
-}
-
-fn remove_client_from_room(
-    client: &mut HwClient,
-    room: &mut HwRoom,
-    response: &mut Response,
-    msg: &str,
-) {
-    room.players_number -= 1;
-    if room.players_number > 0 || room.is_fixed() {
-        if client.is_ready() && room.ready_players_number > 0 {
-            room.ready_players_number -= 1;
-        }
-
-        let team_names: Vec<_> = room
-            .client_teams(client.id)
-            .map(|t| t.name.clone())
-            .collect();
-        remove_teams(room, team_names, client.is_in_game(), response);
-
-        if room.players_number > 0 {
-            response.add(
-                RoomLeft(client.nick.clone(), msg.to_string())
-                    .send_all()
-                    .in_room(room.id)
-                    .but_self(),
-            );
-        }
-
-        if client.is_master() && !room.is_fixed() {
-            client.set_is_master(false);
-            response.add(
-                ClientFlags(
-                    remove_flags(&[Flags::RoomMaster]),
-                    vec![client.nick.clone()],
-                )
-                .send_all()
-                .in_room(room.id),
-            );
-            room.master_id = None;
-        }
-    }
-
-    client.room_id = None;
-
-    let update_msg = if room.players_number == 0 && !room.is_fixed() {
-        RoomRemove(room.name.clone())
-    } else {
-        RoomUpdated(room.name.clone(), room.info(Some(&client)))
-    };
-    response.add(update_msg.send_all().with_protocol(room.protocol_number));
-
-    response.add(ClientFlags(remove_flags(&[Flags::InRoom]), vec![client.nick.clone()]).send_all());
-}
-
-pub fn change_master(
-    server: &mut HwServer,
-    room_id: RoomId,
-    new_master_id: ClientId,
-    response: &mut Response,
-) {
-    let room = &mut server.rooms[room_id];
-    if let Some(master_id) = room.master_id {
-        server.clients[master_id].set_is_master(false);
-        response.add(
-            ClientFlags(
-                remove_flags(&[Flags::RoomMaster]),
-                vec![server.clients[master_id].nick.clone()],
-            )
-            .send_all()
-            .in_room(room_id),
-        )
-    }
-
-    room.master_id = Some(new_master_id);
-    server.clients[new_master_id].set_is_master(true);
-
-    response.add(
-        ClientFlags(
-            add_flags(&[Flags::RoomMaster]),
-            vec![server.clients[new_master_id].nick.clone()],
-        )
-        .send_all()
-        .in_room(room_id),
-    );
-}
-
 pub fn get_room_join_data<'a, I: Iterator<Item = &'a HwClient> + Clone>(
     client: &HwClient,
     room: &HwRoom,
@@ -234,42 +111,67 @@
     response: &mut Response,
 ) {
     #[inline]
-    fn collect_nicks<'a, I, F>(clients: I, f: F) -> Vec<String>
+    fn partition_nicks<'a, I, F>(clients: I, f: F) -> (Vec<String>, Vec<String>)
     where
-        I: Iterator<Item = &'a HwClient>,
+        I: Iterator<Item = &'a HwClient> + Clone,
         F: Fn(&&'a HwClient) -> bool,
     {
-        clients.filter(f).map(|c| &c.nick).cloned().collect()
+        (
+            clients
+                .clone()
+                .filter(|c| f(c))
+                .map(|c| &c.nick)
+                .cloned()
+                .collect(),
+            clients
+                .filter(|c| !f(c))
+                .map(|c| &c.nick)
+                .cloned()
+                .collect(),
+        )
     }
 
     let nick = client.nick.clone();
-    response.add(RoomJoined(vec![nick.clone()]).send_all().in_room(room.id));
-    response.add(ClientFlags(add_flags(&[Flags::InRoom]), vec![nick]).send_all());
-    let nicks = collect_nicks(room_clients.clone(), |c| c.room_id == Some(room.id));
+    response.add(
+        RoomJoined(vec![nick.clone()])
+            .send_all()
+            .in_room(room.id)
+            .but_self(),
+    );
+    response.add(ClientFlags(add_flags(&[Flags::InRoom]), vec![nick.clone()]).send_all());
+    let nicks = room_clients.clone().map(|c| c.nick.clone()).collect();
     response.add(RoomJoined(nicks).send_self());
 
-    get_room_teams(room, client.id, response);
-    get_room_config(room, client.id, response);
-
     let mut flag_selectors = [
         (
             Flags::RoomMaster,
-            collect_nicks(room_clients.clone(), |c| c.is_master()),
+            partition_nicks(room_clients.clone(), |c| c.is_master()),
         ),
         (
             Flags::Ready,
-            collect_nicks(room_clients.clone(), |c| c.is_ready()),
+            partition_nicks(room_clients.clone(), |c| c.is_ready()),
         ),
         (
             Flags::InGame,
-            collect_nicks(room_clients.clone(), |c| c.is_in_game()),
+            partition_nicks(room_clients.clone(), |c| c.is_in_game()),
         ),
     ];
 
-    for (flag, nicks) in &mut flag_selectors {
-        response.add(ClientFlags(add_flags(&[*flag]), replace(nicks, vec![])).send_self());
+    for (flag, (set_nicks, cleared_nicks)) in &mut flag_selectors {
+        if !set_nicks.is_empty() {
+            response.add(ClientFlags(add_flags(&[*flag]), replace(set_nicks, vec![])).send_self());
+        }
+
+        if !cleared_nicks.is_empty() {
+            response.add(
+                ClientFlags(remove_flags(&[*flag]), replace(cleared_nicks, vec![])).send_self(),
+            );
+        }
     }
 
+    get_active_room_teams(room, Destination::ToSelf, response);
+    get_active_room_config(room, Destination::ToSelf, response);
+
     if !room.greeting.is_empty() {
         response.add(
             ChatMsg {
@@ -279,45 +181,142 @@
             .send_self(),
         );
     }
+
+    if let Some(info) = &room.game_info {
+        response.add(
+            ClientFlags(add_flags(&[Flags::Ready, Flags::InGame]), vec![nick])
+                .send_all()
+                .in_room(room.id),
+        );
+        response.add(RunGame.send_self());
+
+        response.add(
+            ForwardEngineMessage(
+                once(to_engine_msg("e$spectate 1".bytes()))
+                    .chain(info.msg_log.iter().cloned())
+                    .collect(),
+            )
+            .send_self(),
+        );
+
+        for team in info.client_teams(client.id) {
+            response.add(
+                ForwardEngineMessage(vec![to_engine_msg(once(b'G').chain(team.name.bytes()))])
+                    .send_all()
+                    .in_room(room.id),
+            );
+        }
+
+        if info.is_paused {
+            response.add(ForwardEngineMessage(vec![to_engine_msg(once(b'I'))]).send_self());
+        }
+
+        for (_, original_team) in &info.original_teams {
+            if let Some(team) = room.find_team(|team| team.name == original_team.name) {
+                if team != original_team {
+                    response.add(TeamRemove(original_team.name.clone()).send_self());
+                    response.add(TeamAdd(team.to_protocol()).send_self());
+                }
+            } else {
+                response.add(TeamRemove(original_team.name.clone()).send_self());
+            }
+        }
+
+        for (_, team) in &room.teams {
+            if !info.original_teams.iter().any(|(_, t)| t.name == team.name) {
+                response.add(TeamAdd(team.to_protocol()).send_self());
+            }
+        }
+
+        get_room_config_impl(room.config(), Destination::ToSelf, response);
+    }
 }
 
 pub fn get_room_join_error(error: JoinRoomError, response: &mut Response) {
     use super::strings::*;
     match error {
         JoinRoomError::DoesntExist => response.warn(NO_ROOM),
-        JoinRoomError::WrongProtocol => response.warn(WRONG_PROTOCOL),
+        JoinRoomError::WrongProtocol => response.warn(INCOMPATIBLE_ROOM_PROTOCOL),
+        JoinRoomError::WrongPassword => {
+            response.add(Notice("WrongPassword".to_string()).send_self())
+        }
         JoinRoomError::Full => response.warn(ROOM_FULL),
         JoinRoomError::Restricted => response.warn(ROOM_JOIN_RESTRICTED),
+        JoinRoomError::RegistrationRequired => response.warn(ROOM_REGISTRATION_REQUIRED),
+    }
+}
+
+pub fn get_remove_teams_data(
+    room_id: RoomId,
+    was_in_game: bool,
+    removed_teams: Vec<String>,
+    response: &mut Response,
+) {
+    if was_in_game {
+        for team_name in &removed_teams {
+            let remove_msg = to_engine_msg(once(b'F').chain(team_name.bytes()));
+
+            response.add(
+                ForwardEngineMessage(vec![remove_msg])
+                    .send_all()
+                    .in_room(room_id)
+                    .but_self(),
+            );
+        }
+    } else {
+        for team_name in removed_teams {
+            response.add(TeamRemove(team_name).send_all().in_room(room_id));
+        }
     }
 }
 
-pub fn exit_room(server: &mut HwServer, client_id: ClientId, response: &mut Response, msg: &str) {
-    let client = &mut server.clients[client_id];
+pub fn get_room_leave_result(
+    server: &HwServer,
+    room: &HwRoom,
+    leave_message: &str,
+    result: LeaveRoomResult,
+    response: &mut Response,
+) {
+    let client = server.client(response.client_id);
+    response.add(ClientFlags(remove_flags(&[Flags::InRoom]), vec![client.nick.clone()]).send_all());
 
-    if let Some(room_id) = client.room_id {
-        let room = &mut server.rooms[room_id];
-
-        remove_client_from_room(client, room, response, msg);
+    match result {
+        LeaveRoomResult::RoomRemoved => {
+            response.add(
+                RoomRemove(room.name.clone())
+                    .send_all()
+                    .with_protocol(room.protocol_number),
+            );
+        }
 
-        if !room.is_fixed() {
-            if room.players_number == 0 {
-                server.rooms.remove(room_id);
-            } else if room.master_id == None {
-                let new_master_id = server.room_clients(room_id).next();
-                if let Some(new_master_id) = new_master_id {
-                    let new_master_nick = server.clients[new_master_id].nick.clone();
-                    let room = &mut server.rooms[room_id];
-                    room.master_id = Some(new_master_id);
-                    server.clients[new_master_id].set_is_master(true);
+        LeaveRoomResult::RoomRemains {
+            is_empty,
+            was_master,
+            new_master,
+            was_in_game,
+            removed_teams,
+        } => {
+            if !is_empty {
+                response.add(
+                    RoomLeft(client.nick.clone(), leave_message.to_string())
+                        .send_all()
+                        .in_room(room.id)
+                        .but_self(),
+                );
+            }
 
-                    if room.protocol_number < 42 {
-                        room.name = new_master_nick.clone();
-                    }
+            if was_master {
+                response.add(
+                    ClientFlags(
+                        remove_flags(&[Flags::RoomMaster]),
+                        vec![client.nick.clone()],
+                    )
+                    .send_all()
+                    .in_room(room.id),
+                );
 
-                    room.set_join_restriction(false);
-                    room.set_team_add_restriction(false);
-                    room.set_unregistered_players_restriction(true);
-
+                if let Some(new_master_id) = new_master {
+                    let new_master_nick = server.client(new_master_id).nick.clone();
                     response.add(
                         ClientFlags(add_flags(&[Flags::RoomMaster]), vec![new_master_nick])
                             .send_all()
@@ -325,16 +324,28 @@
                     );
                 }
             }
+
+            get_remove_teams_data(room.id, was_in_game, removed_teams, response);
+
+            response.add(
+                RoomUpdated(room.name.clone(), room.info(Some(&client)))
+                    .send_all()
+                    .with_protocol(room.protocol_number),
+            );
         }
     }
 }
 
 pub fn remove_client(server: &mut HwServer, response: &mut Response, msg: String) {
     let client_id = response.client_id();
-    let client = &mut server.clients[client_id];
+    let client = server.client(client_id);
     let nick = client.nick.clone();
 
-    exit_room(server, client_id, response, &msg);
+    if let Some(mut room_control) = server.get_room_control(client_id) {
+        let room_id = room_control.room().id;
+        let result = room_control.leave_room();
+        get_room_leave_result(server, server.room(room_id), &msg, result, response);
+    }
 
     server.remove_client(client_id);
 
@@ -353,106 +364,187 @@
     response.add(update_msg.send_all().with_protocol(room.protocol_number));
 }
 
-pub fn get_room_config_impl(config: &RoomConfig, to_client: ClientId, response: &mut Response) {
-    response.add(ConfigEntry("FULLMAPCONFIG".to_string(), config.to_map_config()).send(to_client));
+pub fn get_room_config_impl(
+    config: &RoomConfig,
+    destination: Destination,
+    response: &mut Response,
+) {
+    response.add(
+        ConfigEntry("FULLMAPCONFIG".to_string(), config.to_map_config())
+            .send_to_destination(destination.clone()),
+    );
     for cfg in config.to_game_config() {
-        response.add(cfg.to_server_msg().send(to_client));
+        response.add(cfg.to_server_msg().send_to_destination(destination.clone()));
     }
 }
 
-pub fn get_room_config(room: &HwRoom, to_client: ClientId, response: &mut Response) {
-    get_room_config_impl(room.active_config(), to_client, response);
+pub fn get_active_room_config(room: &HwRoom, destination: Destination, response: &mut Response) {
+    get_room_config_impl(room.active_config(), destination, response);
 }
 
-pub fn get_teams<'a, I>(teams: I, to_client: ClientId, response: &mut Response)
+pub fn get_teams<'a, I>(teams: I, destination: Destination, response: &mut Response)
 where
     I: Iterator<Item = &'a TeamInfo>,
 {
     for team in teams {
-        response.add(TeamAdd(team.to_protocol()).send(to_client));
-        response.add(TeamColor(team.name.clone(), team.color).send(to_client));
-        response.add(HedgehogsNumber(team.name.clone(), team.hedgehogs_number).send(to_client));
+        response.add(TeamAdd(team.to_protocol()).send_to_destination(destination.clone()));
+        response
+            .add(TeamColor(team.name.clone(), team.color).send_to_destination(destination.clone()));
+        response.add(
+            HedgehogsNumber(team.name.clone(), team.hedgehogs_number)
+                .send_to_destination(destination.clone()),
+        );
     }
 }
 
-pub fn get_room_teams(room: &HwRoom, to_client: ClientId, response: &mut Response) {
+pub fn get_active_room_teams(room: &HwRoom, destination: Destination, response: &mut Response) {
     let current_teams = match room.game_info {
-        Some(ref info) => &info.teams_at_start,
+        Some(ref info) => &info.original_teams,
         None => &room.teams,
     };
 
-    get_teams(current_teams.iter().map(|(_, t)| t), to_client, response);
+    get_teams(current_teams.iter().map(|(_, t)| t), destination, response);
 }
 
 pub fn get_room_flags(
     server: &HwServer,
     room_id: RoomId,
-    to_client: ClientId,
+    destination: Destination,
     response: &mut Response,
 ) {
-    let room = &server.rooms[room_id];
+    let room = server.room(room_id);
     if let Some(id) = room.master_id {
         response.add(
             ClientFlags(
                 add_flags(&[Flags::RoomMaster]),
-                vec![server.clients[id].nick.clone()],
+                vec![server.client(id).nick.clone()],
             )
-            .send(to_client),
+            .send_to_destination(destination.clone()),
         );
     }
-    let nicks: Vec<_> = server
-        .clients
-        .iter()
-        .filter(|(_, c)| c.room_id == Some(room_id) && c.is_ready())
-        .map(|(_, c)| c.nick.clone())
-        .collect();
+    let nicks = server.collect_nicks(|(_, c)| c.room_id == Some(room_id) && c.is_ready());
+
     if !nicks.is_empty() {
-        response.add(ClientFlags(add_flags(&[Flags::Ready]), nicks).send(to_client));
+        response
+            .add(ClientFlags(add_flags(&[Flags::Ready]), nicks).send_to_destination(destination));
     }
 }
 
-pub fn apply_voting_result(
-    server: &mut HwServer,
-    room_id: RoomId,
+pub fn check_vote(
+    server: &HwServer,
+    room: &HwRoom,
+    kind: &VoteType,
     response: &mut Response,
-    kind: VoteType,
-) {
-    match kind {
+) -> bool {
+    let error = match &kind {
         VoteType::Kick(nick) => {
-            if let Some(client) = server.find_client(&nick) {
-                if client.room_id == Some(room_id) {
-                    let id = client.id;
-                    response.add(Kicked.send(id));
-                    exit_room(server, id, response, "kicked");
-                }
+            if server
+                .find_client(&nick)
+                .filter(|c| c.room_id == Some(room.id))
+                .is_some()
+            {
+                None
+            } else {
+                Some("/callvote kick: No such user!".to_string())
             }
         }
-        VoteType::Map(None) => (),
+        VoteType::Map(None) => {
+            let names: Vec<_> = room.saves.keys().cloned().collect();
+            if names.is_empty() {
+                Some("/callvote map: No maps saved in this room!".to_string())
+            } else {
+                Some(format!("Available maps: {}", names.join(", ")))
+            }
+        }
         VoteType::Map(Some(name)) => {
-            if let Some(location) = server.rooms[room_id].load_config(&name) {
-                response.add(
-                    server_chat(location.to_string())
-                        .send_all()
-                        .in_room(room_id),
-                );
-                let room = &server.rooms[room_id];
-                let room_master = if let Some(id) = room.master_id {
-                    Some(&server.clients[id])
-                } else {
-                    None
-                };
-                get_room_update(None, room, room_master, response);
-
-                for (_, client) in server.clients.iter() {
-                    if client.room_id == Some(room_id) {
-                        super::common::get_room_config(&server.rooms[room_id], client.id, response);
-                    }
-                }
+            if room.saves.get(&name[..]).is_some() {
+                None
+            } else {
+                Some("/callvote map: No such map!".to_string())
             }
         }
         VoteType::Pause => {
-            if let Some(ref mut info) = server.rooms[room_id].game_info {
-                info.is_paused = !info.is_paused;
+            if room.game_info.is_some() {
+                None
+            } else {
+                Some("/callvote pause: No game in progress!".to_string())
+            }
+        }
+        VoteType::NewSeed => None,
+        VoteType::HedgehogsPerTeam(number) => match number {
+            1..=MAX_HEDGEHOGS_PER_TEAM => None,
+            _ => Some("/callvote hedgehogs: Specify number from 1 to 8.".to_string()),
+        },
+    };
+
+    match error {
+        None => true,
+        Some(msg) => {
+            response.add(server_chat(msg).send_self());
+            false
+        }
+    }
+}
+
+pub fn get_vote_data(
+    room_id: RoomId,
+    result: &Result<VoteResult, VoteError>,
+    response: &mut Response,
+) {
+    match result {
+        Ok(VoteResult::Submitted) => {
+            response.add(server_chat("Your vote has been counted.".to_string()).send_self())
+        }
+        Ok(VoteResult::Succeeded(_) | VoteResult::Failed) => response.add(
+            server_chat("Voting closed.".to_string())
+                .send_all()
+                .in_room(room_id),
+        ),
+        Err(VoteError::NoVoting) => {
+            response.add(server_chat("There's no voting going on.".to_string()).send_self())
+        }
+        Err(VoteError::AlreadyVoted) => {
+            response.add(server_chat("You already have voted.".to_string()).send_self())
+        }
+    }
+}
+
+pub fn handle_vote(
+    room_control: HwRoomControl,
+    result: Result<VoteResult, VoteError>,
+    response: &mut super::Response,
+) {
+    let room_id = room_control.room().id;
+    get_vote_data(room_control.room().id, &result, response);
+
+    if let Ok(VoteResult::Succeeded(effect)) = result {
+        match effect {
+            VoteEffect::Kicked(kicked_id, leave_result) => {
+                response.add(Kicked.send(kicked_id));
+                get_room_leave_result(
+                    room_control.server(),
+                    room_control.room(),
+                    "kicked",
+                    leave_result,
+                    response,
+                );
+            }
+            VoteEffect::Map(location) => {
+                let msg = server_chat(location.to_string());
+                let room = room_control.room();
+                response.add(msg.send_all().in_room(room.id));
+
+                let room_master = room.master_id.map(|id| room_control.server().client(id));
+
+                get_room_update(None, room, room_master, response);
+
+                let room_destination = Destination::ToAll {
+                    group: DestinationGroup::Room(room.id),
+                    skip_self: false,
+                };
+                get_active_room_config(room, room_destination, response);
+            }
+            VoteEffect::Pause => {
                 response.add(
                     server_chat("Pause toggled.".to_string())
                         .send_all()
@@ -464,163 +556,73 @@
                         .in_room(room_id),
                 );
             }
-        }
-        VoteType::NewSeed => {
-            let seed = thread_rng().gen_range(0, 1_000_000_000).to_string();
-            let cfg = GameCfg::Seed(seed);
-            response.add(cfg.to_server_msg().send_all().in_room(room_id));
-            server.rooms[room_id].set_config(cfg);
-        }
-        VoteType::HedgehogsPerTeam(number) => {
-            let r = &mut server.rooms[room_id];
-            let nicks = r.set_hedgehogs_number(number);
-
-            response.extend(
-                nicks
-                    .into_iter()
-                    .map(|n| HedgehogsNumber(n, number).send_all().in_room(room_id)),
-            );
-        }
-    }
-}
-
-fn add_vote(room: &mut HwRoom, response: &mut Response, vote: Vote) -> Option<bool> {
-    let client_id = response.client_id;
-    let mut result = None;
-
-    if let Some(ref mut voting) = room.voting {
-        if vote.is_forced || voting.votes.iter().all(|(id, _)| client_id != *id) {
-            response.add(server_chat("Your vote has been counted.".to_string()).send_self());
-            voting.votes.push((client_id, vote.is_pro));
-            let i = voting.votes.iter();
-            let pro = i.clone().filter(|(_, v)| *v).count();
-            let contra = i.filter(|(_, v)| !*v).count();
-            let success_quota = voting.voters.len() / 2 + 1;
-            if vote.is_forced && vote.is_pro || pro >= success_quota {
-                result = Some(true);
-            } else if vote.is_forced && !vote.is_pro || contra > voting.voters.len() - success_quota
-            {
-                result = Some(false);
+            VoteEffect::NewSeed(cfg) => {
+                response.add(cfg.to_server_msg().send_all().in_room(room_id));
             }
-        } else {
-            response.add(server_chat("You already have voted.".to_string()).send_self());
-        }
-    } else {
-        response.add(server_chat("There's no voting going on.".to_string()).send_self());
-    }
-
-    result
-}
-
-pub fn submit_vote(server: &mut HwServer, vote: Vote, response: &mut Response) {
-    let client_id = response.client_id;
-    let client = &server.clients[client_id];
-
-    if let Some(room_id) = client.room_id {
-        let room = &mut server.rooms[room_id];
-
-        if let Some(res) = add_vote(room, response, vote) {
-            response.add(
-                server_chat("Voting closed.".to_string())
-                    .send_all()
-                    .in_room(room.id),
-            );
-            let voting = replace(&mut room.voting, None).unwrap();
-            if res {
-                apply_voting_result(server, room_id, response, voting.kind);
+            VoteEffect::HedgehogsPerTeam(number, team_names) => {
+                response.extend(
+                    team_names
+                        .into_iter()
+                        .map(|n| HedgehogsNumber(n, number).send_all().in_room(room_id)),
+                );
             }
         }
     }
 }
 
-pub fn start_game(server: &mut HwServer, room_id: RoomId, response: &mut Response) {
-    let (room_clients, room_nicks): (Vec<_>, Vec<_>) = server
-        .clients
-        .iter()
-        .map(|(id, c)| (id, c.nick.clone()))
-        .unzip();
-    let room = &mut server.rooms[room_id];
+pub fn get_start_game_data(
+    server: &HwServer,
+    room_id: RoomId,
+    result: Result<Vec<String>, StartGameError>,
+    response: &mut Response,
+) {
+    match result {
+        Ok(room_nicks) => {
+            let room = server.room(room_id);
+            response.add(RunGame.send_all().in_room(room.id));
+            response.add(
+                ClientFlags(add_flags(&[Flags::InGame]), room_nicks)
+                    .send_all()
+                    .in_room(room.id),
+            );
 
-    if !room.has_multiple_clans() {
-        response.add(
-            Warning("The game can't be started with less than two clans!".to_string()).send_self(),
-        );
-    } else if room.protocol_number <= 43 && room.players_number != room.ready_players_number {
-        response.add(Warning("Not all players are ready".to_string()).send_self());
-    } else if room.game_info.is_some() {
-        response.add(Warning("The game is already in progress".to_string()).send_self());
-    } else {
-        room.start_round();
-        for id in room_clients {
-            let c = &mut server.clients[id];
-            c.set_is_in_game(true);
-            c.team_indices = room.client_team_indices(c.id);
+            let room_master = room.master_id.map(|id| server.client(id));
+            get_room_update(None, room, room_master, response);
         }
-        response.add(RunGame.send_all().in_room(room.id));
-        response.add(
-            ClientFlags(add_flags(&[Flags::InGame]), room_nicks)
-                .send_all()
-                .in_room(room.id),
-        );
-
-        let room_master = if let Some(id) = room.master_id {
-            Some(&server.clients[id])
-        } else {
-            None
-        };
-        get_room_update(None, room, room_master, response);
+        Err(StartGameError::NotEnoughClans) => {
+            response.warn("The game can't be started with less than two clans!")
+        }
+        Err(StartGameError::NotReady) => response.warn("Not all players are ready"),
+        Err(StartGameError::AlreadyInGame) => response.warn("The game is already in progress"),
     }
 }
 
-pub fn end_game(server: &mut HwServer, room_id: RoomId, response: &mut Response) {
-    let room = &mut server.rooms[room_id];
-    room.ready_players_number = 1;
-    let room_master = if let Some(id) = room.master_id {
-        Some(&server.clients[id])
-    } else {
-        None
-    };
+pub fn get_end_game_result(
+    server: &HwServer,
+    room_id: RoomId,
+    result: EndGameResult,
+    response: &mut Response,
+) {
+    let room = server.room(room_id);
+    let room_master = room.master_id.map(|id| server.client(id));
+
     get_room_update(None, room, room_master, response);
     response.add(RoundFinished.send_all().in_room(room_id));
 
-    if let Some(info) = replace(&mut room.game_info, None) {
-        for (_, client) in server.clients.iter() {
-            if client.room_id == Some(room_id) && client.is_joined_mid_game() {
-                super::common::get_room_config(room, client.id, response);
-                response.extend(
-                    info.left_teams
-                        .iter()
-                        .map(|name| TeamRemove(name.clone()).send(client.id)),
-                );
-            }
-        }
-    }
+    response.extend(
+        result
+            .left_teams
+            .iter()
+            .filter(|name| room.find_team(|t| t.name == **name).is_some())
+            .map(|name| TeamRemove(name.clone()).send_all().in_room(room.id)),
+    );
 
-    let nicks: Vec<_> = server
-        .clients
-        .iter_mut()
-        .filter(|(_, c)| c.room_id == Some(room_id))
-        .map(|(_, c)| {
-            c.set_is_ready(c.is_master());
-            c.set_is_joined_mid_game(false);
-            c
-        })
-        .filter_map(|c| {
-            if !c.is_master() {
-                Some(c.nick.clone())
-            } else {
-                None
-            }
-        })
-        .collect();
-
-    if !nicks.is_empty() {
-        let msg = if room.protocol_number < 38 {
-            LegacyReady(false, nicks)
-        } else {
-            ClientFlags(remove_flags(&[Flags::Ready]), nicks)
-        };
-        response.add(msg.send_all().in_room(room_id));
+    if !result.unreadied_nicks.is_empty() {
+        response.add(
+            ClientFlags(remove_flags(&[Flags::Ready]), result.unreadied_nicks)
+                .send_all()
+                .in_room(room_id),
+        );
     }
 }
 
@@ -628,7 +630,7 @@
 mod tests {
     use super::*;
     use crate::handlers::actions::PendingMessage;
-    use crate::protocol::messages::HwServerMessage::ChatMsg;
+    use hedgewars_network_protocol::messages::HwServerMessage::ChatMsg;
 
     fn reply2string(r: HwServerMessage) -> String {
         match r {
@@ -655,21 +657,4 @@
     fn test_handle_rnd_nonempty() {
         run_handle_test(vec!["A".to_owned(), "B".to_owned(), "C".to_owned()])
     }
-
-    /// This test terminates almost surely (strong law of large numbers)
-    #[test]
-    fn test_distribution() {
-        let eps = 0.000001;
-        let lim = 0.5;
-        let opts = vec![0.to_string(), 1.to_string()];
-        let mut ones = 0;
-        let mut tries = 0;
-
-        while tries < 1000 || ((ones as f64 / tries as f64) - lim).abs() >= eps {
-            tries += 1;
-            if reply2string(rnd_reply(&opts)) == 1.to_string() {
-                ones += 1;
-            }
-        }
-    }
 }
--- a/rust/hedgewars-server/src/handlers/inanteroom.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/handlers/inanteroom.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,18 +1,18 @@
-use mio;
-
+use super::strings::*;
+use crate::handlers::actions::ToPendingMessage;
 use crate::{
     core::{
+        anteroom::{HwAnteroom, HwAnteroomClient},
         client::HwClient,
-        server::{HwAnteClient, HwAnteroom, HwServer},
+        server::HwServer,
         types::ClientId,
     },
-    protocol::messages::{HwProtocolMessage, HwProtocolMessage::LoadRoom, HwServerMessage::*},
     utils::is_name_illegal,
 };
-
+use hedgewars_network_protocol::messages::{
+    HwProtocolMessage, HwProtocolMessage::LoadRoom, HwServerMessage::*,
+};
 use log::*;
-#[cfg(feature = "official-server")]
-use openssl::sha::sha1;
 use std::{
     fmt::{Formatter, LowerHex},
     num::NonZeroU16,
@@ -26,24 +26,18 @@
 
 fn completion_result<'a, I>(
     mut other_clients: I,
-    client: &mut HwAnteClient,
+    client: &mut HwAnteroomClient,
     response: &mut super::Response,
 ) -> LoginResult
 where
-    I: Iterator<Item = (ClientId, &'a HwClient)>,
+    I: Iterator<Item = &'a HwClient>,
 {
-    let has_nick_clash =
-        other_clients.any(|(_, c)| !c.is_checker() && c.nick == *client.nick.as_ref().unwrap());
+    let has_nick_clash = other_clients.any(|c| c.nick == *client.nick.as_ref().unwrap());
 
     if has_nick_clash {
-        if client.protocol_number.unwrap().get() < 38 {
-            response.add(Bye("User quit: Nickname is already in use".to_string()).send_self());
-            LoginResult::Exit
-        } else {
-            client.nick = None;
-            response.add(Notice("NickAlreadyInUse".to_string()).send_self());
-            LoginResult::Unchanged
-        }
+        client.nick = None;
+        response.add(Notice("NickAlreadyInUse".to_string()).send_self());
+        LoginResult::Unchanged
     } else {
         #[cfg(feature = "official-server")]
         {
@@ -61,50 +55,51 @@
 }
 
 pub fn handle(
-    server: &mut HwServer,
+    server_state: &mut super::ServerState,
     client_id: ClientId,
     response: &mut super::Response,
     message: HwProtocolMessage,
 ) -> LoginResult {
+    //todo!("Handle parsing of empty nicks")
     match message {
         HwProtocolMessage::Quit(_) => {
             response.add(Bye("User quit".to_string()).send_self());
             LoginResult::Exit
         }
         HwProtocolMessage::Nick(nick) => {
-            let client = &mut server.anteroom.clients[client_id];
+            let client = &mut server_state.anteroom.clients[client_id];
 
             if client.nick.is_some() {
-                response.add(Error("Nickname already provided.".to_string()).send_self());
+                response.error(NICKNAME_PROVIDED);
                 LoginResult::Unchanged
             } else if is_name_illegal(&nick) {
-                response.add(Bye("Illegal nickname! Nicknames must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}".to_string()).send_self());
+                response.add(Bye(ILLEGAL_CLIENT_NAME.to_string()).send_self());
                 LoginResult::Exit
             } else {
                 client.nick = Some(nick.clone());
                 response.add(Nick(nick).send_self());
 
                 if client.protocol_number.is_some() {
-                    completion_result(server.clients.iter(), client, response)
+                    completion_result(server_state.server.iter_clients(), client, response)
                 } else {
                     LoginResult::Unchanged
                 }
             }
         }
         HwProtocolMessage::Proto(proto) => {
-            let client = &mut server.anteroom.clients[client_id];
+            let client = &mut server_state.anteroom.clients[client_id];
             if client.protocol_number.is_some() {
-                response.add(Error("Protocol already known.".to_string()).send_self());
+                response.error(PROTOCOL_PROVIDED);
                 LoginResult::Unchanged
-            } else if proto == 0 {
-                response.add(Error("Bad number.".to_string()).send_self());
-                LoginResult::Unchanged
+            } else if proto < 48 {
+                response.add(Bye(PROTOCOL_TOO_OLD.to_string()).send_self());
+                LoginResult::Exit
             } else {
                 client.protocol_number = NonZeroU16::new(proto);
                 response.add(Proto(proto).send_self());
 
                 if client.nick.is_some() {
-                    completion_result(server.clients.iter(), client, response)
+                    completion_result(server_state.server.iter_clients(), client, response)
                 } else {
                     LoginResult::Unchanged
                 }
@@ -112,7 +107,7 @@
         }
         #[cfg(feature = "official-server")]
         HwProtocolMessage::Password(hash, salt) => {
-            let client = &server.anteroom.clients[client_id];
+            let client = &server_state.anteroom.clients[client_id];
 
             if let (Some(nick), Some(protocol)) = (client.nick.as_ref(), client.protocol_number) {
                 response.request_io(super::IoTask::GetAccount {
@@ -128,19 +123,31 @@
         }
         #[cfg(feature = "official-server")]
         HwProtocolMessage::Checker(protocol, nick, password) => {
-            let client = &mut server.anteroom.clients[client_id];
+            let client = &mut server_state.anteroom.clients[client_id];
             if protocol == 0 {
-                response.add(Error("Bad number.".to_string()).send_self());
+                response.error("Bad number.");
                 LoginResult::Unchanged
             } else {
                 client.protocol_number = NonZeroU16::new(protocol);
-                client.nick = Some(nick);
                 client.is_checker = true;
-                LoginResult::Complete
+                #[cfg(not(feature = "official-server"))]
+                {
+                    response.request_io(super::IoTask::GetCheckerAccount {
+                        nick: nick,
+                        password: password,
+                    });
+                    LoginResult::Unchanged
+                }
+
+                #[cfg(feature = "official-server")]
+                {
+                    response.add(LogonPassed.send_self());
+                    LoginResult::Complete
+                }
             }
         }
         _ => {
-            warn!("Incorrect command in logging-in state");
+            warn!("Incorrect command in anteroom");
             LoginResult::Unchanged
         }
     }
--- a/rust/hedgewars-server/src/handlers/inlobby.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/handlers/inlobby.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,17 +1,19 @@
-use mio;
-
 use super::{common::rnd_reply, strings::*};
+use crate::handlers::{actions::ToPendingMessage, checker};
 use crate::{
     core::{
         client::HwClient,
         server::{AccessError, CreateRoomError, HwServer, JoinRoomError},
-        types::{ClientId, ServerVar},
+        types::ClientId,
     },
-    protocol::messages::{
+    utils::is_name_illegal,
+};
+use hedgewars_network_protocol::{
+    messages::{
         add_flags, remove_flags, server_chat, HwProtocolMessage, HwServerMessage::*,
         ProtocolFlags as Flags,
     },
-    utils::is_name_illegal,
+    types::ServerVar,
 };
 use log::*;
 use std::{collections::HashSet, convert::identity};
@@ -22,7 +24,12 @@
     response: &mut super::Response,
     message: HwProtocolMessage,
 ) {
-    use crate::protocol::messages::HwProtocolMessage::*;
+    use hedgewars_network_protocol::messages::HwProtocolMessage::*;
+
+    //todo!("add kick/ban handlers");
+    //todo!("add command for forwarding lobby chat into rooms
+    //todo!("report player account age")
+    //todo!("port listing rooms for incompatible protocols"))
 
     match message {
         CreateRoom(name, password) => match server.create_room(client_id, name, password) {
@@ -37,20 +44,18 @@
                 response.add(RoomJoined(vec![client.nick.clone()]).send_self());
                 response.add(
                     ClientFlags(
-                        add_flags(&[Flags::RoomMaster, Flags::Ready]),
+                        add_flags(&[Flags::RoomMaster, Flags::Ready, Flags::InRoom]),
                         vec![client.nick.clone()],
                     )
-                    .send_self(),
-                );
-                response.add(
-                    ClientFlags(add_flags(&[Flags::InRoom]), vec![client.nick.clone()]).send_self(),
+                    .send_all(),
                 );
             }
         },
         Chat(msg) => {
+            //todo!("add client quiet flag");
             response.add(
                 ChatMsg {
-                    nick: server.get_client_nick(client_id).to_string(),
+                    nick: server.client(client_id).nick.clone(),
                     msg,
                 }
                 .send_all()
@@ -58,16 +63,18 @@
                 .but_self(),
             );
         }
-        JoinRoom(name, _password) => match server.join_room_by_name(client_id, &name) {
-            Err(error) => super::common::get_room_join_error(error, response),
-            Ok((client, room, room_clients)) => {
-                super::common::get_room_join_data(client, room, room_clients, response)
+        JoinRoom(name, password) => {
+            match server.join_room_by_name(client_id, &name, password.as_deref()) {
+                Err(error) => super::common::get_room_join_error(error, response),
+                Ok((client, room, room_clients)) => {
+                    super::common::get_room_join_data(client, room, room_clients, response)
+                }
             }
-        },
+        }
         Follow(nick) => {
             if let Some(client) = server.find_client(&nick) {
                 if let Some(room_id) = client.room_id {
-                    match server.join_room(client_id, room_id) {
+                    match server.join_room(client_id, room_id, None) {
                         Err(error) => super::common::get_room_join_error(error, response),
                         Ok((client, room, room_clients)) => {
                             super::common::get_room_join_data(client, room, room_clients, response)
@@ -105,8 +112,8 @@
                     html.push(format!(
                         "<tr><td>{}</td><td>{}</td><td>{}</td></tr>",
                         super::utils::protocol_version_string(protocol),
-                        server.protocol_clients(protocol).count(),
-                        server.protocol_rooms(protocol).count()
+                        server.protocol_client_ids(protocol).count(),
+                        server.protocol_room_ids(protocol).count()
                     ));
                 }
                 html.push("</table>".to_string());
--- a/rust/hedgewars-server/src/handlers/inroom.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/handlers/inroom.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,21 +1,27 @@
-use mio;
-
-use super::common::rnd_reply;
-use crate::utils::to_engine_msg;
+use super::{common::rnd_reply, strings::*};
+use crate::core::room::GameInfo;
+use crate::core::server::{AddTeamError, SetTeamCountError};
+use crate::handlers::actions::ToPendingMessage;
 use crate::{
     core::{
         room::{HwRoom, RoomFlags, MAX_TEAMS_IN_ROOM},
-        server::HwServer,
-        types,
-        types::{ClientId, GameCfg, RoomId, VoteType, Voting, MAX_HEDGEHOGS_PER_TEAM},
+        server::{
+            ChangeMasterError, ChangeMasterResult, HwRoomControl, HwServer, LeaveRoomResult,
+            ModifyTeamError, StartGameError,
+        },
+        types::{ClientId, RoomId, Voting},
     },
-    protocol::messages::{
+    utils::{is_name_illegal, to_engine_msg},
+};
+use base64::{decode, encode};
+use hedgewars_network_protocol::{
+    messages::{
         add_flags, remove_flags, server_chat, HwProtocolMessage, HwServerMessage::*,
         ProtocolFlags as Flags,
     },
-    utils::is_name_illegal,
+    types,
+    types::{GameCfg, VoteType, MAX_HEDGEHOGS_PER_TEAM},
 };
-use base64::{decode, encode};
 use log::*;
 use std::{cmp::min, iter::once, mem::swap};
 
@@ -46,10 +52,9 @@
     b"M#+LlRrUuDdZzAaSjJ,NpPwtgfhbc12345\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A";
 const NON_TIMED_MESSAGES: &[u8] = b"M#hb";
 
-#[cfg(canhazslicepatterns)]
 fn is_msg_valid(msg: &[u8], team_indices: &[u8]) -> bool {
     match msg {
-        [size, typ, body..MAX] => {
+        [size, typ, body @ ..] => {
             VALID_MESSAGES.contains(typ)
                 && match body {
                     [1..=MAX_HEDGEHOGS_PER_TEAM, team, ..] if *typ == b'h' => {
@@ -62,14 +67,6 @@
     }
 }
 
-fn is_msg_valid(msg: &[u8], _team_indices: &[u8]) -> bool {
-    if let Some(typ) = msg.get(1) {
-        VALID_MESSAGES.contains(typ)
-    } else {
-        false
-    }
-}
-
 fn is_msg_empty(msg: &[u8]) -> bool {
     msg.get(1).filter(|t| **t == b'+').is_some()
 }
@@ -94,33 +91,40 @@
 }
 
 fn room_message_flag(msg: &HwProtocolMessage) -> RoomFlags {
-    use crate::protocol::messages::HwProtocolMessage::*;
+    use hedgewars_network_protocol::messages::HwProtocolMessage::*;
     match msg {
         ToggleRestrictJoin => RoomFlags::RESTRICTED_JOIN,
         ToggleRestrictTeams => RoomFlags::RESTRICTED_TEAM_ADD,
-        ToggleRegisteredOnly => RoomFlags::RESTRICTED_UNREGISTERED_PLAYERS,
+        ToggleRegisteredOnly => RoomFlags::REGISTRATION_REQUIRED,
         _ => RoomFlags::empty(),
     }
 }
 
 pub fn handle(
-    server: &mut HwServer,
-    client_id: ClientId,
+    mut room_control: HwRoomControl,
     response: &mut super::Response,
-    room_id: RoomId,
     message: HwProtocolMessage,
 ) {
-    let client = &mut server.clients[client_id];
-    let room = &mut server.rooms[room_id];
+    let (client, room) = room_control.get();
+    let (client_id, room_id) = (client.id, room.id);
 
-    use crate::protocol::messages::HwProtocolMessage::*;
+    use hedgewars_network_protocol::messages::HwProtocolMessage::*;
     match message {
         Part(msg) => {
             let msg = match msg {
                 Some(s) => format!("part: {}", s),
                 None => "part".to_string(),
             };
-            super::common::exit_room(server, client_id, response, &msg);
+
+            let result = room_control.leave_room();
+            super::common::get_room_leave_result(
+                room_control.server(),
+                room_control.room(),
+                &msg,
+                result,
+                response,
+            );
+            room_control.cleanup_room();
         }
         Chat(msg) => {
             response.add(
@@ -133,10 +137,8 @@
             );
         }
         TeamChat(msg) => {
-            let room = &server.rooms[room_id];
-            if let Some(ref info) = room.game_info {
+            if room.game_info.is_some() {
                 if let Some(clan_color) = room.find_team_color(client_id) {
-                    let client = &server.clients[client_id];
                     let engine_msg =
                         to_engine_msg(format!("b{}]{}\x20\x20", client.nick, msg).bytes());
                     let team = room.clan_team_owners(clan_color).collect();
@@ -145,207 +147,149 @@
             }
         }
         Fix => {
-            if client.is_admin() {
-                room.set_is_fixed(true);
-                room.set_join_restriction(false);
-                room.set_team_add_restriction(false);
-                room.set_unregistered_players_restriction(true);
+            if let Err(_) = room_control.fix_room() {
+                response.warn(ACCESS_DENIED)
             }
         }
         Unfix => {
-            if client.is_admin() {
-                room.set_is_fixed(false);
+            if let Err(_) = room_control.unfix_room() {
+                response.warn(ACCESS_DENIED)
             }
         }
         Greeting(text) => {
-            if client.is_admin() || client.is_master() && !room.is_fixed() {
-                room.greeting = text.unwrap_or(String::new());
+            if let Err(_) = room_control.set_room_greeting(text) {
+                response.warn(ACCESS_DENIED)
             }
         }
         MaxTeams(count) => {
-            if !client.is_master() {
-                response.add(Warning("You're not the room master!".to_string()).send_self());
-            } else if !(2..=MAX_TEAMS_IN_ROOM).contains(&count) {
-                response
-                    .add(Warning("/maxteams: specify number from 2 to 8".to_string()).send_self());
-            } else {
-                server.rooms[room_id].max_teams = count;
-            }
+            use crate::core::server::SetTeamCountError;
+            match room_control.set_room_max_teams(count) {
+                Ok(()) => {}
+                Err(SetTeamCountError::NotMaster) => response.warn(NOT_MASTER),
+                Err(SetTeamCountError::InvalidNumber) => {
+                    response.warn("/maxteams: specify number from 2 to 8")
+                }
+            };
         }
         RoomName(new_name) => {
-            if is_name_illegal(&new_name) {
-                response.add(Warning("Illegal room name! A room name must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}".to_string()).send_self());
-            } else if server.has_room(&new_name) {
-                response.add(
-                    Warning("A room with the same name already exists.".to_string()).send_self(),
-                );
-            } else {
-                let room = &mut server.rooms[room_id];
-                if room.is_fixed() || room.master_id != Some(client_id) {
-                    response.add(Warning("Access denied.".to_string()).send_self());
-                } else {
-                    let mut old_name = new_name.clone();
-                    let client = &server.clients[client_id];
-                    swap(&mut room.name, &mut old_name);
-                    super::common::get_room_update(Some(old_name), room, Some(&client), response);
+            use crate::core::server::ModifyRoomNameError;
+            match room_control.set_room_name(new_name) {
+                Ok(old_name) => {
+                    let (client, room) = room_control.get();
+                    super::common::get_room_update(Some(old_name), room, Some(client), response)
                 }
+                Err(ModifyRoomNameError::AccessDenied) => response.warn(ACCESS_DENIED),
+                Err(ModifyRoomNameError::InvalidName) => response.warn(ILLEGAL_ROOM_NAME),
+                Err(ModifyRoomNameError::DuplicateName) => response.warn(ROOM_EXISTS),
             }
         }
         ToggleReady => {
-            let flags = if client.is_ready() {
-                room.ready_players_number -= 1;
-                remove_flags(&[Flags::Ready])
+            let flags = if room_control.toggle_ready() {
+                add_flags(&[Flags::Ready])
             } else {
-                room.ready_players_number += 1;
-                add_flags(&[Flags::Ready])
+                remove_flags(&[Flags::Ready])
             };
+            let (client, room) = room_control.get();
 
             let msg = if client.protocol_number < 38 {
                 LegacyReady(client.is_ready(), vec![client.nick.clone()])
             } else {
                 ClientFlags(flags, vec![client.nick.clone()])
             };
-            response.add(msg.send_all().in_room(room.id));
-            client.set_is_ready(!client.is_ready());
+            response.add(msg.send_all().in_room(room_id));
 
             if room.is_fixed() && room.ready_players_number == room.players_number {
-                super::common::start_game(server, room_id, response);
+                let result = room_control.start_game();
+                super::common::get_start_game_data(
+                    room_control.server(),
+                    room_id,
+                    result,
+                    response,
+                );
             }
         }
-        AddTeam(mut info) => {
-            if room.teams.len() >= room.max_teams as usize {
-                response.add(Warning("Too many teams!".to_string()).send_self());
-            } else if room.addable_hedgehogs() == 0 {
-                response.add(Warning("Too many hedgehogs!".to_string()).send_self());
-            } else if room.find_team(|t| t.name == info.name) != None {
-                response.add(
-                    Warning("There's already a team with same name in the list.".to_string())
-                        .send_self(),
-                );
-            } else if room.game_info.is_some() {
-                response.add(
-                    Warning("Joining not possible: Round is in progress.".to_string()).send_self(),
-                );
-            } else if room.is_team_add_restricted() {
-                response.add(
-                    Warning("This room currently does not allow adding new teams.".to_string())
-                        .send_self(),
-                );
-            } else {
-                info.owner = client.nick.clone();
-                let team = room.add_team(client.id, *info, client.protocol_number < 42);
-                client.teams_in_game += 1;
-                client.clan = Some(team.color);
-                response.add(TeamAccepted(team.name.clone()).send_self());
-                response.add(
-                    TeamAdd(team.to_protocol())
-                        .send_all()
-                        .in_room(room_id)
-                        .but_self(),
-                );
-                response.add(
-                    TeamColor(team.name.clone(), team.color)
-                        .send_all()
-                        .in_room(room_id),
-                );
-                response.add(
-                    HedgehogsNumber(team.name.clone(), team.hedgehogs_number)
-                        .send_all()
-                        .in_room(room_id),
-                );
+        AddTeam(info) => {
+            use crate::core::server::AddTeamError;
+            match room_control.add_team(info) {
+                Ok(team) => {
+                    response.add(TeamAccepted(team.name.clone()).send_self());
+                    response.add(
+                        TeamAdd(team.to_protocol())
+                            .send_all()
+                            .in_room(room_id)
+                            .but_self(),
+                    );
+                    response.add(
+                        TeamColor(team.name.clone(), team.color)
+                            .send_all()
+                            .in_room(room_id),
+                    );
+                    response.add(
+                        HedgehogsNumber(team.name.clone(), team.hedgehogs_number)
+                            .send_all()
+                            .in_room(room_id),
+                    );
 
-                let room_master = if let Some(id) = room.master_id {
-                    Some(&server.clients[id])
-                } else {
-                    None
-                };
-                super::common::get_room_update(None, room, room_master, response);
+                    let room = room_control.room();
+                    let room_master = room.master_id.map(|id| room_control.server().client(id));
+                    super::common::get_room_update(None, room, room_master, response);
+                }
+                Err(AddTeamError::TooManyTeams) => response.warn(TOO_MANY_TEAMS),
+                Err(AddTeamError::TooManyHedgehogs) => response.warn(TOO_MANY_HEDGEHOGS),
+                Err(AddTeamError::TeamAlreadyExists) => response.warn(TEAM_EXISTS),
+                Err(AddTeamError::Restricted) => response.warn(TEAM_ADD_RESTRICTED),
             }
         }
-        RemoveTeam(name) => match room.find_team_owner(&name) {
-            None => response.add(
-                Warning("Error: The team you tried to remove does not exist.".to_string())
-                    .send_self(),
-            ),
-            Some((id, _)) if id != client_id => response
-                .add(Warning("You can't remove a team you don't own.".to_string()).send_self()),
-            Some((_, name)) => {
-                client.teams_in_game -= 1;
-                client.clan = room.find_team_color(client.id);
-                let names = vec![name.to_string()];
-                super::common::remove_teams(room, names, client.is_in_game(), response);
+        RemoveTeam(name) => {
+            use crate::core::server::RemoveTeamError;
+            match room_control.remove_team(&name) {
+                Ok(()) => {
+                    let (client, room) = room_control.get();
 
-                match room.game_info {
-                    Some(ref info) if info.teams_in_game == 0 => {
-                        super::common::end_game(server, room_id, response)
-                    }
-                    _ => (),
+                    let removed_teams = vec![name];
+                    super::common::get_remove_teams_data(room_id, false, removed_teams, response);
                 }
+                Err(RemoveTeamError::NoTeam) => response.warn(NO_TEAM_TO_REMOVE),
+                Err(RemoveTeamError::TeamNotOwned) => response.warn(TEAM_NOT_OWNED),
             }
-        },
+        }
         SetHedgehogsNumber(team_name, number) => {
-            let addable_hedgehogs = room.addable_hedgehogs();
-            if let Some((_, team)) = room.find_team_and_owner_mut(|t| t.name == team_name) {
-                let max_hedgehogs = min(
-                    MAX_HEDGEHOGS_PER_TEAM,
-                    addable_hedgehogs + team.hedgehogs_number,
-                );
-                if !client.is_master() {
-                    response.add(Error("You're not the room master!".to_string()).send_self());
-                } else if !(1..=max_hedgehogs).contains(&number) {
-                    response
-                        .add(HedgehogsNumber(team.name.clone(), team.hedgehogs_number).send_self());
-                } else {
-                    team.hedgehogs_number = number;
+            use crate::core::server::SetHedgehogsError;
+            match room_control.set_team_hedgehogs_number(&team_name, number) {
+                Ok(()) => {
                     response.add(
-                        HedgehogsNumber(team.name.clone(), number)
+                        HedgehogsNumber(team_name.clone(), number)
                             .send_all()
                             .in_room(room_id)
                             .but_self(),
                     );
                 }
-            } else {
-                response.add(Warning("No such team.".to_string()).send_self());
+                Err(SetHedgehogsError::NotMaster) => response.error(NOT_MASTER),
+                Err(SetHedgehogsError::NoTeam) => response.warn(NO_TEAM),
+                Err(SetHedgehogsError::InvalidNumber(previous_number)) => {
+                    response.add(HedgehogsNumber(team_name.clone(), previous_number).send_self())
+                }
             }
         }
-        SetTeamColor(team_name, color) => {
-            if let Some((owner, team)) = room.find_team_and_owner_mut(|t| t.name == team_name) {
-                if !client.is_master() {
-                    response.add(Error("You're not the room master!".to_string()).send_self());
-                } else {
-                    team.color = color;
-                    response.add(
-                        TeamColor(team.name.clone(), color)
-                            .send_all()
-                            .in_room(room_id)
-                            .but_self(),
-                    );
-                    server.clients[owner].clan = Some(color);
-                }
-            } else {
-                response.add(Warning("No such team.".to_string()).send_self());
-            }
-        }
+        SetTeamColor(team_name, color) => match room_control.set_team_color(&team_name, color) {
+            Ok(()) => response.add(
+                TeamColor(team_name, color)
+                    .send_all()
+                    .in_room(room_id)
+                    .but_self(),
+            ),
+            Err(ModifyTeamError::NoTeam) => response.warn(NO_TEAM),
+            Err(ModifyTeamError::NotMaster) => response.error(NOT_MASTER),
+        },
         Cfg(cfg) => {
-            if room.is_fixed() {
-                response.add(Warning("Access denied.".to_string()).send_self());
-            } else if !client.is_master() {
-                response.add(Error("You're not the room master!".to_string()).send_self());
-            } else {
-                let cfg = match cfg {
-                    GameCfg::Scheme(name, mut values) => {
-                        if client.protocol_number == 49 && values.len() >= 2 {
-                            let mut s = "X".repeat(50);
-                            s.push_str(&values.pop().unwrap());
-                            values.push(s);
-                        }
-                        GameCfg::Scheme(name, values)
-                    }
-                    cfg => cfg,
-                };
-
-                response.add(cfg.to_server_msg().send_all().in_room(room.id).but_self());
-                room.set_config(cfg);
+            use crate::core::server::SetConfigError;
+            let msg = cfg.to_server_msg();
+            match room_control.set_config(cfg) {
+                Ok(()) => {
+                    response.add(msg.send_all().in_room(room_control.room().id).but_self());
+                }
+                Err(SetConfigError::NotMaster) => response.error(NOT_MASTER),
+                Err(SetConfigError::RoomFixed) => response.warn(ACCESS_DENIED),
             }
         }
         Save(name, location) => {
@@ -354,7 +298,7 @@
                     .send_all()
                     .in_room(room_id),
             );
-            room.save_config(name, location);
+            room_control.save_config(name, location);
         }
         #[cfg(feature = "official-server")]
         SaveRoom(filename) => {
@@ -367,10 +311,7 @@
                     }),
                     Err(e) => {
                         warn!("Error while serializing the room configs: {}", e);
-                        response.add(
-                            Warning("Unable to serialize the room configs.".to_string())
-                                .send_self(),
-                        )
+                        response.warn("Unable to serialize the room configs.")
                     }
                 }
             }
@@ -382,7 +323,7 @@
             }
         }
         Delete(name) => {
-            if !room.delete_config(&name) {
+            if !room_control.delete_config(&name) {
                 response.add(Warning(format!("Save doesn't exist: {}", name)).send_self());
             } else {
                 response.add(
@@ -393,102 +334,62 @@
             }
         }
         CallVote(None) => {
+            //todo!("implement ghost points")
             response.add(server_chat("Available callvote commands: kick <nickname>, map <name>, pause, newseed, hedgehogs <number>".to_string())
                 .send_self());
         }
         CallVote(Some(kind)) => {
-            let is_in_game = room.game_info.is_some();
-            let error = match &kind {
-                VoteType::Kick(nick) => {
-                    if server
-                        .find_client(&nick)
-                        .filter(|c| c.room_id == Some(room_id))
-                        .is_some()
-                    {
-                        None
-                    } else {
-                        Some("/callvote kick: No such user!".to_string())
-                    }
-                }
-                VoteType::Map(None) => {
-                    let names: Vec<_> = server.rooms[room_id].saves.keys().cloned().collect();
-                    if names.is_empty() {
-                        Some("/callvote map: No maps saved in this room!".to_string())
-                    } else {
-                        Some(format!("Available maps: {}", names.join(", ")))
-                    }
-                }
-                VoteType::Map(Some(name)) => {
-                    if room.saves.get(&name[..]).is_some() {
-                        None
-                    } else {
-                        Some("/callvote map: No such map!".to_string())
-                    }
-                }
-                VoteType::Pause => {
-                    if is_in_game {
-                        None
-                    } else {
-                        Some("/callvote pause: No game in progress!".to_string())
-                    }
-                }
-                VoteType::NewSeed => None,
-                VoteType::HedgehogsPerTeam(number) => match number {
-                    1..=MAX_HEDGEHOGS_PER_TEAM => None,
-                    _ => Some("/callvote hedgehogs: Specify number from 1 to 8.".to_string()),
-                },
-            };
-
-            match error {
-                None => {
-                    let msg = voting_description(&kind);
-                    let voting = Voting::new(kind, server.room_clients(client_id).collect());
-                    let room = &mut server.rooms[room_id];
-                    room.voting = Some(voting);
-                    response.add(server_chat(msg).send_all().in_room(room_id));
-                    super::common::submit_vote(
-                        server,
-                        types::Vote {
+            use crate::core::server::StartVoteError;
+            let room_id = room_control.room().id;
+            if super::common::check_vote(
+                room_control.server(),
+                room_control.room(),
+                &kind,
+                response,
+            ) {
+                match room_control.start_vote(kind.clone()) {
+                    Ok(()) => {
+                        let msg = voting_description(&kind);
+                        response.add(server_chat(msg).send_all().in_room(room_id));
+                        let vote_result = room_control.vote(types::Vote {
                             is_pro: true,
                             is_forced: false,
-                        },
-                        response,
-                    );
-                }
-                Some(msg) => {
-                    response.add(server_chat(msg).send_self());
+                        });
+                        super::common::handle_vote(room_control, vote_result, response);
+                    }
+                    Err(StartVoteError::VotingInProgress) => {
+                        response.add(
+                            server_chat("There is already voting in progress".to_string())
+                                .send_self(),
+                        );
+                    }
                 }
             }
         }
         Vote(vote) => {
-            super::common::submit_vote(
-                server,
-                types::Vote {
-                    is_pro: vote,
-                    is_forced: false,
-                },
-                response,
-            );
+            let vote_result = room_control.vote(types::Vote {
+                is_pro: vote,
+                is_forced: false,
+            });
+            super::common::handle_vote(room_control, vote_result, response);
         }
         ForceVote(vote) => {
             let is_forced = client.is_admin();
-            super::common::submit_vote(
-                server,
-                types::Vote {
-                    is_pro: vote,
-                    is_forced,
-                },
-                response,
-            );
+            let vote_result = room_control.vote(types::Vote {
+                is_pro: vote,
+                is_forced,
+            });
+            super::common::handle_vote(room_control, vote_result, response);
         }
         ToggleRestrictJoin | ToggleRestrictTeams | ToggleRegisteredOnly => {
-            if client.is_master() {
-                room.flags.toggle(room_message_flag(&message));
+            if room_control.toggle_flag(room_message_flag(&message)) {
+                let (client, room) = room_control.get();
                 super::common::get_room_update(None, room, Some(&client), response);
             }
         }
         StartGame => {
-            super::common::start_game(server, room_id, response);
+            let result = room_control.start_game();
+            super::common::get_start_game_data(room_control.server(), room_id, result, response);
         }
         EngineMessage(em) => {
             if client.teams_in_game > 0 {
@@ -514,98 +415,87 @@
                     );
                 }
                 let em_log = encode(&non_empty.flat_map(|msg| msg).cloned().collect::<Vec<_>>());
-                if let Some(ref mut info) = room.game_info {
-                    if !em_log.is_empty() {
-                        info.msg_log.push(em_log);
-                    }
-                    if let Some(msg) = sync_msg {
-                        info.sync_msg = msg;
-                    }
-                }
+
+                room_control.log_engine_msg(em_log, sync_msg);
             }
         }
         RoundFinished => {
-            let mut game_ended = false;
-            if client.is_in_game() {
-                client.set_is_in_game(false);
+            if let Some(team_names) = room_control.leave_game() {
+                let (client, room) = room_control.get();
                 response.add(
                     ClientFlags(remove_flags(&[Flags::InGame]), vec![client.nick.clone()])
                         .send_all()
                         .in_room(room.id),
                 );
-                let team_names: Vec<_> = room
-                    .client_teams(client_id)
-                    .map(|t| t.name.clone())
-                    .collect();
-
-                if let Some(ref mut info) = room.game_info {
-                    info.teams_in_game -= team_names.len() as u8;
-                    if info.teams_in_game == 0 {
-                        game_ended = true;
-                    }
 
-                    for team_name in team_names {
-                        let msg = once(b'F').chain(team_name.bytes());
-                        response.add(
-                            ForwardEngineMessage(vec![to_engine_msg(msg)])
-                                .send_all()
-                                .in_room(room_id)
-                                .but_self(),
-                        );
+                for team_name in team_names {
+                    let msg = once(b'F').chain(team_name.bytes());
+                    response.add(
+                        ForwardEngineMessage(vec![to_engine_msg(msg)])
+                            .send_all()
+                            .in_room(room_id)
+                            .but_self(),
+                    );
+                }
 
-                        let remove_msg = to_engine_msg(once(b'F').chain(team_name.bytes()));
-                        if let Some(m) = &info.sync_msg {
-                            info.msg_log.push(m.clone());
-                        }
-                        if info.sync_msg.is_some() {
-                            info.sync_msg = None
-                        }
-                        info.msg_log.push(remove_msg.clone());
-                        response.add(
-                            ForwardEngineMessage(vec![remove_msg])
-                                .send_all()
-                                .in_room(room_id)
-                                .but_self(),
+                if let Some(0) = room.teams_in_game() {
+                    if let Some(result) = room_control.end_game() {
+                        super::common::get_end_game_result(
+                            room_control.server(),
+                            room_id,
+                            result,
+                            response,
                         );
                     }
                 }
             }
-            if game_ended {
-                super::common::end_game(server, room_id, response)
-            }
         }
         Rnd(v) => {
             let result = rnd_reply(&v);
             let mut echo = vec!["/rnd".to_string()];
-            echo.extend(v.into_iter());
+            echo.extend(v);
             let chat_msg = ChatMsg {
-                nick: server.clients[client_id].nick.clone(),
+                nick: client.nick.clone(),
                 msg: echo.join(" "),
             };
             response.add(chat_msg.send_all().in_room(room_id));
             response.add(result.send_all().in_room(room_id));
         }
-        Delegate(nick) => {
-            let delegate_id = server.find_client(&nick).map(|c| (c.id, c.room_id));
-            let client = &server.clients[client_id];
-            if !(client.is_admin() || client.is_master()) {
+        Delegate(nick) => match room_control.change_master(nick) {
+            Ok(ChangeMasterResult {
+                old_master_id,
+                new_master_id,
+            }) => {
+                if let Some(master_id) = old_master_id {
+                    response.add(
+                        ClientFlags(
+                            remove_flags(&[Flags::RoomMaster]),
+                            vec![room_control.server().client(master_id).nick.clone()],
+                        )
+                        .send_all()
+                        .in_room(room_id),
+                    );
+                }
                 response.add(
-                    Warning("You're not the room master or a server admin!".to_string())
-                        .send_self(),
-                )
-            } else {
-                match delegate_id {
-                    None => response.add(Warning("Player is not online.".to_string()).send_self()),
-                    Some((id, _)) if id == client_id => response
-                        .add(Warning("You're already the room master.".to_string()).send_self()),
-                    Some((_, id)) if id != Some(room_id) => response
-                        .add(Warning("The player is not in your room.".to_string()).send_self()),
-                    Some((id, _)) => {
-                        super::common::change_master(server, room_id, id, response);
-                    }
-                }
+                    ClientFlags(
+                        add_flags(&[Flags::RoomMaster]),
+                        vec![room_control.server().client(new_master_id).nick.clone()],
+                    )
+                    .send_all()
+                    .in_room(room_id),
+                );
             }
-        }
+            Err(ChangeMasterError::NoAccess) => {
+                response.warn("You're not the room master or a server admin!")
+            }
+            Err(ChangeMasterError::AlreadyMaster) => {
+                response.warn("You're already the room master.")
+            }
+            Err(ChangeMasterError::NoClient) => response.warn("Player is not online."),
+            Err(ChangeMasterError::ClientNotInRoom) => {
+                response.warn("The player is not in your room.")
+            }
+        },
         _ => warn!("Unimplemented!"),
     }
 }
--- a/rust/hedgewars-server/src/handlers/strings.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/handlers/strings.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,23 +1,39 @@
-pub const ACCESS_DENIED: &str = "Access denied.";
-pub const AUTHENTICATION_FAILED: &str = "Authentication failed.";
-pub const ILLEGAL_ROOM_NAME: &str = "Illegal room name! A room name must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}";
-pub const NO_ROOM: &str = "No such room.";
-pub const NO_USER: &str = "No such user.";
-pub const REPLAY_LOAD_FAILED: &str = "Could't load the replay";
-pub const REPLAY_NOT_SUPPORTED: &str = "This server does not support replays!";
-pub const REGISTRATION_REQUIRED: &str = "This server only allows registered users to join.";
-pub const REGISTERED_ONLY_ENABLED: &str =
-    "This server no longer allows unregistered players to join.";
-pub const REGISTERED_ONLY_DISABLED: &str = "This server now allows unregistered players to join.";
-pub const ROOM_CONFIG_SAVE_FAILED: &str = "Unable to save the room configs.";
-pub const ROOM_CONFIG_LOAD_FAILED: &str = "Unable to load the room configs.";
-pub const ROOM_CONFIG_DESERIALIZE_FAILED: &str = "Unable to deserialize the room configs.";
-pub const ROOM_CONFIG_LOADED: &str = "Room configs loaded successfully.";
-pub const ROOM_CONFIG_SAVED: &str = "Room configs saved successfully.";
-pub const ROOM_EXISTS: &str = "A room with the same name already exists.";
-pub const ROOM_FULL: &str = "This room is already full.";
-pub const ROOM_JOIN_RESTRICTED: &str = "Access denied. This room currently doesn't allow joining.";
-pub const SUPER_POWER: &str = "Super power activated.";
-pub const USER_OFFLINE: &str = "Player is not online.";
-pub const VARIABLE_UPDATED: &str = "Server variable has been updated.";
-pub const WRONG_PROTOCOL: &str = "Room version incompatible to your Hedgewars version!";
+pub const ACCESS_DENIED: &str = "Access denied.";
+pub const AUTHENTICATION_FAILED: &str = "Authentication failed";
+pub const BAD_NUMBER: &str = "Bad number.";
+pub const ILLEGAL_CLIENT_NAME: &str = "Illegal nickname! Nicknames must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}";
+pub const ILLEGAL_ROOM_NAME: &str = "Illegal room name! A room name must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}";
+pub const NICKNAME_PROVIDED: &str = "Nickname already provided.";
+pub const NO_CHECKER_RIGHTS: &str = "No checker rights";
+pub const NO_ROOM: &str = "No such room.";
+pub const NO_TEAM: &str = "No such team.";
+pub const NO_TEAM_TO_REMOVE: &str = "Error: The team you tried to remove does not exist.";
+pub const NO_USER: &str = "No such user.";
+pub const NOT_MASTER: &str = "You're not the room master!";
+pub const PROTOCOL_PROVIDED: &str = "Protocol already known.";
+pub const PROTOCOL_TOO_OLD: &str = "Protocol version is too old";
+pub const REPLAY_LOAD_FAILED: &str = "Could't load the replay";
+pub const REPLAY_NOT_SUPPORTED: &str = "This server does not support replays!";
+pub const REGISTRATION_REQUIRED: &str = "This server only allows registered users to join.";
+pub const REGISTERED_ONLY_ENABLED: &str =
+    "This server no longer allows unregistered players to join.";
+pub const REGISTERED_ONLY_DISABLED: &str = "This server now allows unregistered players to join.";
+pub const ROOM_CONFIG_SAVE_FAILED: &str = "Unable to save the room configs.";
+pub const ROOM_CONFIG_LOAD_FAILED: &str = "Unable to load the room configs.";
+pub const ROOM_CONFIG_DESERIALIZE_FAILED: &str = "Unable to deserialize the room configs.";
+pub const ROOM_CONFIG_LOADED: &str = "Room configs loaded successfully.";
+pub const ROOM_CONFIG_SAVED: &str = "Room configs saved successfully.";
+pub const ROOM_EXISTS: &str = "A room with the same name already exists.";
+pub const ROOM_FULL: &str = "This room is already full.";
+pub const ROOM_JOIN_RESTRICTED: &str = "Access denied. This room currently doesn't allow joining.";
+pub const ROOM_REGISTRATION_REQUIRED: &str =
+    "Access denied. This room is for registered users only.";
+pub const SUPER_POWER: &str = "Super power activated.";
+pub const TEAM_EXISTS: &str = "There's already a team with same name in the list.";
+pub const TEAM_NOT_OWNED: &str = "You can't remove a team you don't own.";
+pub const TEAM_ADD_RESTRICTED: &str = "This room currently does not allow adding new teams.";
+pub const TOO_MANY_HEDGEHOGS: &str = "Too many hedgehogs!";
+pub const TOO_MANY_TEAMS: &str = "Too many teams!";
+pub const USER_OFFLINE: &str = "Player is not online.";
+pub const VARIABLE_UPDATED: &str = "Server variable has been updated.";
+pub const INCOMPATIBLE_ROOM_PROTOCOL: &str = "Room version incompatible to your Hedgewars version!";
--- a/rust/hedgewars-server/src/main.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/main.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,10 +1,12 @@
+#![forbid(unsafe_code)]
 #![allow(unused_imports)]
+#![allow(dead_code)]
+#![allow(unused_variables)]
 #![deny(bare_trait_objects)]
 
 use getopts::Options;
 use log::*;
-use mio::{net::*, *};
-use std::{env, str::FromStr as _, time::Duration};
+use std::{env, net::SocketAddr, str::FromStr as _};
 
 mod core;
 mod handlers;
@@ -16,7 +18,8 @@
 
 const PROGRAM_NAME: &'_ str = "Hedgewars Game Server";
 
-fn main() {
+#[tokio::main]
+async fn main() -> tokio::io::Result<()> {
     env_logger::init();
 
     info!("Hedgewars game server, protocol {}", utils::SERVER_VERSION);
@@ -24,91 +27,31 @@
     let args: Vec<String> = env::args().collect();
     let mut opts = Options::new();
 
+    //todo!("Add options for cert paths");
     opts.optopt("p", "port", "port - defaults to 46631", "PORT");
     opts.optflag("h", "help", "help");
     let matches = match opts.parse(&args[1..]) {
         Ok(m) => m,
         Err(e) => {
             println!("{}\n{}", e, opts.short_usage(""));
-            return;
+            return Ok(());
         }
     };
     if matches.opt_present("h") {
         println!("{}", opts.usage(PROGRAM_NAME));
-        return;
+        return Ok(());
     }
 
     let port = matches
         .opt_str("p")
         .and_then(|s| u16::from_str(&s).ok())
         .unwrap_or(46631);
-    let address = format!("0.0.0.0:{}", port).parse().unwrap();
-
-    let listener = TcpListener::bind(&address).unwrap();
-
-    let poll = Poll::new().unwrap();
-    let mut hw_builder = NetworkLayerBuilder::default().with_listener(listener);
-
-    #[cfg(feature = "tls-connections")]
-    {
-        let address = format!("0.0.0.0:{}", port + 1).parse().unwrap();
-        hw_builder = hw_builder.with_secure_listener(TcpListener::bind(&address).unwrap());
-    }
+    let address: SocketAddr = format!("0.0.0.0:{}", port).parse().unwrap();
 
-    let mut hw_network = hw_builder.build();
-    hw_network.register(&poll).unwrap();
-
-    let mut events = Events::with_capacity(1024);
-
-    loop {
-        let timeout = if hw_network.has_pending_operations() {
-            Some(Duration::from_millis(1))
-        } else {
-            None
-        };
-        poll.poll(&mut events, timeout).unwrap();
+    let server = tokio::net::TcpListener::bind(address).await.unwrap();
 
-        for event in events.iter() {
-            if event.readiness() & Ready::readable() == Ready::readable() {
-                match event.token() {
-                    token @ utils::SERVER_TOKEN | token @ utils::SECURE_SERVER_TOKEN => {
-                        match hw_network.accept_client(&poll, token) {
-                            Ok(()) => (),
-                            Err(e) => debug!("Error accepting client: {}", e),
-                        }
-                    }
-                    utils::TIMER_TOKEN => match hw_network.handle_timeout(&poll) {
-                        Ok(()) => (),
-                        Err(e) => debug!("Error in timer event: {}", e),
-                    },
-                    #[cfg(feature = "official-server")]
-                    utils::IO_TOKEN => match hw_network.handle_io_result(&poll) {
-                        Ok(()) => (),
-                        Err(e) => debug!("Error in IO task: {}", e),
-                    },
-                    Token(token) => match hw_network.client_readable(&poll, token) {
-                        Ok(()) => (),
-                        Err(e) => debug!("Error reading from client socket {}: {}", token, e),
-                    },
-                }
-            }
-            if event.readiness() & Ready::writable() == Ready::writable() {
-                match event.token() {
-                    utils::SERVER_TOKEN
-                    | utils::SECURE_SERVER_TOKEN
-                    | utils::TIMER_TOKEN
-                    | utils::IO_TOKEN => unreachable!(),
-                    Token(token) => match hw_network.client_writable(&poll, token) {
-                        Ok(()) => (),
-                        Err(e) => debug!("Error writing to client socket {}: {}", token, e),
-                    },
-                }
-            }
-        }
+    let mut hw_network = NetworkLayerBuilder::default().with_listener(server).build();
 
-        match hw_network.on_idle(&poll) {
-            Ok(()) => (),
-            Err(e) => debug!("Error in idle handler: {}", e),
-        };
-    }
+    hw_network.run().await;
+    Ok(())
 }
--- a/rust/hedgewars-server/src/protocol.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/protocol.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,69 +1,120 @@
-use self::parser::message;
+use bytes::{Buf, BufMut, BytesMut};
 use log::*;
-use netbuf;
-use std::io::{Read, Result};
+use std::{
+    error::Error,
+    fmt::{Debug, Display, Formatter},
+    io,
+    io::ErrorKind,
+    marker::Unpin,
+    time::Duration,
+};
+use tokio::{io::AsyncReadExt, time::timeout};
+
+use crate::protocol::ProtocolError::Timeout;
+use hedgewars_network_protocol::{
+    messages::HwProtocolMessage,
+    parser::HwProtocolError,
+    parser::{malformed_message, message},
+};
 
-pub mod messages;
-mod parser;
-#[cfg(test)]
-pub mod test;
+#[derive(Debug)]
+pub enum ProtocolError {
+    Eof,
+    Timeout,
+    Network(Box<dyn Error + Send>),
+}
+
+impl Display for ProtocolError {
+    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
+        match self {
+            ProtocolError::Eof => write!(f, "Connection reset by peer"),
+            ProtocolError::Timeout => write!(f, "Read operation timed out"),
+            ProtocolError::Network(source) => write!(f, "{:?}", source),
+        }
+    }
+}
+
+impl Error for ProtocolError {
+    fn source(&self) -> Option<&(dyn Error + 'static)> {
+        if let Self::Network(source) = self {
+            Some(source.as_ref())
+        } else {
+            None
+        }
+    }
+}
+
+pub type Result<T> = std::result::Result<T, ProtocolError>;
 
 pub struct ProtocolDecoder {
-    buf: netbuf::Buf,
+    buffer: BytesMut,
+    read_timeout: Duration,
     is_recovering: bool,
 }
 
 impl ProtocolDecoder {
-    pub fn new() -> ProtocolDecoder {
+    pub fn new(read_timeout: Duration) -> ProtocolDecoder {
         ProtocolDecoder {
-            buf: netbuf::Buf::new(),
+            buffer: BytesMut::with_capacity(1024),
+            read_timeout,
             is_recovering: false,
         }
     }
 
     fn recover(&mut self) -> bool {
-        self.is_recovering = match parser::malformed_message(&self.buf[..]) {
+        self.is_recovering = match malformed_message(&self.buffer[..]) {
             Ok((tail, ())) => {
-                let length = tail.len();
-                self.buf.consume(self.buf.len() - length);
+                let remaining = tail.len();
+                self.buffer.advance(self.buffer.len() - remaining);
                 false
             }
             _ => {
-                self.buf.consume(self.buf.len());
+                self.buffer.clear();
                 true
             }
         };
         !self.is_recovering
     }
 
-    pub fn read_from<R: Read>(&mut self, stream: &mut R) -> Result<usize> {
-        let count = self.buf.read_from(stream)?;
-        if count > 0 && self.is_recovering {
-            self.recover();
-        }
-        Ok(count)
-    }
-
-    pub fn extract_messages(&mut self) -> Vec<messages::HwProtocolMessage> {
-        let mut messages = vec![];
-        if !self.is_recovering {
-            while !self.buf.is_empty() {
-                match parser::message(&self.buf[..]) {
-                    Ok((tail, message)) => {
-                        messages.push(message);
-                        let length = tail.len();
-                        self.buf.consume(self.buf.len() - length);
-                    }
-                    Err(nom::Err::Incomplete(_)) => break,
-                    Err(nom::Err::Failure(e)) | Err(nom::Err::Error(e)) => {
-                        debug!("Invalid message: {:?}", e);
-                        if !self.recover() || self.buf.is_empty() {
-                            break;
-                        }
-                    }
+    fn extract_message(&mut self) -> Option<HwProtocolMessage> {
+        if !self.is_recovering || self.recover() {
+            match message(&self.buffer[..]) {
+                Ok((tail, message)) => {
+                    let remaining = tail.len();
+                    self.buffer.advance(self.buffer.len() - remaining);
+                    return Some(message);
+                }
+                Err(nom::Err::Incomplete(_)) => {}
+                Err(nom::Err::Failure(e) | nom::Err::Error(e)) => {
+                    debug!("Invalid message: {:?}", e);
+                    self.recover();
                 }
             }
         }
-        messages
+        None
+    }
+
+    pub async fn read_from<R: AsyncReadExt + Unpin>(
+        &mut self,
+        stream: &mut R,
+    ) -> Result<HwProtocolMessage> {
+        use ProtocolError::*;
+
+        loop {
+            if !self.buffer.has_remaining() {
+                //todo!("ensure the buffer doesn't grow indefinitely")
+                match timeout(self.read_timeout, stream.read_buf(&mut self.buffer)).await {
+                    Err(_) => return Err(Timeout),
+                    Ok(Err(e)) => return Err(Network(Box::new(e))),
+                    Ok(Ok(0)) => return Err(Eof),
+                    Ok(Ok(_)) => (),
+                };
+            }
+            while !self.buffer.is_empty() {
+                if let Some(result) = self.extract_message() {
+                    return Ok(result);
+                }
+            }
+        }
     }
 }
--- a/rust/hedgewars-server/src/protocol/messages.rs	Sun Mar 24 14:19:02 2024 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,429 +0,0 @@
-use crate::core::types::{GameCfg, HedgehogInfo, ServerVar, TeamInfo, VoteType};
-use std::{convert::From, iter::once, ops};
-
-#[derive(PartialEq, Eq, Clone, Debug)]
-pub enum HwProtocolMessage {
-    // common messages
-    Ping,
-    Pong,
-    Quit(Option<String>),
-    Global(String),
-    Watch(u32),
-    ToggleServerRegisteredOnly,
-    SuperPower,
-    Info(String),
-    // anteroom messages
-    Nick(String),
-    Proto(u16),
-    Password(String, String),
-    Checker(u16, String, String),
-    // lobby messages
-    List,
-    Chat(String),
-    CreateRoom(String, Option<String>),
-    JoinRoom(String, Option<String>),
-    Follow(String),
-    Rnd(Vec<String>),
-    Kick(String),
-    Ban(String, String, u32),
-    BanIp(String, String, u32),
-    BanNick(String, String, u32),
-    BanList,
-    Unban(String),
-    SetServerVar(ServerVar),
-    GetServerVar,
-    RestartServer,
-    Stats,
-    // room messages
-    Part(Option<String>),
-    Cfg(GameCfg),
-    AddTeam(Box<TeamInfo>),
-    RemoveTeam(String),
-    SetHedgehogsNumber(String, u8),
-    SetTeamColor(String, u8),
-    ToggleReady,
-    StartGame,
-    EngineMessage(String),
-    RoundFinished,
-    ToggleRestrictJoin,
-    ToggleRestrictTeams,
-    ToggleRegisteredOnly,
-    RoomName(String),
-    Delegate(String),
-    TeamChat(String),
-    MaxTeams(u8),
-    Fix,
-    Unfix,
-    Greeting(Option<String>),
-    CallVote(Option<VoteType>),
-    Vote(bool),
-    ForceVote(bool),
-    Save(String, String),
-    Delete(String),
-    SaveRoom(String),
-    LoadRoom(String),
-}
-
-#[derive(Debug, Clone, Copy)]
-pub enum ProtocolFlags {
-    InRoom,
-    RoomMaster,
-    Ready,
-    InGame,
-    Registered,
-    Admin,
-    Contributor,
-}
-
-impl ProtocolFlags {
-    #[inline]
-    fn flag_char(&self) -> char {
-        match self {
-            ProtocolFlags::InRoom => 'i',
-            ProtocolFlags::RoomMaster => 'h',
-            ProtocolFlags::Ready => 'r',
-            ProtocolFlags::InGame => 'g',
-            ProtocolFlags::Registered => 'u',
-            ProtocolFlags::Admin => 'a',
-            ProtocolFlags::Contributor => 'c',
-        }
-    }
-
-    #[inline]
-    fn format(prefix: char, flags: &[ProtocolFlags]) -> String {
-        once(prefix)
-            .chain(flags.iter().map(|f| f.flag_char()))
-            .collect()
-    }
-}
-
-#[inline]
-pub fn add_flags(flags: &[ProtocolFlags]) -> String {
-    ProtocolFlags::format('+', flags)
-}
-
-#[inline]
-pub fn remove_flags(flags: &[ProtocolFlags]) -> String {
-    ProtocolFlags::format('-', flags)
-}
-
-#[derive(Debug)]
-pub enum HwServerMessage {
-    Connected(u32),
-    Redirect(u16),
-
-    Ping,
-    Pong,
-    Bye(String),
-
-    Nick(String),
-    Proto(u16),
-    AskPassword(String),
-    ServerAuth(String),
-
-    LobbyLeft(String, String),
-    LobbyJoined(Vec<String>),
-    ChatMsg { nick: String, msg: String },
-    ClientFlags(String, Vec<String>),
-    Rooms(Vec<String>),
-    RoomAdd(Vec<String>),
-    RoomJoined(Vec<String>),
-    RoomLeft(String, String),
-    RoomRemove(String),
-    RoomUpdated(String, Vec<String>),
-    Joining(String),
-    TeamAdd(Vec<String>),
-    TeamRemove(String),
-    TeamAccepted(String),
-    TeamColor(String, u8),
-    HedgehogsNumber(String, u8),
-    ConfigEntry(String, Vec<String>),
-    Kicked,
-    RunGame,
-    ForwardEngineMessage(Vec<String>),
-    RoundFinished,
-    ReplayStart,
-
-    Info(Vec<String>),
-    ServerMessage(String),
-    ServerVars(Vec<String>),
-    Notice(String),
-    Warning(String),
-    Error(String),
-    Unreachable,
-
-    //Deprecated messages
-    LegacyReady(bool, Vec<String>),
-}
-
-fn special_chat(nick: &str, msg: String) -> HwServerMessage {
-    HwServerMessage::ChatMsg {
-        nick: nick.to_string(),
-        msg,
-    }
-}
-
-pub fn server_chat(msg: String) -> HwServerMessage {
-    special_chat("[server]", msg)
-}
-
-pub fn global_chat(msg: String) -> HwServerMessage {
-    special_chat("(global notice)", msg)
-}
-
-impl ServerVar {
-    pub fn to_protocol(&self) -> Vec<String> {
-        use ServerVar::*;
-        match self {
-            MOTDNew(s) => vec!["MOTD_NEW".to_string(), s.clone()],
-            MOTDOld(s) => vec!["MOTD_OLD".to_string(), s.clone()],
-            LatestProto(n) => vec!["LATEST_PROTO".to_string(), n.to_string()],
-        }
-    }
-}
-
-impl VoteType {
-    pub fn to_protocol(&self) -> Vec<String> {
-        use VoteType::*;
-        match self {
-            Kick(nick) => vec!["KICK".to_string(), nick.clone()],
-            Map(None) => vec!["MAP".to_string()],
-            Map(Some(name)) => vec!["MAP".to_string(), name.clone()],
-            Pause => vec!["PAUSE".to_string()],
-            NewSeed => vec!["NEWSEED".to_string()],
-            HedgehogsPerTeam(count) => vec!["HEDGEHOGS".to_string(), count.to_string()],
-        }
-    }
-}
-
-impl GameCfg {
-    pub fn to_protocol(&self) -> (String, Vec<String>) {
-        use GameCfg::*;
-        match self {
-            FeatureSize(s) => ("FEATURE_SIZE".to_string(), vec![s.to_string()]),
-            MapType(t) => ("MAP".to_string(), vec![t.to_string()]),
-            MapGenerator(g) => ("MAPGEN".to_string(), vec![g.to_string()]),
-            MazeSize(s) => ("MAZE_SIZE".to_string(), vec![s.to_string()]),
-            Seed(s) => ("SEED".to_string(), vec![s.to_string()]),
-            Template(t) => ("TEMPLATE".to_string(), vec![t.to_string()]),
-
-            Ammo(n, None) => ("AMMO".to_string(), vec![n.to_string()]),
-            Ammo(n, Some(s)) => ("AMMO".to_string(), vec![n.to_string(), s.to_string()]),
-            Scheme(n, s) if s.is_empty() => ("SCHEME".to_string(), vec![n.to_string()]),
-            Scheme(n, s) => ("SCHEME".to_string(), {
-                let mut v = vec![n.to_string()];
-                v.extend(s.clone().into_iter());
-                v
-            }),
-            Script(s) => ("SCRIPT".to_string(), vec![s.to_string()]),
-            Theme(t) => ("THEME".to_string(), vec![t.to_string()]),
-            DrawnMap(m) => ("DRAWNMAP".to_string(), vec![m.to_string()]),
-        }
-    }
-
-    pub fn to_server_msg(&self) -> HwServerMessage {
-        use self::HwServerMessage::ConfigEntry;
-        let (name, args) = self.to_protocol();
-        HwServerMessage::ConfigEntry(name, args)
-    }
-}
-
-impl TeamInfo {
-    pub fn to_protocol(&self) -> Vec<String> {
-        let mut info = vec![
-            self.name.clone(),
-            self.grave.clone(),
-            self.fort.clone(),
-            self.voice_pack.clone(),
-            self.flag.clone(),
-            self.owner.clone(),
-            self.difficulty.to_string(),
-        ];
-        let hogs = self
-            .hedgehogs
-            .iter()
-            .flat_map(|h| once(h.name.clone()).chain(once(h.hat.clone())));
-        info.extend(hogs);
-        info
-    }
-}
-
-macro_rules! const_braces {
-    ($e: expr) => {
-        "{}\n"
-    };
-}
-
-macro_rules! msg {
-    [$($part: expr),*] => {
-        format!(concat!($(const_braces!($part)),*, "\n"), $($part),*);
-    };
-}
-
-#[cfg(test)]
-macro_rules! several {
-    [$part: expr] => { once($part) };
-    [$part: expr, $($other: expr),*] => { once($part).chain(several![$($other),*]) };
-}
-
-impl HwProtocolMessage {
-    /** Converts the message to a raw `String`, which can be sent over the network.
-     *
-     * This is the inverse of the `message` parser.
-     */
-    #[cfg(test)]
-    pub(crate) fn to_raw_protocol(&self) -> String {
-        use self::HwProtocolMessage::*;
-        match self {
-            Ping => msg!["PING"],
-            Pong => msg!["PONG"],
-            Quit(None) => msg!["QUIT"],
-            Quit(Some(msg)) => msg!["QUIT", msg],
-            Global(msg) => msg!["CMD", format!("GLOBAL {}", msg)],
-            Watch(name) => msg!["CMD", format!("WATCH {}", name)],
-            ToggleServerRegisteredOnly => msg!["CMD", "REGISTERED_ONLY"],
-            SuperPower => msg!["CMD", "SUPER_POWER"],
-            Info(info) => msg!["CMD", format!("INFO {}", info)],
-            Nick(nick) => msg!("NICK", nick),
-            Proto(version) => msg!["PROTO", version],
-            Password(p, s) => msg!["PASSWORD", p, s],
-            Checker(i, n, p) => msg!["CHECKER", i, n, p],
-            List => msg!["LIST"],
-            Chat(msg) => msg!["CHAT", msg],
-            CreateRoom(name, None) => msg!["CREATE_ROOM", name],
-            CreateRoom(name, Some(password)) => msg!["CREATE_ROOM", name, password],
-            JoinRoom(name, None) => msg!["JOIN_ROOM", name],
-            JoinRoom(name, Some(password)) => msg!["JOIN_ROOM", name, password],
-            Follow(name) => msg!["FOLLOW", name],
-            Rnd(args) => {
-                if args.is_empty() {
-                    msg!["CMD", "RND"]
-                } else {
-                    msg!["CMD", format!("RND {}", args.join(" "))]
-                }
-            }
-            Kick(name) => msg!["KICK", name],
-            Ban(name, reason, time) => msg!["BAN", name, reason, time],
-            BanIp(ip, reason, time) => msg!["BAN_IP", ip, reason, time],
-            BanNick(nick, reason, time) => msg!("BAN_NICK", nick, reason, time),
-            BanList => msg!["BANLIST"],
-            Unban(name) => msg!["UNBAN", name],
-            SetServerVar(var) => construct_message(&["SET_SERVER_VAR"], &var.to_protocol()),
-            GetServerVar => msg!["GET_SERVER_VAR"],
-            RestartServer => msg!["CMD", "RESTART_SERVER YES"],
-            Stats => msg!["CMD", "STATS"],
-            Part(None) => msg!["PART"],
-            Part(Some(msg)) => msg!["PART", msg],
-            Cfg(config) => {
-                let (name, args) = config.to_protocol();
-                msg!["CFG", name, args.join("\n")]
-            }
-            AddTeam(info) => msg![
-                "ADD_TEAM",
-                info.name,
-                info.color,
-                info.grave,
-                info.fort,
-                info.voice_pack,
-                info.flag,
-                info.difficulty,
-                info.hedgehogs
-                    .iter()
-                    .flat_map(|h| several![&h.name[..], &h.hat[..]])
-                    .collect::<Vec<_>>()
-                    .join("\n")
-            ],
-            RemoveTeam(name) => msg!["REMOVE_TEAM", name],
-            SetHedgehogsNumber(team, number) => msg!["HH_NUM", team, number],
-            SetTeamColor(team, color) => msg!["TEAM_COLOR", team, color],
-            ToggleReady => msg!["TOGGLE_READY"],
-            StartGame => msg!["START_GAME"],
-            EngineMessage(msg) => msg!["EM", msg],
-            RoundFinished => msg!["ROUNDFINISHED"],
-            ToggleRestrictJoin => msg!["TOGGLE_RESTRICT_JOINS"],
-            ToggleRestrictTeams => msg!["TOGGLE_RESTRICT_TEAMS"],
-            ToggleRegisteredOnly => msg!["TOGGLE_REGISTERED_ONLY"],
-            RoomName(name) => msg!["ROOM_NAME", name],
-            Delegate(name) => msg!["CMD", format!("DELEGATE {}", name)],
-            TeamChat(msg) => msg!["TEAMCHAT", msg],
-            MaxTeams(count) => msg!["CMD", format!("MAXTEAMS {}", count)],
-            Fix => msg!["CMD", "FIX"],
-            Unfix => msg!["CMD", "UNFIX"],
-            Greeting(None) => msg!["CMD", "GREETING"],
-            Greeting(Some(msg)) => msg!["CMD", format!("GREETING {}", msg)],
-            CallVote(None) => msg!["CMD", "CALLVOTE"],
-            CallVote(Some(vote)) => {
-                msg!["CMD", format!("CALLVOTE {}", &vote.to_protocol().join(" "))]
-            }
-            Vote(msg) => msg!["CMD", format!("VOTE {}", if *msg { "YES" } else { "NO" })],
-            ForceVote(msg) => msg!["CMD", format!("FORCE {}", if *msg { "YES" } else { "NO" })],
-            Save(name, location) => msg!["CMD", format!("SAVE {} {}", name, location)],
-            Delete(name) => msg!["CMD", format!("DELETE {}", name)],
-            SaveRoom(name) => msg!["CMD", format!("SAVEROOM {}", name)],
-            LoadRoom(name) => msg!["CMD", format!("LOADROOM {}", name)],
-            _ => panic!("Protocol message not yet implemented"),
-        }
-    }
-}
-
-fn construct_message(header: &[&str], msg: &[String]) -> String {
-    let mut v: Vec<_> = header.iter().cloned().collect();
-    v.extend(msg.iter().map(|s| &s[..]));
-    v.push("\n");
-    v.join("\n")
-}
-
-impl HwServerMessage {
-    pub fn to_raw_protocol(&self) -> String {
-        use self::HwServerMessage::*;
-        match self {
-            Ping => msg!["PING"],
-            Pong => msg!["PONG"],
-            Connected(protocol_version) => msg![
-                "CONNECTED",
-                "Hedgewars server https://www.hedgewars.org/",
-                protocol_version
-            ],
-            Redirect(port) => msg!["REDIRECT", port],
-            Bye(msg) => msg!["BYE", msg],
-            Nick(nick) => msg!["NICK", nick],
-            Proto(proto) => msg!["PROTO", proto],
-            AskPassword(salt) => msg!["ASKPASSWORD", salt],
-            ServerAuth(hash) => msg!["SERVER_AUTH", hash],
-            LobbyLeft(nick, msg) => msg!["LOBBY:LEFT", nick, msg],
-            LobbyJoined(nicks) => construct_message(&["LOBBY:JOINED"], &nicks),
-            ClientFlags(flags, nicks) => construct_message(&["CLIENT_FLAGS", flags], &nicks),
-            Rooms(info) => construct_message(&["ROOMS"], &info),
-            RoomAdd(info) => construct_message(&["ROOM", "ADD"], &info),
-            RoomJoined(nicks) => construct_message(&["JOINED"], &nicks),
-            RoomLeft(nick, msg) => msg!["LEFT", nick, msg],
-            RoomRemove(name) => msg!["ROOM", "DEL", name],
-            RoomUpdated(name, info) => construct_message(&["ROOM", "UPD", name], &info),
-            Joining(name) => msg!["JOINING", name],
-            TeamAdd(info) => construct_message(&["ADD_TEAM"], &info),
-            TeamRemove(name) => msg!["REMOVE_TEAM", name],
-            TeamAccepted(name) => msg!["TEAM_ACCEPTED", name],
-            TeamColor(name, color) => msg!["TEAM_COLOR", name, color],
-            HedgehogsNumber(name, number) => msg!["HH_NUM", name, number],
-            ConfigEntry(name, values) => construct_message(&["CFG", name], &values),
-            Kicked => msg!["KICKED"],
-            RunGame => msg!["RUN_GAME"],
-            ForwardEngineMessage(em) => construct_message(&["EM"], &em),
-            RoundFinished => msg!["ROUND_FINISHED"],
-            ChatMsg { nick, msg } => msg!["CHAT", nick, msg],
-            Info(info) => construct_message(&["INFO"], &info),
-            ServerMessage(msg) => msg!["SERVER_MESSAGE", msg],
-            ServerVars(vars) => construct_message(&["SERVER_VARS"], &vars),
-            Notice(msg) => msg!["NOTICE", msg],
-            Warning(msg) => msg!["WARNING", msg],
-            Error(msg) => msg!["ERROR", msg],
-            ReplayStart => msg!["REPLAY_START"],
-
-            LegacyReady(is_ready, nicks) => {
-                construct_message(&[if *is_ready { "READY" } else { "NOT_READY" }], &nicks)
-            }
-
-            _ => msg!["ERROR", "UNIMPLEMENTED"],
-        }
-    }
-}
--- a/rust/hedgewars-server/src/protocol/parser.rs	Sun Mar 24 14:19:02 2024 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,576 +0,0 @@
-/** The parsers for the chat and multiplayer protocol. The main parser is `message`.
- * # Protocol
- * All messages consist of `\n`-separated strings. The end of a message is
- * indicated by a double newline - `\n\n`.
- *
- * For example, a nullary command like PING will be actually sent as `PING\n\n`.
- * A unary command, such as `START_GAME nick` will be actually sent as `START_GAME\nnick\n\n`.
- */
-use nom::{
-    branch::alt,
-    bytes::complete::{tag, tag_no_case, take_until, take_while},
-    character::complete::{newline, not_line_ending},
-    combinator::{map, peek},
-    error::{ErrorKind, ParseError},
-    multi::separated_list,
-    sequence::{delimited, pair, preceded, terminated, tuple},
-    Err, IResult,
-};
-
-use std::{
-    num::ParseIntError,
-    ops::Range,
-    str,
-    str::{FromStr, Utf8Error},
-};
-
-use super::messages::{HwProtocolMessage, HwProtocolMessage::*};
-use crate::core::types::{
-    GameCfg, HedgehogInfo, ServerVar, TeamInfo, VoteType, MAX_HEDGEHOGS_PER_TEAM,
-};
-
-#[derive(Debug, PartialEq)]
-pub struct HwProtocolError {}
-
-impl HwProtocolError {
-    fn new() -> Self {
-        HwProtocolError {}
-    }
-}
-
-impl<I> ParseError<I> for HwProtocolError {
-    fn from_error_kind(input: I, kind: ErrorKind) -> Self {
-        HwProtocolError::new()
-    }
-
-    fn append(input: I, kind: ErrorKind, other: Self) -> Self {
-        HwProtocolError::new()
-    }
-}
-
-impl From<Utf8Error> for HwProtocolError {
-    fn from(_: Utf8Error) -> Self {
-        HwProtocolError::new()
-    }
-}
-
-impl From<ParseIntError> for HwProtocolError {
-    fn from(_: ParseIntError) -> Self {
-        HwProtocolError::new()
-    }
-}
-
-pub type HwResult<'a, O> = IResult<&'a [u8], O, HwProtocolError>;
-
-fn end_of_message(input: &[u8]) -> HwResult<&[u8]> {
-    tag("\n\n")(input)
-}
-
-fn convert_utf8(input: &[u8]) -> HwResult<&str> {
-    match str::from_utf8(input) {
-        Ok(str) => Ok((b"", str)),
-        Err(utf_err) => Result::Err(Err::Failure(utf_err.into())),
-    }
-}
-
-fn convert_from_str<T>(str: &str) -> HwResult<T>
-where
-    T: FromStr<Err = ParseIntError>,
-{
-    match T::from_str(str) {
-        Ok(x) => Ok((b"", x)),
-        Err(format_err) => Result::Err(Err::Failure(format_err.into())),
-    }
-}
-
-fn str_line(input: &[u8]) -> HwResult<&str> {
-    let (i, text) = not_line_ending(input.clone())?;
-    if i != input {
-        Ok((i, convert_utf8(text)?.1))
-    } else {
-        Err(Err::Error(HwProtocolError::new()))
-    }
-}
-
-fn a_line(input: &[u8]) -> HwResult<String> {
-    map(str_line, String::from)(input)
-}
-
-fn cmd_arg(input: &[u8]) -> HwResult<String> {
-    let delimiters = b" \n";
-    let (i, str) = take_while(move |c| !delimiters.contains(&c))(input.clone())?;
-    if i != input {
-        Ok((i, convert_utf8(str)?.1.to_string()))
-    } else {
-        Err(Err::Error(HwProtocolError::new()))
-    }
-}
-
-fn u8_line(input: &[u8]) -> HwResult<u8> {
-    let (i, str) = str_line(input)?;
-    Ok((i, convert_from_str(str)?.1))
-}
-
-fn u16_line(input: &[u8]) -> HwResult<u16> {
-    let (i, str) = str_line(input)?;
-    Ok((i, convert_from_str(str)?.1))
-}
-
-fn u32_line(input: &[u8]) -> HwResult<u32> {
-    let (i, str) = str_line(input)?;
-    Ok((i, convert_from_str(str)?.1))
-}
-
-fn yes_no_line(input: &[u8]) -> HwResult<bool> {
-    alt((
-        map(tag_no_case(b"YES"), |_| true),
-        map(tag_no_case(b"NO"), |_| false),
-    ))(input)
-}
-
-fn opt_arg<'a>(input: &'a [u8]) -> HwResult<'a, Option<String>> {
-    alt((
-        map(peek(end_of_message), |_| None),
-        map(preceded(tag("\n"), a_line), Some),
-    ))(input)
-}
-
-fn spaces(input: &[u8]) -> HwResult<&[u8]> {
-    preceded(tag(" "), take_while(|c| c == b' '))(input)
-}
-
-fn opt_space_arg<'a>(input: &'a [u8]) -> HwResult<'a, Option<String>> {
-    alt((
-        map(peek(end_of_message), |_| None),
-        map(preceded(spaces, a_line), Some),
-    ))(input)
-}
-
-fn hedgehog_array(input: &[u8]) -> HwResult<[HedgehogInfo; 8]> {
-    fn hedgehog_line(input: &[u8]) -> HwResult<HedgehogInfo> {
-        map(
-            tuple((terminated(a_line, newline), a_line)),
-            |(name, hat)| HedgehogInfo { name, hat },
-        )(input)
-    }
-
-    let (i, (h1, h2, h3, h4, h5, h6, h7, h8)) = tuple((
-        terminated(hedgehog_line, newline),
-        terminated(hedgehog_line, newline),
-        terminated(hedgehog_line, newline),
-        terminated(hedgehog_line, newline),
-        terminated(hedgehog_line, newline),
-        terminated(hedgehog_line, newline),
-        terminated(hedgehog_line, newline),
-        hedgehog_line,
-    ))(input)?;
-
-    Ok((i, [h1, h2, h3, h4, h5, h6, h7, h8]))
-}
-
-fn voting(input: &[u8]) -> HwResult<VoteType> {
-    alt((
-        map(tag_no_case("PAUSE"), |_| VoteType::Pause),
-        map(tag_no_case("NEWSEED"), |_| VoteType::NewSeed),
-        map(
-            preceded(pair(tag_no_case("KICK"), spaces), a_line),
-            VoteType::Kick,
-        ),
-        map(
-            preceded(pair(tag_no_case("HEDGEHOGS"), spaces), u8_line),
-            VoteType::HedgehogsPerTeam,
-        ),
-        map(preceded(tag_no_case("MAP"), opt_space_arg), VoteType::Map),
-    ))(input)
-}
-
-fn no_arg_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
-    fn message<'a>(
-        name: &'a str,
-        msg: HwProtocolMessage,
-    ) -> impl Fn(&'a [u8]) -> HwResult<'a, HwProtocolMessage> {
-        move |i| map(tag(name), |_| msg.clone())(i)
-    }
-
-    alt((
-        message("PING", Ping),
-        message("PONG", Pong),
-        message("LIST", List),
-        message("BANLIST", BanList),
-        message("GET_SERVER_VAR", GetServerVar),
-        message("TOGGLE_READY", ToggleReady),
-        message("START_GAME", StartGame),
-        message("TOGGLE_RESTRICT_JOINS", ToggleRestrictJoin),
-        message("TOGGLE_RESTRICT_TEAMS", ToggleRestrictTeams),
-        message("TOGGLE_REGISTERED_ONLY", ToggleRegisteredOnly),
-    ))(input)
-}
-
-fn single_arg_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
-    fn message<'a, T, F, G>(
-        name: &'a str,
-        parser: F,
-        constructor: G,
-    ) -> impl Fn(&'a [u8]) -> HwResult<'a, HwProtocolMessage>
-    where
-        F: Fn(&[u8]) -> HwResult<T>,
-        G: Fn(T) -> HwProtocolMessage,
-    {
-        map(preceded(tag(name), parser), constructor)
-    }
-
-    alt((
-        message("NICK\n", a_line, Nick),
-        message("INFO\n", a_line, Info),
-        message("CHAT\n", a_line, Chat),
-        message("PART", opt_arg, Part),
-        message("FOLLOW\n", a_line, Follow),
-        message("KICK\n", a_line, Kick),
-        message("UNBAN\n", a_line, Unban),
-        message("EM\n", a_line, EngineMessage),
-        message("TEAMCHAT\n", a_line, TeamChat),
-        message("ROOM_NAME\n", a_line, RoomName),
-        message("REMOVE_TEAM\n", a_line, RemoveTeam),
-        message("ROUNDFINISHED", opt_arg, |_| RoundFinished),
-        message("PROTO\n", u16_line, Proto),
-        message("QUIT", opt_arg, Quit),
-    ))(input)
-}
-
-fn cmd_message<'a>(input: &'a [u8]) -> HwResult<'a, HwProtocolMessage> {
-    fn cmd_no_arg<'a>(
-        name: &'a str,
-        msg: HwProtocolMessage,
-    ) -> impl Fn(&'a [u8]) -> HwResult<'a, HwProtocolMessage> {
-        move |i| map(tag_no_case(name), |_| msg.clone())(i)
-    }
-
-    fn cmd_single_arg<'a, T, F, G>(
-        name: &'a str,
-        parser: F,
-        constructor: G,
-    ) -> impl Fn(&'a [u8]) -> HwResult<'a, HwProtocolMessage>
-    where
-        F: Fn(&'a [u8]) -> HwResult<'a, T>,
-        G: Fn(T) -> HwProtocolMessage,
-    {
-        map(
-            preceded(pair(tag_no_case(name), spaces), parser),
-            constructor,
-        )
-    }
-
-    fn cmd_no_arg_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
-        alt((
-            cmd_no_arg("STATS", Stats),
-            cmd_no_arg("FIX", Fix),
-            cmd_no_arg("UNFIX", Unfix),
-            cmd_no_arg("REGISTERED_ONLY", ToggleServerRegisteredOnly),
-            cmd_no_arg("SUPER_POWER", SuperPower),
-        ))(input)
-    }
-
-    fn cmd_single_arg_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
-        alt((
-            cmd_single_arg("RESTART_SERVER", |i| tag("YES")(i), |_| RestartServer),
-            cmd_single_arg("DELEGATE", a_line, Delegate),
-            cmd_single_arg("DELETE", a_line, Delete),
-            cmd_single_arg("SAVEROOM", a_line, SaveRoom),
-            cmd_single_arg("LOADROOM", a_line, LoadRoom),
-            cmd_single_arg("GLOBAL", a_line, Global),
-            cmd_single_arg("WATCH", u32_line, Watch),
-            cmd_single_arg("VOTE", yes_no_line, Vote),
-            cmd_single_arg("FORCE", yes_no_line, ForceVote),
-            cmd_single_arg("INFO", a_line, Info),
-            cmd_single_arg("MAXTEAMS", u8_line, MaxTeams),
-            cmd_single_arg("CALLVOTE", voting, |v| CallVote(Some(v))),
-        ))(input)
-    }
-
-    preceded(
-        tag("CMD\n"),
-        alt((
-            cmd_no_arg_message,
-            cmd_single_arg_message,
-            map(tag_no_case("CALLVOTE"), |_| CallVote(None)),
-            map(preceded(tag_no_case("GREETING"), opt_space_arg), Greeting),
-            map(preceded(tag_no_case("PART"), opt_space_arg), Part),
-            map(preceded(tag_no_case("QUIT"), opt_space_arg), Quit),
-            map(
-                preceded(
-                    tag_no_case("SAVE"),
-                    pair(preceded(spaces, cmd_arg), preceded(spaces, cmd_arg)),
-                ),
-                |(n, l)| Save(n, l),
-            ),
-            map(
-                preceded(
-                    tag_no_case("RND"),
-                    alt((
-                        map(peek(end_of_message), |_| vec![]),
-                        preceded(spaces, separated_list(spaces, cmd_arg)),
-                    )),
-                ),
-                Rnd,
-            ),
-        )),
-    )(input)
-}
-
-fn config_message<'a>(input: &'a [u8]) -> HwResult<'a, HwProtocolMessage> {
-    fn cfg_single_arg<'a, T, F, G>(
-        name: &'a str,
-        parser: F,
-        constructor: G,
-    ) -> impl Fn(&'a [u8]) -> HwResult<'a, GameCfg>
-    where
-        F: Fn(&[u8]) -> HwResult<T>,
-        G: Fn(T) -> GameCfg,
-    {
-        map(preceded(pair(tag(name), newline), parser), constructor)
-    }
-
-    let (i, cfg) = preceded(
-        tag("CFG\n"),
-        alt((
-            cfg_single_arg("THEME", a_line, GameCfg::Theme),
-            cfg_single_arg("SCRIPT", a_line, GameCfg::Script),
-            cfg_single_arg("MAP", a_line, GameCfg::MapType),
-            cfg_single_arg("MAPGEN", u32_line, GameCfg::MapGenerator),
-            cfg_single_arg("MAZE_SIZE", u32_line, GameCfg::MazeSize),
-            cfg_single_arg("TEMPLATE", u32_line, GameCfg::Template),
-            cfg_single_arg("FEATURE_SIZE", u32_line, GameCfg::FeatureSize),
-            cfg_single_arg("SEED", a_line, GameCfg::Seed),
-            cfg_single_arg("DRAWNMAP", a_line, GameCfg::DrawnMap),
-            preceded(pair(tag("AMMO"), newline), |i| {
-                let (i, name) = a_line(i)?;
-                let (i, value) = opt_arg(i)?;
-                Ok((i, GameCfg::Ammo(name, value)))
-            }),
-            preceded(
-                pair(tag("SCHEME"), newline),
-                map(
-                    pair(
-                        a_line,
-                        alt((
-                            map(peek(end_of_message), |_| None),
-                            map(preceded(newline, separated_list(newline, a_line)), Some),
-                        )),
-                    ),
-                    |(name, values)| GameCfg::Scheme(name, values.unwrap_or_default()),
-                ),
-            ),
-        )),
-    )(input)?;
-    Ok((i, Cfg(cfg)))
-}
-
-fn server_var_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
-    map(
-        preceded(
-            tag("SET_SERVER_VAR\n"),
-            alt((
-                map(preceded(tag("MOTD_NEW\n"), a_line), ServerVar::MOTDNew),
-                map(preceded(tag("MOTD_OLD\n"), a_line), ServerVar::MOTDOld),
-                map(
-                    preceded(tag("LATEST_PROTO\n"), u16_line),
-                    ServerVar::LatestProto,
-                ),
-            )),
-        ),
-        SetServerVar,
-    )(input)
-}
-
-fn complex_message(input: &[u8]) -> HwResult<HwProtocolMessage> {
-    alt((
-        preceded(
-            pair(tag("PASSWORD"), newline),
-            map(pair(terminated(a_line, newline), a_line), |(pass, salt)| {
-                Password(pass, salt)
-            }),
-        ),
-        preceded(
-            pair(tag("CHECKER"), newline),
-            map(
-                tuple((
-                    terminated(u16_line, newline),
-                    terminated(a_line, newline),
-                    a_line,
-                )),
-                |(protocol, name, pass)| Checker(protocol, name, pass),
-            ),
-        ),
-        preceded(
-            pair(tag("CREATE_ROOM"), newline),
-            map(pair(a_line, opt_arg), |(name, pass)| CreateRoom(name, pass)),
-        ),
-        preceded(
-            pair(tag("JOIN_ROOM"), newline),
-            map(pair(a_line, opt_arg), |(name, pass)| JoinRoom(name, pass)),
-        ),
-        preceded(
-            pair(tag("ADD_TEAM"), newline),
-            map(
-                tuple((
-                    terminated(a_line, newline),
-                    terminated(u8_line, newline),
-                    terminated(a_line, newline),
-                    terminated(a_line, newline),
-                    terminated(a_line, newline),
-                    terminated(a_line, newline),
-                    terminated(u8_line, newline),
-                    hedgehog_array,
-                )),
-                |(name, color, grave, fort, voice_pack, flag, difficulty, hedgehogs)| {
-                    AddTeam(Box::new(TeamInfo {
-                        owner: String::new(),
-                        name,
-                        color,
-                        grave,
-                        fort,
-                        voice_pack,
-                        flag,
-                        difficulty,
-                        hedgehogs,
-                        hedgehogs_number: 0,
-                    }))
-                },
-            ),
-        ),
-        preceded(
-            pair(tag("HH_NUM"), newline),
-            map(
-                pair(terminated(a_line, newline), u8_line),
-                |(name, count)| SetHedgehogsNumber(name, count),
-            ),
-        ),
-        preceded(
-            pair(tag("TEAM_COLOR"), newline),
-            map(
-                pair(terminated(a_line, newline), u8_line),
-                |(name, color)| SetTeamColor(name, color),
-            ),
-        ),
-        preceded(
-            pair(tag("BAN"), newline),
-            map(
-                tuple((
-                    terminated(a_line, newline),
-                    terminated(a_line, newline),
-                    u32_line,
-                )),
-                |(name, reason, time)| Ban(name, reason, time),
-            ),
-        ),
-        preceded(
-            pair(tag("BAN_IP"), newline),
-            map(
-                tuple((
-                    terminated(a_line, newline),
-                    terminated(a_line, newline),
-                    u32_line,
-                )),
-                |(ip, reason, time)| BanIp(ip, reason, time),
-            ),
-        ),
-        preceded(
-            pair(tag("BAN_NICK"), newline),
-            map(
-                tuple((
-                    terminated(a_line, newline),
-                    terminated(a_line, newline),
-                    u32_line,
-                )),
-                |(nick, reason, time)| BanNick(nick, reason, time),
-            ),
-        ),
-    ))(input)
-}
-
-pub fn malformed_message(input: &[u8]) -> HwResult<()> {
-    map(terminated(take_until(&b"\n\n"[..]), end_of_message), |_| ())(input)
-}
-
-pub fn message(input: &[u8]) -> HwResult<HwProtocolMessage> {
-    delimited(
-        take_while(|c| c == b'\n'),
-        alt((
-            no_arg_message,
-            single_arg_message,
-            cmd_message,
-            config_message,
-            server_var_message,
-            complex_message,
-        )),
-        end_of_message,
-    )(input)
-}
-
-#[cfg(test)]
-mod test {
-    use super::message;
-    use crate::{
-        core::types::GameCfg,
-        protocol::{messages::HwProtocolMessage::*, parser::HwProtocolError, test::gen_proto_msg},
-    };
-    use proptest::{proptest, proptest_helper};
-
-    #[cfg(test)]
-    proptest! {
-        #[test]
-        fn is_parser_composition_idempotent(ref msg in gen_proto_msg()) {
-            println!("!! Msg: {:?}, Bytes: {:?} !!", msg, msg.to_raw_protocol().as_bytes());
-            assert_eq!(message(msg.to_raw_protocol().as_bytes()), Ok((&b""[..], msg.clone())))
-        }
-    }
-
-    #[test]
-    fn parse_test() {
-        assert_eq!(message(b"PING\n\n"), Ok((&b""[..], Ping)));
-        assert_eq!(message(b"START_GAME\n\n"), Ok((&b""[..], StartGame)));
-        assert_eq!(
-            message(b"NICK\nit's me\n\n"),
-            Ok((&b""[..], Nick("it's me".to_string())))
-        );
-        assert_eq!(message(b"PROTO\n51\n\n"), Ok((&b""[..], Proto(51))));
-        assert_eq!(
-            message(b"QUIT\nbye-bye\n\n"),
-            Ok((&b""[..], Quit(Some("bye-bye".to_string()))))
-        );
-        assert_eq!(message(b"QUIT\n\n"), Ok((&b""[..], Quit(None))));
-        assert_eq!(
-            message(b"CMD\nwatch 49471\n\n"),
-            Ok((&b""[..], Watch(49471)))
-        );
-        assert_eq!(
-            message(b"BAN\nme\nbad\n77\n\n"),
-            Ok((&b""[..], Ban("me".to_string(), "bad".to_string(), 77)))
-        );
-
-        assert_eq!(message(b"CMD\nPART\n\n"), Ok((&b""[..], Part(None))));
-        assert_eq!(
-            message(b"CMD\nPART _msg_\n\n"),
-            Ok((&b""[..], Part(Some("_msg_".to_string()))))
-        );
-
-        assert_eq!(message(b"CMD\nRND\n\n"), Ok((&b""[..], Rnd(vec![]))));
-        assert_eq!(
-            message(b"CMD\nRND A B\n\n"),
-            Ok((&b""[..], Rnd(vec![String::from("A"), String::from("B")])))
-        );
-
-        assert_eq!(
-            message(b"CFG\nSCHEME\na\nA\n\n"),
-            Ok((
-                &b""[..],
-                Cfg(GameCfg::Scheme("a".to_string(), vec!["A".to_string()]))
-            ))
-        );
-
-        assert_eq!(
-            message(b"QUIT\n1\n2\n\n"),
-            Err(nom::Err::Error(HwProtocolError::new()))
-        );
-    }
-}
--- a/rust/hedgewars-server/src/protocol/test.rs	Sun Mar 24 14:19:02 2024 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,252 +0,0 @@
-use proptest::{
-    arbitrary::{any, any_with, Arbitrary, StrategyFor},
-    strategy::{BoxedStrategy, Just, Map, Strategy},
-    test_runner::{Reason, TestRunner},
-};
-
-use crate::core::types::{GameCfg, HedgehogInfo, ServerVar, ServerVar::*, TeamInfo, VoteType};
-
-use super::messages::{HwProtocolMessage, HwProtocolMessage::*};
-
-// Due to inability to define From between Options
-trait Into2<T>: Sized {
-    fn into2(self) -> T;
-}
-impl<T> Into2<T> for T {
-    fn into2(self) -> T {
-        self
-    }
-}
-impl Into2<Vec<String>> for Vec<Ascii> {
-    fn into2(self) -> Vec<String> {
-        self.into_iter().map(|x| x.0).collect()
-    }
-}
-impl Into2<String> for Ascii {
-    fn into2(self) -> String {
-        self.0
-    }
-}
-impl Into2<Option<String>> for Option<Ascii> {
-    fn into2(self) -> Option<String> {
-        self.map(|x| x.0)
-    }
-}
-
-macro_rules! proto_msg_case {
-    ($val: ident()) => {
-        Just($val)
-    };
-    ($val: ident($arg: ty)) => {
-        any::<$arg>().prop_map(|v| $val(v.into2()))
-    };
-    ($val: ident($arg1: ty, $arg2: ty)) => {
-        any::<($arg1, $arg2)>().prop_map(|v| $val(v.0.into2(), v.1.into2()))
-    };
-    ($val: ident($arg1: ty, $arg2: ty, $arg3: ty)) => {
-        any::<($arg1, $arg2, $arg3)>().prop_map(|v| $val(v.0.into2(), v.1.into2(), v.2.into2()))
-    };
-}
-
-macro_rules! proto_msg_match {
-    ($var: expr, def = $default: expr, $($num: expr => $constr: ident $res: tt),*) => (
-        match $var {
-            $($num => (proto_msg_case!($constr $res)).boxed()),*,
-            _ => Just($default).boxed()
-        }
-    )
-}
-
-/// Wrapper type for generating non-empty strings
-#[derive(Debug)]
-struct Ascii(String);
-
-impl Arbitrary for Ascii {
-    type Parameters = <String as Arbitrary>::Parameters;
-
-    fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy {
-        "[a-zA-Z0-9]+".prop_map(Ascii).boxed()
-    }
-
-    type Strategy = BoxedStrategy<Ascii>;
-}
-
-impl Arbitrary for GameCfg {
-    type Parameters = ();
-
-    fn arbitrary_with(_args: <Self as Arbitrary>::Parameters) -> <Self as Arbitrary>::Strategy {
-        use crate::core::types::GameCfg::*;
-        (0..10)
-            .no_shrink()
-            .prop_flat_map(|i| {
-                proto_msg_match!(i, def = FeatureSize(0),
-            0 => FeatureSize(u32),
-            1 => MapType(Ascii),
-            2 => MapGenerator(u32),
-            3 => MazeSize(u32),
-            4 => Seed(Ascii),
-            5 => Template(u32),
-            6 => Ammo(Ascii, Option<Ascii>),
-            7 => Scheme(Ascii, Vec<Ascii>),
-            8 => Script(Ascii),
-            9 => Theme(Ascii),
-            10 => DrawnMap(Ascii))
-            })
-            .boxed()
-    }
-
-    type Strategy = BoxedStrategy<GameCfg>;
-}
-
-impl Arbitrary for TeamInfo {
-    type Parameters = ();
-
-    fn arbitrary_with(_args: <Self as Arbitrary>::Parameters) -> <Self as Arbitrary>::Strategy {
-        (
-            "[a-z]+",
-            0u8..127u8,
-            "[a-z]+",
-            "[a-z]+",
-            "[a-z]+",
-            "[a-z]+",
-            0u8..127u8,
-        )
-            .prop_map(|(name, color, grave, fort, voice_pack, flag, difficulty)| {
-                fn hog(n: u8) -> HedgehogInfo {
-                    HedgehogInfo {
-                        name: format!("hog{}", n),
-                        hat: format!("hat{}", n),
-                    }
-                }
-                let hedgehogs = [
-                    hog(1),
-                    hog(2),
-                    hog(3),
-                    hog(4),
-                    hog(5),
-                    hog(6),
-                    hog(7),
-                    hog(8),
-                ];
-                TeamInfo {
-                    owner: String::new(),
-                    name,
-                    color,
-                    grave,
-                    fort,
-                    voice_pack,
-                    flag,
-                    difficulty,
-                    hedgehogs,
-                    hedgehogs_number: 0,
-                }
-            })
-            .boxed()
-    }
-
-    type Strategy = BoxedStrategy<TeamInfo>;
-}
-
-impl Arbitrary for ServerVar {
-    type Parameters = ();
-
-    fn arbitrary_with(args: Self::Parameters) -> Self::Strategy {
-        (0..=2)
-            .no_shrink()
-            .prop_flat_map(|i| {
-                proto_msg_match!(i, def = ServerVar::LatestProto(0),
-                    0 => MOTDNew(Ascii),
-                    1 => MOTDOld(Ascii),
-                    2 => LatestProto(u16)
-                )
-            })
-            .boxed()
-    }
-
-    type Strategy = BoxedStrategy<ServerVar>;
-}
-
-impl Arbitrary for VoteType {
-    type Parameters = ();
-
-    fn arbitrary_with(args: Self::Parameters) -> Self::Strategy {
-        use VoteType::*;
-        (0..=4)
-            .no_shrink()
-            .prop_flat_map(|i| {
-                proto_msg_match!(i, def = VoteType::Pause,
-                    0 => Kick(Ascii),
-                    1 => Map(Option<Ascii>),
-                    2 => Pause(),
-                    3 => NewSeed(),
-                    4 => HedgehogsPerTeam(u8)
-                )
-            })
-            .boxed()
-    }
-
-    type Strategy = BoxedStrategy<VoteType>;
-}
-
-pub fn gen_proto_msg() -> BoxedStrategy<HwProtocolMessage> where {
-    let res = (0..=55).no_shrink().prop_flat_map(|i| {
-        proto_msg_match!(i, def = Ping,
-            0 => Ping(),
-            1 => Pong(),
-            2 => Quit(Option<Ascii>),
-            4 => Global(Ascii),
-            5 => Watch(u32),
-            6 => ToggleServerRegisteredOnly(),
-            7 => SuperPower(),
-            8 => Info(Ascii),
-            9 => Nick(Ascii),
-            10 => Proto(u16),
-            11 => Password(Ascii, Ascii),
-            12 => Checker(u16, Ascii, Ascii),
-            13 => List(),
-            14 => Chat(Ascii),
-            15 => CreateRoom(Ascii, Option<Ascii>),
-            16 => JoinRoom(Ascii, Option<Ascii>),
-            17 => Follow(Ascii),
-            18 => Rnd(Vec<Ascii>),
-            19 => Kick(Ascii),
-            20 => Ban(Ascii, Ascii, u32),
-            21 => BanIp(Ascii, Ascii, u32),
-            22 => BanNick(Ascii, Ascii, u32),
-            23 => BanList(),
-            24 => Unban(Ascii),
-            25 => SetServerVar(ServerVar),
-            26 => GetServerVar(),
-            27 => RestartServer(),
-            28 => Stats(),
-            29 => Part(Option<Ascii>),
-            30 => Cfg(GameCfg),
-            31 => AddTeam(Box<TeamInfo>),
-            32 => RemoveTeam(Ascii),
-            33 => SetHedgehogsNumber(Ascii, u8),
-            34 => SetTeamColor(Ascii, u8),
-            35 => ToggleReady(),
-            36 => StartGame(),
-            37 => EngineMessage(Ascii),
-            38 => RoundFinished(),
-            39 => ToggleRestrictJoin(),
-            40 => ToggleRestrictTeams(),
-            41 => ToggleRegisteredOnly(),
-            42 => RoomName(Ascii),
-            43 => Delegate(Ascii),
-            44 => TeamChat(Ascii),
-            45 => MaxTeams(u8),
-            46 => Fix(),
-            47 => Unfix(),
-            48 => Greeting(Option<Ascii>),
-            49 => CallVote(Option<VoteType>),
-            50 => Vote(bool),
-            51 => ForceVote(bool),
-            52 => Save(Ascii, Ascii),
-            53 => Delete(Ascii),
-            54 => SaveRoom(Ascii),
-            55 => LoadRoom(Ascii)
-        )
-    });
-    res.boxed()
-}
--- a/rust/hedgewars-server/src/server.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/server.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,5 +1,8 @@
 #[cfg(feature = "official-server")]
 mod database;
+pub mod demo;
+mod haskell;
 #[cfg(feature = "official-server")]
 pub mod io;
 pub mod network;
+pub mod replaystorage;
--- a/rust/hedgewars-server/src/server/database.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/server/database.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,14 +1,13 @@
-use mysql;
-use mysql::{error::DriverError, error::Error, from_row_opt, params};
-use openssl::sha::sha1;
+use mysql_async::{self, from_row_opt, params, prelude::*, Pool};
+use sha1::{Digest, Sha1};
+use tokio::sync::mpsc::{channel, Receiver, Sender};
 
 use crate::handlers::{AccountInfo, Sha1Digest};
 
 const CHECK_ACCOUNT_EXISTS_QUERY: &str =
     r"SELECT 1 FROM users WHERE users.name = :username LIMIT 1";
 
-const GET_ACCOUNT_QUERY: &str =
-    r"SELECT CASE WHEN users.status = 1 THEN users.pass ELSE '' END,
+const GET_ACCOUNT_QUERY: &str = r"SELECT CASE WHEN users.status = 1 THEN users.pass ELSE '' END,
      (SELECT COUNT(users_roles.rid) FROM users_roles WHERE users.uid = users_roles.uid AND users_roles.rid = 3),
      (SELECT COUNT(users_roles.rid) FROM users_roles WHERE users.uid = users_roles.uid AND users_roles.rid = 13)
      FROM users WHERE users.name = :username";
@@ -27,104 +26,192 @@
 
 pub struct Achievements {}
 
+pub enum DatabaseQuery {
+    CheckRegistered {
+        nick: String,
+    },
+    GetAccount {
+        nick: String,
+        protocol: u16,
+        password_hash: String,
+        client_salt: String,
+        server_salt: String,
+    },
+    GetCheckerAccount {
+        nick: String,
+        password: String,
+    },
+    GetReplayFilename {
+        id: u32,
+    },
+}
+
+pub enum DatabaseResponse {
+    AccountRegistered(bool),
+    Account(Option<AccountInfo>),
+    CheckerAccount { is_registered: bool },
+}
+
 pub struct Database {
-    pool: Option<mysql::Pool>,
+    pool: Pool,
+    query_rx: Receiver<DatabaseQuery>,
+    response_tx: Sender<DatabaseResponse>,
 }
 
 impl Database {
-    pub fn new() -> Self {
-        Self { pool: None }
-    }
-
-    pub fn connect(&mut self, url: &str) -> Result<(), Error> {
-        self.pool = Some(mysql::Pool::new(url)?);
-
-        Ok(())
-    }
-
-    pub fn is_registered(&mut self, nick: &str) -> Result<bool, Error> {
-        if let Some(pool) = &self.pool {
-            let is_registered = pool
-                .first_exec(CHECK_ACCOUNT_EXISTS_QUERY, params! { "username" => nick })?
-                .is_some();
-            Ok(is_registered)
-        } else {
-            Err(DriverError::SetupError.into())
+    pub fn new(url: &str) -> Self {
+        let (query_tx, query_rx) = channel(32);
+        let (response_tx, response_rx) = channel(32);
+        Self {
+            pool: Pool::new(url),
+            query_rx,
+            response_tx,
         }
     }
 
-    pub fn get_account(
+    pub async fn run(&mut self) {
+        use DatabaseResponse::*;
+        loop {
+            let query = self.query_rx.recv().await;
+            if let Some(query) = query {
+                match query {
+                    DatabaseQuery::CheckRegistered { nick } => {
+                        let is_registered = self.get_is_registered(&nick).await.unwrap_or(false);
+                        self.response_tx
+                            .send(AccountRegistered(is_registered))
+                            .await;
+                    }
+                    DatabaseQuery::GetAccount {
+                        nick,
+                        protocol,
+                        password_hash,
+                        client_salt,
+                        server_salt,
+                    } => {
+                        let account = self
+                            .get_account(
+                                &nick,
+                                protocol,
+                                &password_hash,
+                                &client_salt,
+                                &server_salt,
+                            )
+                            .await
+                            .unwrap_or(None);
+                        self.response_tx.send(Account(account)).await;
+                    }
+                    DatabaseQuery::GetCheckerAccount { nick, password } => {
+                        let is_registered = self
+                            .get_checker_account(&nick, &password)
+                            .await
+                            .unwrap_or(false);
+                        self.response_tx
+                            .send(CheckerAccount { is_registered })
+                            .await;
+                    }
+                    DatabaseQuery::GetReplayFilename { id } => {
+                        let filename = self.get_replay_name(id).await;
+                    }
+                };
+            } else {
+                break;
+            }
+        }
+    }
+
+    pub async fn get_is_registered(&mut self, nick: &str) -> mysql_async::Result<bool> {
+        let mut connection = self.pool.get_conn().await?;
+        let result = CHECK_ACCOUNT_EXISTS_QUERY
+            .with(params! { "username" => nick })
+            .first::<u32, _>(&mut connection)
+            .await?;
+        Ok(!result.is_some())
+    }
+
+    pub async fn get_account(
         &mut self,
         nick: &str,
         protocol: u16,
         password_hash: &str,
         client_salt: &str,
         server_salt: &str,
-    ) -> Result<Option<AccountInfo>, Error> {
-        if let Some(pool) = &self.pool {
-            if let Some(row) = pool.first_exec(GET_ACCOUNT_QUERY, params! { "username" => nick })? {
-                let (mut password, is_admin, is_contributor) =
-                    from_row_opt::<(String, i32, i32)>(row)?;
-                let client_hash = get_hash(protocol, &password, &client_salt, &server_salt);
-                let server_hash = get_hash(protocol, &password, &server_salt, &client_salt);
-                password.replace_range(.., "🦔🦔🦔🦔🦔🦔🦔🦔");
+    ) -> mysql_async::Result<Option<AccountInfo>> {
+        let mut connection = self.pool.get_conn().await?;
+        if let Some((mut password, is_admin, is_contributor)) = GET_ACCOUNT_QUERY
+            .with(params! { "username" => nick })
+            .first::<(String, i32, i32), _>(&mut connection)
+            .await?
+        {
+            let client_hash = get_hash(protocol, &password, &client_salt, &server_salt);
+            let server_hash = get_hash(protocol, &password, &server_salt, &client_salt);
+            password.replace_range(.., "🦔🦔🦔🦔🦔🦔🦔🦔");
 
-                if client_hash == password_hash {
-                    Ok(Some(AccountInfo {
-                        is_registered: true,
-                        is_admin: is_admin == 1,
-                        is_contributor: is_contributor == 1,
-                        server_hash,
-                    }))
-                } else {
-                    Ok(None)
-                }
+            if client_hash == password_hash {
+                Ok(Some(AccountInfo {
+                    is_registered: true,
+                    is_admin: is_admin == 1,
+                    is_contributor: is_contributor == 1,
+                    server_hash,
+                }))
             } else {
                 Ok(None)
             }
         } else {
-            Err(DriverError::SetupError.into())
+            Ok(None)
         }
     }
 
-    pub fn store_stats(&mut self, stats: &ServerStatistics) -> Result<(), Error> {
-        if let Some(pool) = &self.pool {
-            for mut stmt in pool.prepare(STORE_STATS_QUERY).into_iter() {
-                stmt.execute(params! {
-                    "players" => stats.players,
-                    "rooms" => stats.rooms,
-                })?;
-            }
-            Ok(())
+    pub async fn get_checker_account(
+        &mut self,
+        nick: &str,
+        checker_password: &str,
+    ) -> mysql_async::Result<bool> {
+        let mut connection = self.pool.get_conn().await?;
+        if let Some((password, _, _)) = GET_ACCOUNT_QUERY
+            .with(params! { "username" => nick })
+            .first::<(String, i32, i32), _>(&mut connection)
+            .await?
+        {
+            Ok(checker_password == password)
         } else {
-            Err(DriverError::SetupError.into())
+            Ok(false)
         }
     }
 
-    pub fn store_achievements(&mut self, achievements: &Achievements) -> Result<(), ()> {
+    pub async fn store_stats(&mut self, stats: &ServerStatistics) -> mysql_async::Result<()> {
+        let mut connection = self.pool.get_conn().await?;
+        STORE_STATS_QUERY
+            .with(params! {
+                "players" => stats.players,
+                "rooms" => stats.rooms,
+            })
+            .ignore(&mut connection)
+            .await
+    }
+
+    pub async fn store_achievements(
+        &mut self,
+        achievements: &Achievements,
+    ) -> mysql_async::Result<()> {
         Ok(())
     }
 
-    pub fn get_replay_name(&mut self, replay_id: u32) -> Result<Option<String>, Error> {
-        if let Some(pool) = &self.pool {
-            if let Some(row) =
-                pool.first_exec(GET_REPLAY_NAME_QUERY, params! { "id" => replay_id })?
-            {
-                let filename = from_row_opt::<(String)>(row)?;
-                Ok(Some(filename))
-            } else {
-                Ok(None)
-            }
-        } else {
-            Err(DriverError::SetupError.into())
-        }
+    pub async fn get_replay_name(&mut self, replay_id: u32) -> mysql_async::Result<Option<String>> {
+        let mut connection = self.pool.get_conn().await?;
+        GET_REPLAY_NAME_QUERY
+            .with(params! { "id" => replay_id })
+            .first::<String, _>(&mut connection)
+            .await
     }
 }
 
 fn get_hash(protocol_number: u16, web_password: &str, salt1: &str, salt2: &str) -> Sha1Digest {
-    let s = format!(
+    let data = format!(
         "{}{}{}{}{}",
         salt1, salt2, web_password, protocol_number, "!hedgewars"
     );
-    Sha1Digest::new(sha1(s.as_bytes()))
+
+    let mut sha1 = Sha1::new();
+    sha1.update(&data);
+    Sha1Digest::new(sha1.finalize().try_into().unwrap())
 }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-server/src/server/demo.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,468 @@
+use crate::{core::types::Replay, server::haskell::HaskellValue};
+use hedgewars_network_protocol::types::{
+    Ammo, GameCfg, HedgehogInfo, RoomConfig, Scheme, TeamInfo,
+};
+use std::{
+    collections::HashMap,
+    fs,
+    io::{self, BufReader, Read, Write},
+    str::FromStr,
+};
+
+#[derive(PartialEq, Debug)]
+pub struct Demo {
+    teams: Vec<TeamInfo>,
+    config: Vec<GameCfg>,
+    messages: Vec<String>,
+}
+
+impl Demo {
+    fn load_hwd(filename: String) -> io::Result<Self> {
+        let file = fs::File::open(filename)?;
+        let mut reader = io::BufReader::new(file);
+
+        #[inline]
+        fn error<T>(cause: &str) -> io::Result<T> {
+            Err(io::Error::new(io::ErrorKind::InvalidData, cause))
+        }
+
+        fn read_command<'a>(
+            reader: &mut BufReader<fs::File>,
+            buffer: &'a mut [u8],
+        ) -> io::Result<Option<&'a str>> {
+            use io::BufRead;
+
+            let mut size = [0u8; 1];
+            if reader.read(&mut size)? == 0 {
+                Ok(None)
+            } else {
+                let text = &mut buffer[0..size[0] as _];
+
+                if reader.read(text)? < text.len() {
+                    Err(io::Error::new(
+                        io::ErrorKind::UnexpectedEof,
+                        "Incomplete command",
+                    ))
+                } else {
+                    std::str::from_utf8(text).map(Some).map_err(|e| {
+                        io::Error::new(io::ErrorKind::InvalidInput, "The string is not UTF8")
+                    })
+                }
+            }
+        }
+
+        fn get_script_name(arg: &str) -> io::Result<String> {
+            const PREFIX: &str = "Scripts/Multiplayer/";
+            const SUFFIX: &str = ".lua";
+            if arg.starts_with(PREFIX) && arg.ends_with(SUFFIX) {
+                let script = arg[PREFIX.len()..arg.len() - SUFFIX.len()].to_string();
+                Ok(script.replace('_', " "))
+            } else {
+                error("Script is not multiplayer")
+            }
+        }
+
+        fn get_game_flags(arg: &str) -> io::Result<Vec<String>> {
+            const FLAGS: &[u32] = &[
+                0x0000_1000,
+                0x0000_0010,
+                0x0000_0004,
+                0x0000_0008,
+                0x0000_0020,
+                0x0000_0040,
+                0x0000_0080,
+                0x0000_0100,
+                0x0000_0200,
+                0x0000_0400,
+                0x0000_0800,
+                0x0000_2000,
+                0x0000_4000,
+                0x0000_8000,
+                0x0001_0000,
+                0x0002_0000,
+                0x0004_0000,
+                0x0008_0000,
+                0x0010_0000,
+                0x0020_0000,
+                0x0040_0000,
+                0x0080_0000,
+                0x0100_0000,
+                0x0200_0000,
+                0x0400_0000,
+            ];
+
+            let flags = u32::from_str(arg).unwrap_or_default();
+            let game_flags = FLAGS
+                .iter()
+                .map(|flag| (flag & flags != 0).to_string())
+                .collect();
+
+            Ok(game_flags)
+        }
+
+        let mut config = Vec::new();
+        let mut buffer = [0u8; u8::max_value() as _];
+
+        let mut game_flags = vec![];
+        let mut scheme_properties: Vec<_> = [
+            "1", "1000", "100", "1", "1", "1000", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1",
+            "1", "",
+        ]
+        .iter()
+        .map(|p| p.to_string())
+        .collect();
+        const SCHEME_PROPERTY_NAMES: &[&str] = &[
+            "$damagepct",
+            "$turntime",
+            "",
+            "$sd_turns",
+            "$casefreq",
+            "$minestime",
+            "$minesnum",
+            "$minedudpct",
+            "$explosives",
+            "$airmines",
+            "$healthprob",
+            "$hcaseamount",
+            "$waterrise",
+            "$healthdec",
+            "$ropepct",
+            "$getawaytime",
+            "$worldedge",
+        ];
+        const AMMO_PROPERTY_NAMES: &[&str] = &["eammloadt", "eammprob", "eammdelay", "eammreinf"];
+        let mut ammo_settings = vec![String::new(); AMMO_PROPERTY_NAMES.len()];
+        let mut teams = vec![];
+        let mut hog_index = 7usize;
+
+        //todo!("read messages from file");
+        let messages = vec![];
+
+        while let Some(cmd) = read_command(&mut reader, &mut buffer)? {
+            if let Some(index) = cmd.find(' ') {
+                match cmd.chars().next().unwrap_or_default() {
+                    'T' => {
+                        if cmd != "TD" {
+                            let () = error("Not a demo file")?;
+                        }
+                    }
+                    'e' => {
+                        if let Some(index) = cmd.find(' ') {
+                            let (name, arg) = cmd.split_at(index);
+                            match name {
+                                "script" => config.push(GameCfg::Script(get_script_name(arg)?)),
+                                "map" => config.push(GameCfg::MapType(arg.to_string())),
+                                "theme" => config.push(GameCfg::Theme(arg.to_string())),
+                                "seed" => config.push(GameCfg::Seed(arg.to_string())),
+                                "$gmflags" => game_flags = get_game_flags(arg)?,
+                                "$scriptparam" => {
+                                    *scheme_properties.last_mut().unwrap() = arg.to_string()
+                                }
+                                "$template_filter" => config.push(GameCfg::Template(
+                                    u32::from_str(arg).unwrap_or_default(),
+                                )),
+                                "$feature_size" => config.push(GameCfg::FeatureSize(
+                                    u32::from_str(arg).unwrap_or_default(),
+                                )),
+                                "$map_gen" => config.push(GameCfg::MapGenerator(
+                                    u32::from_str(arg).unwrap_or_default(),
+                                )),
+                                "$maze_size" => config.push(GameCfg::MazeSize(
+                                    u32::from_str(arg).unwrap_or_default(),
+                                )),
+                                "addteam" => {
+                                    let parts = arg.splitn(3, ' ').collect::<Vec<_>>();
+                                    let color = parts.get(1).unwrap_or(&"1");
+                                    let name = parts.get(2).unwrap_or(&"Unnamed");
+                                    teams.push(TeamInfo {
+                                        color: (u32::from_str(color).unwrap_or(2113696) / 2113696
+                                            - 1)
+                                            as u8,
+                                        name: name.to_string(),
+                                        ..TeamInfo::default()
+                                    });
+                                }
+                                "fort" => teams
+                                    .last_mut()
+                                    .iter_mut()
+                                    .for_each(|t| t.fort = arg.to_string()),
+                                "grave" => teams
+                                    .last_mut()
+                                    .iter_mut()
+                                    .for_each(|t| t.grave = arg.to_string()),
+                                "addhh" => {
+                                    hog_index = (hog_index + 1) % 8;
+                                    let parts = arg.splitn(3, ' ').collect::<Vec<_>>();
+                                    let health = parts.get(1).unwrap_or(&"100");
+                                    teams.last_mut().iter_mut().for_each(|t| {
+                                        if let Some(difficulty) = parts.get(0) {
+                                            t.difficulty = u8::from_str(difficulty).unwrap_or(0);
+                                        }
+                                        if let Some(init_health) = parts.get(1) {
+                                            scheme_properties[2] = init_health.to_string();
+                                        }
+                                        t.hedgehogs_number = (hog_index + 1) as u8;
+                                        t.hedgehogs[hog_index].name =
+                                            parts.get(2).unwrap_or(&"Unnamed").to_string();
+                                    });
+                                }
+                                "hat" => {
+                                    teams
+                                        .last_mut()
+                                        .iter_mut()
+                                        .for_each(|t| t.hedgehogs[hog_index].hat = arg.to_string());
+                                }
+                                name => {
+                                    if let Some(index) =
+                                        SCHEME_PROPERTY_NAMES.iter().position(|n| *n == name)
+                                    {
+                                        scheme_properties[index] = arg.to_string();
+                                    } else if let Some(index) =
+                                        AMMO_PROPERTY_NAMES.iter().position(|n| *n == name)
+                                    {
+                                        ammo_settings[index] = arg.to_string();
+                                    }
+                                }
+                            }
+                        }
+                    }
+                    '+' => {}
+                    _ => (),
+                }
+            }
+        }
+
+        game_flags.append(&mut scheme_properties);
+        config.push(GameCfg::Scheme("ADHOG_SCHEME".to_string(), game_flags));
+        config.push(GameCfg::Ammo(
+            "ADHOG_AMMO".to_string(),
+            Some(ammo_settings.concat()),
+        ));
+
+        Ok(Demo {
+            teams,
+            config,
+            messages,
+        })
+    }
+}
+
+fn replay_to_haskell(mut replay: Replay) -> HaskellValue {
+    use HaskellValue as Hs;
+
+    let mut teams = Vec::with_capacity(replay.teams.len());
+    for team in replay.teams {
+        let mut fields = HashMap::<String, HaskellValue>::new();
+
+        fields.insert("teamowner".to_string(), Hs::String(team.owner));
+        fields.insert("teamname".to_string(), Hs::String(team.name));
+        fields.insert("teamcolor".to_string(), Hs::Number(team.color));
+        fields.insert("teamgrave".to_string(), Hs::String(team.grave));
+        fields.insert("teamvoicepack".to_string(), Hs::String(team.voice_pack));
+        fields.insert("teamflag".to_string(), Hs::String(team.flag));
+        fields.insert("difficulty".to_string(), Hs::Number(team.difficulty));
+        fields.insert("hhnum".to_string(), Hs::Number(team.hedgehogs_number));
+
+        let hogs = team
+            .hedgehogs
+            .iter()
+            .map(|hog| Hs::AnonStruct {
+                name: "HedgehogInfo".to_string(),
+                fields: vec![Hs::String(hog.name.clone()), Hs::String(hog.hat.clone())],
+            })
+            .collect();
+
+        fields.insert("hedgehogs".to_string(), Hs::List(hogs));
+
+        teams.push(Hs::Struct {
+            name: "TeamInfo".to_string(),
+            fields,
+        })
+    }
+
+    let mut map_config = vec![];
+    let mut game_config = vec![];
+
+    let mut save_map_config = |name: &str, value: String| {
+        map_config.push(Hs::Tuple(vec![
+            Hs::String(name.to_string()),
+            Hs::String(value),
+        ]));
+    };
+
+    let config = replay.config;
+
+    save_map_config("FEATURE_SIZE", config.feature_size.to_string());
+    save_map_config("MAP", config.map_type);
+    save_map_config("MAPGEN", config.map_generator.to_string());
+    save_map_config("MAZE_SIZE", config.maze_size.to_string());
+    save_map_config("SEED", config.seed);
+    save_map_config("TEMPLATE", config.template.to_string());
+    if let Some(drawn_map) = config.drawn_map {
+        save_map_config("DRAWNMAP", drawn_map);
+    }
+
+    let mut save_game_config = |name: &str, mut value: Vec<String>| {
+        game_config.push(Hs::Tuple(vec![
+            Hs::String(name.to_string()),
+            Hs::List(value.drain(..).map(Hs::String).collect()),
+        ]));
+    };
+
+    match config.ammo {
+        Ammo {
+            name,
+            settings: Some(settings),
+        } => save_game_config("AMMO", vec![name, settings.clone()]),
+        Ammo { name, .. } => save_game_config("AMMO", vec![name.clone()]),
+    }
+
+    match config.scheme {
+        Scheme { name, settings } => {
+            let mut values = vec![name];
+            values.extend_from_slice(&settings);
+            save_game_config("SCHEME", values);
+        }
+    }
+
+    save_game_config("SCRIPT", vec![config.script]);
+    save_game_config("THEME", vec![config.theme]);
+
+    Hs::Tuple(vec![
+        Hs::List(teams),
+        Hs::List(map_config),
+        Hs::List(game_config),
+        Hs::List(replay.message_log.drain(..).map(Hs::String).collect()),
+    ])
+}
+
+fn haskell_to_replay(value: HaskellValue) -> Option<Replay> {
+    use HaskellValue::*;
+    let mut config = RoomConfig::new();
+    let mut lists = value.into_tuple()?;
+    let mut lists_iter = lists.drain(..);
+
+    let teams_list = lists_iter.next()?.into_list()?;
+    let map_config = lists_iter.next()?.into_list()?;
+    let game_config = lists_iter.next()?.into_list()?;
+    let engine_messages = lists_iter.next()?.into_list()?;
+
+    let mut teams = Vec::with_capacity(teams_list.len());
+
+    for team in teams_list {
+        let (_, mut fields) = team.into_struct()?;
+
+        let mut team_info = TeamInfo::default();
+        for (name, value) in fields.drain() {
+            match &name[..] {
+                "teamowner" => team_info.owner = value.into_string()?,
+                "teamname" => team_info.name = value.into_string()?,
+                "teamcolor" => team_info.color = u8::from_str(&value.into_string()?).ok()?,
+                "teamgrave" => team_info.grave = value.into_string()?,
+                "teamfort" => team_info.fort = value.into_string()?,
+                "teamvoicepack" => team_info.voice_pack = value.into_string()?,
+                "teamflag" => team_info.flag = value.into_string()?,
+                "difficulty" => team_info.difficulty = value.into_number()?,
+                "hhnum" => team_info.hedgehogs_number = value.into_number()?,
+                "hedgehogs" => {
+                    for (index, hog) in value
+                        .into_list()?
+                        .drain(..)
+                        .enumerate()
+                        .take(team_info.hedgehogs.len())
+                    {
+                        let (_, mut fields) = hog.into_anon_struct()?;
+                        let mut fields_iter = fields.drain(..);
+                        team_info.hedgehogs[index] = HedgehogInfo {
+                            name: fields_iter.next()?.into_string()?,
+                            hat: fields_iter.next()?.into_string()?,
+                        }
+                    }
+                }
+                _ => (),
+            }
+        }
+        teams.push(team_info)
+    }
+
+    for item in map_config {
+        let mut tuple = item.into_tuple()?;
+        let mut tuple_iter = tuple.drain(..);
+        let name = tuple_iter.next()?.into_string()?;
+        let value = tuple_iter.next()?.into_string()?;
+
+        match &name[..] {
+            "FEATURE_SIZE" => config.feature_size = u32::from_str(&value).ok()?,
+            "MAP" => config.map_type = value,
+            "MAPGEN" => config.map_generator = u32::from_str(&value).ok()?,
+            "MAZE_SIZE" => config.maze_size = u32::from_str(&value).ok()?,
+            "SEED" => config.seed = value,
+            "TEMPLATE" => config.template = u32::from_str(&value).ok()?,
+            "DRAWNMAP" => config.drawn_map = Some(value),
+            _ => {}
+        };
+    }
+
+    for item in game_config {
+        let mut tuple = item.into_tuple()?;
+        let mut tuple_iter = tuple.drain(..);
+        let name = tuple_iter.next()?.into_string()?;
+        let mut value = tuple_iter.next()?.into_list()?;
+        let mut value_iter = value.drain(..);
+
+        let config_item = match &name[..] {
+            "AMMO" => {
+                config.ammo = Ammo {
+                    name: value_iter.next()?.into_string()?,
+                    settings: value_iter.next().and_then(|v| v.into_string()),
+                }
+            }
+            "SCHEME" => {
+                config.scheme = Scheme {
+                    name: value_iter.next()?.into_string()?,
+                    settings: value_iter.filter_map(|v| v.into_string()).collect(),
+                }
+            }
+            "SCRIPT" => config.script = value_iter.next()?.into_string()?,
+            "THEME" => config.theme = value_iter.next()?.into_string()?,
+            _ => None?,
+        };
+    }
+
+    let mut messages = Vec::with_capacity(engine_messages.len());
+
+    for message in engine_messages {
+        messages.push(message.into_string()?);
+    }
+
+    Some(Replay {
+        config,
+        teams,
+        message_log: messages,
+    })
+}
+
+impl Replay {
+    pub fn save(self, filename: String) -> io::Result<()> {
+        let text = format!("{}", replay_to_haskell(self));
+        let mut file = fs::File::open(filename)?;
+        file.write(text.as_bytes())?;
+        Ok(())
+    }
+
+    pub fn load(filename: &str) -> io::Result<Self> {
+        let mut file = fs::File::open(filename)?;
+        let mut bytes = vec![];
+        file.read_to_end(&mut bytes)?;
+        match super::haskell::parse(&bytes[..]) {
+            Ok((_, value)) => haskell_to_replay(value).ok_or(io::Error::new(
+                io::ErrorKind::InvalidData,
+                "Invalid replay structure",
+            )),
+            Err(_) => Err(io::Error::new(
+                io::ErrorKind::InvalidData,
+                "Unable to parse file",
+            )),
+        }
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-server/src/server/haskell.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,412 @@
+use nom::{
+    branch::alt,
+    bytes::complete::{escaped_transform, is_not, tag, take_while, take_while1},
+    character::{is_alphanumeric, is_digit, is_space},
+    combinator::{map, map_res},
+    multi::{many0, separated_list0},
+    sequence::{delimited, pair, preceded, separated_pair, terminated},
+    ExtendInto, IResult,
+};
+use std::{
+    collections::HashMap,
+    fmt::{Display, Error, Formatter},
+};
+
+type HaskellResult<'a, T> = IResult<&'a [u8], T>;
+
+#[derive(Debug, PartialEq)]
+pub enum HaskellValue {
+    Boolean(bool),
+    Number(u8),
+    String(String),
+    Tuple(Vec<HaskellValue>),
+    List(Vec<HaskellValue>),
+    AnonStruct {
+        name: String,
+        fields: Vec<HaskellValue>,
+    },
+    Struct {
+        name: String,
+        fields: HashMap<String, HaskellValue>,
+    },
+}
+
+impl HaskellValue {
+    pub fn to_number(&self) -> Option<u8> {
+        match self {
+            HaskellValue::Number(value) => Some(*value),
+            _ => None,
+        }
+    }
+
+    pub fn into_number(self) -> Option<u8> {
+        match self {
+            HaskellValue::Number(value) => Some(value),
+            _ => None,
+        }
+    }
+
+    pub fn to_string(&self) -> Option<&str> {
+        match self {
+            HaskellValue::String(value) => Some(value),
+            _ => None,
+        }
+    }
+
+    pub fn into_string(self) -> Option<String> {
+        match self {
+            HaskellValue::String(value) => Some(value),
+            _ => None,
+        }
+    }
+
+    pub fn into_list(self) -> Option<Vec<HaskellValue>> {
+        match self {
+            HaskellValue::List(items) => Some(items),
+            _ => None,
+        }
+    }
+
+    pub fn into_tuple(self) -> Option<Vec<HaskellValue>> {
+        match self {
+            HaskellValue::Tuple(items) => Some(items),
+            _ => None,
+        }
+    }
+
+    pub fn into_anon_struct(self) -> Option<(String, Vec<HaskellValue>)> {
+        match self {
+            HaskellValue::AnonStruct { name, fields } => Some((name, fields)),
+            _ => None,
+        }
+    }
+
+    pub fn into_struct(self) -> Option<(String, HashMap<String, HaskellValue>)> {
+        match self {
+            HaskellValue::Struct { name, fields } => Some((name, fields)),
+            _ => None,
+        }
+    }
+}
+
+fn write_sequence(
+    f: &mut Formatter<'_>,
+    brackets: &[u8; 2],
+    mut items: std::slice::Iter<HaskellValue>,
+) -> Result<(), Error> {
+    write!(f, "{}", brackets[0] as char)?;
+    while let Some(value) = items.next() {
+        write!(f, "{}", value)?;
+        if !items.as_slice().is_empty() {
+            write!(f, ", ")?;
+        }
+    }
+    if brackets[1] != b'\0' {
+        write!(f, "{}", brackets[1] as char)
+    } else {
+        Ok(())
+    }
+}
+
+fn write_text(f: &mut Formatter<'_>, text: &str) -> Result<(), Error> {
+    write!(f, "\"")?;
+    for c in text.chars() {
+        if c.is_ascii() && !(c as u8).is_ascii_control() {
+            write!(f, "{}", c)?;
+        } else {
+            let mut bytes = [0u8; 4];
+            let size = c.encode_utf8(&mut bytes).len();
+            for byte in &bytes[0..size] {
+                write!(f, "\\{:03}", byte)?;
+            }
+        }
+    }
+    write!(f, "\"")
+}
+
+impl Display for HaskellValue {
+    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> {
+        match self {
+            HaskellValue::Boolean(value) => write!(f, "{}", if *value { "True" } else { "False" }),
+            HaskellValue::Number(value) => write!(f, "{}", value),
+            HaskellValue::String(value) => write_text(f, value),
+            HaskellValue::Tuple(items) => write_sequence(f, b"()", items.iter()),
+            HaskellValue::List(items) => write_sequence(f, b"[]", items.iter()),
+            HaskellValue::AnonStruct { name, fields } => {
+                write!(f, "{} ", name)?;
+                write_sequence(f, b" \0", fields.iter())
+            }
+            HaskellValue::Struct { name, fields } => {
+                write!(f, "{} {{", name)?;
+                let fields = fields.iter().collect::<Vec<_>>();
+                let mut items = fields.iter();
+                while let Some((field_name, value)) = items.next() {
+                    write!(f, "{} = {}", field_name, value)?;
+                    if !items.as_slice().is_empty() {
+                        write!(f, ", ")?;
+                    }
+                }
+                write!(f, "}}")
+            }
+        }
+    }
+}
+
+fn comma(input: &[u8]) -> HaskellResult<&[u8]> {
+    delimited(take_while(is_space), tag(","), take_while(is_space))(input)
+}
+
+fn surrounded<'a, P, O>(
+    prefix: &'static str,
+    suffix: &'static str,
+    mut parser: P,
+) -> impl FnMut(&'a [u8]) -> HaskellResult<'a, O>
+where
+    P: FnMut(&'a [u8]) -> HaskellResult<'a, O>,
+{
+    move |input| {
+        delimited(
+            delimited(take_while(is_space), tag(prefix), take_while(is_space)),
+            |i| parser(i),
+            delimited(take_while(is_space), tag(suffix), take_while(is_space)),
+        )(input)
+    }
+}
+
+fn boolean(input: &[u8]) -> HaskellResult<HaskellValue> {
+    map(
+        alt((map(tag("True"), |_| true), map(tag("False"), |_| false))),
+        HaskellValue::Boolean,
+    )(input)
+}
+
+fn number_raw(input: &[u8]) -> HaskellResult<u8> {
+    use std::str::FromStr;
+    map_res(take_while(is_digit), |s| {
+        std::str::from_utf8(s)
+            .map_err(|_| ())
+            .and_then(|s| u8::from_str(s).map_err(|_| ()))
+    })(input)
+}
+
+fn number(input: &[u8]) -> HaskellResult<HaskellValue> {
+    map(number_raw, HaskellValue::Number)(input)
+}
+
+enum Escape {
+    Empty,
+    Byte(u8),
+}
+
+impl ExtendInto for Escape {
+    type Item = u8;
+    type Extender = Vec<u8>;
+
+    fn new_builder(&self) -> Self::Extender {
+        Vec::new()
+    }
+
+    fn extend_into(&self, acc: &mut Self::Extender) {
+        if let Escape::Byte(b) = self {
+            acc.push(*b);
+        }
+    }
+}
+
+impl Extend<Escape> for Vec<u8> {
+    fn extend<T: IntoIterator<Item = Escape>>(&mut self, iter: T) {
+        for item in iter {
+            item.extend_into(self);
+        }
+    }
+}
+
+fn string_escape(input: &[u8]) -> HaskellResult<Escape> {
+    use Escape::*;
+    alt((
+        map(number_raw, |n| Byte(n)),
+        alt((
+            map(tag("\\"), |_| Byte(b'\\')),
+            map(tag("\""), |_| Byte(b'\"')),
+            map(tag("'"), |_| Byte(b'\'')),
+            map(tag("n"), |_| Byte(b'\n')),
+            map(tag("r"), |_| Byte(b'\r')),
+            map(tag("t"), |_| Byte(b'\t')),
+            map(tag("a"), |_| Byte(b'\x07')),
+            map(tag("b"), |_| Byte(b'\x08')),
+            map(tag("v"), |_| Byte(b'\x0B')),
+            map(tag("f"), |_| Byte(b'\x0C')),
+            map(tag("&"), |_| Empty),
+            map(tag("NUL"), |_| Byte(b'\x00')),
+            map(tag("SOH"), |_| Byte(b'\x01')),
+            map(tag("STX"), |_| Byte(b'\x02')),
+            map(tag("ETX"), |_| Byte(b'\x03')),
+            map(tag("EOT"), |_| Byte(b'\x04')),
+            map(tag("ENQ"), |_| Byte(b'\x05')),
+            map(tag("ACK"), |_| Byte(b'\x06')),
+        )),
+        alt((
+            map(tag("SO"), |_| Byte(b'\x0E')),
+            map(tag("SI"), |_| Byte(b'\x0F')),
+            map(tag("DLE"), |_| Byte(b'\x10')),
+            map(tag("DC1"), |_| Byte(b'\x11')),
+            map(tag("DC2"), |_| Byte(b'\x12')),
+            map(tag("DC3"), |_| Byte(b'\x13')),
+            map(tag("DC4"), |_| Byte(b'\x14')),
+            map(tag("NAK"), |_| Byte(b'\x15')),
+            map(tag("SYN"), |_| Byte(b'\x16')),
+            map(tag("ETB"), |_| Byte(b'\x17')),
+            map(tag("CAN"), |_| Byte(b'\x18')),
+            map(tag("EM"), |_| Byte(b'\x19')),
+            map(tag("SUB"), |_| Byte(b'\x1A')),
+            map(tag("ESC"), |_| Byte(b'\x1B')),
+            map(tag("FS"), |_| Byte(b'\x1C')),
+            map(tag("GS"), |_| Byte(b'\x1D')),
+            map(tag("RS"), |_| Byte(b'\x1E')),
+            map(tag("US"), |_| Byte(b'\x1F')),
+            map(tag("DEL"), |_| Byte(b'\x7F')),
+        )),
+    ))(input)
+}
+
+fn string_content(input: &[u8]) -> HaskellResult<String> {
+    map_res(
+        escaped_transform(is_not("\"\\"), '\\', string_escape),
+        |bytes| String::from_utf8(bytes).map_err(|_| ()),
+    )(input)
+}
+
+fn string(input: &[u8]) -> HaskellResult<HaskellValue> {
+    map(
+        delimited(tag("\""), string_content, tag("\"")),
+        HaskellValue::String,
+    )(input)
+}
+
+fn tuple(input: &[u8]) -> HaskellResult<HaskellValue> {
+    map(
+        surrounded("(", ")", separated_list0(comma, value)),
+        HaskellValue::Tuple,
+    )(input)
+}
+
+fn list(input: &[u8]) -> HaskellResult<HaskellValue> {
+    map(
+        surrounded("[", "]", separated_list0(comma, value)),
+        HaskellValue::List,
+    )(input)
+}
+
+fn identifier(input: &[u8]) -> HaskellResult<String> {
+    map_res(take_while1(is_alphanumeric), |s| {
+        std::str::from_utf8(s).map_err(|_| ()).map(String::from)
+    })(input)
+}
+
+fn named_field(input: &[u8]) -> HaskellResult<(String, HaskellValue)> {
+    separated_pair(
+        identifier,
+        delimited(take_while(is_space), tag("="), take_while(is_space)),
+        value,
+    )(input)
+}
+
+fn structure(input: &[u8]) -> HaskellResult<HaskellValue> {
+    alt((
+        map(
+            pair(
+                identifier,
+                surrounded("{", "}", separated_list0(comma, named_field)),
+            ),
+            |(name, mut fields)| HaskellValue::Struct {
+                name,
+                fields: fields.drain(..).collect(),
+            },
+        ),
+        map(
+            pair(
+                identifier,
+                preceded(
+                    take_while(is_space),
+                    many0(terminated(value, take_while(is_space))),
+                ),
+            ),
+            |(name, fields)| HaskellValue::AnonStruct {
+                name: name.clone(),
+                fields,
+            },
+        ),
+    ))(input)
+}
+
+fn value(input: &[u8]) -> HaskellResult<HaskellValue> {
+    alt((boolean, number, string, tuple, list, structure))(input)
+}
+
+#[inline]
+pub fn parse(input: &[u8]) -> HaskellResult<HaskellValue> {
+    delimited(take_while(is_space), value, take_while(is_space))(input)
+}
+
+mod test {
+    use super::*;
+
+    #[test]
+    fn terminals() {
+        use HaskellValue::*;
+
+        matches!(number(b"127"), Ok((_, Number(127))));
+        matches!(number(b"adas"), Err(nom::Err::Error(_)));
+
+        assert_eq!(
+            string(b"\"Hail \\240\\159\\166\\148!\""),
+            Ok((&b""[..], String("Hail \u{1f994}!".to_string())))
+        );
+    }
+
+    #[test]
+    fn sequences() {
+        use HaskellValue::*;
+
+        let value = Tuple(vec![
+            Number(64),
+            String("text\t1".to_string()),
+            List(vec![Number(1), Number(2), Number(3)]),
+        ]);
+
+        assert_eq!(
+            tuple(b"(64, \"text\\t1\", [1 , 2, 3])"),
+            Ok((&b""[..], value))
+        );
+    }
+
+    #[test]
+    fn structures() {
+        use HaskellValue::*;
+
+        let value = Struct {
+            name: "Hog".to_string(),
+            fields: vec![
+                ("name".to_string(), String("\u{1f994}".to_string())),
+                ("health".to_string(), Number(100)),
+            ]
+            .drain(..)
+            .collect(),
+        };
+
+        assert_eq!(
+            structure(b"Hog {name = \"\\240\\159\\166\\148\", health = 100}"),
+            Ok((&b""[..], value))
+        );
+
+        let value = AnonStruct {
+            name: "Hog".to_string(),
+            fields: vec![Boolean(true), Number(100), String("\u{1f994}".to_string())],
+        };
+
+        assert_eq!(
+            structure(b"Hog True 100 \"\\240\\159\\166\\148\""),
+            Ok((&b""[..], value))
+        );
+    }
+}
--- a/rust/hedgewars-server/src/server/io.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/server/io.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,7 +1,8 @@
 use std::{
     fs::{File, OpenOptions},
     io::{Error, ErrorKind, Read, Result, Write},
-    sync::mpsc,
+    sync::{mpsc, Arc},
+    task::Waker,
     thread,
 };
 
@@ -10,23 +11,22 @@
     server::database::Database,
 };
 use log::*;
-use mio::{Evented, Poll, PollOpt};
-use mio_extras::channel;
 
 pub type RequestId = u32;
 
 pub struct IoThread {
     core_tx: mpsc::Sender<(RequestId, IoTask)>,
-    core_rx: channel::Receiver<(RequestId, IoResult)>,
+    core_rx: mpsc::Receiver<(RequestId, IoResult)>,
 }
 
 impl IoThread {
-    pub fn new() -> Self {
+    pub fn new(waker: Waker) -> Self {
         let (core_tx, io_rx) = mpsc::channel();
-        let (io_tx, core_rx) = channel::channel();
+        let (io_tx, core_rx) = mpsc::channel();
 
-        let mut db = Database::new();
-        db.connect("localhost");
+        //todo!("convert into an IO task");
+
+        /*let mut db = Database::new("localhost");
 
         thread::spawn(move || {
             while let Ok((request_id, task)) = io_rx.recv() {
@@ -61,6 +61,18 @@
                         }
                     }
 
+                    IoTask::GetCheckerAccount { nick, password } => {
+                        match db.get_checker_account(&nick, &password) {
+                            Ok(is_registered) => IoResult::CheckerAccount { is_registered },
+                            Err(e) => {
+                                warn!("Unable to get checker account data: {}", e);
+                                IoResult::CheckerAccount {
+                                    is_registered: false,
+                                }
+                            }
+                        }
+                    }
+
                     IoTask::GetReplay { id } => {
                         let result = match db.get_replay_name(id) {
                             Ok(Some(filename)) => {
@@ -72,11 +84,12 @@
                                         &filename
                                     }
                                 );
-                                match load_file(&filename) {
-                                    Ok(contents) => Some(unimplemented!()),
+
+                                match crate::core::types::Replay::load(&filename) {
+                                    Ok(replay) => Some(replay),
                                     Err(e) => {
                                         warn!(
-                                            "Error while writing the room config file \"{}\": {}",
+                                            "Error while reading replay file \"{}\": {}",
                                             filename, e
                                         );
                                         None
@@ -125,8 +138,9 @@
                     }
                 };
                 io_tx.send((request_id, response));
+                waker.wake();
             }
-        });
+        });*/
 
         Self { core_rx, core_tx }
     }
@@ -142,11 +156,6 @@
             Err(mpsc::TryRecvError::Disconnected) => unreachable!(),
         }
     }
-
-    pub fn register_rx(&self, poll: &mio::Poll, token: mio::Token) -> Result<()> {
-        self.core_rx
-            .register(poll, token, mio::Ready::readable(), PollOpt::edge())
-    }
 }
 
 fn save_file(filename: &str, contents: &str) -> Result<()> {
--- a/rust/hedgewars-server/src/server/network.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/server/network.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,680 +1,395 @@
-extern crate slab;
-
+use bytes::{Buf, Bytes};
+use log::*;
+use slab::Slab;
+use std::io::Error;
+use std::pin::Pin;
+use std::task::{Context, Poll};
 use std::{
-    collections::HashSet,
-    io,
-    io::{Error, ErrorKind, Read, Write},
-    mem::{replace, swap},
-    net::{IpAddr, Ipv4Addr, SocketAddr},
+    iter::Iterator,
+    net::{IpAddr, SocketAddr},
+    time::Duration,
 };
-
-use log::*;
-use mio::{
+use tokio::{
+    io::{AsyncRead, AsyncReadExt, AsyncWrite, AsyncWriteExt, ReadBuf},
     net::{TcpListener, TcpStream},
-    Evented, Poll, PollOpt, Ready, Token,
+    sync::mpsc::{channel, Receiver, Sender},
 };
-use mio_extras::timer;
-use netbuf;
-use slab::Slab;
+#[cfg(feature = "tls-connections")]
+use tokio_native_tls::{TlsAcceptor, TlsStream};
 
 use crate::{
-    core::{server::HwServer, types::ClientId},
+    core::types::ClientId,
     handlers,
-    handlers::{IoResult, IoTask},
-    protocol::{messages::HwServerMessage::Redirect, messages::*, ProtocolDecoder},
+    handlers::{IoResult, IoTask, ServerState},
+    protocol::{self, ProtocolDecoder, ProtocolError},
     utils,
 };
+use hedgewars_network_protocol::{
+    messages::HwServerMessage::Redirect, messages::*, parser::server_message,
+};
 
-#[cfg(feature = "official-server")]
-use super::io::{IoThread, RequestId};
+const PING_TIMEOUT: Duration = Duration::from_secs(15);
 
-#[cfg(feature = "tls-connections")]
-use openssl::{
-    error::ErrorStack,
-    ssl::{
-        HandshakeError, MidHandshakeSslStream, Ssl, SslContext, SslContextBuilder, SslFiletype,
-        SslMethod, SslOptions, SslStream, SslStreamBuilder, SslVerifyMode,
-    },
-};
-use std::time::Duration;
+#[derive(Debug)]
+enum ClientUpdateData {
+    Message(HwProtocolMessage),
+    Error(String),
+}
 
-const MAX_BYTES_PER_READ: usize = 2048;
-const SEND_PING_TIMEOUT: Duration = Duration::from_secs(30);
-const DROP_CLIENT_TIMEOUT: Duration = Duration::from_secs(30);
-const PING_PROBES_COUNT: u8 = 2;
+#[derive(Debug)]
+struct ClientUpdate {
+    client_id: ClientId,
+    data: ClientUpdateData,
+}
 
-#[derive(Hash, Eq, PartialEq, Copy, Clone)]
-pub enum NetworkClientState {
-    Idle,
-    NeedsWrite,
-    NeedsRead,
-    Closed,
-    #[cfg(feature = "tls-connections")]
-    Connected,
+struct ClientUpdateSender {
+    client_id: ClientId,
+    sender: Sender<ClientUpdate>,
 }
 
-type NetworkResult<T> = io::Result<(T, NetworkClientState)>;
-
-pub enum ClientSocket {
-    Plain(TcpStream),
-    #[cfg(feature = "tls-connections")]
-    SslHandshake(Option<MidHandshakeSslStream<TcpStream>>),
-    #[cfg(feature = "tls-connections")]
-    SslStream(SslStream<TcpStream>),
+impl ClientUpdateSender {
+    async fn send(&mut self, data: ClientUpdateData) -> bool {
+        self.sender
+            .send(ClientUpdate {
+                client_id: self.client_id,
+                data,
+            })
+            .await
+            .is_ok()
+    }
 }
 
-impl ClientSocket {
-    fn inner(&self) -> &TcpStream {
-        match self {
-            ClientSocket::Plain(stream) => stream,
+enum ClientStream {
+    Tcp(TcpStream),
+    #[cfg(feature = "tls-connections")]
+    Tls(TlsStream<TcpStream>),
+}
+
+impl Unpin for ClientStream {}
+
+impl AsyncRead for ClientStream {
+    fn poll_read(
+        self: Pin<&mut Self>,
+        cx: &mut Context<'_>,
+        buf: &mut ReadBuf<'_>,
+    ) -> Poll<std::io::Result<()>> {
+        use ClientStream::*;
+        match Pin::into_inner(self) {
+            Tcp(stream) => Pin::new(stream).poll_read(cx, buf),
             #[cfg(feature = "tls-connections")]
-            ClientSocket::SslHandshake(Some(builder)) => builder.get_ref(),
-            #[cfg(feature = "tls-connections")]
-            ClientSocket::SslHandshake(None) => unreachable!(),
-            #[cfg(feature = "tls-connections")]
-            ClientSocket::SslStream(ssl_stream) => ssl_stream.get_ref(),
+            Tls(stream) => Pin::new(stream).poll_read(cx, buf),
         }
     }
 }
 
-pub struct NetworkClient {
-    id: ClientId,
-    socket: ClientSocket,
-    peer_addr: SocketAddr,
-    decoder: ProtocolDecoder,
-    buf_out: netbuf::Buf,
-    timeout: timer::Timeout,
-    pending_close: bool,
-}
+impl AsyncWrite for ClientStream {
+    fn poll_write(
+        self: Pin<&mut Self>,
+        cx: &mut Context<'_>,
+        buf: &[u8],
+    ) -> Poll<Result<usize, Error>> {
+        use ClientStream::*;
+        match Pin::into_inner(self) {
+            Tcp(stream) => Pin::new(stream).poll_write(cx, buf),
+            #[cfg(feature = "tls-connections")]
+            Tls(stream) => Pin::new(stream).poll_write(cx, buf),
+        }
+    }
 
-impl NetworkClient {
-    pub fn new(
-        id: ClientId,
-        socket: ClientSocket,
-        peer_addr: SocketAddr,
-        timeout: timer::Timeout,
-    ) -> NetworkClient {
-        NetworkClient {
-            id,
-            socket,
-            peer_addr,
-            decoder: ProtocolDecoder::new(),
-            buf_out: netbuf::Buf::new(),
-            timeout,
-            pending_close: false,
+    fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Error>> {
+        use ClientStream::*;
+        match Pin::into_inner(self) {
+            Tcp(stream) => Pin::new(stream).poll_flush(cx),
+            #[cfg(feature = "tls-connections")]
+            Tls(stream) => Pin::new(stream).poll_flush(cx),
         }
     }
 
-    #[cfg(feature = "tls-connections")]
-    fn handshake_impl(
-        &mut self,
-        handshake: MidHandshakeSslStream<TcpStream>,
-    ) -> io::Result<NetworkClientState> {
-        match handshake.handshake() {
-            Ok(stream) => {
-                self.socket = ClientSocket::SslStream(stream);
-                debug!(
-                    "TLS handshake with {} ({}) completed",
-                    self.id, self.peer_addr
-                );
-                Ok(NetworkClientState::Connected)
-            }
-            Err(HandshakeError::WouldBlock(new_handshake)) => {
-                self.socket = ClientSocket::SslHandshake(Some(new_handshake));
-                Ok(NetworkClientState::Idle)
-            }
-            Err(HandshakeError::Failure(new_handshake)) => {
-                self.socket = ClientSocket::SslHandshake(Some(new_handshake));
-                debug!("TLS handshake with {} ({}) failed", self.id, self.peer_addr);
-                Err(Error::new(ErrorKind::Other, "Connection failure"))
-            }
-            Err(HandshakeError::SetupFailure(_)) => unreachable!(),
+    fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Error>> {
+        use ClientStream::*;
+        match Pin::into_inner(self) {
+            Tcp(stream) => Pin::new(stream).poll_shutdown(cx),
+            #[cfg(feature = "tls-connections")]
+            Tls(stream) => Pin::new(stream).poll_shutdown(cx),
         }
     }
+}
 
-    fn read_impl<R: Read>(
-        decoder: &mut ProtocolDecoder,
-        source: &mut R,
+struct NetworkClient {
+    id: ClientId,
+    stream: ClientStream,
+    receiver: Receiver<Bytes>,
+    peer_addr: SocketAddr,
+    decoder: ProtocolDecoder,
+}
+
+impl NetworkClient {
+    fn new(
         id: ClientId,
-        addr: &SocketAddr,
-    ) -> NetworkResult<Vec<HwProtocolMessage>> {
-        let mut bytes_read = 0;
-        let result = loop {
-            match decoder.read_from(source) {
-                Ok(bytes) => {
-                    debug!("Client {}: read {} bytes", id, bytes);
-                    bytes_read += bytes;
-                    if bytes == 0 {
-                        let result = if bytes_read == 0 {
-                            info!("EOF for client {} ({})", id, addr);
-                            (Vec::new(), NetworkClientState::Closed)
-                        } else {
-                            (decoder.extract_messages(), NetworkClientState::NeedsRead)
-                        };
-                        break Ok(result);
-                    } else if bytes_read >= MAX_BYTES_PER_READ {
-                        break Ok((decoder.extract_messages(), NetworkClientState::NeedsRead));
-                    }
-                }
-                Err(ref error) if error.kind() == ErrorKind::WouldBlock => {
-                    let messages = if bytes_read == 0 {
-                        Vec::new()
-                    } else {
-                        decoder.extract_messages()
-                    };
-                    break Ok((messages, NetworkClientState::Idle));
-                }
-                Err(error) => break Err(error),
-            }
-        };
-        result
-    }
-
-    pub fn read(&mut self) -> NetworkResult<Vec<HwProtocolMessage>> {
-        match self.socket {
-            ClientSocket::Plain(ref mut stream) => {
-                NetworkClient::read_impl(&mut self.decoder, stream, self.id, &self.peer_addr)
-            }
-            #[cfg(feature = "tls-connections")]
-            ClientSocket::SslHandshake(ref mut handshake_opt) => {
-                let handshake = std::mem::replace(handshake_opt, None).unwrap();
-                Ok((Vec::new(), self.handshake_impl(handshake)?))
-            }
-            #[cfg(feature = "tls-connections")]
-            ClientSocket::SslStream(ref mut stream) => {
-                NetworkClient::read_impl(&mut self.decoder, stream, self.id, &self.peer_addr)
-            }
+        stream: ClientStream,
+        peer_addr: SocketAddr,
+        receiver: Receiver<Bytes>,
+    ) -> Self {
+        Self {
+            id,
+            stream,
+            peer_addr,
+            receiver,
+            decoder: ProtocolDecoder::new(PING_TIMEOUT),
         }
     }
 
-    fn write_impl<W: Write>(
-        buf_out: &mut netbuf::Buf,
-        destination: &mut W,
-        close_on_empty: bool,
-    ) -> NetworkResult<()> {
-        let result = loop {
-            match buf_out.write_to(destination) {
-                Ok(bytes) if buf_out.is_empty() || bytes == 0 => {
-                    let status = if buf_out.is_empty() && close_on_empty {
-                        NetworkClientState::Closed
-                    } else {
-                        NetworkClientState::Idle
-                    };
-                    break Ok(((), status));
-                }
-                Ok(_) => (),
-                Err(ref error)
-                    if error.kind() == ErrorKind::Interrupted
-                        || error.kind() == ErrorKind::WouldBlock =>
-                {
-                    break Ok(((), NetworkClientState::NeedsWrite));
-                }
-                Err(error) => break Err(error),
-            }
-        };
-        result
-    }
-
-    pub fn write(&mut self) -> NetworkResult<()> {
-        let result = match self.socket {
-            ClientSocket::Plain(ref mut stream) => {
-                NetworkClient::write_impl(&mut self.buf_out, stream, self.pending_close)
-            }
-            #[cfg(feature = "tls-connections")]
-            ClientSocket::SslHandshake(ref mut handshake_opt) => {
-                let handshake = std::mem::replace(handshake_opt, None).unwrap();
-                Ok(((), self.handshake_impl(handshake)?))
-            }
-            #[cfg(feature = "tls-connections")]
-            ClientSocket::SslStream(ref mut stream) => {
-                NetworkClient::write_impl(&mut self.buf_out, stream, self.pending_close)
+    async fn read<T: AsyncRead + AsyncWrite + Unpin>(
+        stream: &mut T,
+        decoder: &mut ProtocolDecoder,
+    ) -> protocol::Result<HwProtocolMessage> {
+        let result = decoder.read_from(stream).await;
+        if matches!(result, Err(ProtocolError::Timeout)) {
+            if Self::write(stream, Bytes::from(HwServerMessage::Ping.to_raw_protocol())).await {
+                decoder.read_from(stream).await
+            } else {
+                Err(ProtocolError::Eof)
             }
-        };
-
-        self.socket.inner().flush()?;
-        result
-    }
-
-    pub fn send_raw_msg(&mut self, msg: &[u8]) {
-        self.buf_out.write_all(msg).unwrap();
-    }
-
-    pub fn send_string(&mut self, msg: &str) {
-        self.send_raw_msg(&msg.as_bytes());
-    }
-
-    pub fn replace_timeout(&mut self, timeout: timer::Timeout) -> timer::Timeout {
-        replace(&mut self.timeout, timeout)
-    }
-
-    pub fn has_pending_sends(&self) -> bool {
-        !self.buf_out.is_empty()
-    }
-}
-
-#[cfg(feature = "tls-connections")]
-struct ServerSsl {
-    listener: TcpListener,
-    context: SslContext,
-}
-
-#[cfg(feature = "official-server")]
-pub struct IoLayer {
-    next_request_id: RequestId,
-    request_queue: Vec<(RequestId, ClientId)>,
-    io_thread: IoThread,
-}
-
-#[cfg(feature = "official-server")]
-impl IoLayer {
-    fn new() -> Self {
-        Self {
-            next_request_id: 0,
-            request_queue: vec![],
-            io_thread: IoThread::new(),
+        } else {
+            result
         }
     }
 
-    fn send(&mut self, client_id: ClientId, task: IoTask) {
-        let request_id = self.next_request_id;
-        self.next_request_id += 1;
-        self.request_queue.push((request_id, client_id));
-        self.io_thread.send(request_id, task);
+    async fn write<T: AsyncWrite + Unpin>(stream: &mut T, mut data: Bytes) -> bool {
+        !data.has_remaining() || matches!(stream.write_buf(&mut data).await, Ok(n) if n > 0)
     }
 
-    fn try_recv(&mut self) -> Option<(ClientId, IoResult)> {
-        let (request_id, result) = self.io_thread.try_recv()?;
-        if let Some(index) = self
-            .request_queue
-            .iter()
-            .position(|(id, _)| *id == request_id)
-        {
-            let (_, client_id) = self.request_queue.swap_remove(index);
-            Some((client_id, result))
-        } else {
-            None
-        }
-    }
+    async fn run(mut self, sender: Sender<ClientUpdate>) {
+        use ClientUpdateData::*;
+        let mut sender = ClientUpdateSender {
+            client_id: self.id,
+            sender,
+        };
 
-    fn cancel(&mut self, client_id: ClientId) {
-        let mut index = 0;
-        while index < self.request_queue.len() {
-            if self.request_queue[index].1 == client_id {
-                self.request_queue.swap_remove(index);
-            } else {
-                index += 1;
+        loop {
+            tokio::select! {
+                server_message = self.receiver.recv() => {
+                    match server_message {
+                        Some(message) => if !Self::write(&mut self.stream, message).await {
+                            sender.send(Error("Connection reset by peer".to_string())).await;
+                            break;
+                        }
+                        None => {
+                            break;
+                        }
+                    }
+                }
+                client_message = Self::read(&mut self.stream, &mut self.decoder) => {
+                     match client_message {
+                        Ok(message) => {
+                            //todo!("add flood stats");
+                            if !sender.send(Message(message)).await {
+                                break;
+                            }
+                        }
+                        Err(e) => {
+                            //todo!("send cmdline errors");
+                            //todo!("more graceful shutdown to prevent errors from explicitly closed clients")
+                            sender.send(Error(format!("{}", e))).await;
+                            if matches!(e, ProtocolError::Timeout) {
+                                Self::write(&mut self.stream, Bytes::from(HwServerMessage::Bye("Ping timeout".to_string()).to_raw_protocol())).await;
+                            }
+                            break;
+                        }
+                    }
+                }
             }
         }
     }
 }
 
-enum TimeoutEvent {
-    SendPing { probes_count: u8 },
-    DropClient,
+#[cfg(feature = "tls-connections")]
+struct TlsListener {
+    listener: TcpListener,
+    acceptor: TlsAcceptor,
 }
 
-struct TimerData(TimeoutEvent, ClientId);
-
 pub struct NetworkLayer {
     listener: TcpListener,
-    server: HwServer,
-    clients: Slab<NetworkClient>,
-    pending: HashSet<(ClientId, NetworkClientState)>,
-    pending_cache: Vec<(ClientId, NetworkClientState)>,
     #[cfg(feature = "tls-connections")]
-    ssl: ServerSsl,
-    #[cfg(feature = "official-server")]
-    io: IoLayer,
-    timer: timer::Timer<TimerData>,
-}
-
-fn register_read<E: Evented>(poll: &Poll, evented: &E, token: mio::Token) -> io::Result<()> {
-    poll.register(evented, token, Ready::readable(), PollOpt::edge())
-}
-
-fn create_ping_timeout(
-    timer: &mut timer::Timer<TimerData>,
-    probes_count: u8,
-    client_id: ClientId,
-) -> timer::Timeout {
-    timer.set_timeout(
-        SEND_PING_TIMEOUT,
-        TimerData(TimeoutEvent::SendPing { probes_count }, client_id),
-    )
-}
-
-fn create_drop_timeout(timer: &mut timer::Timer<TimerData>, client_id: ClientId) -> timer::Timeout {
-    timer.set_timeout(
-        DROP_CLIENT_TIMEOUT,
-        TimerData(TimeoutEvent::DropClient, client_id),
-    )
+    tls: TlsListener,
+    server_state: ServerState,
+    clients: Slab<Sender<Bytes>>,
+    update_tx: Sender<ClientUpdate>,
+    update_rx: Receiver<ClientUpdate>
 }
 
 impl NetworkLayer {
-    pub fn register(&self, poll: &Poll) -> io::Result<()> {
-        register_read(poll, &self.listener, utils::SERVER_TOKEN)?;
-        #[cfg(feature = "tls-connections")]
-        register_read(poll, &self.ssl.listener, utils::SECURE_SERVER_TOKEN)?;
-        register_read(poll, &self.timer, utils::TIMER_TOKEN)?;
-
-        #[cfg(feature = "official-server")]
-        self.io.io_thread.register_rx(poll, utils::IO_TOKEN)?;
-
-        Ok(())
-    }
-
-    fn deregister_client(&mut self, poll: &Poll, id: ClientId, is_error: bool) {
-        if let Some(ref mut client) = self.clients.get_mut(id) {
-            poll.deregister(client.socket.inner())
-                .expect("could not deregister socket");
-            if client.has_pending_sends() && !is_error {
-                info!(
-                    "client {} ({}) pending removal",
-                    client.id, client.peer_addr
-                );
-                client.pending_close = true;
-                poll.register(
-                    client.socket.inner(),
-                    Token(id),
-                    Ready::writable(),
-                    PollOpt::edge(),
-                )
-                .unwrap_or_else(|_| {
-                    self.clients.remove(id);
-                });
-            } else {
-                info!("client {} ({}) removed", client.id, client.peer_addr);
-                self.clients.remove(id);
+    pub async fn run(&mut self) {
+        async fn accept_plain_branch(
+            layer: &mut NetworkLayer,
+            value: (TcpStream, SocketAddr),
+            update_tx: Sender<ClientUpdate>,
+        ) {
+            let (stream, addr) = value;
+            if let Some(client) = layer.create_client(ClientStream::Tcp(stream), addr).await {
+                tokio::spawn(client.run(update_tx));
             }
-            #[cfg(feature = "official-server")]
-            self.io.cancel(id);
-        }
-    }
-
-    fn register_client(
-        &mut self,
-        poll: &Poll,
-        client_socket: ClientSocket,
-        addr: SocketAddr,
-    ) -> io::Result<ClientId> {
-        let entry = self.clients.vacant_entry();
-        let client_id = entry.key();
-
-        poll.register(
-            client_socket.inner(),
-            Token(client_id),
-            Ready::readable() | Ready::writable(),
-            PollOpt::edge(),
-        )?;
-
-        let client = NetworkClient::new(
-            client_id,
-            client_socket,
-            addr,
-            create_ping_timeout(&mut self.timer, PING_PROBES_COUNT - 1, client_id),
-        );
-        info!("client {} ({}) added", client.id, client.peer_addr);
-        entry.insert(client);
-
-        Ok(client_id)
-    }
-
-    fn handle_response(&mut self, mut response: handlers::Response, poll: &Poll) {
-        if response.is_empty() {
-            return;
         }
 
-        debug!("{} pending server messages", response.len());
-        let output = response.extract_messages(&mut self.server);
-        for (clients, message) in output {
-            debug!("Message {:?} to {:?}", message, clients);
-            let msg_string = message.to_raw_protocol();
-            for client_id in clients {
-                if let Some(client) = self.clients.get_mut(client_id) {
-                    client.send_string(&msg_string);
-                    self.pending
-                        .insert((client_id, NetworkClientState::NeedsWrite));
+        #[cfg(feature = "tls-connections")]
+        async fn accept_tls_branch(
+            layer: &mut NetworkLayer,
+            value: (TcpStream, SocketAddr),
+            update_tx: Sender<ClientUpdate>,
+        ) {
+            let (stream, addr) = value;
+            match layer.tls.acceptor.accept(stream).await {
+                Ok(stream) => {
+                    if let Some(client) = layer.create_client(ClientStream::Tls(stream), addr).await
+                    {
+                        tokio::spawn(client.run(update_tx));
+                    }
+                }
+                Err(e) => {
+                    warn!("Unable to establish TLS connection: {}", e);
                 }
             }
         }
 
-        for client_id in response.extract_removed_clients() {
-            self.deregister_client(poll, client_id, false);
+        async fn client_message_branch(
+            layer: &mut NetworkLayer,
+            client_message: Option<ClientUpdate>,
+        ) {
+            use ClientUpdateData::*;
+            match client_message {
+                Some(ClientUpdate {
+                    client_id,
+                    data: Message(message),
+                }) => {
+                    layer.handle_message(client_id, message).await;
+                }
+                Some(ClientUpdate {
+                    client_id,
+                    data: Error(e),
+                }) => {
+                    let mut response = handlers::Response::new(client_id);
+                    info!("Client {} error: {:?}", client_id, e);
+                    response.remove_client(client_id);
+                    handlers::handle_client_loss(&mut layer.server_state, client_id, &mut response);
+                    layer.handle_response(response).await;
+                }
+                None => unreachable!(),
+            }
         }
 
-        #[cfg(feature = "official-server")]
-        {
-            let client_id = response.client_id();
-            for task in response.extract_io_tasks() {
-                self.io.send(client_id, task);
+        //todo!("add the DB task");
+        //todo!("add certfile watcher task");
+        loop {
+            #[cfg(not(feature = "tls-connections"))]
+            tokio::select! {
+                Ok(value) = self.listener.accept() => accept_plain_branch(self, value, self.update_tx.clone()).await,
+                client_message = self.update_rx.recv(), if !self.clients.is_empty() => client_message_branch(self, client_message).await
+            }
+
+            #[cfg(feature = "tls-connections")]
+            tokio::select! {
+                Ok(value) = self.listener.accept() => accept_plain_branch(self, value, self.update_tx.clone()).await,
+                Ok(value) = self.tls.listener.accept() => accept_tls_branch(self, value, self.update_tx.clone()).await,
+                client_message = self.update_rx.recv(), if !self.clients.is_empty() => client_message_branch(self, client_message).await
             }
         }
     }
 
-    pub fn handle_timeout(&mut self, poll: &Poll) -> io::Result<()> {
-        while let Some(TimerData(event, client_id)) = self.timer.poll() {
-            match event {
-                TimeoutEvent::SendPing { probes_count } => {
-                    if let Some(ref mut client) = self.clients.get_mut(client_id) {
-                        client.send_string(&HwServerMessage::Ping.to_raw_protocol());
-                        client.write()?;
-                        let timeout = if probes_count != 0 {
-                            create_ping_timeout(&mut self.timer, probes_count - 1, client_id)
-                        } else {
-                            create_drop_timeout(&mut self.timer, client_id)
-                        };
-                        client.replace_timeout(timeout);
-                    }
-                }
-                TimeoutEvent::DropClient => {
-                    if let Some(ref mut client) = self.clients.get_mut(client_id) {
-                        client.send_string(
-                            &HwServerMessage::Bye("Ping timeout".to_string()).to_raw_protocol(),
-                        );
-                        client.write();
-                    }
-                    self.operation_failed(
-                        poll,
-                        client_id,
-                        &ErrorKind::TimedOut.into(),
-                        "No ping response",
-                    )?;
-                }
-            }
-        }
-        Ok(())
-    }
+    async fn create_client(
+        &mut self,
+        stream: ClientStream,
+        addr: SocketAddr,
+    ) -> Option<NetworkClient> {
+        let entry = self.clients.vacant_entry();
+        let client_id = entry.key();
+        let (tx, rx) = channel(16);
+        entry.insert(tx);
+
+        let client = NetworkClient::new(client_id, stream, addr, rx);
+
+        info!("client {} ({}) added", client.id, client.peer_addr);
+
+        let mut response = handlers::Response::new(client_id);
 
-    #[cfg(feature = "official-server")]
-    pub fn handle_io_result(&mut self, poll: &Poll) -> io::Result<()> {
-        while let Some((client_id, result)) = self.io.try_recv() {
-            debug!("Handling io result {:?} for client {}", result, client_id);
-            let mut response = handlers::Response::new(client_id);
-            handlers::handle_io_result(&mut self.server, client_id, &mut response, result);
-            self.handle_response(response, poll);
-        }
-        Ok(())
-    }
+        let added = if let IpAddr::V4(addr) = client.peer_addr.ip() {
+            handlers::handle_client_accept(
+                &mut self.server_state,
+                client_id,
+                &mut response,
+                addr.octets(),
+                addr.is_loopback(),
+            )
+        } else {
+            todo!("implement something")
+        };
 
-    fn create_client_socket(&self, socket: TcpStream) -> io::Result<ClientSocket> {
-        Ok(ClientSocket::Plain(socket))
-    }
+        self.handle_response(response).await;
 
-    #[cfg(feature = "tls-connections")]
-    fn create_client_secure_socket(&self, socket: TcpStream) -> io::Result<ClientSocket> {
-        let ssl = Ssl::new(&self.ssl.context).unwrap();
-        let mut builder = SslStreamBuilder::new(ssl, socket);
-        builder.set_accept_state();
-        match builder.handshake() {
-            Ok(stream) => Ok(ClientSocket::SslStream(stream)),
-            Err(HandshakeError::WouldBlock(stream)) => Ok(ClientSocket::SslHandshake(Some(stream))),
-            Err(e) => {
-                debug!("OpenSSL handshake failed: {}", e);
-                Err(Error::new(ErrorKind::Other, "Connection failure"))
-            }
+        if added {
+            Some(client)
+        } else {
+            None
         }
     }
 
-    fn init_client(&mut self, poll: &Poll, client_id: ClientId) {
+    async fn handle_message(&mut self, client_id: ClientId, message: HwProtocolMessage) {
+        debug!("Handling message {:?} for client {}", message, client_id);
         let mut response = handlers::Response::new(client_id);
-
-        if let ClientSocket::Plain(_) = self.clients[client_id].socket {
-            #[cfg(feature = "tls-connections")]
-            response.add(Redirect(self.ssl.listener.local_addr().unwrap().port()).send_self())
-        }
-
-        handlers::handle_client_accept(
-            &mut self.server,
-            client_id,
-            &mut response,
-            self.clients[client_id].peer_addr.ip().is_loopback(),
-        );
-        self.handle_response(response, poll);
-    }
-
-    pub fn accept_client(&mut self, poll: &Poll, server_token: mio::Token) -> io::Result<()> {
-        match server_token {
-            utils::SERVER_TOKEN => {
-                let (client_socket, addr) = self.listener.accept()?;
-                info!("Connected(plaintext): {}", addr);
-                let client_id =
-                    self.register_client(poll, self.create_client_socket(client_socket)?, addr)?;
-                self.init_client(poll, client_id);
-            }
-            #[cfg(feature = "tls-connections")]
-            utils::SECURE_SERVER_TOKEN => {
-                let (client_socket, addr) = self.ssl.listener.accept()?;
-                info!("Connected(TLS): {}", addr);
-                self.register_client(poll, self.create_client_secure_socket(client_socket)?, addr)?;
-            }
-            _ => unreachable!(),
-        }
-
-        Ok(())
-    }
-
-    fn operation_failed(
-        &mut self,
-        poll: &Poll,
-        client_id: ClientId,
-        error: &Error,
-        msg: &str,
-    ) -> io::Result<()> {
-        let addr = if let Some(ref mut client) = self.clients.get_mut(client_id) {
-            client.peer_addr
-        } else {
-            SocketAddr::new(IpAddr::V4(Ipv4Addr::new(0, 0, 0, 0)), 0)
-        };
-        debug!("{}({}): {}", msg, addr, error);
-        self.client_error(poll, client_id)
+        handlers::handle(&mut self.server_state, client_id, &mut response, message);
+        self.handle_response(response).await;
     }
 
-    pub fn client_readable(&mut self, poll: &Poll, client_id: ClientId) -> io::Result<()> {
-        let messages = if let Some(ref mut client) = self.clients.get_mut(client_id) {
-            let timeout = client.replace_timeout(create_ping_timeout(
-                &mut self.timer,
-                PING_PROBES_COUNT - 1,
-                client_id,
-            ));
-            self.timer.cancel_timeout(&timeout);
-            client.read()
-        } else {
-            warn!("invalid readable client: {}", client_id);
-            Ok((Vec::new(), NetworkClientState::Idle))
-        };
-
-        let mut response = handlers::Response::new(client_id);
-
-        match messages {
-            Ok((messages, state)) => {
-                for message in messages {
-                    debug!("Handling message {:?} for client {}", message, client_id);
-                    handlers::handle(&mut self.server, client_id, &mut response, message);
-                }
-                match state {
-                    NetworkClientState::NeedsRead => {
-                        self.pending.insert((client_id, state));
-                    }
-                    NetworkClientState::Closed => self.client_error(&poll, client_id)?,
-                    #[cfg(feature = "tls-connections")]
-                    NetworkClientState::Connected => self.init_client(poll, client_id),
-                    _ => {}
-                };
-            }
-            Err(e) => self.operation_failed(
-                poll,
-                client_id,
-                &e,
-                "Error while reading from client socket",
-            )?,
+    async fn handle_response(&mut self, mut response: handlers::Response) {
+        if response.is_empty() {
+            return;
         }
 
-        self.handle_response(response, poll);
+        for client_id in response.extract_removed_clients() {
+            if self.clients.contains(client_id) {
+                self.clients.remove(client_id);
+                if self.clients.is_empty() {
+                    let (update_tx, update_rx) = channel(128);
+                    self.update_rx = update_rx;
+                    self.update_tx = update_tx;
+                }
+            }
+            info!("Client {} removed", client_id);
+        }
 
-        Ok(())
+        debug!("{} pending server messages", response.len());
+        let output = response.extract_messages(&mut self.server_state.server);
+        for (clients, message) in output {
+            debug!("Message {:?} to {:?}", message, clients);
+            Self::send_message(&mut self.clients, message, clients.iter().cloned()).await;
+        }
     }
 
-    pub fn client_writable(&mut self, poll: &Poll, client_id: ClientId) -> io::Result<()> {
-        let result = if let Some(ref mut client) = self.clients.get_mut(client_id) {
-            client.write()
-        } else {
-            warn!("invalid writable client: {}", client_id);
-            Ok(((), NetworkClientState::Idle))
-        };
-
-        match result {
-            Ok(((), state)) if state == NetworkClientState::NeedsWrite => {
-                self.pending.insert((client_id, state));
-            }
-            Ok(((), state)) if state == NetworkClientState::Closed => {
-                self.deregister_client(poll, client_id, false);
-            }
-            Ok(_) => (),
-            Err(e) => {
-                self.operation_failed(poll, client_id, &e, "Error while writing to client socket")?
+    async fn send_message<I>(
+        clients: &mut Slab<Sender<Bytes>>,
+        message: HwServerMessage,
+        to_clients: I,
+    ) where
+        I: Iterator<Item = ClientId>,
+    {
+        let msg_string = message.to_raw_protocol();
+        let bytes = Bytes::copy_from_slice(msg_string.as_bytes());
+        for client_id in to_clients {
+            if let Some(client) = clients.get_mut(client_id) {
+                if !client.send(bytes.clone()).await.is_ok() {
+                    clients.remove(client_id);
+                }
             }
         }
-
-        Ok(())
-    }
-
-    pub fn client_error(&mut self, poll: &Poll, client_id: ClientId) -> io::Result<()> {
-        let pending_close = self.clients[client_id].pending_close;
-        self.deregister_client(poll, client_id, true);
-
-        if !pending_close {
-            let mut response = handlers::Response::new(client_id);
-            handlers::handle_client_loss(&mut self.server, client_id, &mut response);
-            self.handle_response(response, poll);
-        }
-
-        Ok(())
-    }
-
-    pub fn has_pending_operations(&self) -> bool {
-        !self.pending.is_empty()
-    }
-
-    pub fn on_idle(&mut self, poll: &Poll) -> io::Result<()> {
-        if self.has_pending_operations() {
-            let mut cache = replace(&mut self.pending_cache, Vec::new());
-            cache.extend(self.pending.drain());
-            for (id, state) in cache.drain(..) {
-                match state {
-                    NetworkClientState::NeedsRead => self.client_readable(poll, id)?,
-                    NetworkClientState::NeedsWrite => self.client_writable(poll, id)?,
-                    _ => {}
-                }
-            }
-            swap(&mut cache, &mut self.pending_cache);
-        }
-        Ok(())
     }
 }
 
 pub struct NetworkLayerBuilder {
     listener: Option<TcpListener>,
-    secure_listener: Option<TcpListener>,
+    #[cfg(feature = "tls-connections")]
+    tls_listener: Option<TcpListener>,
+    #[cfg(feature = "tls-connections")]
+    tls_acceptor: Option<TlsAcceptor>,
     clients_capacity: usize,
     rooms_capacity: usize,
 }
@@ -685,7 +400,10 @@
             clients_capacity: 1024,
             rooms_capacity: 512,
             listener: None,
-            secure_listener: None,
+            #[cfg(feature = "tls-connections")]
+            tls_listener: None,
+            #[cfg(feature = "tls-connections")]
+            tls_acceptor: None,
         }
     }
 }
@@ -698,52 +416,39 @@
         }
     }
 
-    pub fn with_secure_listener(self, listener: TcpListener) -> Self {
+    #[cfg(feature = "tls-connections")]
+    pub fn with_tls_acceptor(self, listener: TlsAcceptor) -> Self {
         Self {
-            secure_listener: Some(listener),
+            tls_acceptor: Option::from(listener),
             ..self
         }
     }
 
     #[cfg(feature = "tls-connections")]
-    fn create_ssl_context(listener: TcpListener) -> ServerSsl {
-        let mut builder = SslContextBuilder::new(SslMethod::tls()).unwrap();
-        builder.set_verify(SslVerifyMode::NONE);
-        builder.set_read_ahead(true);
-        builder
-            .set_certificate_file("ssl/cert.pem", SslFiletype::PEM)
-            .expect("Cannot find certificate file");
-        builder
-            .set_private_key_file("ssl/key.pem", SslFiletype::PEM)
-            .expect("Cannot find private key file");
-        builder.set_options(SslOptions::NO_COMPRESSION);
-        builder.set_cipher_list("DEFAULT:!LOW:!RC4:!EXP").unwrap();
-        ServerSsl {
-            listener,
-            context: builder.build(),
+    pub fn with_tls_listener(self, listener: TlsAcceptor) -> Self {
+        Self {
+            tls_acceptor: Option::from(listener),
+            ..self
         }
     }
 
     pub fn build(self) -> NetworkLayer {
-        let server = HwServer::new(self.clients_capacity, self.rooms_capacity);
+        let server_state = ServerState::new(self.clients_capacity, self.rooms_capacity);
+
         let clients = Slab::with_capacity(self.clients_capacity);
-        let pending = HashSet::with_capacity(2 * self.clients_capacity);
-        let pending_cache = Vec::with_capacity(2 * self.clients_capacity);
-        let timer = timer::Builder::default().build();
+        let (update_tx, update_rx) = channel(128);
 
         NetworkLayer {
             listener: self.listener.expect("No listener provided"),
-            server,
+            #[cfg(feature = "tls-connections")]
+            tls: TlsListener {
+                listener: self.tls_listener.expect("No TLS listener provided"),
+                acceptor: self.tls_acceptor.expect("No TLS acceptor provided"),
+            },
+            server_state,
             clients,
-            pending,
-            pending_cache,
-            #[cfg(feature = "tls-connections")]
-            ssl: Self::create_ssl_context(
-                self.secure_listener.expect("No secure listener provided"),
-            ),
-            #[cfg(feature = "official-server")]
-            io: IoLayer::new(),
-            timer,
+            update_tx,
+            update_rx
         }
     }
 }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hedgewars-server/src/server/replaystorage.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,74 @@
+use crate::core::types::Replay;
+//use super::demo::load;
+use std::fs;
+use std::path::PathBuf;
+
+pub struct ReplayStorage {
+    borrowed_replays: Vec<ReplayId>,
+}
+
+#[derive(Clone, PartialEq)]
+pub struct ReplayId {
+    path: PathBuf,
+}
+
+impl ReplayStorage {
+    pub fn new() -> Self {
+        ReplayStorage {
+            borrowed_replays: vec![],
+        }
+    }
+
+    pub fn pick_replay(&mut self, protocol: u16) -> Option<(ReplayId, Replay)> {
+        let protocol_suffix = format!(".{}", protocol);
+        let result = fs::read_dir("replays")
+            .ok()?
+            .flat_map(|f| Some(f.ok()?.path()))
+            .find(|f| {
+                f.ends_with(&protocol_suffix) && !self.borrowed_replays.iter().any(|e| &e.path == f)
+            })
+            .and_then(|f| {
+                Some((
+                    ReplayId { path: f.clone() },
+                    Replay::load(f.to_str()?).ok()?,
+                ))
+            });
+
+        if let Some((ref replay_id, _)) = result {
+            self.borrowed_replays.push((*replay_id).clone());
+        }
+
+        result
+    }
+
+    pub fn move_failed_replay(&mut self, id: &ReplayId) -> std::io::Result<()> {
+        self.unborrow(id);
+        self.move_file("failed", id)
+    }
+
+    pub fn move_checked_replay(&mut self, id: &ReplayId) -> std::io::Result<()> {
+        self.unborrow(id);
+        self.move_file("checked", id)
+    }
+
+    pub fn requeue_replay(&mut self, id: &ReplayId) {
+        self.unborrow(id)
+    }
+
+    fn unborrow(&mut self, id: &ReplayId) {
+        self.borrowed_replays.retain(|i| i != id)
+    }
+
+    fn move_file(&self, dir: &str, id: &ReplayId) -> std::io::Result<()> {
+        let new_name = format!(
+            "{}/{}",
+            dir,
+            id.path
+                .file_name()
+                .and_then(|f| f.to_str())
+                .expect("What's up with your file name?")
+        );
+
+        fs::rename(&id.path, new_name)
+    }
+}
--- a/rust/hedgewars-server/src/utils.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hedgewars-server/src/utils.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,12 +1,8 @@
 use base64::encode;
-use mio;
 use std::iter::Iterator;
 
 pub const SERVER_VERSION: u32 = 3;
-pub const SERVER_TOKEN: mio::Token = mio::Token(1_000_000_000);
-pub const SECURE_SERVER_TOKEN: mio::Token = mio::Token(1_000_000_001);
-pub const TIMER_TOKEN: mio::Token = mio::Token(1_000_000_002);
-pub const IO_TOKEN: mio::Token = mio::Token(1_000_000_003);
+pub const SERVER_MESSAGE: &str = &"Hedgewars server https://www.hedgewars.org/";
 
 pub fn is_name_illegal(name: &str) -> bool {
     name.len() > 40
@@ -70,7 +66,7 @@
         57 => "0.9.25",
         58 => "1.0.0-dev",
         59 => "1.0.0",
-        60 => "1.0.1-dev",
+        60 => "1.1.0-dev",
         _ => "Unknown",
     }
 }
--- a/rust/hwphysics/Cargo.toml	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hwphysics/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -8,3 +8,10 @@
 fpnum = { path = "../fpnum" }
 integral-geometry = { path = "../integral-geometry" }
 land2d = { path = "../land2d" }
+
+[dev-dependencies]
+criterion = "0.4.0"
+
+[[bench]]
+name = "ecs_bench"
+harness = false
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/hwphysics/benches/ecs_bench.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,119 @@
+use criterion::{black_box, criterion_group, criterion_main, Criterion};
+use hwphysics::{common::GearId, data::GearDataManager};
+
+#[derive(Clone, Copy, Default)]
+struct P {
+    position: u64,
+}
+
+#[derive(Clone, Copy, Default)]
+struct V {
+    velocity: u64,
+}
+
+#[derive(Clone, Copy, Default)]
+struct Pv {
+    position: u64,
+    velocity: u64,
+}
+
+const SIZE: usize = 4 * 1024;
+
+pub fn array_run(c: &mut Criterion) {
+    let mut items = [Pv::default(); SIZE];
+
+    c.bench_function("array run", |b| {
+        b.iter(|| {
+            for item in &mut items {
+                item.velocity += black_box(item.position);
+            }
+        })
+    });
+}
+
+pub fn component_run(c: &mut Criterion) {
+    let mut manager = GearDataManager::new();
+
+    manager.register::<P>();
+    manager.register::<V>();
+
+    for i in 1..=SIZE {
+        let gear_id = GearId::new(i as u16).unwrap();
+        manager.add(gear_id, &P::default());
+        manager.add(gear_id, &V::default());
+    }
+
+    c.bench_function("component run", |b| {
+        b.iter(|| {
+            manager
+                .iter()
+                .run(|(p, v): (&mut P, &mut V)| v.velocity += black_box(p.position));
+        })
+    });
+}
+
+pub fn component_multirun(c: &mut Criterion) {
+    for n in (16..=64).step_by(16) {
+        let mut manager = GearDataManager::new();
+
+        manager.register::<P>();
+        manager.register::<V>();
+
+        for i in 1..=(SIZE / n) {
+            let gear_id = GearId::new(i as u16).unwrap();
+            manager.add(gear_id, &P::default());
+            manager.add(gear_id, &V::default());
+        }
+
+        c.bench_function(&format!("component run {}", n), |b| {
+            b.iter(|| {
+                for i in 0..n {
+                    manager
+                        .iter()
+                        .run(|(p, v): (&mut P, &mut V)| v.velocity += black_box(p.position));
+                }
+            })
+        });
+    }
+}
+
+pub fn component_add_remove(c: &mut Criterion) {
+    let mut manager = GearDataManager::new();
+    let mut gears1 = vec![];
+    let mut gears2 = vec![];
+
+    manager.register::<P>();
+    manager.register::<V>();
+
+    for i in 1..=SIZE {
+        let gear_id = GearId::new(i as u16).unwrap();
+        manager.add(gear_id, &P::default());
+        if i % 2 == 0 {
+            manager.add(gear_id, &V::default());
+            gears1.push(gear_id);
+        } else {
+            gears2.push(gear_id);
+        }
+    }
+
+    c.bench_function("component add/remove", |b| {
+        b.iter(|| {
+            for id in &gears2 {
+                manager.add(*id, &V::default());
+            }
+            for id in &gears1 {
+                manager.remove::<V>(*id);
+            }
+            std::mem::swap(&mut gears1, &mut gears2);
+        })
+    });
+}
+
+criterion_group!(
+    benches,
+    array_run,
+    component_run,
+    component_multirun,
+    component_add_remove
+);
+criterion_main!(benches);
--- a/rust/hwphysics/src/collision.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hwphysics/src/collision.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -3,13 +3,9 @@
 use crate::{common::GearId, data::GearDataManager, grid::Grid};
 
 use fpnum::*;
-use integral_geometry::{Point, Size};
+use integral_geometry::{Point, PotSize};
 use land2d::Land2D;
 
-pub fn fppoint_round(point: &FPPoint) -> Point {
-    Point::new(point.x().round(), point.y().round())
-}
-
 #[derive(PartialEq, Eq, Clone, Copy, Debug)]
 pub struct CircleBounds {
     pub center: FPPoint,
@@ -90,7 +86,7 @@
         position: &FPPoint,
     ) {
         self.pairs.push((contact_gear_id1, contact_gear_id2));
-        self.positions.push(fppoint_round(&position));
+        self.positions.push(Point::from_fppoint(&position));
     }
 
     pub fn clear(&mut self) {
@@ -105,7 +101,7 @@
         data.register::<ContactData>();
     }
 
-    pub fn new(size: Size) -> Self {
+    pub fn new(size: PotSize) -> Self {
         Self {
             grid: Grid::new(size),
             enabled_collisions: EnabledCollisionsCollection::new(),
@@ -114,11 +110,11 @@
     }
 
     pub fn add(&mut self, gear_id: GearId, gear_data: CollisionData) {
-        self.grid.insert_static(gear_id, &gear_data.bounds);
+        self.grid.insert(gear_id, &gear_data.bounds);
     }
 
     pub fn remove(&mut self, gear_id: GearId) {
-        self.grid.remove(gear_id);
+        self.grid.remove(gear_id, None);
     }
 
     pub fn get(&mut self, gear_id: GearId) -> Option<CollisionData> {
@@ -131,10 +127,6 @@
         updates: &crate::physics::PositionUpdates,
     ) -> &DetectedCollisions {
         self.detected_collisions.clear();
-        for (id, old_position, new_position) in updates.iter() {
-            self.grid.update_position(id, old_position, new_position)
-        }
-
         self.grid.check_collisions(&mut self.detected_collisions);
 
         for (gear_id, collision) in self.enabled_collisions.iter() {
--- a/rust/hwphysics/src/common.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hwphysics/src/common.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -9,12 +9,12 @@
 
 impl Millis {
     #[inline]
-    pub fn new(value: u32) -> Self {
+    pub const fn new(value: u32) -> Self {
         Self(value)
     }
 
     #[inline]
-    pub fn get(self) -> u32 {
+    pub const fn get(self) -> u32 {
         self.0
     }
 
--- a/rust/hwphysics/src/data.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hwphysics/src/data.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -9,17 +9,28 @@
     slice,
 };
 
+const MAX_TYPES: usize = 8;
+
 pub trait TypeTuple: Sized {
-    fn get_types(types: &mut Vec<TypeId>);
+    fn get_types(_types: &mut [TypeId; MAX_TYPES]) -> usize;
 }
 
 impl TypeTuple for () {
-    fn get_types(_types: &mut Vec<TypeId>) {}
+    fn get_types(_types: &mut [TypeId; MAX_TYPES]) -> usize {
+        0
+    }
 }
 
 impl<T: 'static> TypeTuple for &T {
-    fn get_types(types: &mut Vec<TypeId>) {
-        types.push(TypeId::of::<T>());
+    fn get_types(types: &mut [TypeId; MAX_TYPES]) -> usize {
+        if MAX_TYPES > 0 {
+            unsafe {
+                *types.get_unchecked_mut(0) = TypeId::of::<T>();
+            }
+            1
+        } else {
+            0
+        }
     }
 }
 
@@ -30,13 +41,22 @@
 macro_rules! type_tuple_impl {
     ($($n: literal: $t: ident),+) => {
         impl<$($t: 'static),+> TypeTuple for ($(&$t),+,) {
-            fn get_types(types: &mut Vec<TypeId>) {
-                $(types.push(TypeId::of::<$t>()));+
+            fn get_types(types: &mut [TypeId; MAX_TYPES]) -> usize {
+                let mut count = 0;
+                $({
+                    if MAX_TYPES > $n {
+                        unsafe {
+                            *types.get_unchecked_mut($n) = TypeId::of::<$t>();
+                        }
+                        count = $n + 1;
+                    }
+                });+
+                count
             }
         }
 
         impl<$($t: 'static),+> TypeIter for ($(&$t),+,) {
-            unsafe fn iter<F: FnMut(GearId, Self)>(slices: &[*mut u8], count: usize, mut f: F) {
+            unsafe fn iter<FI: FnMut(GearId, Self)>(slices: &[*mut u8], count: usize, mut f: FI) {
                 for i in 0..count {
                     f(*(*slices.get_unchecked(0) as *const GearId).add(i),
                       ($(&*(*slices.get_unchecked($n + 1) as *mut $t).add(i)),+,));
@@ -45,13 +65,22 @@
         }
 
         impl<$($t: 'static),+> TypeTuple for ($(&mut $t),+,) {
-            fn get_types(types: &mut Vec<TypeId>) {
-                $(types.push(TypeId::of::<$t>()));+
+            fn get_types(types: &mut [TypeId; MAX_TYPES]) -> usize {
+                let mut count = 0;
+                $({
+                    if MAX_TYPES > $n {
+                        unsafe {
+                            *types.get_unchecked_mut($n) = TypeId::of::<$t>();
+                        }
+                        count = $n + 1;
+                    }
+                });+
+                count
             }
         }
 
         impl<$($t: 'static),+> TypeIter for ($(&mut $t),+,) {
-            unsafe fn iter<F: FnMut(GearId, Self)>(slices: &[*mut u8], count: usize, mut f: F) {
+            unsafe fn iter<FI: FnMut(GearId, Self)>(slices: &[*mut u8], count: usize, mut f: FI) {
                 for i in 0..count {
                     f(*(*slices.get_unchecked(0) as *const GearId).add(i),
                       ($(&mut *(*slices.get_unchecked($n + 1) as *mut $t).add(i)),+,));
@@ -66,6 +95,9 @@
 type_tuple_impl!(0: A, 1: B, 2: C);
 type_tuple_impl!(0: A, 1: B, 2: C, 3: D);
 type_tuple_impl!(0: A, 1: B, 2: C, 3: D, 4: E);
+type_tuple_impl!(0: A, 1: B, 2: C, 3: D, 4: E, 5: F);
+type_tuple_impl!(0: A, 1: B, 2: C, 3: D, 4: E, 5: F, 6: G);
+type_tuple_impl!(0: A, 1: B, 2: C, 3: D, 4: E, 5: F, 6: G, 7: H);
 
 const BLOCK_SIZE: usize = 32768;
 
@@ -140,14 +172,17 @@
                 .add(size_of::<GearId>() * max_elements as usize)
         };
 
-        for i in 0..element_sizes.len() {
-            if mask & (1 << i as u64) != 0 {
-                unsafe {
-                    address = address.add(address.align_offset(element_alignments[i] as usize));
-                    blocks[i] = Some(NonNull::new_unchecked(address));
-                    address = address.add(element_sizes[i] as usize * max_elements as usize)
-                };
-            }
+        let mut mask_bits = mask;
+        while mask_bits != 0 {
+            let i = mask_bits.trailing_zeros() as usize;
+
+            unsafe {
+                address = address.add(address.align_offset(element_alignments[i] as usize));
+                blocks[i] = Some(NonNull::new_unchecked(address));
+                address = address.add(element_sizes[i] as usize * max_elements as usize)
+            };
+
+            mask_bits &= mask_bits - 1;
         }
 
         Self {
@@ -159,6 +194,7 @@
         }
     }
 
+    #[inline]
     fn gear_ids(&self) -> &[GearId] {
         unsafe {
             slice::from_raw_parts(
@@ -168,6 +204,7 @@
         }
     }
 
+    #[inline]
     fn gear_ids_mut(&mut self) -> &mut [GearId] {
         unsafe {
             slice::from_raw_parts_mut(
@@ -177,6 +214,7 @@
         }
     }
 
+    #[inline]
     fn is_full(&self) -> bool {
         self.elements_count == self.max_elements
     }
@@ -218,6 +256,11 @@
     }
 
     #[inline]
+    fn without_type(&self, type_bit: u64) -> Self {
+        Self::new(self.type_mask & !type_bit, self.tag_mask)
+    }
+
+    #[inline]
     fn with_tag(&self, tag_bit: u64) -> Self {
         Self::new(self.type_mask, self.tag_mask | tag_bit)
     }
@@ -242,7 +285,7 @@
             block_masks: vec![],
             element_sizes: Box::new([0; 64]),
             element_alignments: Box::new([0; 64]),
-            lookup: vec![LookupEntry::default(); u16::max_value() as usize].into_boxed_slice(),
+            lookup: vec![LookupEntry::default(); u16::MAX as usize].into_boxed_slice(),
         }
     }
 
@@ -267,7 +310,7 @@
         debug_assert!(src_block_index != dest_block_index);
         let src_mask = self.block_masks[src_block_index as usize];
         let dest_mask = self.block_masks[dest_block_index as usize];
-        debug_assert!(src_mask.type_mask & dest_mask.type_mask == src_mask.type_mask);
+        debug_assert!(src_mask.type_mask & dest_mask.type_mask != 0);
 
         let src_block = &self.blocks[src_block_index as usize];
         let dest_block = &self.blocks[dest_block_index as usize];
@@ -275,32 +318,40 @@
         debug_assert!(!dest_block.is_full());
 
         let dest_index = dest_block.elements_count;
-        for i in 0..self.types.len() {
-            if src_mask.type_mask & (1 << i as u64) != 0 {
-                let size = self.element_sizes[i];
-                let src_ptr = src_block.component_blocks[i].unwrap().as_ptr();
-                let dest_ptr = dest_block.component_blocks[i].unwrap().as_ptr();
+
+        let mut type_mask = src_mask.type_mask;
+        while type_mask != 0 {
+            let i = type_mask.trailing_zeros() as usize;
+
+            let size = self.element_sizes[i];
+            let src_ptr = src_block.component_blocks[i].unwrap().as_ptr();
+            if let Some(dest_ptr) = dest_block.component_blocks[i] {
+                let dest_ptr = dest_ptr.as_ptr();
                 unsafe {
                     copy_nonoverlapping(
                         src_ptr.add((src_index * size) as usize),
                         dest_ptr.add((dest_index * size) as usize),
                         size as usize,
                     );
-                    if src_index < src_block.elements_count - 1 {
-                        copy_nonoverlapping(
-                            src_ptr.add((size * (src_block.elements_count - 1)) as usize),
-                            src_ptr.add((size * src_index) as usize),
-                            size as usize,
-                        );
-                    }
                 }
             }
+            unsafe {
+                if src_index < src_block.elements_count - 1 {
+                    copy_nonoverlapping(
+                        src_ptr.add((size * (src_block.elements_count - 1)) as usize),
+                        src_ptr.add((size * src_index) as usize),
+                        size as usize,
+                    );
+                }
+            }
+
+            type_mask &= type_mask - 1;
         }
 
         let src_block = &mut self.blocks[src_block_index as usize];
         let gear_id = src_block.gear_ids()[src_index as usize];
 
-        if src_index < src_block.elements_count - 1 {
+        if src_index + 1 < src_block.elements_count {
             let relocated_index = src_block.elements_count as usize - 1;
             let gear_ids = src_block.gear_ids_mut();
             let relocated_id = gear_ids[relocated_index];
@@ -460,16 +511,24 @@
 
     pub fn remove<T: 'static>(&mut self, gear_id: GearId) {
         if let Some(type_index) = self.get_type_index::<T>() {
+            let type_bit = 1 << type_index as u64;
             let entry = self.lookup[gear_id.get() as usize - 1];
+
             if let Some(index) = entry.index {
-                let mut dest_mask = self.block_masks[entry.block_index as usize];
-                dest_mask.type_mask &= !(1 << type_index as u64);
+                let mask = self.block_masks[entry.block_index as usize];
+                let new_mask = mask.without_type(type_bit);
 
-                if dest_mask.type_mask == 0 {
-                    self.remove_from_block(entry.block_index, index.get() - 1);
-                } else {
-                    let dest_block_index = self.ensure_block(dest_mask);
-                    self.move_between_blocks(entry.block_index, index.get() - 1, dest_block_index);
+                if new_mask != mask {
+                    if new_mask.type_mask == 0 {
+                        self.remove_from_block(entry.block_index, index.get() - 1);
+                    } else {
+                        let dest_block_index = self.ensure_block(new_mask);
+                        self.move_between_blocks(
+                            entry.block_index,
+                            index.get() - 1,
+                            dest_block_index,
+                        );
+                    }
                 }
             }
         } else {
@@ -486,7 +545,7 @@
 
     pub fn register<T: 'static>(&mut self) {
         debug_assert!(!std::mem::needs_drop::<T>());
-        debug_assert!(size_of::<T>() <= u16::max_value() as usize);
+        debug_assert!(size_of::<T>() <= u16::MAX as usize);
 
         let id = TypeId::of::<T>();
         if size_of::<T>() == 0 {
@@ -511,7 +570,7 @@
         type_indices: &[i8],
         mut f: F,
     ) {
-        let mut slices = vec![null_mut(); type_indices.len() + 1];
+        let mut slices = [null_mut(); MAX_TYPES + 1];
 
         for (block_index, mask) in self.block_masks.iter().enumerate() {
             if mask.type_mask & type_selector == type_selector
@@ -527,19 +586,36 @@
                 }
 
                 unsafe {
-                    T::iter(&slices[..], block.elements_count as usize, |id, x| f(id, x));
+                    T::iter(
+                        &slices[0..=type_indices.len()],
+                        block.elements_count as usize,
+                        |id, x| f(id, x),
+                    );
                 }
             }
         }
     }
 
+    pub fn get<T: 'static>(&self, gear_id: GearId) -> Option<&T> {
+        let entry = self.lookup[gear_id.get() as usize - 1];
+        match (entry.index, self.get_type_index::<T>()) {
+            (Some(index), Some(type_index)) => {
+                let block = &self.blocks[entry.block_index as usize];
+                block.component_blocks[type_index].map(|ptr| unsafe {
+                    &*(ptr.as_ptr() as *const T).add(index.get() as usize - 1)
+                })
+            }
+            _ => None,
+        }
+    }
+
     pub fn iter<T: TypeIter + 'static>(&mut self) -> DataIterator<T> {
-        let mut arg_types = Vec::with_capacity(64);
-        T::get_types(&mut arg_types);
-        let mut type_indices = vec![-1i8; arg_types.len()];
+        let mut arg_types: [TypeId; MAX_TYPES] = unsafe { MaybeUninit::uninit().assume_init() };
+        let types_count = T::get_types(&mut arg_types);
+        let mut type_indices = [-1; MAX_TYPES];
         let mut selector = 0u64;
 
-        for (arg_index, type_id) in arg_types.iter().enumerate() {
+        for (arg_index, type_id) in arg_types[0..types_count].iter().enumerate() {
             match self.types.iter().position(|t| t == type_id) {
                 Some(i) if selector & (1 << i as u64) != 0 => panic!("Duplicate type"),
                 Some(i) => {
@@ -556,7 +632,7 @@
 pub struct DataIterator<'a, T> {
     data: &'a mut GearDataManager,
     types: u64,
-    type_indices: Vec<i8>,
+    type_indices: [i8; MAX_TYPES],
     tags: u64,
     phantom_types: PhantomData<T>,
 }
@@ -565,7 +641,7 @@
     fn new(
         data: &'a mut GearDataManager,
         types: u64,
-        type_indices: Vec<i8>,
+        type_indices: [i8; MAX_TYPES],
     ) -> DataIterator<'a, T> {
         Self {
             data,
@@ -577,12 +653,12 @@
     }
 
     pub fn with_tags<U: TypeTuple + 'static>(self) -> Self {
-        let mut tag_types = Vec::with_capacity(64);
-        U::get_types(&mut tag_types);
+        let mut tag_types: [TypeId; MAX_TYPES] = unsafe { MaybeUninit::uninit().assume_init() };
+        let tags_count = U::get_types(&mut tag_types);
         let mut tags = 0;
 
         for (i, tag) in self.data.tags.iter().enumerate() {
-            if tag_types.contains(tag) {
+            if tag_types[0..tags_count].contains(tag) {
                 tags |= 1 << i as u64;
             }
         }
@@ -596,8 +672,13 @@
 
     #[inline]
     pub fn run_id<F: FnMut(GearId, T)>(&mut self, f: F) {
+        let types_count = self
+            .type_indices
+            .iter()
+            .position(|i| *i == -1)
+            .unwrap_or(self.type_indices.len());
         self.data
-            .run_impl(self.types, self.tags, &self.type_indices, f);
+            .run_impl(self.types, self.tags, &self.type_indices[0..types_count], f);
     }
 }
 
@@ -606,7 +687,12 @@
     use super::{super::common::GearId, GearDataManager};
 
     #[derive(Clone)]
-    struct Datum {
+    struct DatumA {
+        value: u32,
+    }
+
+    #[derive(Clone)]
+    struct DatumB {
         value: u32,
     }
 
@@ -614,48 +700,93 @@
     struct Tag;
 
     #[test]
+    fn direct_access() {
+        let mut manager = GearDataManager::new();
+        manager.register::<DatumA>();
+        for i in 1..=5 {
+            manager.add(GearId::new(i as u16).unwrap(), &DatumA { value: i * i });
+        }
+
+        for i in 1..=5 {
+            assert_eq!(
+                manager
+                    .get::<DatumA>(GearId::new(i as u16).unwrap())
+                    .unwrap()
+                    .value,
+                i * i
+            );
+        }
+    }
+
+    #[test]
     fn single_component_iteration() {
         let mut manager = GearDataManager::new();
-        manager.register::<Datum>();
+        manager.register::<DatumA>();
+
         for i in 1..=5 {
-            manager.add(GearId::new(i as u16).unwrap(), &Datum { value: i });
+            manager.add(GearId::new(i as u16).unwrap(), &DatumA { value: i });
         }
 
         let mut sum = 0;
-        manager.iter().run(|(d,): (&Datum,)| sum += d.value);
+        manager.iter().run(|(d,): (&DatumA,)| sum += d.value);
         assert_eq!(sum, 15);
 
-        manager.iter().run(|(d,): (&mut Datum,)| d.value += 1);
-        manager.iter().run(|(d,): (&Datum,)| sum += d.value);
+        manager.iter().run(|(d,): (&mut DatumA,)| d.value += 1);
+        manager.iter().run(|(d,): (&DatumA,)| sum += d.value);
         assert_eq!(sum, 35);
     }
 
     #[test]
     fn tagged_component_iteration() {
         let mut manager = GearDataManager::new();
-        manager.register::<Datum>();
+        manager.register::<DatumA>();
         manager.register::<Tag>();
-        for i in 1..=10 {
-            let gear_id = GearId::new(i as u16).unwrap();
-            manager.add(gear_id, &Datum { value: i });
-        }
 
         for i in 1..=10 {
             let gear_id = GearId::new(i as u16).unwrap();
-            if i & 1 == 0 {
-                manager.add_tag::<Tag>(gear_id);
-            }
+            manager.add(gear_id, &DatumA { value: i });
+        }
+
+        for i in (2..=10).step_by(2) {
+            let gear_id = GearId::new(i as u16).unwrap();
+            manager.add_tag::<Tag>(gear_id);
         }
 
         let mut sum = 0;
-        manager.iter().run(|(d,): (&Datum,)| sum += d.value);
+        manager.iter().run(|(d,): (&DatumA,)| sum += d.value);
         assert_eq!(sum, 55);
 
         let mut tag_sum = 0;
         manager
             .iter()
             .with_tags::<&Tag>()
-            .run(|(d,): (&Datum,)| tag_sum += d.value);
+            .run(|(d,): (&DatumA,)| tag_sum += d.value);
         assert_eq!(tag_sum, 30);
     }
+
+    #[test]
+    fn removal() {
+        let mut manager = GearDataManager::new();
+        manager.register::<DatumA>();
+        manager.register::<DatumB>();
+
+        for i in 1..=10 {
+            let gear_id = GearId::new(i as u16).unwrap();
+            manager.add(gear_id, &DatumA { value: i });
+            manager.add(gear_id, &DatumB { value: i });
+        }
+
+        for i in (1..=10).step_by(2) {
+            let gear_id = GearId::new(i as u16).unwrap();
+            manager.remove::<DatumA>(gear_id);
+        }
+
+        let mut sum_a = 0;
+        manager.iter().run(|(d,): (&DatumA,)| sum_a += d.value);
+        assert_eq!(sum_a, 30);
+
+        let mut sum_b = 0;
+        manager.iter().run(|(d,): (&DatumB,)| sum_b += d.value);
+        assert_eq!(sum_b, 55);
+    }
 }
--- a/rust/hwphysics/src/grid.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hwphysics/src/grid.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,26 +1,36 @@
 use crate::{
-    collision::{fppoint_round, CircleBounds, DetectedCollisions},
+    collision::{CircleBounds, DetectedCollisions},
     common::GearId,
 };
 
 use fpnum::FPPoint;
-use integral_geometry::{GridIndex, Point, Size};
+use integral_geometry::{GridIndex, Point, PotSize};
 
 struct GridBin {
-    static_refs: Vec<GearId>,
-    static_entries: Vec<CircleBounds>,
-
-    dynamic_refs: Vec<GearId>,
-    dynamic_entries: Vec<CircleBounds>,
+    refs: Vec<GearId>,
+    entries: Vec<CircleBounds>,
 }
 
 impl GridBin {
     fn new() -> Self {
         Self {
-            static_refs: vec![],
-            static_entries: vec![],
-            dynamic_refs: vec![],
-            dynamic_entries: vec![],
+            refs: vec![],
+            entries: vec![],
+        }
+    }
+
+    fn add(&mut self, gear_id: GearId, bounds: &CircleBounds) {
+        self.refs.push(gear_id);
+        self.entries.push(*bounds);
+    }
+
+    fn remove(&mut self, gear_id: GearId) -> bool {
+        if let Some(pos) = self.refs.iter().position(|id| *id == gear_id) {
+            self.refs.swap_remove(pos);
+            self.entries.swap_remove(pos);
+            true
+        } else {
+            false
         }
     }
 }
@@ -29,114 +39,72 @@
 
 pub struct Grid {
     bins: Vec<GridBin>,
-    space_size: Size,
-    bins_count: Size,
+    space_size: PotSize,
+    bins_count: PotSize,
     index: GridIndex,
 }
 
 impl Grid {
-    pub fn new(size: Size) -> Self {
-        assert!(size.is_power_of_two());
-        let bins_count = Size::new(size.width / GRID_BIN_SIZE, size.height / GRID_BIN_SIZE);
+    pub fn new(size: PotSize) -> Self {
+        let bins_count =
+            PotSize::new(size.width() / GRID_BIN_SIZE, size.height() / GRID_BIN_SIZE).unwrap();
 
         Self {
             bins: (0..bins_count.area()).map(|_| GridBin::new()).collect(),
             space_size: size,
             bins_count,
-            index: Size::square(GRID_BIN_SIZE).to_grid_index(),
+            index: PotSize::square(GRID_BIN_SIZE).unwrap().to_grid_index(),
         }
     }
 
+    fn linear_bin_index(&self, index: Point) -> usize {
+        self.bins_count
+            .linear_index(index.x as usize, index.y as usize)
+    }
+
     fn bin_index(&self, position: &FPPoint) -> Point {
-        self.index.map(fppoint_round(position))
+        self.index.map(Point::from_fppoint(position))
     }
 
     fn get_bin(&mut self, index: Point) -> &mut GridBin {
-        &mut self.bins[index.x as usize * self.bins_count.width + index.y as usize]
+        let index = self.linear_bin_index(index);
+        &mut self.bins[index]
+    }
+
+    fn try_get_bin(&mut self, index: Point) -> Option<&mut GridBin> {
+        let index = self.linear_bin_index(index);
+        self.bins.get_mut(index)
     }
 
     fn lookup_bin(&mut self, position: &FPPoint) -> &mut GridBin {
         self.get_bin(self.bin_index(position))
     }
 
-    pub fn insert_static(&mut self, gear_id: GearId, bounds: &CircleBounds) {
-        let bin = self.lookup_bin(&bounds.center);
-        bin.static_refs.push(gear_id);
-        bin.static_entries.push(*bounds)
-    }
-
-    pub fn insert_dynamic(&mut self, gear_id: GearId, bounds: &CircleBounds) {
-        let bin = self.lookup_bin(&bounds.center);
-        bin.dynamic_refs.push(gear_id);
-        bin.dynamic_entries.push(*bounds);
+    pub fn insert(&mut self, gear_id: GearId, bounds: &CircleBounds) {
+        self.lookup_bin(&bounds.center).add(gear_id, bounds);
     }
 
-    pub fn remove(&mut self, gear_id: GearId) {}
-
-    pub fn update_position(
-        &mut self,
-        gear_id: GearId,
-        old_position: &FPPoint,
-        new_position: &FPPoint,
-    ) {
-        let old_bin_index = self.bin_index(old_position);
-        let new_bin_index = self.bin_index(new_position);
-
-        let old_bin = self.lookup_bin(old_position);
-        if let Some(index) = old_bin.dynamic_refs.iter().position(|id| *id == gear_id) {
-            if old_bin_index == new_bin_index {
-                old_bin.dynamic_entries[index].center = *new_position
-            } else {
-                let bounds = old_bin.dynamic_entries.swap_remove(index);
-                let new_bin = self.get_bin(new_bin_index);
+    fn remove_all(&mut self, gear_id: GearId) {
+        for bin in &mut self.bins {
+            if bin.remove(gear_id) {
+                break;
+            }
+        }
+    }
 
-                new_bin.dynamic_refs.push(gear_id);
-                new_bin.dynamic_entries.push(CircleBounds {
-                    center: *new_position,
-                    ..bounds
-                });
+    pub fn remove(&mut self, gear_id: GearId, bounds: Option<&CircleBounds>) {
+        if let Some(bounds) = bounds {
+            if !self.lookup_bin(&bounds.center).remove(gear_id) {
+                self.remove_all(gear_id);
             }
-        } else if let Some(index) = old_bin.static_refs.iter().position(|id| *id == gear_id) {
-            let bounds = old_bin.static_entries.swap_remove(index);
-            old_bin.static_refs.swap_remove(index);
-
-            let new_bin = if old_bin_index == new_bin_index {
-                old_bin
-            } else {
-                self.get_bin(new_bin_index)
-            };
-
-            new_bin.dynamic_refs.push(gear_id);
-            new_bin.dynamic_entries.push(CircleBounds {
-                center: *new_position,
-                ..bounds
-            });
+        } else {
+            self.remove_all(gear_id);
         }
     }
 
     pub fn check_collisions(&self, collisions: &mut DetectedCollisions) {
         for bin in &self.bins {
-            for (index, bounds) in bin.dynamic_entries.iter().enumerate() {
-                for (other_index, other) in bin.dynamic_entries.iter().enumerate().skip(index + 1) {
-                    if bounds.intersects(other) && bounds != other {
-                        collisions.push(
-                            bin.dynamic_refs[index],
-                            Some(bin.dynamic_refs[other_index]),
-                            &((bounds.center + other.center) / 2),
-                        )
-                    }
-                }
-
-                for (other_index, other) in bin.static_entries.iter().enumerate() {
-                    if bounds.intersects(other) {
-                        collisions.push(
-                            bin.dynamic_refs[index],
-                            Some(bin.static_refs[other_index]),
-                            &((bounds.center + other.center) / 2),
-                        )
-                    }
-                }
-            }
+            for (index, bounds) in bin.entries.iter().enumerate() {}
         }
     }
 }
--- a/rust/hwphysics/src/lib.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hwphysics/src/lib.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,19 +1,20 @@
 pub mod collision;
 pub mod common;
-mod data;
+pub mod data;
 mod grid;
 pub mod physics;
-pub mod time;
 
-use integral_geometry::Size;
+use integral_geometry::PotSize;
 use land2d::Land2D;
+use std::any::{Any, TypeId};
 
+use crate::collision::CollisionData;
+use crate::physics::VelocityData;
 use crate::{
     collision::CollisionProcessor,
     common::{GearAllocator, GearId, Millis},
-    data::GearDataManager,
+    data::{DataIterator, GearDataManager, TypeIter},
     physics::PhysicsProcessor,
-    time::TimeProcessor,
 };
 
 pub struct World {
@@ -21,11 +22,10 @@
     data: GearDataManager,
     physics: PhysicsProcessor,
     collision: CollisionProcessor,
-    time: TimeProcessor,
 }
 
 impl World {
-    pub fn new(world_size: Size) -> Self {
+    pub fn new(world_size: PotSize) -> Self {
         let mut data = GearDataManager::new();
         PhysicsProcessor::register_components(&mut data);
         CollisionProcessor::register_components(&mut data);
@@ -35,7 +35,6 @@
             allocator: GearAllocator::new(),
             physics: PhysicsProcessor::new(),
             collision: CollisionProcessor::new(world_size),
-            time: TimeProcessor::new(),
         }
     }
 
@@ -48,24 +47,33 @@
     pub fn delete_gear(&mut self, gear_id: GearId) {
         self.data.remove_all(gear_id);
         self.collision.remove(gear_id);
-        self.time.cancel(gear_id);
         self.allocator.free(gear_id)
     }
 
     pub fn step(&mut self, time_step: Millis, land: &Land2D<u32>) {
-        let updates = if time_step == Millis::new(1) {
-            self.physics.process_single_tick(&mut self.data)
-        } else {
-            self.physics
-                .process_multiple_ticks(&mut self.data, time_step)
-        };
+        let updates = self.physics.process(&mut self.data, time_step);
         let collisions = self.collision.process(land, &updates);
-        let events = self.time.process(time_step);
+    }
+
+    pub fn add_gear_data<T: Clone + 'static>(&mut self, gear_id: GearId, data: &T) {
+        self.data.add(gear_id, data);
+        if TypeId::of::<T>() == TypeId::of::<VelocityData>() {
+            self.collision.remove(gear_id);
+        }
+    }
+
+    pub fn remove_gear_data<T: Clone + 'static>(&mut self, gear_id: GearId) {
+        self.data.remove::<T>(gear_id);
+        if TypeId::of::<T>() == TypeId::of::<VelocityData>() {
+            if let Some(collision_data) = self.data.get::<CollisionData>(gear_id) {
+                self.collision.add(gear_id, *collision_data);
+            }
+        }
     }
 
     #[inline]
-    pub fn add_gear_data<T: Clone + 'static>(&mut self, gear_id: GearId, data: &T) {
-        self.data.add(gear_id, data);
+    pub fn iter_data<T: TypeIter + 'static>(&mut self) -> DataIterator<T> {
+        self.data.iter()
     }
 }
 
@@ -78,12 +86,12 @@
         World,
     };
     use fpnum::{fp, FPNum, FPPoint};
-    use integral_geometry::Size;
+    use integral_geometry::{PotSize, Size};
     use land2d::Land2D;
 
     #[test]
     fn data_flow() {
-        let world_size = Size::new(2048, 2048);
+        let world_size = PotSize::new(2048, 2048).unwrap();
 
         let mut world = World::new(world_size);
         let gear_id = world.new_gear().unwrap();
@@ -101,7 +109,10 @@
             },
         );
 
-        let land = Land2D::new(Size::new(world_size.width - 2, world_size.height - 2), 0);
+        let land = Land2D::new(
+            Size::new(world_size.width() - 2, world_size.height() - 2),
+            0,
+        );
 
         world.step(Millis::new(1), &land);
     }
--- a/rust/hwphysics/src/physics.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hwphysics/src/physics.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -67,36 +67,24 @@
         }
     }
 
-    pub fn process_single_tick(&mut self, data: &mut GearDataManager) -> &PositionUpdates {
-        let gravity = FPPoint::unit_y() * self.gravity;
-        let wind = FPPoint::unit_x() * self.wind;
-
-        self.position_updates.clear();
-
-        data.iter()
-            .with_tags::<&AffectedByWind>()
-            .run(|(vel,): (&mut VelocityData,)| {
-                vel.0 += wind;
-            });
-
-        data.iter().run_id(
-            |gear_id, (pos, vel): (&mut PositionData, &mut VelocityData)| {
-                let old_pos = pos.0;
-                vel.0 += gravity;
-                pos.0 += vel.0;
-                self.position_updates.push(gear_id, &old_pos, &pos.0)
-            },
-        );
-
-        &self.position_updates
+    pub fn process(&mut self, data: &mut GearDataManager, time_step: Millis) -> &PositionUpdates {
+        if time_step == Millis::new(1) {
+            self.process_impl::<true>(data, time_step)
+        } else {
+            self.process_impl::<false>(data, time_step)
+        }
     }
 
-    pub fn process_multiple_ticks(
+    fn process_impl<const SINGLE_TICK: bool>(
         &mut self,
         data: &mut GearDataManager,
         time_step: Millis,
     ) -> &PositionUpdates {
-        let fp_step = time_step.to_fixed();
+        let fp_step = if SINGLE_TICK {
+            fp!(1)
+        } else {
+            time_step.to_fixed()
+        };
         let gravity = FPPoint::unit_y() * (self.gravity * fp_step);
         let wind = FPPoint::unit_x() * (self.wind * fp_step);
 
@@ -112,7 +100,7 @@
             |gear_id, (pos, vel): (&mut PositionData, &mut VelocityData)| {
                 let old_pos = pos.0;
                 vel.0 += gravity;
-                pos.0 += vel.0 * fp_step;
+                pos.0 += if SINGLE_TICK { vel.0 } else { vel.0 * fp_step };
                 self.position_updates.push(gear_id, &old_pos, &pos.0)
             },
         );
--- a/rust/hwphysics/src/time.rs	Sun Mar 24 14:19:02 2024 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,97 +0,0 @@
-use crate::common::{GearId, Millis};
-use std::{
-    cmp::{Eq, Ord, Ordering, PartialEq, PartialOrd},
-    collections::BinaryHeap,
-};
-
-pub type EventId = u16;
-
-struct TimeEvent {
-    time: Millis,
-    gear_id: GearId,
-    event_id: EventId,
-}
-
-impl PartialOrd for TimeEvent {
-    #[inline]
-    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
-        self.time.partial_cmp(&other.time)
-    }
-}
-
-impl PartialEq for TimeEvent {
-    #[inline]
-    fn eq(&self, other: &Self) -> bool {
-        self.time.eq(&other.time)
-    }
-}
-
-impl Ord for TimeEvent {
-    #[inline]
-    fn cmp(&self, other: &Self) -> Ordering {
-        self.time.cmp(&other.time)
-    }
-}
-
-impl Eq for TimeEvent {}
-
-pub struct OccurredEvents {
-    events: Vec<(GearId, EventId)>,
-}
-
-impl OccurredEvents {
-    fn new() -> Self {
-        Self { events: vec![] }
-    }
-
-    fn clear(&mut self) {
-        self.events.clear()
-    }
-}
-
-pub struct TimeProcessor {
-    current_event_id: EventId,
-    current_time: Millis,
-    events: BinaryHeap<TimeEvent>,
-    timeouts: OccurredEvents,
-}
-
-impl TimeProcessor {
-    pub fn new() -> Self {
-        Self {
-            current_event_id: 0,
-            current_time: Millis::new(0),
-            events: BinaryHeap::with_capacity(1024),
-            timeouts: OccurredEvents::new(),
-        }
-    }
-
-    pub fn register(&mut self, gear_id: GearId, timeout: Millis) -> EventId {
-        let event_id = self.current_event_id;
-        self.current_event_id.wrapping_add(1);
-        let event = TimeEvent {
-            time: self.current_time + timeout,
-            gear_id,
-            event_id,
-        };
-        self.events.push(event);
-        event_id
-    }
-
-    pub fn cancel(&mut self, gear_id: GearId) {}
-
-    pub fn process(&mut self, time_step: Millis) -> &OccurredEvents {
-        self.timeouts.clear();
-        self.current_time = self.current_time + time_step;
-        while self
-            .events
-            .peek()
-            .filter(|e| e.time <= self.current_time)
-            .is_some()
-        {
-            let event = self.events.pop().unwrap();
-            self.timeouts.events.push((event.gear_id, event.event_id))
-        }
-        &self.timeouts
-    }
-}
--- a/rust/hwrunner/Cargo.toml	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hwrunner/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -5,8 +5,10 @@
 edition = "2018"
 
 [dependencies]
-glutin = "0.20"
+glutin = "0.26"
 gl = "0.11"
+futures = "0.3"
+wgpu = "0.6"
 integral-geometry = { path = "../integral-geometry" }
 
 lib-hedgewars-engine = { path = "../lib-hedgewars-engine" }
--- a/rust/hwrunner/src/main.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/hwrunner/src/main.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,74 +1,231 @@
-use glutin::{
-    dpi, ContextTrait, DeviceEvent, ElementState, Event, EventsLoop, GlProfile, GlRequest,
-    MouseButton, MouseScrollDelta, WindowEvent, WindowedContext,
-};
-
-use hedgewars_engine::instance::EngineInstance;
-
-use integral_geometry::Point;
 use std::time::Duration;
 
-fn init(event_loop: &EventsLoop, size: dpi::LogicalSize) -> WindowedContext {
-    use glutin::{ContextBuilder, WindowBuilder};
+use futures::executor::block_on;
+use glutin::event_loop::ControlFlow;
+use glutin::{
+    dpi,
+    event::{DeviceEvent, ElementState, Event, MouseButton, MouseScrollDelta, WindowEvent},
+    event_loop::EventLoop,
+    window::{Window, WindowBuilder},
+    ContextWrapper, GlProfile, GlRequest, NotCurrent, PossiblyCurrent, WindowedContext,
+};
+use hedgewars_engine::instance::EngineInstance;
+use integral_geometry::Point;
+use std::{
+    error::Error,
+    path::Path,
+};
+use wgpu::{
+    Adapter, BackendBit, Color, CommandEncoderDescriptor, Device, DeviceDescriptor, Features,
+    LoadOp, Operations, PowerPreference, PresentMode, Queue, RenderPassColorAttachmentDescriptor,
+    RenderPassDescriptor, RequestAdapterOptions, Surface, SwapChain, SwapChainDescriptor,
+    TextureFormat, TextureUsage,
+};
+
+type HwGlRendererContext = ContextWrapper<PossiblyCurrent, Window>;
+
+struct HwWgpuRenderingContext {
+    window: Window,
+    surface: Surface,
+    adapter: Adapter,
+    device: Device,
+    queue: Queue,
+    swap_chain: SwapChain,
+}
+
+enum HwRendererContext {
+    Gl(HwGlRendererContext),
+    Wgpu(HwWgpuRenderingContext),
+}
+
+struct ErrorStub;
 
-    let window = WindowBuilder::new()
-        .with_title("hwengine")
-        .with_dimensions(size);
+impl<T: Error> From<T> for ErrorStub {
+    fn from(_: T) -> Self {
+        ErrorStub
+    }
+}
+
+impl HwRendererContext {
+    fn get_framebuffer_size(window: &Window) -> (u32, u32) {
+        window.inner_size().into()
+    }
 
-    let cxt = ContextBuilder::new()
-        .with_gl(GlRequest::Latest)
-        .with_gl_profile(GlProfile::Core)
-        .build_windowed(window, &event_loop)
-        .ok()
+    fn create_wpgu_swap_chain(window: &Window, surface: &Surface, device: &Device) -> SwapChain {
+        let (width, height) = Self::get_framebuffer_size(window);
+        device.create_swap_chain(
+            &surface,
+            &SwapChainDescriptor {
+                usage: TextureUsage::OUTPUT_ATTACHMENT,
+                format: TextureFormat::Bgra8Unorm,
+                width,
+                height,
+                present_mode: PresentMode::Fifo,
+            },
+        )
+    }
+
+    fn init_wgpu(
+        event_loop: &EventLoop<()>,
+        size: dpi::LogicalSize<f64>,
+    ) -> HwWgpuRenderingContext {
+        let builder = WindowBuilder::new()
+            .with_title("hwengine")
+            .with_inner_size(size);
+        let window = builder.build(event_loop).unwrap();
+
+        let instance = wgpu::Instance::new(BackendBit::PRIMARY);
+
+        let surface = unsafe { instance.create_surface(&window) };
+
+        let adapter = block_on(instance.request_adapter(&RequestAdapterOptions {
+            power_preference: PowerPreference::HighPerformance,
+            compatible_surface: Some(&surface),
+        }))
         .unwrap();
 
-    unsafe {
-        cxt.make_current().unwrap();
-        gl::load_with(|ptr| cxt.get_proc_address(ptr) as *const _);
+        let (device, queue) = block_on(adapter.request_device(&Default::default(), None)).unwrap();
+
+        let swap_chain = Self::create_wpgu_swap_chain(&window, &surface, &device);
 
-        if let Some(sz) = cxt.get_inner_size() {
-            let phys = sz.to_physical(cxt.get_hidpi_factor());
-
-            gl::Viewport(0, 0, phys.width as i32, phys.height as i32);
+        HwWgpuRenderingContext {
+            window,
+            surface,
+            adapter,
+            device,
+            queue,
+            swap_chain,
         }
     }
 
-    cxt
+    fn init_gl(event_loop: &EventLoop<()>, size: dpi::LogicalSize<f64>) -> HwGlRendererContext {
+        use glutin::ContextBuilder;
+
+        let builder = WindowBuilder::new()
+            .with_title("hwengine")
+            .with_inner_size(size);
+
+        let context = ContextBuilder::new()
+            .with_gl(GlRequest::Latest)
+            .with_gl_profile(GlProfile::Core)
+            .build_windowed(builder, &event_loop)
+            .ok()
+            .unwrap();
+
+        unsafe {
+            let wrapper = context.make_current().unwrap();
+            gl::load_with(|ptr| wrapper.get_proc_address(ptr) as *const _);
+
+            let (width, height) = Self::get_framebuffer_size(wrapper.window());
+            gl::Viewport(0, 0, width as i32, height as i32);
+            wrapper
+        }
+    }
+
+    fn new(event_loop: &EventLoop<()>, size: dpi::LogicalSize<f64>, use_wgpu: bool) -> Self {
+        if use_wgpu {
+            Self::Wgpu(Self::init_wgpu(event_loop, size))
+        } else {
+            Self::Gl(Self::init_gl(event_loop, size))
+        }
+    }
+
+    pub fn window(&self) -> &Window {
+        match self {
+            HwRendererContext::Gl(gl) => &gl.window(),
+            HwRendererContext::Wgpu(wgpu) => &wgpu.window,
+        }
+    }
+
+    pub fn update(&mut self) {
+        match self {
+            HwRendererContext::Gl(context) => unsafe {
+                let (width, height) = Self::get_framebuffer_size(&context.window());
+                gl::Viewport(0, 0, width as i32, height as i32);
+            },
+            HwRendererContext::Wgpu(context) => {
+                context.swap_chain = Self::create_wpgu_swap_chain(
+                    &context.window,
+                    &context.surface,
+                    &context.device,
+                );
+            }
+        }
+    }
+
+    pub fn present(&mut self) -> Result<(), ErrorStub> {
+        match self {
+            HwRendererContext::Gl(context) => context.swap_buffers()?,
+            HwRendererContext::Wgpu(context) => {
+                let frame_view = &context.swap_chain.get_current_frame()?.output.view;
+
+                let mut encoder =
+                    context
+                        .device
+                        .create_command_encoder(&CommandEncoderDescriptor {
+                            label: Some("Main encoder"),
+                        });
+                encoder.begin_render_pass(&RenderPassDescriptor {
+                    color_attachments: &[RenderPassColorAttachmentDescriptor {
+                        attachment: &frame_view,
+                        resolve_target: None,
+                        ops: Operations {
+                            load: LoadOp::Clear(Color {
+                                r: 0.7,
+                                g: 0.4,
+                                b: 0.2,
+                                a: 1.0,
+                            }),
+                            store: false,
+                        },
+                    }],
+                    depth_stencil_attachment: None,
+                });
+                let buffer = encoder.finish();
+                context.queue.submit(std::iter::once(buffer));
+            }
+        }
+        Ok(())
+    }
 }
 
 fn main() {
-    let mut event_loop = EventsLoop::new();
+    let use_wgpu = false;
+    let mut event_loop = EventLoop::<()>::new();
     let (w, h) = (1024.0, 768.0);
-    let window = init(&event_loop, dpi::LogicalSize::new(w, h));
+
+    let mut context = HwRendererContext::new(&event_loop, dpi::LogicalSize::new(w, h), use_wgpu);
 
-    let mut engine = EngineInstance::new();
-    engine.world.create_renderer(w as u16, h as u16);
+    let mut engine = EngineInstance::new(Path::new("../../share/hedgewars/Data"));
+    if !use_wgpu {
+        engine.world.create_renderer(w as u16, h as u16);
+    }
 
     let mut dragging = false;
 
     use std::time::Instant;
 
     let mut now = Instant::now();
-    let mut update = Instant::now();
+    let mut update_time = Instant::now();
+    let mut render_time = Instant::now();
 
-    let mut is_running = true;
-    while is_running {
-        let curr = Instant::now();
-        let delta = curr - now;
-        now = curr;
-        let ms = delta.as_secs() as f64 * 1000.0 + delta.subsec_millis() as f64;
-        window.set_title(&format!("hwengine {:.3}ms", ms));
+    let current_time = Instant::now();
+    let delta = current_time - now;
+    now = current_time;
+    let ms = delta.as_secs() as f64 * 1000.0 + delta.subsec_millis() as f64;
+    context.window().set_title(&format!("hwengine {:.3}ms", ms));
 
-        if update.elapsed() > Duration::from_millis(10) {
-            update = curr;
-            engine.world.step()
-        }
-
-        event_loop.poll_events(|event| match event {
+    event_loop.run(move |event, _, control_flow| {
+        *control_flow = ControlFlow::Poll;
+        match event {
             Event::WindowEvent { event, .. } => match event {
                 WindowEvent::CloseRequested => {
-                    is_running = false;
+                    *control_flow = ControlFlow::Exit;
                 }
+                WindowEvent::Resized(_) | WindowEvent::ScaleFactorChanged { .. } => {
+                    context.update()
+                }
+
                 WindowEvent::MouseInput { button, state, .. } => {
                     if let MouseButton::Right = button {
                         dragging = state == ElementState::Pressed;
@@ -78,10 +235,7 @@
                 WindowEvent::MouseWheel { delta, .. } => {
                     let zoom_change = match delta {
                         MouseScrollDelta::LineDelta(x, y) => y as f32 * 0.1f32,
-                        MouseScrollDelta::PixelDelta(delta) => {
-                            let physical = delta.to_physical(window.get_hidpi_factor());
-                            physical.y as f32 * 0.1f32
-                        }
+                        MouseScrollDelta::PixelDelta(delta) => delta.y as f32 * 0.1f32,
                     };
                     engine.world.move_camera(Point::ZERO, zoom_change);
                 }
@@ -97,12 +251,23 @@
                 }
                 _ => {}
             },
+
             _ => (),
-        });
+        }
 
-        unsafe { window.make_current().unwrap() };
+        let current_time = Instant::now();
 
-        engine.render();
-        window.swap_buffers().unwrap();
-    }
+        if update_time.elapsed() > Duration::from_millis(10) {
+            update_time = current_time;
+            engine.world.step()
+        }
+
+        if render_time.elapsed() > Duration::from_millis(16) {
+            render_time = current_time;
+            if !use_wgpu {
+                engine.render();
+            }
+            context.present().ok().unwrap();
+        }
+    });
 }
--- a/rust/integral-geometry/src/lib.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/integral-geometry/src/lib.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -24,12 +24,12 @@
     }
 
     #[inline]
-    pub fn signum(self) -> Self {
+    pub const fn signum(self) -> Self {
         Self::new(self.x.signum(), self.y.signum())
     }
 
     #[inline]
-    pub fn abs(self) -> Self {
+    pub const fn abs(self) -> Self {
         Self::new(self.x.abs(), self.y.abs())
     }
 
@@ -59,7 +59,7 @@
 
     #[inline]
     pub const fn rotate90(self) -> Self {
-        Point::new(self.y, -self.x)
+        Self::new(self.y, -self.x)
     }
 
     #[inline]
@@ -68,8 +68,8 @@
     }
 
     #[inline]
-    pub fn clamp(self, rect: &Rect) -> Point {
-        Point::new(rect.x_range().clamp(self.x), rect.y_range().clamp(self.y))
+    pub fn clamp(self, rect: &Rect) -> Self {
+        Self::new(rect.x_range().clamp(self.x), rect.y_range().clamp(self.y))
     }
 
     #[inline]
@@ -136,16 +136,21 @@
     }
 
     #[inline]
-    pub fn is_power_of_two(&self) -> bool {
+    pub const fn is_power_of_two(&self) -> bool {
         self.width.is_power_of_two() && self.height.is_power_of_two()
     }
 
     #[inline]
-    pub fn next_power_of_two(&self) -> Self {
-        Self {
-            width: self.width.next_power_of_two(),
-            height: self.height.next_power_of_two(),
-        }
+    pub const fn as_power_of_two(&self) -> Option<PotSize> {
+        PotSize::new(self.width, self.height)
+    }
+
+    #[inline]
+    pub const fn next_power_of_two(&self) -> PotSize {
+        PotSize::new_impl(
+            self.width.next_power_of_two(),
+            self.height.next_power_of_two(),
+        )
     }
 
     #[inline]
@@ -154,31 +159,107 @@
     }
 
     #[inline]
-    pub fn to_mask(&self) -> SizeMask {
-        SizeMask::new(*self)
-    }
-
-    #[inline]
     pub fn to_square(&self) -> Self {
         Self::square(max(self.width, self.height))
     }
 
-    pub fn to_grid_index(&self) -> GridIndex {
-        GridIndex::new(*self)
-    }
-
     #[inline]
-    pub fn contains(&self, other: Self) -> bool {
+    pub const fn contains(&self, other: Self) -> bool {
         self.width >= other.width && self.height >= other.height
     }
 
     #[inline]
     pub fn join(&self, other: Self) -> Self {
+        Self::new(max(self.width, other.width), max(self.height, other.height))
+    }
+}
+
+#[derive(PartialEq, Eq, Clone, Copy, Debug)]
+pub struct PotSize {
+    size: Size,
+}
+
+impl PotSize {
+    #[inline]
+    const fn new_impl(width: usize, height: usize) -> Self {
+        debug_assert!(width.is_power_of_two() && height.is_power_of_two());
         Self {
-            width: max(self.width, other.width),
-            height: max(self.height, other.height)
+            size: Size::new(width, height),
+        }
+    }
+
+    #[inline]
+    pub const fn new(width: usize, height: usize) -> Option<Self> {
+        if width.is_power_of_two() && height.is_power_of_two() {
+            Some(Self::new_impl(width, height))
+        } else {
+            None
+        }
+    }
+
+    pub const fn size(&self) -> Size {
+        self.size
+    }
+
+    pub const fn width(&self) -> usize {
+        self.size.width
+    }
+
+    pub const fn height(&self) -> usize {
+        self.size.height
+    }
+
+    #[inline]
+    pub const fn square(size: usize) -> Option<Self> {
+        if size.is_power_of_two() {
+            Some(Self::new_impl(size, size))
+        } else {
+            None
         }
     }
+
+    #[inline]
+    pub const fn area(&self) -> usize {
+        self.size.area()
+    }
+
+    #[inline]
+    pub const fn linear_index(&self, x: usize, y: usize) -> usize {
+        self.size.linear_index(x, y)
+    }
+
+    #[inline]
+    pub const fn transpose(&self) -> Self {
+        Self::new_impl(self.height(), self.width())
+    }
+
+    #[inline]
+    pub fn to_square(&self) -> Self {
+        let size = max(self.width(), self.height());
+        Self::new_impl(size, size)
+    }
+
+    #[inline]
+    pub const fn to_mask(&self) -> SizeMask {
+        SizeMask::new(*self)
+    }
+
+    pub const fn to_grid_index(&self) -> GridIndex {
+        GridIndex::new(*self)
+    }
+
+    #[inline]
+    pub const fn contains(&self, other: Self) -> bool {
+        self.size.contains(other.size)
+    }
+
+    #[inline]
+    pub fn join(&self, other: Self) -> Self {
+        Self::new_impl(
+            max(self.width(), other.width()),
+            max(self.height(), other.height()),
+        )
+    }
 }
 
 #[derive(PartialEq, Eq, Clone, Copy, Debug)]
@@ -188,13 +269,10 @@
 
 impl SizeMask {
     #[inline]
-    pub fn new(size: Size) -> Self {
-        debug_assert!(size.is_power_of_two());
-        let size = Size {
-            width: !(size.width - 1),
-            height: !(size.height - 1),
-        };
-        Self { size }
+    pub const fn new(size: PotSize) -> Self {
+        Self {
+            size: Size::new(!(size.width() - 1), !(size.height() - 1)),
+        }
     }
 
     #[inline]
@@ -211,6 +289,11 @@
     pub fn contains(&self, point: Point) -> bool {
         self.contains_x(point.x as usize) && self.contains_y(point.y as usize)
     }
+
+    #[inline]
+    pub const fn to_size(&self) -> PotSize {
+        PotSize::new_impl(!self.size.width + 1, !self.size.height + 1)
+    }
 }
 
 pub struct GridIndex {
@@ -218,16 +301,15 @@
 }
 
 impl GridIndex {
-    pub fn new(size: Size) -> Self {
-        assert!(size.is_power_of_two());
+    pub const fn new(size: PotSize) -> Self {
         let shift = Point::new(
-            size.width.trailing_zeros() as i32,
-            size.height.trailing_zeros() as i32,
+            size.width().trailing_zeros() as i32,
+            size.height().trailing_zeros() as i32,
         );
         Self { shift }
     }
 
-    pub fn map(&self, position: Point) -> Point {
+    pub const fn map(&self, position: Point) -> Point {
         Point::new(position.x >> self.shift.x, position.y >> self.shift.y)
     }
 }
@@ -324,7 +406,7 @@
     };
 
     #[inline]
-    pub fn new(top_left: Point, bottom_right: Point) -> Self {
+    pub const fn new(top_left: Point, bottom_right: Point) -> Self {
         debug_assert!(top_left.x <= bottom_right.x + 1);
         debug_assert!(top_left.y <= bottom_right.y + 1);
         Self {
@@ -333,7 +415,7 @@
         }
     }
 
-    pub fn from_box(left: i32, right: i32, top: i32, bottom: i32) -> Self {
+    pub const fn from_box(left: i32, right: i32, top: i32, bottom: i32) -> Self {
         Self::new(Point::new(left, top), Point::new(right, bottom))
     }
 
@@ -414,12 +496,12 @@
     }
 
     #[inline]
-    pub fn x_range(&self) -> RangeInclusive<i32> {
+    pub const fn x_range(&self) -> RangeInclusive<i32> {
         self.left()..=self.right()
     }
 
     #[inline]
-    pub fn y_range(&self) -> RangeInclusive<i32> {
+    pub const fn y_range(&self) -> RangeInclusive<i32> {
         self.top()..=self.bottom()
     }
 
@@ -429,7 +511,7 @@
     }
 
     #[inline]
-    pub fn contains_inside(&self, point: Point) -> bool {
+    pub const fn contains_inside(&self, point: Point) -> bool {
         point.x > self.left()
             && point.x < self.right()
             && point.y > self.top()
@@ -442,7 +524,7 @@
     }
 
     #[inline]
-    pub fn intersects(&self, other: &Rect) -> bool {
+    pub const fn intersects(&self, other: &Rect) -> bool {
         self.left() <= other.right()
             && self.right() >= other.left()
             && self.top() <= other.bottom()
@@ -450,8 +532,8 @@
     }
 
     #[inline]
-    pub fn split_at(&self, point: Point) -> [Rect; 4] {
-        assert!(self.contains_inside(point));
+    pub const fn split_at(&self, point: Point) -> [Rect; 4] {
+        debug_assert!(self.contains_inside(point));
         [
             Self::from_box(self.left(), point.x, self.top(), point.y),
             Self::from_box(point.x, self.right(), self.top(), point.y),
@@ -461,7 +543,7 @@
     }
 
     #[inline]
-    pub fn with_margins(&self, left: i32, right: i32, top: i32, bottom: i32) -> Self {
+    pub const fn with_margins(&self, left: i32, right: i32, top: i32, bottom: i32) -> Self {
         Self::from_box(
             self.left() - left,
             self.right() + right,
--- a/rust/land2d/src/lib.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/land2d/src/lib.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,9 +1,6 @@
-use std::{
-    cmp,
-    ops::Index
-};
+use std::{cmp, ops::Index};
 
-use integral_geometry::{ArcPoints, EquidistantPoints, Line, Point, Rect, Size, SizeMask};
+use integral_geometry::{ArcPoints, EquidistantPoints, Line, Point, PotSize, Rect, Size, SizeMask};
 
 pub struct Land2D<T> {
     pixels: vec2d::Vec2D<T>,
@@ -15,13 +12,13 @@
     pub fn new(play_size: Size, fill_value: T) -> Self {
         let real_size = play_size.next_power_of_two();
         let top_left = Point::new(
-            ((real_size.width - play_size.width) / 2) as i32,
-            (real_size.height - play_size.height) as i32,
+            ((real_size.width() - play_size.width) / 2) as i32,
+            (real_size.height() - play_size.height) as i32,
         );
         let play_box = Rect::from_size(top_left, play_size);
         Self {
             play_box,
-            pixels: vec2d::Vec2D::new(real_size, fill_value),
+            pixels: vec2d::Vec2D::new(real_size.size(), fill_value),
             mask: real_size.to_mask(),
         }
     }
@@ -31,9 +28,7 @@
     }
 
     pub fn raw_pixel_bytes(&self) -> &[u8] {
-        unsafe {
-            self.pixels.as_bytes()
-        }
+        unsafe { self.pixels.as_bytes() }
     }
 
     #[inline]
@@ -47,8 +42,8 @@
     }
 
     #[inline]
-    pub fn size(&self) -> Size {
-        self.pixels.size()
+    pub fn size(&self) -> PotSize {
+        self.mask.to_size()
     }
 
     #[inline]
@@ -117,7 +112,8 @@
                 *v = value;
                 1
             })
-        }).count()
+        })
+        .count()
     }
 
     pub fn draw_line(&mut self, line: Line, value: T) -> usize {
@@ -144,36 +140,39 @@
             if mask.contains_y(yd as usize) {
                 stack.push((xl, xr, yd as usize, dir));
             }
-        };
+        }
 
         let start_x_l = (start_point.x - 1) as usize;
         let start_x_r = start_point.x as usize;
         for dir in [-1, 1].iter().cloned() {
-            push(mask, &mut stack, start_x_l, start_x_r, start_point.y as usize, dir);
+            push(
+                mask,
+                &mut stack,
+                start_x_l,
+                start_x_r,
+                start_point.y as usize,
+                dir,
+            );
         }
 
         while let Some((mut xl, mut xr, y, dir)) = stack.pop() {
             let row = &mut self.pixels[y][..];
-            while xl > 0 && row[xl] != border_value && row[xl] != fill_value
-            {
+            while xl > 0 && row[xl] != border_value && row[xl] != fill_value {
                 xl -= 1;
             }
 
-            while xr < width - 1 && row[xr] != border_value && row[xr] != fill_value
-            {
+            while xr < width - 1 && row[xr] != border_value && row[xr] != fill_value {
                 xr += 1;
             }
 
             while xl < xr {
-                while xl <= xr && (row[xl] == border_value || row[xl] == fill_value)
-                {
+                while xl <= xr && (row[xl] == border_value || row[xl] == fill_value) {
                     xl += 1;
                 }
 
                 let x = xl;
 
-                while xl <= xr && row[xl] != border_value && row[xl] != fill_value
-                {
+                while xl <= xr && row[xl] != border_value && row[xl] != fill_value {
                     row[xl] = fill_value;
                     xl += 1;
                 }
@@ -257,7 +256,8 @@
                     .iter()
                     .map(|m| self.fill_row(center, vector.transform(m), value))
                     .sum::<usize>()
-            }).sum()
+            })
+            .sum()
     }
 
     pub fn draw_thick_line(&mut self, line: Line, radius: i32, value: T) -> usize {
--- a/rust/land_dump/src/main.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/land_dump/src/main.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -2,23 +2,21 @@
 use std::{
     fs::File,
     io::{BufWriter, Read},
-    path::{Path, PathBuf}
+    path::{Path, PathBuf},
 };
 use structopt::StructOpt;
 
 use integral_geometry::{Point, Rect, Size};
+use land2d::Land2D;
 use landgen::{
-    outline_template::OutlineTemplate,
-    template_based::TemplatedLandGenerator,
-    LandGenerationParameters,
-    LandGenerator
-};
-use mapgen::{
-    MapGenerator,
-    theme::{Theme, slice_u32_to_u8}
+    outline_template::OutlineTemplate, template_based::TemplatedLandGenerator,
+    LandGenerationParameters, LandGenerator,
 };
 use lfprng::LaggedFibonacciPRNG;
-use land2d::Land2D;
+use mapgen::{
+    theme::{slice_u32_to_u8, Theme},
+    MapGenerator,
+};
 
 #[derive(StructOpt, Debug)]
 #[structopt(name = "basic")]
@@ -36,7 +34,7 @@
     #[structopt(short = "t", long = "template-type")]
     template_type: Option<String>,
     #[structopt(short = "z", long = "theme-dir")]
-    theme_dir: Option<String>
+    theme_dir: Option<String>,
 }
 
 fn template() -> OutlineTemplate {
@@ -60,7 +58,8 @@
     skip_bezier: bool,
     file_name: &Path,
 ) -> std::io::Result<Land2D<u8>> {
-    let params = LandGenerationParameters::new(0 as u8, 255, distance_divisor, skip_distort, skip_bezier);
+    let params =
+        LandGenerationParameters::new(0 as u8, 255, distance_divisor, skip_distort, skip_bezier);
     let landgen = TemplatedLandGenerator::new(template.clone());
     let mut prng = LaggedFibonacciPRNG::new(seed);
     let land = landgen.generate_land(&params, &mut prng);
@@ -87,40 +86,39 @@
     let ref mut w = BufWriter::new(file);
 
     let mut encoder = png::Encoder::new(w, land.width() as u32, land.height() as u32); // Width is 2 pixels and height is 1.
-    encoder
-        .set(png::ColorType::RGBA)
-        .set(png::BitDepth::Eight);
+    encoder.set(png::ColorType::RGBA).set(png::BitDepth::Eight);
 
     let mut writer = encoder.write_header().unwrap();
 
-    writer.write_image_data(slice_u32_to_u8(texture.as_slice())).unwrap();
+    writer
+        .write_image_data(slice_u32_to_u8(texture.as_slice()))
+        .unwrap();
 }
 
 fn main() {
     let opt = Opt::from_args();
     println!("{:?}", opt);
 
-    let template =
-        if let Some(path) = opt.templates_file {
-            let mut result = String::new();
-            File::open(path)
-                .expect("Unable to read templates file")
-                .read_to_string(&mut result);
+    let template = if let Some(path) = opt.templates_file {
+        let mut result = String::new();
+        File::open(path)
+            .expect("Unable to read templates file")
+            .read_to_string(&mut result);
 
-            let mut generator = MapGenerator::new();
+        let mut generator = MapGenerator::new();
 
-            let source =  &result[..];
+        let source = &result[..];
 
-            generator.import_yaml_templates(source);
+        generator.import_yaml_templates(source);
 
-            let template_type = &opt.template_type
-                .expect("No template type specified");
-            generator.get_template(template_type)
-                .expect(&format!("Template type {} not found", template_type))
-                .clone()
-        } else {
-            template()
-        };
+        let template_type = &opt.template_type.expect("No template type specified");
+        generator
+            .get_template(template_type)
+            .expect(&format!("Template type {} not found", template_type))
+            .clone()
+    } else {
+        template()
+    };
 
     if opt.dump_before_distort {
         dump(
@@ -155,10 +153,6 @@
     .unwrap();
 
     if let Some(dir) = opt.theme_dir {
-        texturize(
-            &Path::new(&dir),
-            &land,
-            &Path::new("out.texture.png")
-        );
+        texturize(&Path::new(&dir), &land, &Path::new("out.texture.png"));
     }
 }
--- a/rust/landgen/src/lib.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/landgen/src/lib.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -11,7 +11,13 @@
 }
 
 impl<T: Copy + PartialEq> LandGenerationParameters<T> {
-    pub fn new(zero: T, basic: T, distance_divisor: u32, skip_distort: bool, skip_bezier: bool) -> Self {
+    pub fn new(
+        zero: T,
+        basic: T,
+        distance_divisor: u32,
+        skip_distort: bool,
+        skip_bezier: bool,
+    ) -> Self {
         Self {
             zero,
             basic,
--- a/rust/landgen/src/outline.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/landgen/src/outline.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,7 +1,7 @@
 use itertools::Itertools;
 use std::cmp::min;
 
-use integral_geometry::{Line, Ray, Point, Polygon, Rect, Size};
+use integral_geometry::{Line, Point, Polygon, Ray, Rect, Size};
 use land2d::Land2D;
 
 use crate::outline_template::OutlineTemplate;
@@ -76,16 +76,14 @@
         fn solve_intersection(
             intersections_box: &Rect,
             ray: &Ray,
-            edge: &Line
-        ) -> Option<(i32, u32)>
-        {
+            edge: &Line,
+        ) -> Option<(i32, u32)> {
             let edge_dir = edge.scaled_direction();
             let aqpb = ray.direction.cross(edge_dir) as i64;
 
             if aqpb != 0 {
-                let mut iy =
-                    ((((edge.start.x - ray.start.x) as i64 * ray.direction.y as i64
-                        + ray.start.y as i64 * ray.direction.x as i64)
+                let mut iy = ((((edge.start.x - ray.start.x) as i64 * ray.direction.y as i64
+                    + ray.start.y as i64 * ray.direction.x as i64)
                     * edge_dir.y as i64
                     - edge.start.y as i64 * edge_dir.x as i64 * ray.direction.y as i64)
                     / aqpb) as i32;
@@ -147,7 +145,7 @@
             // same for the right border
             let right_intersection = Point::new(
                 map_box.right(),
-                mid_point.y + normal.tangent_mul(map_box.right() - mid_point.x)  ,
+                mid_point.y + normal.tangent_mul(map_box.right() - mid_point.x),
             );
             dist_right = (mid_point - right_intersection).integral_norm();
 
@@ -203,7 +201,9 @@
                 if intersects(&pi.ray_with_dir(normal), &segment) {
                     // ray from segment.start
                     if let Some((t, d)) = solve_intersection(
-                        &self.intersections_box, &normal_ray, &segment.start.line_to(pi),
+                        &self.intersections_box,
+                        &normal_ray,
+                        &segment.start.line_to(pi),
                     ) {
                         if t > 0 {
                             dist_right = min(dist_right, d);
@@ -214,7 +214,9 @@
 
                     // ray from segment.end
                     if let Some((t, d)) = solve_intersection(
-                        &self.intersections_box, &normal_ray, &segment.end.line_to(pi)
+                        &self.intersections_box,
+                        &normal_ray,
+                        &segment.end.line_to(pi),
                     ) {
                         if t > 0 {
                             dist_right = min(dist_right, d);
@@ -308,7 +310,7 @@
     }
 }
 
-#[test()]
+#[test]
 fn points_test() {
     let size = Size::square(100);
     let mut points = OutlinePoints {
--- a/rust/landgen/src/template_based.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/landgen/src/template_based.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,11 +1,9 @@
+use crate::{
+    outline::OutlinePoints, outline_template::OutlineTemplate, LandGenerationParameters,
+    LandGenerator,
+};
 use integral_geometry::{Point, Size};
 use land2d::Land2D;
-use crate::{
-    LandGenerationParameters,
-    LandGenerator,
-    outline::OutlinePoints,
-    outline_template::OutlineTemplate
-};
 
 pub struct TemplatedLandGenerator {
     outline_template: OutlineTemplate,
@@ -28,7 +26,7 @@
         let mut points = OutlinePoints::from_outline_template(
             &self.outline_template,
             land.play_box(),
-            land.size(),
+            land.size().size(),
             random_numbers,
         );
 
--- a/rust/lib-hedgewars-engine/Cargo.toml	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/lib-hedgewars-engine/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -2,12 +2,13 @@
 name = "lib-hedgewars-engine"
 version = "0.1.0"
 authors = ["Andrey Korotaev <a.korotaev@hedgewars.org>"]
-edition = "2018"
+edition = "2021"
+build = "build.rs"
 
 [dependencies]
 gl = "0.11"
 netbuf = "0.4"
-itertools = "0.8"
+itertools = "0.10"
 png = "0.13"
 
 fpnum = { path = "../fpnum" }
@@ -23,6 +24,9 @@
 [dev-dependencies]
 proptest = "0.9.2"
 
+[build-dependencies]
+cbindgen = "0.24"
+
 [lib]
 name = "hedgewars_engine"
 crate-type = ["dylib"]
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/lib-hedgewars-engine/build.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,32 @@
+extern crate cbindgen;
+
+use cbindgen::Config;
+use std::env;
+use std::path::PathBuf;
+
+fn main() {
+    let crate_dir = env::var("CARGO_MANIFEST_DIR").unwrap();
+
+    let package_name = env::var("CARGO_PKG_NAME").unwrap();
+    let output_file = target_dir()
+        .join(format!("{}.hpp", package_name))
+        .display()
+        .to_string();
+
+    let config = Config {
+        namespace: Some(String::from("hwengine")),
+        ..Default::default()
+    };
+
+    cbindgen::generate_with_config(&crate_dir, config)
+        .unwrap()
+        .write_to_file(&output_file);
+}
+
+fn target_dir() -> PathBuf {
+    if let Ok(target) = env::var("CARGO_TARGET_DIR") {
+        PathBuf::from(target)
+    } else {
+        PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap()).join("target")
+    }
+}
--- a/rust/lib-hedgewars-engine/src/instance.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/lib-hedgewars-engine/src/instance.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -7,6 +7,8 @@
 use integral_geometry::{Point, Rect, Size};
 use landgen::outline_template::OutlineTemplate;
 
+use std::path::Path;
+
 use super::{ipc::*, world::World};
 
 pub struct EngineInstance {
@@ -16,8 +18,8 @@
 }
 
 impl EngineInstance {
-    pub fn new() -> Self {
-        let mut world = World::new();
+    pub fn new(data_path: &Path) -> Self {
+        let mut world = World::new(data_path);
 
         fn template() -> OutlineTemplate {
             let mut template = OutlineTemplate::new(Size::new(4096 * 1, 2048 * 1));
@@ -55,6 +57,7 @@
     fn process_config_message(&mut self, message: &ConfigEngineMessage) {
         match message {
             SetSeed(seed) => self.world.set_seed(seed.as_bytes()),
+            SetFeatureSize(feature_size) => self.world.set_feature_size(*feature_size),
             _ => unimplemented!(),
         }
     }
--- a/rust/lib-hedgewars-engine/src/lib.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/lib-hedgewars-engine/src/lib.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,13 +1,15 @@
 pub mod instance;
 pub mod ipc;
 mod render;
+mod time;
 mod world;
 
 use std::{
-    ffi::CString,
+    ffi::{CString, CStr},
     io::{Read, Write},
     mem::replace,
     os::raw::{c_char, c_void},
+    path::Path,
 };
 
 use integral_geometry::Point;
@@ -78,7 +80,6 @@
     x: i32,
     y: i32,
 ) {
-
 }
 
 #[no_mangle]
@@ -87,8 +88,10 @@
 }
 
 #[no_mangle]
-pub extern "C" fn start_engine() -> *mut EngineInstance {
-    let engine_state = Box::new(EngineInstance::new());
+pub extern "C" fn start_engine(data_path: *const i8) -> *mut EngineInstance {
+    let data_path: &str = unsafe { CStr::from_ptr(data_path) }.to_str().unwrap();
+
+    let engine_state = Box::new(EngineInstance::new(Path::new(&data_path)));
 
     Box::leak(engine_state)
 }
@@ -110,7 +113,7 @@
 }
 
 #[no_mangle]
-pub extern "C" fn dispose_preview(engine_state: &mut EngineInstance, preview: &mut PreviewInfo) {
+pub extern "C" fn dispose_preview(engine_state: &mut EngineInstance) {
     (*engine_state).world.dispose_preview();
 }
 
@@ -139,7 +142,7 @@
     engine_state: &mut EngineInstance,
     width: u16,
     height: u16,
-    gl_loader: extern "C" fn(*const c_char) -> *const c_void,
+    gl_loader: extern "C" fn(*const c_char) -> *mut c_void,
 ) {
     gl::load_with(|name| {
         let c_name = CString::new(name).unwrap();
@@ -172,6 +175,6 @@
 #[no_mangle]
 pub extern "C" fn cleanup(engine_state: *mut EngineInstance) {
     unsafe {
-        Box::from_raw(engine_state);
+        drop(Box::from_raw(engine_state));
     }
 }
--- a/rust/lib-hedgewars-engine/src/render/atlas.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/lib-hedgewars-engine/src/render/atlas.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -14,8 +14,8 @@
 impl Fit {
     fn new() -> Self {
         Self {
-            short_side: u32::max_value(),
-            long_side: u32::max_value(),
+            short_side: u32::MAX,
+            long_side: u32::MAX,
         }
     }
 
@@ -335,7 +335,7 @@
                 buffer,
                 &mut buffer_size,
                 free_rect.with_margins(0, 0, 0, -trim),
-            );;
+            );
         }
         if rect.bottom() < free_rect.bottom() {
             let trim = rect.bottom() - free_rect.top() + 1;
@@ -344,7 +344,7 @@
                 buffer,
                 &mut buffer_size,
                 free_rect.with_margins(0, 0, -trim, 0),
-            );;
+            );
         }
     }
     if split {
--- a/rust/lib-hedgewars-engine/src/render/gear.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/lib-hedgewars-engine/src/render/gear.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,22 +1,119 @@
-use super::{atlas::AtlasCollection, gl::Texture2D};
-use crate::render::camera::Camera;
+use crate::render::{
+    atlas::{AtlasCollection, SpriteIndex},
+    camera::Camera,
+    gl::{
+        Buffer, BufferType, BufferUsage, InputElement, InputFormat, InputLayout, PipelineState,
+        Shader, Texture2D, TextureDataType, TextureFilter, TextureFormat, TextureInternalFormat,
+        VariableBinding,
+    },
+};
 
 use integral_geometry::{Rect, Size};
 
-use crate::render::atlas::SpriteIndex;
 use png::{ColorType, Decoder, DecodingError};
-use std::path::PathBuf;
+
 use std::{
     collections::HashMap,
     ffi::OsString,
     fs::{read_dir, File},
     io,
     io::BufReader,
-    path::Path,
+    mem::size_of,
+    path::{Path, PathBuf},
 };
 
+const VERTEX_SHADER: &'static str = r#"
+#version 330 core
+
+uniform mat4 projection;
+
+layout(location = 0) in vec2 position;
+layout(location = 1) in vec2 texCoords;
+
+out vec2 varTexCoords;
+
+void main() {
+    varTexCoords = texCoords;
+	gl_Position = projection * vec4(position, 0.0, 1.0);
+}
+"#;
+
+const PIXEL_SHADER: &'static str = r#"
+#version 330 core
+
+uniform sampler2D texture;
+
+in vec2 varTexCoords;
+
+out vec4 outColor;
+
+void main() {
+	 outColor = texture2D(texture, varTexCoords);
+}
+"#;
+
+#[repr(C)]
+#[derive(Copy, Clone)]
+struct Vertex {
+    position: [f32; 2],
+    tex_coords: [f32; 2],
+}
+
+#[derive(PartialEq, Debug, Clone, Copy)]
+#[repr(u32)]
+pub enum SpriteId {
+    Mine = 0,
+    Grenade,
+    Cheese,
+    Cleaver,
+
+    MaxSprite,
+}
+
+const SPRITE_LOAD_LIST: &[(SpriteId, &str)] = &[
+    (
+        SpriteId::Mine,
+        "Graphics/MineOn.png",
+    ),
+    (
+        SpriteId::Grenade,
+        "Graphics/Bomb.png",
+    ),
+    (
+        SpriteId::Cheese,
+        "Graphics/cheese.png",
+    ),
+    (
+        SpriteId::Cleaver,
+        "Graphics/cleaver.png",
+    ),
+];
+
+const MAX_SPRITES: usize = SpriteId::MaxSprite as usize + 1;
+
+type SpriteTexCoords = (u32, [[f32; 2]; 4]);
+
+pub struct GearEntry {
+    position: [f32; 2],
+    size: Size,
+}
+
+impl GearEntry {
+    pub fn new(x: f32, y: f32, size: Size) -> Self {
+        Self {
+            position: [x, y],
+            size,
+        }
+    }
+}
+
 pub struct GearRenderer {
     atlas: AtlasCollection,
+    texture: Texture2D,
+    allocation: Box<[SpriteTexCoords; MAX_SPRITES]>,
+    shader: Shader,
+    layout: InputLayout,
+    vertex_buffer: Buffer,
 }
 
 struct SpriteData {
@@ -27,54 +124,147 @@
 const ATLAS_SIZE: Size = Size::square(2048);
 
 impl GearRenderer {
-    pub fn new() -> Self {
-        let mut lookup = Vec::with_capacity(2048);
-
+    pub fn new(data_path: &Path) -> Self {
         let mut atlas = AtlasCollection::new(ATLAS_SIZE);
-        let mut sprites = load_sprites(Path::new("../../share/hedgewars/Data/Graphics/"))
-            .expect("Unable to load Graphics");
-        let max_size = sprites
-            .iter()
-            .fold(Size::EMPTY, |size, sprite| size.join(sprite.size));
-        for sprite in sprites.drain(..) {
-            lookup.push((sprite.filename, atlas.insert_sprite(sprite.size).unwrap()));
-        }
 
-        println!(
-            "Filled atlas with {} sprites:\n{}",
-            sprites.len(),
-            atlas.used_space()
+        let texture = Texture2D::new(
+            ATLAS_SIZE,
+            TextureInternalFormat::Rgba8,
+            TextureFilter::Linear,
         );
 
-        let texture = Texture2D::new(ATLAS_SIZE, gl::RGBA8, gl::LINEAR);
+        let mut allocation = Box::new([Default::default(); MAX_SPRITES]);
 
-        let mut pixels = vec![0; max_size.area()].into_boxed_slice();
-        let mut pixels_transposed = vec![0; max_size.area()].into_boxed_slice();
+        for (sprite, file) in SPRITE_LOAD_LIST {
+            let path = data_path.join(Path::new(file));
+            let size = load_sprite_size(path.as_path()).expect(&format!("Unable to open {}", file));
+            let index = atlas
+                .insert_sprite(size)
+                .expect(&format!("Could not store sprite {:?}", sprite));
+            let (texture_index, rect) = atlas.get_rect(index).unwrap();
 
-        for (path, sprite_index) in lookup.drain(..) {
-            if let Some((atlas_index, rect)) = atlas.get_rect(sprite_index) {
-                let size = load_sprite_pixels(&path, mapgen::theme::slice_u32_to_u8_mut(&mut pixels[..])).expect("Unable to load Graphics");
+            let mut pixels = vec![255u8; size.area() * 4].into_boxed_slice();
+            load_sprite_pixels(path.as_path(), &mut pixels).expect("Unable to load Graphics");
 
-                let used_pixels = if size.width != rect.width() {
-                    for y in 0..rect.height() {
-                        for x in 0..rect.width() {
-                            pixels_transposed[y * rect.width() + x] = pixels[x * rect.height() + y];
-                        }
-                    }
-                    &mut pixels_transposed[..]
-                } else {
-                    &mut pixels[..]
-                };
+            texture.update(
+                rect,
+                &pixels,
+                None,
+                TextureFormat::Rgba,
+                TextureDataType::UnsignedByte,
+            );
 
-                texture.update(rect, mapgen::theme::slice_u32_to_u8_mut(used_pixels), 0, gl::RGBA, gl::UNSIGNED_BYTE);
+            let mut tex_coords = [
+                [rect.left() as f32, rect.bottom() as f32 + 1.0],
+                [rect.right() as f32 + 1.0, rect.bottom() as f32 + 1.0],
+                [rect.left() as f32, rect.top() as f32],
+                [rect.right() as f32 + 1.0, rect.top() as f32],
+            ]; //.map(|n| n as f32 / ATLAS_SIZE as f32);
+
+            for coords in &mut tex_coords {
+                coords[0] /= ATLAS_SIZE.width as f32;
+                coords[1] /= ATLAS_SIZE.height as f32;
             }
+
+            allocation[*sprite as usize] = (texture_index, tex_coords);
         }
 
-        Self { atlas }
+        let shader = Shader::new(
+            VERTEX_SHADER,
+            Some(PIXEL_SHADER),
+            &[VariableBinding::Sampler("texture", 0)],
+        )
+        .unwrap();
+
+        let layout = InputLayout::new(vec![
+            InputElement {
+                shader_slot: 0,
+                buffer_slot: 0,
+                format: InputFormat::Float(gl::FLOAT, false),
+                components: 2,
+                stride: size_of::<Vertex>() as u32,
+                offset: 0,
+            },
+            InputElement {
+                shader_slot: 1,
+                buffer_slot: 0,
+                format: InputFormat::Float(gl::FLOAT, false),
+                components: 2,
+                stride: size_of::<Vertex>() as u32,
+                offset: size_of::<[f32; 2]>() as u32,
+            },
+        ]);
+
+        let vertex_buffer = Buffer::empty(BufferType::Array, BufferUsage::DynamicDraw);
+
+        Self {
+            atlas,
+            texture,
+            allocation,
+            shader,
+            layout,
+            vertex_buffer,
+        }
     }
 
-    pub fn render(&mut self, camera: &Camera) {
+    pub fn render(&mut self, camera: &Camera, entries: &[GearEntry]) {
+        let mut data = Vec::with_capacity(entries.len() * 6);
+
+        for (index, entry) in entries.iter().enumerate() {
+            let sprite_id = match index & 0b11 {
+                0 => SpriteId::Mine,
+                1 => SpriteId::Grenade,
+                2 => SpriteId::Cheese,
+                _ => SpriteId::Cleaver,
+            };
+            let sprite_coords = &self.allocation[sprite_id as usize].1;
+
+            let v = [
+                Vertex {
+                    position: [
+                        entry.position[0] - entry.size.width as f32 / 2.0,
+                        entry.position[1] + entry.size.height as f32 / 2.0,
+                    ],
+                    tex_coords: sprite_coords[0],
+                },
+                Vertex {
+                    position: [
+                        entry.position[0] + entry.size.width as f32 / 2.0,
+                        entry.position[1] + entry.size.height as f32 / 2.0,
+                    ],
+                    tex_coords: sprite_coords[1],
+                },
+                Vertex {
+                    position: [
+                        entry.position[0] - entry.size.width as f32 / 2.0,
+                        entry.position[1] - entry.size.height as f32 / 2.0,
+                    ],
+                    tex_coords: sprite_coords[2],
+                },
+                Vertex {
+                    position: [
+                        entry.position[0] + entry.size.width as f32 / 2.0,
+                        entry.position[1] - entry.size.height as f32 / 2.0,
+                    ],
+                    tex_coords: sprite_coords[3],
+                },
+            ];
+
+            data.extend_from_slice(&[v[0], v[1], v[2], v[1], v[3], v[2]]);
+        }
+
         let projection = camera.projection();
+        self.shader.bind();
+        self.shader.set_matrix("projection", projection.as_ptr());
+        self.shader.bind_texture_2d(0, &self.texture);
+
+        self.vertex_buffer.write_typed(&data);
+        let _buffer_bind = self.layout.bind(&[(0, &self.vertex_buffer)], None);
+
+        let _state = PipelineState::new().with_blend();
+        unsafe {
+            gl::DrawArrays(gl::TRIANGLES, 0, entries.len() as i32 * 6);
+        }
     }
 }
 
--- a/rust/lib-hedgewars-engine/src/render/gl.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/lib-hedgewars-engine/src/render/gl.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -32,7 +32,8 @@
 
 #[derive(Debug)]
 pub struct Texture2D {
-    pub handle: Option<NonZeroU32>,
+    handle: Option<NonZeroU32>,
+    size: Size,
 }
 
 impl Drop for Texture2D {
@@ -53,7 +54,7 @@
     NonZeroU32::new(handle)
 }
 
-fn tex_params(filter: u32) {
+fn tex_params(filter: TextureFilter) {
     unsafe {
         gl::TexParameteri(gl::TEXTURE_2D, gl::TEXTURE_WRAP_S, gl::CLAMP_TO_EDGE as i32);
         gl::TexParameteri(gl::TEXTURE_2D, gl::TEXTURE_WRAP_T, gl::CLAMP_TO_EDGE as i32);
@@ -62,8 +63,42 @@
     }
 }
 
+#[derive(Clone, Copy, Debug)]
+pub enum TextureFormat {
+    Rgba = gl::RGBA as isize,
+}
+
+#[derive(Clone, Copy, Debug)]
+pub enum TextureInternalFormat {
+    Rgba8 = gl::RGBA as isize,
+}
+
+#[derive(Clone, Copy, Debug)]
+pub enum TextureDataType {
+    UnsignedByte = gl::UNSIGNED_BYTE as isize,
+}
+
+#[derive(Clone, Copy, Debug)]
+pub enum TextureFilter {
+    Nearest = gl::NEAREST as isize,
+    Linear = gl::LINEAR as isize,
+}
+
+#[inline]
+fn get_u32(value: Option<NonZeroU32>) -> u32 {
+    value.map_or(0, |v| v.get())
+}
+
+fn is_out_of_bounds(data: &[u8], data_stride: Option<NonZeroU32>, texture_size: Size) -> bool {
+    let data_stride = get_u32(data_stride);
+    data_stride == 0 && texture_size.area() * 4 > data.len()
+        || data_stride != 0
+            && texture_size.width > data_stride as usize
+            && (texture_size.height * data_stride as usize) * 4 > data.len()
+}
+
 impl Texture2D {
-    pub fn new(size: Size, internal_format: u32, filter: u32) -> Self {
+    pub fn new(size: Size, internal_format: TextureInternalFormat, filter: TextureFilter) -> Self {
         if let Some(handle) = new_texture() {
             unsafe {
                 gl::BindTexture(gl::TEXTURE_2D, handle.get());
@@ -74,8 +109,8 @@
                     size.width as i32,
                     size.height as i32,
                     0,
-                    gl::RGBA,
-                    gl::UNSIGNED_BYTE,
+                    TextureFormat::Rgba as u32,
+                    TextureDataType::UnsignedByte as u32,
                     std::ptr::null(),
                 )
             }
@@ -83,25 +118,30 @@
             tex_params(filter);
             Self {
                 handle: Some(handle),
+                size,
             }
         } else {
-            Self { handle: None }
+            Self { handle: None, size }
         }
     }
 
     pub fn with_data(
         data: &[u8],
-        data_stride: u32,
+        data_stride: Option<NonZeroU32>,
         size: Size,
-        internal_format: u32,
-        format: u32,
-        ty: u32,
-        filter: u32,
+        internal_format: TextureInternalFormat,
+        format: TextureFormat,
+        data_type: TextureDataType,
+        filter: TextureFilter,
     ) -> Self {
+        if is_out_of_bounds(data, data_stride, size) {
+            return Self { handle: None, size };
+        }
+
         if let Some(handle) = new_texture() {
             unsafe {
                 gl::BindTexture(gl::TEXTURE_2D, handle.get());
-                gl::PixelStorei(gl::UNPACK_ROW_LENGTH, data_stride as i32);
+                gl::PixelStorei(gl::UNPACK_ROW_LENGTH, get_u32(data_stride) as i32);
                 gl::TexImage2D(
                     gl::TEXTURE_2D,
                     0,
@@ -110,7 +150,7 @@
                     size.height as i32,
                     0,
                     format as u32,
-                    ty,
+                    data_type as u32,
                     data.as_ptr() as *const _,
                 )
             }
@@ -118,132 +158,162 @@
             tex_params(filter);
             Self {
                 handle: Some(handle),
+                size,
             }
         } else {
-            Self { handle: None }
+            Self { handle: None, size }
         }
     }
 
-    pub fn update(&self, region: Rect, data: &[u8], data_stride: u32, format: u32, ty: u32) {
+    pub fn update(
+        &self,
+        region: Rect,
+        data: &[u8],
+        data_stride: Option<NonZeroU32>,
+        format: TextureFormat,
+        data_type: TextureDataType,
+    ) {
         if let Some(handle) = self.handle {
             unsafe {
                 gl::BindTexture(gl::TEXTURE_2D, handle.get());
-                gl::PixelStorei(gl::UNPACK_ROW_LENGTH, data_stride as i32);
+                gl::PixelStorei(gl::UNPACK_ROW_LENGTH, get_u32(data_stride) as i32);
                 gl::TexSubImage2D(
                     gl::TEXTURE_2D,
-                    0,             // texture level
-                    region.left(), // texture region
+                    0,
+                    region.left(),
                     region.top(),
                     region.width() as i32,
                     region.height() as i32,
-                    format,                    // data format
-                    ty,                        // data type
-                    data.as_ptr() as *const _, // data ptr
+                    format as u32,
+                    data_type as u32,
+                    data.as_ptr() as *const _,
                 );
             }
         }
     }
 
     pub fn retrieve(&self, data: &mut [u8]) {
+        if self.size.area() * 4 > data.len() {
+            return;
+        }
+
         if let Some(handle) = self.handle {
             unsafe {
                 gl::BindTexture(gl::TEXTURE_2D, handle.get());
                 gl::GetTexImage(
                     gl::TEXTURE_2D,
-                    0,                           // texture level
-                    gl::RGBA,                    // data format
-                    gl::UNSIGNED_BYTE,           // data type
-                    data.as_mut_ptr() as *mut _, // data ptr
+                    0,
+                    TextureFormat::Rgba as u32,
+                    TextureDataType::UnsignedByte as u32,
+                    data.as_mut_ptr() as *mut _,
                 );
             }
         }
     }
 }
 
+#[derive(Clone, Copy, Debug)]
+#[repr(u32)]
+pub enum BufferType {
+    Array = gl::ARRAY_BUFFER,
+    ElementArray = gl::ELEMENT_ARRAY_BUFFER,
+}
+
+#[derive(Clone, Copy, Debug)]
+#[repr(u32)]
+pub enum BufferUsage {
+    DynamicDraw = gl::DYNAMIC_DRAW,
+}
+
 #[derive(Debug)]
 pub struct Buffer {
-    pub handle: u32,
-    pub ty: u32,
-    pub usage: u32,
+    pub handle: Option<NonZeroU32>,
+    pub buffer_type: BufferType,
+    pub usage: BufferUsage,
 }
 
 impl Buffer {
-    pub fn empty(
-        ty: u32,
-        usage: u32,
-        //size: isize
-    ) -> Buffer {
+    pub fn empty(buffer_type: BufferType, usage: BufferUsage) -> Buffer {
         let mut buffer = 0;
 
         unsafe {
             gl::GenBuffers(1, &mut buffer);
-            gl::BindBuffer(ty, buffer);
-            //gl::BufferData(ty, size, ptr::null_mut(), usage);
         }
 
         Buffer {
-            handle: buffer,
-            ty,
+            handle: NonZeroU32::new(buffer),
+            buffer_type: buffer_type,
             usage,
         }
     }
 
-    fn with_data(ty: u32, usage: u32, data: &[u8]) -> Buffer {
+    fn with_data(buffer_type: BufferType, usage: BufferUsage, data: &[u8]) -> Buffer {
         let mut buffer = 0;
 
         unsafe {
             gl::GenBuffers(1, &mut buffer);
-            gl::BindBuffer(ty, buffer);
-            gl::BufferData(ty, data.len() as isize, data.as_ptr() as _, usage);
+            if buffer != 0 {
+                gl::BindBuffer(buffer_type as u32, buffer);
+                gl::BufferData(
+                    buffer_type as u32,
+                    data.len() as isize,
+                    data.as_ptr() as _,
+                    usage as u32,
+                );
+            }
         }
 
         Buffer {
-            handle: buffer,
-            ty,
+            handle: NonZeroU32::new(buffer),
+            buffer_type,
             usage,
         }
     }
 
-    pub fn ty(&self) -> u32 {
-        self.ty
+    pub fn ty(&self) -> BufferType {
+        self.buffer_type
     }
 
-    pub fn handle(&self) -> u32 {
+    pub fn handle(&self) -> Option<NonZeroU32> {
         self.handle
     }
 
     pub fn write_typed<T>(&self, data: &[T]) {
-        unsafe {
-            let data =
-                slice::from_raw_parts(data.as_ptr() as *const u8, data.len() * mem::size_of::<T>());
-
-            gl::BindBuffer(self.ty, self.handle);
-            gl::BufferData(
-                self.ty,
-                data.len() as isize,
-                data.as_ptr() as *const _ as *const _,
-                self.usage,
-            );
+        if let Some(handle) = self.handle {
+            unsafe {
+                gl::BindBuffer(self.buffer_type as u32, handle.get());
+                gl::BufferData(
+                    self.buffer_type as u32,
+                    (data.len() * mem::size_of::<T>()) as isize,
+                    data.as_ptr() as *const _,
+                    self.usage as u32,
+                );
+            }
         }
     }
 
     pub fn write(&self, data: &[u8]) {
-        unsafe {
-            gl::BindBuffer(self.ty, self.handle);
-            gl::BufferData(
-                self.ty,
-                data.len() as isize,
-                data.as_ptr() as *const _ as *const _,
-                self.usage,
-            );
+        if let Some(handle) = self.handle {
+            unsafe {
+                gl::BindBuffer(self.buffer_type as u32, handle.get());
+                gl::BufferData(
+                    self.buffer_type as u32,
+                    data.len() as isize,
+                    data.as_ptr() as *const _,
+                    self.usage as u32,
+                );
+            }
         }
     }
 }
 
 impl Drop for Buffer {
     fn drop(&mut self) {
-        unsafe {
-            gl::DeleteBuffers(1, &self.handle);
+        if let Some(handle) = self.handle {
+            let handle = handle.get();
+            unsafe {
+                gl::DeleteBuffers(1, &handle);
+            }
         }
     }
 }
@@ -275,11 +345,11 @@
         ps: Option<&str>,
         bindings: &[VariableBinding<'a>],
     ) -> Result<Self, String> {
-        unsafe fn compile_shader(ty: u32, shdr: &str) -> Result<u32, String> {
-            let shader = gl::CreateShader(ty);
-            let len = shdr.len() as i32;
-            let shdr = shdr.as_ptr() as *const i8;
-            gl::ShaderSource(shader, 1, &shdr, &len);
+        unsafe fn compile_shader(shader_type: u32, shader_code: &str) -> Result<u32, String> {
+            let shader = gl::CreateShader(shader_type);
+            let len = shader_code.len() as i32;
+            let code_strings = shader_code.as_ptr() as *const i8;
+            gl::ShaderSource(shader, 1, &code_strings, &len);
             gl::CompileShader(shader);
 
             let mut success = 0i32;
@@ -343,14 +413,8 @@
                 return Err(String::from_utf8_unchecked(log));
             }
 
-            //gl::DetachShader(program, vs);
-            if let Some(ps) = ps {
-                //gl::DetachShader(program, ps);
-            }
-
             gl::UseProgram(program);
 
-            // after linking we setup sampler bindings as specified in the shader
             for bind in bindings {
                 match bind {
                     VariableBinding::Uniform(name, id) => {
@@ -468,8 +532,10 @@
         }
 
         for &(slot, ref buffer) in buffers {
-            unsafe {
-                gl::BindBuffer(buffer.ty(), buffer.handle());
+            if let Some(handle) = buffer.handle() {
+                unsafe {
+                    gl::BindBuffer(buffer.ty() as u32, handle.get());
+                }
             }
 
             for attr in self.elements.iter().filter(|a| a.buffer_slot == slot) {
@@ -501,8 +567,10 @@
         }
 
         if let Some(buf) = index_buffer {
-            unsafe {
-                gl::BindBuffer(gl::ELEMENT_ARRAY_BUFFER, buf.handle());
+            if let Some(handle) = buf.handle() {
+                unsafe {
+                    gl::BindBuffer(gl::ELEMENT_ARRAY_BUFFER, handle.get());
+                }
             }
         }
 
--- a/rust/lib-hedgewars-engine/src/render/map.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/lib-hedgewars-engine/src/render/map.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -5,12 +5,14 @@
 use super::{
     camera::Camera,
     gl::{
-        Buffer, InputElement, InputFormat, InputLayout, PipelineState, Shader, Texture2D,
+        Buffer, BufferType, BufferUsage, InputElement, InputFormat, InputLayout, PipelineState,
+        Shader, Texture2D, TextureDataType, TextureFilter, TextureFormat, TextureInternalFormat,
         VariableBinding,
     },
 };
 
-// TODO: temp
+use std::num::NonZeroU32;
+
 const VERTEX_SHADER: &'static str = r#"
 #version 150
 
@@ -45,7 +47,7 @@
 }
 "#;
 
-pub struct MapTile {
+struct MapTile {
     // either index into GL texture array or emulated [Texture; N]
     texture_index: u32,
 
@@ -55,13 +57,13 @@
 
 #[repr(C)]
 #[derive(Copy, Clone)]
-pub struct TileVertex {
+struct TileVertex {
     pos: [f32; 2],
     // doesn't hurt to include another float, just in case..
     uv: [f32; 3],
 }
 
-pub struct DrawTile {
+struct DrawTile {
     texture_index: u32,
     index_len: u32,
 }
@@ -124,8 +126,8 @@
             tiles: Vec::new(),
             textures: Vec::new(),
 
-            tile_vertex_buffer: Buffer::empty(gl::ARRAY_BUFFER, gl::DYNAMIC_DRAW),
-            tile_index_buffer: Buffer::empty(gl::ELEMENT_ARRAY_BUFFER, gl::DYNAMIC_DRAW),
+            tile_vertex_buffer: Buffer::empty(BufferType::Array, BufferUsage::DynamicDraw),
+            tile_index_buffer: Buffer::empty(BufferType::ElementArray, BufferUsage::DynamicDraw),
             tile_vertices: Vec::new(),
             tile_indices: Vec::new(),
             index_offset: 0,
@@ -164,7 +166,7 @@
                     let data = unsafe { &land.as_bytes()[offset..] };
                     let stride = land.width();
 
-                    (data, stride as u32)
+                    (data, NonZeroU32::new(stride as u32))
                 };
 
                 let texture_index = if idx >= self.textures.len() {
@@ -172,10 +174,10 @@
                         data,
                         stride,
                         self.tile_size,
-                        gl::RGBA8,
-                        gl::RGBA,
-                        gl::UNSIGNED_BYTE,
-                        gl::NEAREST,
+                        TextureInternalFormat::Rgba8,
+                        TextureFormat::Rgba,
+                        TextureDataType::UnsignedByte,
+                        TextureFilter::Nearest,
                     );
 
                     let texture_index = self.textures.len();
@@ -189,8 +191,8 @@
                         texture_region,
                         data,
                         stride,
-                        gl::RGBA,
-                        gl::UNSIGNED_BYTE,
+                        TextureFormat::Rgba,
+                        TextureDataType::UnsignedByte,
                     );
                     idx
                 };
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rust/lib-hedgewars-engine/src/time.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,113 @@
+use hwphysics::common::{GearId, Millis};
+use std::{
+    cmp::{Eq, Ord, Ordering, PartialEq, PartialOrd},
+    collections::BinaryHeap,
+};
+
+pub type EventId = u16;
+
+struct TimeEvent {
+    time: Millis,
+    gear_id: GearId,
+    event_id: EventId,
+}
+
+impl PartialOrd for TimeEvent {
+    #[inline]
+    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
+        self.time.partial_cmp(&other.time)
+    }
+}
+
+impl PartialEq for TimeEvent {
+    #[inline]
+    fn eq(&self, other: &Self) -> bool {
+        self.time.eq(&other.time)
+    }
+}
+
+impl Ord for TimeEvent {
+    #[inline]
+    fn cmp(&self, other: &Self) -> Ordering {
+        self.time.cmp(&other.time)
+    }
+}
+
+impl Eq for TimeEvent {}
+
+pub struct OccurredEvents {
+    events: Vec<(GearId, EventId)>,
+}
+
+impl OccurredEvents {
+    fn new() -> Self {
+        Self { events: vec![] }
+    }
+
+    fn clear(&mut self) {
+        self.events.clear()
+    }
+}
+
+pub struct TimeProcessor {
+    current_event_id: EventId,
+    current_time: Millis,
+    events: BinaryHeap<TimeEvent>,
+    timeouts: OccurredEvents,
+}
+
+impl TimeProcessor {
+    pub fn new() -> Self {
+        Self {
+            current_event_id: 0,
+            current_time: Millis::new(0),
+            events: BinaryHeap::with_capacity(1024),
+            timeouts: OccurredEvents::new(),
+        }
+    }
+
+    pub fn register(&mut self, gear_id: GearId, timeout: Millis) -> EventId {
+        let event_id = self.current_event_id;
+        self.current_event_id = self.current_event_id.wrapping_add(1);
+        let event = TimeEvent {
+            time: self.current_time + timeout,
+            gear_id,
+            event_id,
+        };
+        self.events.push(event);
+        event_id
+    }
+
+    fn retain_events<P>(&mut self, predicate: P)
+    where
+        P: Fn(&TimeEvent) -> bool,
+    {
+        let events = self.events.drain().filter(predicate).collect::<Vec<_>>();
+        self.events.extend(events);
+    }
+
+    pub fn cancel(&mut self, event_id: EventId) {
+        //self.events.retain(|event| event.event_id != event_id)
+        self.retain_events(|event| event.event_id != event_id)
+    }
+
+    pub fn cancel_all(&mut self, gear_id: GearId) {
+        //self.events.retain(|event| event.gear_id != gear_id)
+        self.retain_events(|event| event.gear_id != gear_id)
+    }
+
+    pub fn process(&mut self, time_step: Millis) -> &OccurredEvents {
+        self.timeouts.clear();
+        self.current_time = self.current_time + time_step;
+        while self
+            .events
+            .peek()
+            .filter(|e| e.time <= self.current_time)
+            .is_some()
+        {
+            let event = self.events.pop().unwrap();
+            self.timeouts.events.push((event.gear_id, event.event_id))
+        }
+        &self.timeouts
+    }
+}
--- a/rust/lib-hedgewars-engine/src/world.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/lib-hedgewars-engine/src/world.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -2,6 +2,7 @@
 use hwphysics::{
     self as hwp,
     common::{GearId, Millis},
+    physics::{PositionData, VelocityData},
 };
 use integral_geometry::{Point, Rect, Size};
 use land2d::Land2D;
@@ -10,8 +11,9 @@
     LandGenerationParameters, LandGenerator,
 };
 use lfprng::LaggedFibonacciPRNG;
+use std::path::{Path, PathBuf};
 
-use crate::render::{camera::Camera, GearRenderer, MapRenderer};
+use crate::render::{camera::Camera, GearEntry, GearRenderer, MapRenderer};
 
 struct GameState {
     land: Land2D<u32>,
@@ -26,39 +28,44 @@
 
 pub struct World {
     random_numbers_gen: LaggedFibonacciPRNG,
+    feature_size: u8,
     preview: Option<Land2D<u8>>,
     game_state: Option<GameState>,
     map_renderer: Option<MapRenderer>,
     gear_renderer: Option<GearRenderer>,
     camera: Camera,
+    gear_entries: Vec<GearEntry>,
+    data_path: PathBuf,
 }
 
 impl World {
-    pub fn new() -> Self {
+    pub fn new(data_path: &Path) -> Self {
         Self {
             random_numbers_gen: LaggedFibonacciPRNG::new(&[]),
+            feature_size: 5,
             preview: None,
             game_state: None,
             map_renderer: None,
             gear_renderer: None,
             camera: Camera::new(),
+            gear_entries: vec![],
+            data_path: data_path.to_owned(),
         }
     }
 
     pub fn create_renderer(&mut self, width: u16, height: u16) {
         let land_tile_size = Size::square(512);
         self.map_renderer = Some(MapRenderer::new(land_tile_size));
-        self.gear_renderer = Some(GearRenderer::new());
+        self.gear_renderer = Some(GearRenderer::new(&self.data_path.as_path()));
         self.camera = Camera::with_size(Size::new(width as usize, height as usize));
 
         use mapgen::{theme::Theme, MapGenerator};
-        use std::path::Path;
 
         if let Some(ref state) = self.game_state {
             self.camera.position = state.land.play_box().center();
 
             let theme =
-                Theme::load(Path::new("../../share/hedgewars/Data/Themes/Cheese/")).unwrap();
+                Theme::load(self.data_path.join(Path::new("Themes/Cheese/")).as_path()).unwrap();
             let texture = MapGenerator::new().make_texture(&state.land, &theme);
             if let Some(ref mut renderer) = self.map_renderer {
                 renderer.init(&texture);
@@ -70,6 +77,10 @@
         self.random_numbers_gen = LaggedFibonacciPRNG::new(seed);
     }
 
+    pub fn set_feature_size(&mut self, feature_size: u8) {
+        self.feature_size = feature_size;
+    }
+
     pub fn preview(&self) -> &Option<Land2D<u8>> {
         &self.preview
     }
@@ -88,7 +99,10 @@
             template
         }
 
-        let params = LandGenerationParameters::new(0u8, u8::max_value(), 5, false, false);
+        // based on old engine min_distance... dunno if this is the correct place tho
+        let distance_divisor = (self.feature_size as u32).pow(2) / 8 + 10;
+
+        let params = LandGenerationParameters::new(0u8, u8::MAX, distance_divisor, false, false);
         let landgen = TemplatedLandGenerator::new(template());
         self.preview = Some(landgen.generate_land(&params, &mut self.random_numbers_gen));
     }
@@ -98,12 +112,12 @@
     }
 
     pub fn init(&mut self, template: OutlineTemplate) {
-        let physics = hwp::World::new(template.size);
-
-        let params = LandGenerationParameters::new(0u32, u32::max_value(), 5, false, false);
+        let params = LandGenerationParameters::new(0u32, u32::MAX, 5, false, false);
         let landgen = TemplatedLandGenerator::new(template);
         let land = landgen.generate_land(&params, &mut self.random_numbers_gen);
 
+        let physics = hwp::World::new(land.size());
+
         self.game_state = Some(GameState::new(land, physics));
     }
 
@@ -124,19 +138,36 @@
 
             renderer.render(&self.camera);
         }
+
+        self.gear_entries.clear();
+        let mut gear_entries = std::mem::take(&mut self.gear_entries);
+
         if let Some(ref mut renderer) = self.gear_renderer {
-            renderer.render(&self.camera)
+            if let Some(ref mut state) = self.game_state {
+                state
+                    .physics
+                    .iter_data()
+                    .run(|(pos,): (&mut PositionData,)| {
+                        gear_entries.push(GearEntry::new(
+                            f64::from(pos.0.x()) as f32,
+                            f64::from(pos.0.y()) as f32,
+                            Size::square(256),
+                        ))
+                    });
+            }
+            renderer.render(&self.camera, &gear_entries);
         }
+        self.gear_entries = gear_entries;
     }
 
     fn create_gear(&mut self, position: Point) {
         if let Some(ref mut state) = self.game_state {
             let id = state.physics.new_gear().unwrap();
             let fp_position = FPPoint::new(position.x.into(), position.y.into());
-            state.physics.add_gear_data(
-                id,
-                hwp::physics::PhysicsData::new(fp_position, FPPoint::zero()),
-            )
+            state.physics.add_gear_data(id, &PositionData(fp_position));
+            state
+                .physics
+                .add_gear_data(id, &VelocityData(FPPoint::zero()))
         }
     }
 
--- a/rust/mapgen/src/lib.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/mapgen/src/lib.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -121,7 +121,7 @@
     where
         LandT: Copy + Default + PartialEq,
     {
-        let mut texture = Vec2D::new(land.size(), 0);
+        let mut texture = Vec2D::new(land.size().size(), 0);
 
         if let Some(land_sprite) = theme.land_texture() {
             for (row_index, (land_row, tex_row)) in land.rows().zip(texture.rows_mut()).enumerate()
--- a/rust/mapgen/src/theme.rs	Sun Mar 24 14:19:02 2024 -0400
+++ b/rust/mapgen/src/theme.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,3 +1,4 @@
+use integral_geometry::{Point, Rect};
 use png::{ColorType, Decoder, DecodingError};
 use std::{
     fs::{read_dir, File},
@@ -109,9 +110,70 @@
     }
 }
 
+#[derive(Default)]
+struct Color(u8, u8, u8, u8);
+
+pub struct LandObjectOverlay {
+    texture: ThemeSprite,
+    offset: Point,
+}
+
+pub struct LandObject {
+    texture: ThemeSprite,
+    inland_rects: Vec<Rect>,
+    outland_rects: Vec<Rect>,
+    anchors: Vec<Rect>,
+    overlays: Vec<LandObjectOverlay>,
+}
+
+pub struct LandSpray {
+    texture: ThemeSprite,
+    count: u16,
+}
+
+#[derive(Default)]
+pub struct ThemeColors {
+    border: Color,
+}
+
+pub struct Flakes {
+    texture: ThemeSprite,
+    frames_count: u16,
+    frame_ticks: u16,
+    velocity: u16,
+    fall_speed: u16,
+}
+
+#[derive(Default)]
+pub struct Water {
+    top_color: Color,
+    bottom_color: Color,
+    opacity: u8,
+}
+
+#[derive(Default)]
+pub struct ThemeParts {
+    water: Water,
+    flakes: Option<Flakes>,
+    music: String,
+    sky: Color,
+    tint: Color,
+}
+
+#[derive(Default)]
 pub struct Theme {
+    border_color: Color,
+    clouds_count: u16,
+    flatten_flakes: bool,
     land_texture: Option<ThemeSprite>,
     border_texture: Option<ThemeSprite>,
+    land_objects: Vec<LandObject>,
+    spays: Vec<LandSpray>,
+    use_ice: bool,
+    use_snow: bool,
+    music: String,
+    normal_parts: ThemeParts,
+    sd_parts: ThemeParts,
 }
 
 impl Theme {
@@ -145,10 +207,7 @@
 
 impl Theme {
     pub fn new() -> Self {
-        Theme {
-            land_texture: None,
-            border_texture: None,
-        }
+        Default::default()
     }
 
     pub fn load(path: &Path) -> Result<Theme, ThemeLoadError> {
Binary file share/hedgewars/Data/Graphics/AmmoMenu/Ammos_ExtraDamage_comma.png has changed
Binary file share/hedgewars/Data/Graphics/AmmoMenu/Ammos_base.png has changed
Binary file share/hedgewars/Data/Graphics/AmmoMenu/Ammos_bw_ExtraDamage_comma.png has changed
Binary file share/hedgewars/Data/Graphics/AmmoMenu/Ammos_bw_base.png has changed
Binary file share/hedgewars/Data/Graphics/AmmoMenu/TurnsLeft.png has changed
Binary file share/hedgewars/Data/Graphics/Flags/cm_anarcho_capitalism.png has changed
Binary file share/hedgewars/Data/Graphics/Flags/cm_anarcho_communism.png has changed
Binary file share/hedgewars/Data/Graphics/Flags/cm_anarcho_individualism.png has changed
Binary file share/hedgewars/Data/Graphics/Flags/cm_anarcho_primitivism.png has changed
Binary file share/hedgewars/Data/Graphics/Flags/cm_black.png has changed
Binary file share/hedgewars/Data/Graphics/Flags/montenegro.png has changed
Binary file share/hedgewars/Data/Graphics/Flags/serbia.png has changed
Binary file share/hedgewars/Data/Graphics/Graves/Mushroom.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Graves/Mushroom.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;">
+    <g id="Mushroom">
+        <path id="Silhouette" d="M12.08,16.268C8.922,15.246 4.378,12.731 3.448,9.444C2.287,5.339 6.351,4.717 8.341,3.722C10.331,2.727 14.049,1.959 16.965,2.147C20.725,2.388 28.368,5.588 28.99,9.651C29.612,13.715 27.29,14.295 25.092,15.788C23.908,16.593 21.821,16.903 19.697,16.975C19.784,17.302 19.872,17.65 19.956,18.008C20.367,19.776 21.797,20.539 22.273,21.966C23.434,25.449 21.526,27.978 20.075,29.056C18.624,30.134 14.436,29.927 12.446,29.264C10.456,28.6 8.492,24.867 8.839,21.925C9.109,19.625 10.692,17.619 12.08,16.268Z" style="fill:none;stroke:rgb(57,30,24);stroke-width:3.54px;"/>
+        <path id="Stem" d="M14.27,14.461L18.997,14.669C18.997,14.669 19.536,16.203 19.956,18.008C20.367,19.776 21.797,20.539 22.273,21.966C23.434,25.449 21.526,27.978 20.075,29.056C18.624,30.134 14.436,29.927 12.446,29.264C10.456,28.6 8.492,24.867 8.839,21.925C9.336,17.695 14.27,14.461 14.27,14.461" style="fill:rgb(186,159,103);"/>
+        <clipPath id="_clip1">
+            <path d="M14.27,14.461L18.997,14.669C18.997,14.669 19.536,16.203 19.956,18.008C20.367,19.776 21.797,20.539 22.273,21.966C23.434,25.449 21.526,27.978 20.075,29.056C18.624,30.134 14.436,29.927 12.446,29.264C10.456,28.6 8.492,24.867 8.839,21.925C9.336,17.695 14.27,14.461 14.27,14.461"/>
+        </clipPath>
+        <g clip-path="url(#_clip1)">
+            <path d="M6.556,29.608C6.556,29.608 9.811,26.967 9.574,25.119C9.394,23.718 9.488,21.99 9.949,20.545C10.218,19.7 8.98,17.537 8.712,17.268C8.082,16.638 3.007,18.131 3.007,18.131L6.556,29.608Z" style="fill:rgb(216,191,141);"/>
+            <path d="M6.393,8.594C6.393,8.594 6.082,14.813 7.896,17.612C9.71,20.411 12.405,21.603 14.997,21.551C17.588,21.499 23.704,20.618 25.363,17.405C27.021,14.191 25.311,7.194 25.311,7.194L6.393,8.594Z" style="fill:rgb(112,76,29);"/>
+            <path d="M5.46,21.499C5.46,21.499 10.021,26.682 11.732,27.563C13.442,28.444 17.485,29.014 18.936,28.133C20.387,27.252 22.616,25.853 22.719,19.426C22.823,12.999 30.908,32.746 30.908,32.746L2.972,34.457L5.46,21.499Z" style="fill:rgb(117,88,31);"/>
+        </g>
+        <path id="Cap" d="M16.965,2.147C14.049,1.959 10.331,2.727 8.341,3.722C6.351,4.717 2.287,5.339 3.448,9.444C4.609,13.549 11.409,16.451 14.104,16.742C16.8,17.032 22.734,17.39 25.092,15.788C27.29,14.295 29.612,13.715 28.99,9.651C28.368,5.588 20.725,2.388 16.965,2.147Z" style="fill:rgb(237,44,44);"/>
+        <clipPath id="_clip2">
+            <path d="M16.965,2.147C14.049,1.959 10.331,2.727 8.341,3.722C6.351,4.717 2.287,5.339 3.448,9.444C4.609,13.549 11.409,16.451 14.104,16.742C16.8,17.032 22.734,17.39 25.092,15.788C27.29,14.295 29.612,13.715 28.99,9.651C28.368,5.588 20.725,2.388 16.965,2.147Z"/>
+        </clipPath>
+        <g clip-path="url(#_clip2)">
+            <g id="Spots">
+                <path d="M10.236,6.515C10.236,6.515 8.909,6.432 7.831,7.386C6.753,8.339 7.085,9.086 8.121,9.583C9.158,10.081 11.811,10.371 12.724,9.625C13.636,8.878 14.631,7.842 13.636,7.012C12.641,6.183 8.743,6.888 10.236,6.515Z" style="fill:rgb(246,216,202);"/>
+                <path d="M23.587,11.325C23.511,12.774 23.96,13.937 25.328,14.434C26.697,14.932 28.355,14.144 28.563,12.859C28.77,11.573 29.226,10.62 28.148,9.666C27.07,8.712 26.033,8.132 24.914,8.63C23.794,9.127 23.628,10.537 23.587,11.325Z" style="fill:rgb(246,216,202);"/>
+                <path d="M14.797,16.106C14.341,14.811 14.548,14.11 15.585,13.678C16.621,13.247 17.906,13.247 18.694,13.651C19.482,14.056 18.86,16.106 18.363,16.456C17.865,16.807 15.253,17.4 14.797,16.106Z" style="fill:rgb(246,216,202);"/>
+                <path d="M16.994,0.13C15.254,1.522 15.377,3.82 16.497,4.359C17.616,4.898 18.114,5.354 19.233,4.732C20.353,4.11 20.519,1.373 20.228,0.42C19.938,-0.534 17.202,-0.036 16.994,0.13Z" style="fill:rgb(246,216,202);"/>
+            </g>
+            <path d="M4.293,2.919C3.009,3.69 3.524,7.311 4.257,9.163C5.1,11.296 8.587,13.194 10.785,13.609C12.982,14.023 18.87,15.018 22.685,14.272C26.499,13.526 27.66,11.991 28.075,10.25C28.49,8.509 28.199,4.155 28.282,3.409C28.365,2.662 32.221,16.843 33.382,21.735C34.543,26.628 -2.525,24.182 -2.525,24.182L-0.079,-0.448L4.293,2.919Z" style="fill:rgb(136,24,24);fill-opacity:0.69;"/>
+            <path d="M16.004,2.495C16.046,2.997 14.612,3.373 12.649,3.653C10.919,3.9 9.903,4.939 9.466,5.859C9.028,6.779 9.322,8.487 8.284,9.02C7.247,9.554 5.605,9.565 4.81,8.643C4.015,7.721 3.691,6.827 4.422,5.898C5.152,4.968 5.454,3.51 7.893,2.793C10.332,2.075 11.446,2.013 12.791,2.005C14.341,1.996 15.963,1.996 16.004,2.495Z" style="fill:rgb(255,116,116);fill-opacity:0.65;"/>
+        </g>
+    </g>
+</svg>
Binary file share/hedgewars/Data/Graphics/Graves/Teapot.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Graves/Teapot.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;">
+    <g id="Teapot">
+        <path id="Silhouette" d="M18.373,5.252C18.439,4.822 18.522,4.468 18.628,4.227C19.332,2.614 21.094,2.449 22.723,2.366C24.353,2.284 27.7,3.111 27.744,6.13C27.776,8.36 27.833,10.614 27.86,11.638C28.049,11.992 28.199,12.333 28.318,12.645C28.604,13.394 29.4,19.01 28.924,23.133C28.19,29.5 18.33,30.285 11.928,29.459C5.729,28.659 3.597,26.67 3.251,24.401C3.057,23.126 3.083,19.135 3.215,16.75C3.352,14.282 4.993,10.093 8.66,8.519C8.79,8.272 8.991,8.023 9.269,7.775C10.234,6.914 11.94,6.474 13.581,6.256C14.125,5.458 15.283,4.906 16.622,4.906C17.263,4.906 17.862,5.033 18.373,5.252Z" style="fill:none;stroke:rgb(95,50,25);stroke-width:3.33px;"/>
+        <path id="Handle" d="M18.187,12.581C18.187,12.581 17.923,5.84 18.628,4.227C19.332,2.614 21.094,2.449 22.723,2.366C24.353,2.284 27.7,3.111 27.744,6.13C27.788,9.149 27.876,12.209 27.876,12.209L18.187,12.581Z" style="fill:rgb(210,33,33);"/>
+        <clipPath id="_clip1">
+            <path d="M18.187,12.581C18.187,12.581 17.923,5.84 18.628,4.227C19.332,2.614 21.094,2.449 22.723,2.366C24.353,2.284 27.7,3.111 27.744,6.13C27.788,9.149 27.876,12.209 27.876,12.209L18.187,12.581Z"/>
+        </clipPath>
+        <g clip-path="url(#_clip1)">
+            <path d="M23.417,16.176L23.296,6.912C23.296,6.912 23.457,4.61 25.047,4.61C26.6,4.61 26.658,6.859 26.658,6.859L26.658,16.07L23.417,16.176Z" style="fill:rgb(137,52,60);"/>
+            <path d="M19.593,6.976C19.593,6.976 19.011,4.004 21.187,3.069C23.152,2.225 24.531,2.782 29.706,2.656C31.169,2.621 13.247,-0.144 13.247,-0.144L11.626,6.903L19.593,6.976Z" style="fill:rgb(245,78,78);"/>
+        </g>
+        <path id="Body" d="M3.215,16.75C3.083,19.135 3.057,23.126 3.251,24.401C3.597,26.67 5.729,28.659 11.928,29.459C18.33,30.285 28.19,29.5 28.924,23.133C29.4,19.01 28.604,13.394 28.318,12.645C27.522,10.561 25.344,7.186 19.588,7.299C13.437,7.419 13.5,6.928 9.321,8.271C5.189,9.6 3.36,14.138 3.215,16.75Z" style="fill:rgb(230,22,22);"/>
+        <clipPath id="_clip2">
+            <path id="Body1" d="M3.215,16.75C3.083,19.135 3.057,23.126 3.251,24.401C3.597,26.67 5.729,28.659 11.928,29.459C18.33,30.285 28.19,29.5 28.924,23.133C29.4,19.01 28.604,13.394 28.318,12.645C27.522,10.561 25.344,7.186 19.588,7.299C13.437,7.419 13.5,6.928 9.321,8.271C5.189,9.6 3.36,14.138 3.215,16.75Z"/>
+        </clipPath>
+        <g clip-path="url(#_clip2)">
+            <path d="M10.378,11.277C10.378,11.277 14.019,13.399 16.418,13.526C18.978,13.661 20.921,13.378 23.158,11.952C25.395,10.527 25.257,8.875 24.242,5.531C23.494,3.064 10.378,11.277 10.378,11.277Z" style="fill:rgb(148,28,14);fill-opacity:0.7;"/>
+            <path d="M21.342,5.941C24.84,8.988 25.921,9.62 27.189,12.708C28.244,15.276 27.363,17.414 25.037,19.606C23.434,21.116 19.416,21.425 17.811,20.59C16.173,19.737 14.272,17.642 14.272,17.642L8.606,22.836C8.606,22.836 9.817,24.852 8.496,25.731C7.175,26.609 3.35,27.123 2.504,25.838C0.633,22.995 -1.291,36.387 -1.181,34.94C-1.071,33.492 0.238,35.708 0.238,35.708L35.525,35.346L36.241,10.842L21.342,5.941Z" style="fill:rgb(142,30,17);"/>
+            <path d="M2.168,26.827C5.482,23.609 4.428,14.036 6.868,11.189C9.309,8.342 13.783,6.117 17.128,3.008C21.407,-0.968 0.586,-0.733 0.586,-0.733L-6.51,22.363C-6.51,22.363 0.083,28.851 2.168,26.827Z" style="fill:rgb(255,71,71);"/>
+        </g>
+        <path id="Lid" d="M16.487,6.053C14.483,6.08 10.865,6.351 9.269,7.775C6.612,10.146 11.019,12.579 16.156,12.631C21.655,12.686 25.774,10.306 24.24,7.987C22.772,5.768 18.177,6.247 16.487,6.053" style="fill:rgb(176,73,35);"/>
+        <clipPath id="_clip3">
+            <path d="M16.487,6.053C14.483,6.08 10.865,6.351 9.269,7.775C6.612,10.146 11.019,12.579 16.156,12.631C21.655,12.686 25.774,10.306 24.24,7.987C22.772,5.768 18.177,6.247 16.487,6.053"/>
+        </clipPath>
+        <g clip-path="url(#_clip3)">
+            <path d="M22.561,5.963C22.561,5.963 16.82,6.383 15.128,6.473C13.23,6.574 10.925,7.193 10.354,8.365C9.783,9.537 9.874,11.423 13.731,12.52C15.325,12.974 2.804,13.874 2.804,13.874L5.516,3.517L22.561,5.963Z" style="fill:rgb(205,141,83);"/>
+        </g>
+        <ellipse id="LidHandle" cx="16.622" cy="7.281" rx="3.372" ry="2.375" style="fill:rgb(198,111,41);"/>
+        <clipPath id="_clip4">
+            <ellipse cx="16.622" cy="7.281" rx="3.372" ry="2.375"/>
+        </clipPath>
+        <g clip-path="url(#_clip4)">
+            <path d="M16.495,3.865C17.328,4.568 19.531,5.957 19.142,6.919C18.754,7.882 16.791,8.789 15.236,8.511C13.681,8.234 12.404,7.16 12.218,6.586C12.033,6.012 16.495,3.865 16.495,3.865" style="fill:rgb(222,174,132);"/>
+            <path d="M14.145,6.638C14.145,6.638 14.698,7.004 14.975,6.556C15.253,6.109 15.082,5.704 14.748,5.671C14.414,5.638 13.813,5.933 14.145,6.638Z" style="fill:rgb(234,218,215);"/>
+        </g>
+        <path id="Spout" d="M14.059,16.336C12.008,14.49 9.565,14.945 7.777,15.373C6.119,15.77 4.174,16.873 3.717,19.547C3.226,22.421 7.224,24.872 8.717,25.125C11.794,25.647 14.828,24.082 15.427,21.754C15.948,19.724 16.11,18.182 14.059,16.336Z" style="fill:rgb(128,35,24);"/>
+        <clipPath id="_clip5">
+            <path d="M14.059,16.336C12.008,14.49 9.565,14.945 7.777,15.373C6.119,15.77 4.174,16.873 3.717,19.547C3.226,22.421 7.224,24.872 8.717,25.125C11.794,25.647 14.828,24.082 15.427,21.754C15.948,19.724 16.11,18.182 14.059,16.336Z"/>
+        </clipPath>
+        <g clip-path="url(#_clip5)">
+            <path d="M0.608,20.492C0.608,20.492 5.27,23.15 6.694,23.349C9.224,23.702 11.48,22.129 11.48,21.102C11.48,20.074 11.754,18.918 11.378,18.212C11.002,17.506 9.54,16.454 10.258,16.037C10.976,15.62 13.908,14.969 15.07,15.098C16.232,15.226 2.933,11.887 2.933,11.887L0.608,20.492Z" style="fill:rgb(255,106,84);"/>
+            <ellipse cx="7.51" cy="19.68" rx="2.871" ry="2.696" style="fill:rgb(92,33,33);"/>
+            <path d="M-0.038,18.91C-0.038,18.91 1.603,19.208 2.47,19.422C3.761,19.74 5.129,17.393 6.037,16.794C6.86,16.25 8.368,15.984 7.691,14.569C7.396,13.953 5.821,11.754 5.821,11.754L3.988,9.353L-1.715,18.269L-0.038,18.91Z" style="fill:rgb(255,165,151);"/>
+        </g>
+    </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/Dauber.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,1634 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="Dauber.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="Dauber.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title11233">dauber</title>
+  <defs
+     id="defs4">
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="6.4971662"
+     inkscape:cx="16.254886"
+     inkscape:cy="1008.8498"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer4"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>dauber</dc:title>
+        <dc:date />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat dauber</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="template"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline">
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 39.261578,26.630177 c 0.01024,1.088516 4.154152,4.720033 -0.103548,4.868663 -4.2577,0.148629 0.09331,-5.957178 0.103548,-4.868663 z"
+       id="path6177"
+       inkscape:connector-curvature="0"
+       inkscape:tile-cx="-3.8817661"
+       inkscape:tile-cy="15.01264"
+       inkscape:tile-w="27.083234"
+       inkscape:tile-h="26.405787"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="1.8097467"
+       sodipodi:nodetypes="zzz" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path6177"
+       xlink:href="#path6177"
+       transform="translate(-21.693043,341.98298)"
+       id="use6239"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path6177"
+       xlink:href="#path6177"
+       transform="translate(-23.539999,376.92386)"
+       id="use6241"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path6177"
+       xlink:href="#path6177"
+       transform="translate(-23.07826,409.96922)"
+       id="use6243"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path6177"
+       xlink:href="#path6177"
+       transform="translate(-21.385217,443.99166)"
+       id="use6245"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path6177"
+       xlink:href="#path6177"
+       transform="translate(-20.923478,477.90963)"
+       id="use6247"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path6177"
+       xlink:href="#path6177"
+       transform="translate(-20.769565,510.95499)"
+       id="use6249"
+       width="32"
+       height="1024" />
+    <path
+       sodipodi:nodetypes="zzzzzzzzzzzzz"
+       inkscape:tile-y0="2.2645502"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-h="24.494645"
+       inkscape:tile-w="27.233647"
+       inkscape:tile-cy="14.511873"
+       inkscape:tile-cx="-3.8065594"
+       inkscape:connector-curvature="0"
+       id="path5269"
+       d="M 21.689802,1.9651314 C 20.87728,3.5769636 17.140566,7.99532 13.566248,6.5385788 9.9919303,5.0818376 6.0519827,10.837212 7.0815382,11.272983 8.1110936,11.708754 15.472143,7.4199211 8.217617,11.470056 0.96309,15.52019 2.086928,21.198142 4.042062,21.219037 5.997196,21.239927 11.0955,13.484469 10.243237,14.576391 9.390974,15.668313 5.1789278,25.444816 9.90856,25.555098 14.638192,25.66538 8.9527536,15.54986 17.280657,19.890309 c 8.327903,4.340448 2.910818,8.496392 7.517364,8.31979 4.606546,-0.176602 2.203884,-5.871045 3.105323,-6.493685 0.901439,-0.622641 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.239016 2.209753,-1.622297 -1.349173,-4.839199 C 23.515401,11.739022 22.502325,0.35329916 21.689802,1.9651314 z"
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,33.912434 c -0.812522,1.611833 -4.549236,6.030189 -8.123554,4.573448 -3.5743177,-1.456741 -7.5142653,4.298633 -6.4847098,4.734404 1.0295554,0.435771 8.3906048,-3.853062 1.1360788,0.197073 -7.254527,4.050134 -6.130689,8.711801 -4.175555,8.732696 1.955134,0.02089 7.053438,-6.718283 6.201175,-5.626361 -0.852263,1.091922 -5.0643092,9.85214 -0.334677,9.962422 4.729632,0.110282 -0.9558064,-8.988953 7.372097,-4.648504 8.327903,4.340448 2.910818,7.480107 7.517364,7.303505 4.606546,-0.176602 2.203884,-4.85476 3.105323,-5.4774 0.901439,-0.622641 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.239016 2.209753,-1.622297 -1.349173,-4.839199 -3.558926,-3.216903 -4.572002,-14.602626 -5.384525,-12.990794 z"
+       id="use6105"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,66.928457 c -0.812522,1.611833 -4.549236,6.030189 -8.123554,4.573448 -3.5743177,-1.456741 -7.5142653,2.298633 -6.4847098,2.734404 1.0295554,0.435771 8.3906048,-1.853062 1.1360788,2.197073 -7.254527,4.050134 -6.130689,7.728086 -4.175555,7.748981 1.955134,0.02089 7.053438,-5.734568 6.201175,-4.642646 -0.852263,1.091922 -5.0643092,8.868425 -0.334677,8.978707 4.729632,0.110282 -0.9558064,-8.005238 7.372097,-3.664789 8.327903,4.340448 2.910818,6.496392 7.517364,6.31979 4.606546,-0.176602 2.203884,-3.871045 3.105323,-4.493685 0.901439,-0.622641 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.239016 2.209753,-1.622297 -1.349173,-4.839199 -3.558926,-3.216903 -4.572002,-14.602626 -5.384525,-12.990794 z"
+       id="use6107"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,97.898662 c -0.812522,1.611833 -4.549236,6.030188 -8.123554,4.573448 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43578 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,8.76826 -4.175555,8.78916 1.955134,0.0209 7.053438,-6.77475 6.201175,-5.68283 -0.852263,1.09192 -5.0643092,9.90861 -0.334677,10.01889 4.729632,0.11028 -0.9558064,-9.04542 7.372097,-4.70497 8.327903,4.34045 2.910818,7.53657 7.517364,7.35997 4.606546,-0.1766 2.203884,-4.91122 3.105323,-5.53386 0.901439,-0.62265 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23902 2.209753,-1.6223 -1.349173,-4.8392 -3.558926,-3.21691 -4.572002,-14.60263 -5.384525,-12.990798 z"
+       id="use6109"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,129.9211 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,9.72808 -4.175555,9.74898 1.955134,0.0209 7.053438,-7.73457 6.201175,-6.64265 -0.852263,1.09192 -5.0643092,10.86843 -0.334677,10.97871 4.729632,0.11028 -0.9558064,-10.00524 7.372097,-5.66479 8.327903,4.34045 2.910818,8.49639 7.517364,8.31979 4.606546,-0.1766 2.203884,-5.87105 3.105323,-6.49369 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.8392 -3.558926,-3.2169 -4.572002,-14.60262 -5.384525,-12.99079 z"
+       id="use6111"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,161.96006 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,9.72808 -4.175555,9.74898 1.955134,0.0209 7.053438,-7.73457 6.201175,-6.64265 -0.852263,1.09192 -5.0643092,10.86843 -0.334677,10.97871 4.729632,0.11028 -0.9558064,-10.00524 7.372097,-5.66479 8.327903,4.34045 2.910818,8.49639 7.517364,8.31979 4.606546,-0.1766 2.203884,-5.87105 3.105323,-6.49369 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.83919 -3.558926,-3.21691 -4.572002,-14.60263 -5.384525,-12.9908 z"
+       id="use6113"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,193.92386 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,8.74436 -4.175555,8.76526 1.955134,0.0209 7.053438,-6.75085 6.201175,-5.65893 -0.852263,1.09192 -5.0643092,9.88471 -0.334677,9.99499 4.729632,0.11028 -0.9558064,-9.02152 7.372097,-4.68107 8.327903,4.34045 2.910818,7.51267 7.517364,7.33607 4.606546,-0.1766 2.203884,-4.88733 3.105323,-5.50997 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.8392 -3.558926,-3.2169 -4.572002,-14.60262 -5.384525,-12.99079 z"
+       id="use6115"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,226.9527 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,2.29863 -6.4847098,2.7344 1.0295554,0.43577 8.3906048,-1.85306 1.1360788,2.19708 -7.254527,4.05013 -6.130689,7.72808 -4.175555,7.74898 1.955134,0.0209 7.053438,-5.73457 6.201175,-4.64265 -0.852263,1.09192 -5.0643092,8.86843 -0.334677,8.97871 4.729632,0.11028 -0.9558064,-8.00524 7.372097,-3.66479 8.327903,4.34045 2.910818,6.49639 7.517364,6.31979 4.606546,-0.1766 2.203884,-3.87105 3.105323,-4.49369 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.83919 -3.558926,-3.21691 -4.572002,-14.60263 -5.384525,-12.9908 z"
+       id="use6117"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,257.93942 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,8.7118 -4.175555,8.7327 1.955134,0.0209 7.053438,-6.71829 6.201175,-5.62637 -0.852263,1.09192 -5.0643092,9.85215 -0.334677,9.96243 4.729632,0.11028 -0.9558064,-8.98896 7.372097,-4.64851 8.327903,4.34045 2.910818,7.48011 7.517364,7.30351 4.606546,-0.1766 2.203884,-4.85477 3.105323,-5.47741 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.8392 -3.558926,-3.2169 -4.572002,-14.60262 -5.384525,-12.99079 z"
+       id="use6119"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,289.96187 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,9.72808 -4.175555,9.74898 1.955134,0.0209 7.053438,-7.73457 6.201175,-6.64265 -0.852263,1.09192 -5.0643092,10.86843 -0.334677,10.97871 4.729632,0.11028 -0.9558064,-10.00524 7.372097,-5.66479 8.327903,4.34045 2.910818,8.49639 7.517364,8.31979 4.606546,-0.1766 2.203884,-5.87105 3.105323,-6.49369 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.8392 -3.558926,-3.2169 -4.572002,-14.60262 -5.384525,-12.99079 z"
+       id="use6121"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,321.95499 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,9.72808 -4.175555,9.74898 1.955134,0.0209 7.053438,-7.73457 6.201175,-6.64265 -0.852263,1.09192 -5.0643092,10.86843 -0.334677,10.97871 4.729632,0.11028 -0.9558064,-10.00524 7.372097,-5.66479 8.327903,4.34045 2.910818,8.49639 7.517364,8.31979 4.606546,-0.1766 2.203884,-5.87105 3.105323,-6.49369 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.8392 -3.558926,-3.2169 -4.572002,-14.60262 -5.384525,-12.99079 z"
+       id="use6123"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,353.94811 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,8.7118 -4.175555,8.7327 1.955134,0.0209 7.053438,-6.71829 6.201175,-5.62637 -0.852263,1.09192 -5.0643092,9.85215 -0.334677,9.96243 4.729632,0.11028 -0.9558064,-8.98896 7.372097,-4.64851 8.327903,4.34045 2.910818,7.48011 7.517364,7.30351 4.606546,-0.1766 2.203884,-4.85477 3.105323,-5.47741 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.8392 -3.558926,-3.2169 -4.572002,-14.60262 -5.384525,-12.99079 z"
+       id="use6125"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,386.88899 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,2.29863 -6.4847098,2.7344 1.0295554,0.43577 8.3906048,-1.85306 1.1360788,2.19708 -7.254527,4.05013 -6.130689,7.72808 -4.175555,7.74898 1.955134,0.0209 7.053438,-5.73457 6.201175,-4.64265 -0.852263,1.09192 -5.0643092,8.86843 -0.334677,8.97871 4.729632,0.11028 -0.9558064,-8.00524 7.372097,-3.66479 8.327903,4.34045 2.910818,6.49639 7.517364,6.31979 4.606546,-0.1766 2.203884,-3.87105 3.105323,-4.49369 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.8392 -3.558926,-3.2169 -4.572002,-14.60262 -5.384525,-12.99079 z"
+       id="use6127"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,417.93435 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,8.7118 -4.175555,8.7327 1.955134,0.0209 7.053438,-6.71829 6.201175,-5.62637 -0.852263,1.09192 -5.0643092,9.85215 -0.334677,9.96243 4.729632,0.11028 -0.9558064,-8.98896 7.372097,-4.64851 8.327903,4.34045 2.910818,7.48011 7.517364,7.30351 4.606546,-0.1766 2.203884,-4.85477 3.105323,-5.47741 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.8392 -3.558926,-3.2169 -4.572002,-14.60262 -5.384525,-12.99079 z"
+       id="use6129"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,449.95679 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,9.72808 -4.175555,9.74898 1.955134,0.0209 7.053438,-7.73457 6.201175,-6.64265 -0.852263,1.09192 -5.0643092,10.86843 -0.334677,10.97871 4.729632,0.11028 -0.9558064,-10.00524 7.372097,-5.66479 8.327903,4.34045 2.910818,8.49639 7.517364,8.31979 4.606546,-0.1766 2.203884,-5.87105 3.105323,-6.49369 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.8392 -3.558926,-3.2169 -4.572002,-14.60262 -5.384525,-12.99079 z"
+       id="use6131"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,481.87476 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -5.5660863,11.72808 -3.6109523,11.74898 1.955134,0.0209 6.4888353,-9.73457 5.6365723,-8.64265 -0.852263,1.09192 -4.4997065,12.86843 0.229926,12.97871 4.729632,0.11028 -1.5204094,-12.00524 6.807494,-7.66479 8.327903,4.34045 -1.629894,10.60931 5.517364,10.31979 7.147258,-0.28952 4.203884,-7.87105 5.105323,-8.49369 0.901439,-0.62264 -0.995304,1.31773 0.520156,0.0787 1.51546,-1.23901 2.209753,-3.62229 -1.349173,-6.8392 -3.558926,-3.2169 -4.572002,-14.60262 -5.384525,-12.99078 z"
+       id="use6133"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,512.92012 c -0.812522,1.61183 1.322632,1.79567 -8.123554,4.57345 -9.446186,2.77778 -7.4013447,5.81438 -6.5976303,5.34678 0.8037143,-0.46759 8.5035253,-4.46544 1.2489993,-0.4153 -7.254527,4.05013 -5.1144041,13.72808 -3.1592701,13.74898 1.955134,0.0209 6.0371531,-11.73457 5.1848901,-10.64265 -0.852263,1.09192 -4.0480243,14.86843 0.681608,14.97871 4.729632,0.11028 -1.9720914,-14.00524 6.355812,-9.66479 8.327903,4.34045 -4.87202,12.38347 3.517364,12.31979 8.389384,-0.0637 6.203884,-9.87105 7.105323,-10.49369 0.901439,-0.62264 -0.995304,3.31773 0.520156,2.07871 1.51546,-1.23901 2.209753,-5.62229 -1.349173,-8.83919 -3.558926,-3.21691 -4.572002,-14.60263 -5.384525,-12.9908 z"
+       id="use6135"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,545.93616 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,11.72808 -4.175555,11.74898 1.955134,0.0209 7.053438,-9.73457 6.201175,-8.64265 -0.852263,1.09192 -5.0643092,12.86843 -0.334677,12.97871 4.729632,0.11028 -0.9558064,-12.00524 7.372097,-7.66479 8.327903,4.34045 -2.420338,10.83515 5.517364,10.31979 7.937702,-0.51536 4.203884,-7.87105 5.105323,-8.49369 0.901439,-0.62264 -0.995304,1.31773 0.520156,0.0787 1.51546,-1.23901 2.209753,-3.62229 -1.349173,-6.83919 -3.558926,-3.21691 -4.572002,-14.60263 -5.384525,-12.9908 z"
+       id="use6137"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="czzzzzzzzzzzzc" />
+    <path
+       style="fill:#fffc00;fill-opacity:1;stroke:#7c7c00;stroke-opacity:1;display:inline"
+       d="m 21.689802,577.92928 c -0.812522,1.61183 -4.549236,6.03019 -8.123554,4.57345 -3.5743177,-1.45674 -7.5142653,4.29863 -6.4847098,4.7344 1.0295554,0.43577 8.3906048,-3.85306 1.1360788,0.19708 -7.254527,4.05013 -6.130689,9.72808 -4.175555,9.74898 1.955134,0.0209 7.053438,-7.73457 6.201175,-6.64265 -0.852263,1.09192 -5.0643092,10.86843 -0.334677,10.97871 4.729632,0.11028 -0.9558064,-10.00524 7.372097,-5.66479 8.327903,4.34045 0.934708,8.72223 7.517364,8.31979 6.582656,-0.40244 2.203884,-5.87105 3.105323,-6.49369 0.901439,-0.62264 -0.995304,-0.68227 0.520156,-1.92129 1.51546,-1.23901 2.209753,-1.62229 -1.349173,-4.8392 -3.558926,-3.2169 -4.572002,-14.60262 -5.384525,-12.99079 z"
+       id="use6139"
+       inkscape:connector-curvature="0"
+       inkscape:tile-x0="-17.423383"
+       inkscape:tile-y0="2.2645502"
+       sodipodi:nodetypes="zzzzzzzzzzzzz" />
+    <g
+       id="g4883">
+      <path
+         style="opacity:0.51639344;fill:#a3086a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 58.53908,-10.906947 6.49915,29.089138 -13.05028,0 z"
+         id="path4702"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc" />
+      <path
+         id="path3877"
+         d="m 33.587573,-8.6410742 c 0,1.8061748 -2.928388,3.2703688 -6.540738,3.2703688 -3.61235,0 -6.540738,-1.464194 -6.540738,-3.2703688 0,-1.8061748 2.928388,-3.2703688 6.540738,-3.2703688 3.61235,0 6.540738,1.464194 6.540738,3.2703688 z"
+         style="fill:#a3086a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         transform="translate(31.466252,26.870058)" />
+      <path
+         id="path3879"
+         d="m 33.587573,-8.6410742 c 0,1.8061748 -2.928388,3.2703688 -6.540738,3.2703688 -3.61235,0 -6.540738,-1.464194 -6.540738,-3.2703688 0,-1.8061748 2.928388,-3.2703688 6.540738,-3.2703688 3.61235,0 6.540738,1.464194 6.540738,3.2703688 z"
+         style="fill:#a3086a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         transform="matrix(0.7186853,0,0,0.7186853,39.074924,16.439197)" />
+    </g>
+    <g
+       id="g4837"
+       transform="matrix(1.0343841,0.44740943,-0.44740943,1.0343841,-52.566617,-40.718961)"
+       inkscape:tile-cx="22.430546"
+       inkscape:tile-cy="12.230761"
+       inkscape:tile-w="17.163769"
+       inkscape:tile-h="20.368922"
+       inkscape:tile-x0="13.566912"
+       inkscape:tile-y0="1.7645502"
+       style="opacity:1">
+      <path
+         transform="matrix(0.8923762,0,0,0.8923762,10.028825,-2.4788771)"
+         d="m 88.770195,25.790844 c 0,2.199719 -3.56645,3.982944 -7.965889,3.982944 -4.399439,0 -7.965888,-1.783225 -7.965888,-3.982944 0,-2.199719 3.566449,-3.982944 7.965888,-3.982944 4.399439,0 7.965889,1.783225 7.965889,3.982944 z"
+         sodipodi:ry="3.9829443"
+         sodipodi:rx="7.9658885"
+         sodipodi:cy="25.790844"
+         sodipodi:cx="80.804306"
+         id="path4835"
+         style="fill:none;stroke:#000000;stroke-width:1.12060355999999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path4670"
+         d="m 78.5,7.875 c -2.596143,0 -4.6875,1.0456787 -4.6875,2.34375 0,0.0208 -0.0011,0.04183 0,0.0625 L 72.125,17.5 c -0.09467,0.210709 -0.147263,0.432327 -0.15625,0.65625 l 0,0.03125 c -2.24e-4,0.01115 0,0.02007 0,0.03125 0,1.806175 2.9189,3.28125 6.53125,3.28125 3.61235,0 6.5625,-1.475075 6.5625,-3.28125 0,-0.284473 -0.11348,-0.549378 -0.25,-0.8125 l -1.59375,-7.125 c 0.0011,-0.02067 0,-0.0417 0,-0.0625 C 83.21875,8.9206787 81.09614,7.875 78.5,7.875 z"
+         style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:#00003e;stroke-opacity:1;stroke-width:0.88731260999999984;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         style="fill:#000000;fill-opacity:0.18348622000000001;fill-rule:nonzero;stroke:none"
+         d="M 73.8125,10.28125 72.125,17.5 c -0.09467,0.210709 -0.147263,0.432327 -0.15625,0.65625 l 0,0.03125 c -2.24e-4,0.01115 0,0.02007 0,0.03125 0,1.806175 2.9189,3.28125 6.53125,3.28125 3.61235,0 6.5625,-1.475075 6.5625,-3.28125 0,-0.284473 -0.113484,-0.549378 -0.25,-0.8125 l -1.59375,-7.125 c -0.06597,1.269314 -2.164212,2.3125 -4.71875,2.3125 -2.554538,0 -4.621534,-1.043186 -4.6875,-2.3125 z"
+         id="path4672"
+         inkscape:connector-curvature="0" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path4751"
+         d="m 74.6875,11.5625 -0.75,4.3125 -0.6875,4.1875 c 0.219069,0.156181 0.355991,0.334245 0.625,0.46875 0.59182,0.29591 1.311227,0.55326 2.09375,0.71875 0.782523,0.16549 1.628163,0.25 2.53125,0.25 0.121068,0 0.224303,-0.028 0.34375,-0.03125 L 78.78125,15 78.75,12.5625 c -0.08299,0.0022 -0.165928,0.03125 -0.25,0.03125 -1.589305,0 -2.961694,-0.42756 -3.8125,-1.03125 z"
+         style="fill:#000000;fill-opacity:0.61467892000000002;fill-rule:nonzero;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path4771"
+         d="m 74.25,11.21875 -1,5.15625 -0.625,3.21875 c 0.325082,0.349129 0.711981,0.668491 1.25,0.9375 0.573304,0.286652 1.27796,0.52272 2.03125,0.6875 l 0.5,-6.03125 L 76.625,12.375 C 75.574761,12.142957 74.728214,11.740002 74.25,11.21875 z"
+         style="fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path4830"
+         d="m 82.9375,11 c -0.25427,0.365745 -0.66372,0.710423 -1.21875,0.96875 l 0.5,3.625 0.6875,5 c 0.06395,-0.02953 0.15721,-0.03173 0.21875,-0.0625 0.59182,-0.29591 1.07527,-0.639988 1.40625,-1.03125 0.04015,-0.04747 0.02676,-0.107668 0.0625,-0.15625 L 84.0625,16.625 82.9375,11 z"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,31.947303)"
+       id="use4847"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,64.963326)"
+       id="use4849"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,95.933531)"
+       id="use4851"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,127.95597)"
+       id="use4853"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,159.99493)"
+       id="use4855"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,191.95873)"
+       id="use4857"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,224.98757)"
+       id="use4859"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,255.97429)"
+       id="use4861"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,287.99674)"
+       id="use4863"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,319.98986)"
+       id="use4865"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,351.98298)"
+       id="use4867"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,384.92386)"
+       id="use4869"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,415.96922)"
+       id="use4871"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,447.99166)"
+       id="use4873"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,479.90963)"
+       id="use4875"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,510.95499)"
+       id="use4877"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,543.97103)"
+       id="use4879"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4837"
+       xlink:href="#g4837"
+       transform="translate(0,575.96415)"
+       id="use4881"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="frame"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none"
+       id="rect20004"
+       width="32"
+       height="32"
+       x="-2.6098915e-15"
+       y="0"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="frame-0.5"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       id="rect20004-7"
+       width="31"
+       height="31"
+       x="0.5"
+       y="0.5"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,32)"
+       id="use20175-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,64)"
+       id="use20177-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,96)"
+       id="use20179-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,128)"
+       id="use20181-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,160)"
+       id="use20183-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,192)"
+       id="use20185-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,224)"
+       id="use20187-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,256)"
+       id="use20189-6"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,288)"
+       id="use20191-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,320)"
+       id="use20193-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,352)"
+       id="use20195-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,384)"
+       id="use20197-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,416)"
+       id="use20199-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,448)"
+       id="use20201-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,480)"
+       id="use20203-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,512)"
+       id="use20205-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,544)"
+       id="use20207-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,576)"
+       id="use20209-7"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1"
+       id="path3296"
+       sodipodi:cx="13.082203"
+       sodipodi:cy="31.332769"
+       sodipodi:rx="3.5490334"
+       sodipodi:ry="2.8754942"
+       d="m 16.631236,31.332769 a 3.5490334,2.8754942 0 1 1 -7.0980665,0 3.5490334,2.8754942 0 1 1 7.0980665,0 z"
+       transform="matrix(0.98618401,0,0,0.86941576,-0.40145933,3.2587965)"
+       inkscape:tile-cx="12.253232"
+       inkscape:tile-cy="30.529706"
+       inkscape:tile-w="8.5487669"
+       inkscape:tile-h="7.0462566"
+       inkscape:tile-x0="7.9788488"
+       inkscape:tile-y0="27.006578" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       id="use3526"
+       transform="translate(0,33)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,66)"
+       id="use3528"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,97)"
+       id="use3530"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,128)"
+       id="use3532"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,160)"
+       id="use3534"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,193)"
+       id="use3536"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,226)"
+       id="use3538"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,257)"
+       id="use3540"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,288)"
+       id="use3542"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,320)"
+       id="use3544"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,353)"
+       id="use3546"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,386)"
+       id="use3548"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,417)"
+       id="use3550"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,448)"
+       id="use3552"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,480)"
+       id="use3554"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,510)"
+       id="use3556"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,543)"
+       id="use3558"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,576)"
+       id="use3560"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="frame and hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,0 0,32 9.6875,0 C 9.2558025,31.584271 9,31.057361 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.557361 -0.255803,1.084271 -0.6875,1.5 L 32,32 32,0 0,0 z"
+       id="rect13136"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,32 0,32 9.0625,0 C 9.0158769,63.837256 9,63.672589 9,63.5 9,62.119288 10.567003,61 12.5,61 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.172589 -0.01588,0.337256 -0.0625,0.5 L 32,64 32,32 0,32 z"
+       id="use13138"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,64 0,32 10.0625,0 c 0.326362,-1.139208 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.860792 3.4375,2 L 32,96 32,64 0,64 z"
+       id="use13140"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,96 0,32 9.0625,0 C 9.0158769,127.83726 9,127.67259 9,127.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,128 32,96 0,96 z"
+       id="use13142"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,128 0,32 9.6875,0 C 9.2558025,159.58427 9,159.05736 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,160 32,128 0,128 z"
+       id="use13144"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,160 0,32 9.6875,0 C 9.2558025,191.58427 9,191.05736 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,192 32,160 0,160 z"
+       id="use13146"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,192 0,32 9.0625,0 C 9.0158769,223.83726 9,223.67259 9,223.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,224 32,192 0,192 z"
+       id="use13148"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,224 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,256 32,224 0,224 z"
+       id="use13150"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,256 0,32 9.0625,0 C 9.0158769,287.83726 9,287.67259 9,287.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,288 32,256 0,256 z"
+       id="use13152"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,288 0,32 9.6875,0 C 9.2558025,319.58427 9,319.05736 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,320 32,288 0,288 z"
+       id="use13154"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,320 0,32 9.6875,0 C 9.2558025,351.58427 9,351.05736 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,352 32,320 0,320 z"
+       id="use13156"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,352 0,32 9.0625,0 C 9.0158769,383.83726 9,383.67259 9,383.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,384 32,352 0,352 z"
+       id="use13158"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,384 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,416 32,384 0,384 z"
+       id="use13160"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,416 0,32 9.0625,0 C 9.0158769,447.83726 9,447.67259 9,447.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,448 32,416 0,416 z"
+       id="use13162"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,448 0,32 9.6875,0 C 9.2558025,479.58427 9,479.05736 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,480 32,448 0,448 z"
+       id="use13164"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,480 0,32 9.6875,0 C 9.2558025,511.58427 9,511.05736 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,512 32,480 0,480 z"
+       id="use13166"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,512 0,32 32,0 0,-32 -32,0 z m 12.5,26 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use13168"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,544 0,32 12.5,0 c -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 l 19.5,0 0,-32 -32,0 z"
+       id="use13170"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,576 0,32 9.6875,0 C 9.2558025,607.58427 9,607.05736 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,608 32,576 0,576 z"
+       id="use13172"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="frame-0.5 and hand"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="rect20004-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20175-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20177-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20179-3"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20181-9"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20183-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20185-4-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20187-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20189-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20191-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20193-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20195-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20197-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20199-0-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,448.5 0,31 8.8125,0 C 9.1215627,479.19131 9,478.85917 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20201-6"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,480.5 0,31 8.8125,0 C 9.1215627,511.19131 9,510.85917 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20203-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,512.5 0,31 31,0 0,-31 -31,0 z m 12,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use20205-1"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,544.5 0,31 9.90625,0 C 9.5507391,575.04422 9,574.32095 9,573.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+       id="use20207-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20209-1"
+       inkscape:connector-curvature="0" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/DayAndNight.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,1218 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="DayAndNight.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="DayAndNight.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title56570">star and moon</title>
+  <defs
+     id="defs4">
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10494">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path10496"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10498">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path10500"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10502">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path10504"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10506">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path10508"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10510">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path10512"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10514">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path10516"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10518">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path10520"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10522">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path10524"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10526">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path10528"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10530">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path10532"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10534">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path10536"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10538">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path10540"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10542">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path10544"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10546">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path10548"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10550">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,448.5 0,31 8.8125,0 C 9.1215627,479.19131 9,478.85917 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path10552"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10554">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,480.5 0,31 8.8125,0 C 9.1215627,511.19131 9,510.85917 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path10556"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10558">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,512.5 0,31 31,0 0,-31 -31,0 z m 12,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+         id="path10560"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10562">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,544.5 0,31 9.90625,0 C 9.5507391,575.04422 9,574.32095 9,573.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+         id="path10564"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask10566">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path10568"
+         inkscape:connector-curvature="0" />
+    </mask>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="38.868771"
+     inkscape:cy="714.27612"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer2"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>star and moon</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat star and moon</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="template"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline" />
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="face"
+     style="display:inline">
+    <g
+       id="g5035"
+       transform="translate(60,0)">
+      <path
+         style="opacity:0.49180328;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         d="m 14.46875,14.96875 c -0.723437,0 -1.416727,0.09657 -2.09375,0.25 -2.067533,1.739669 -3.375,4.336458 -3.375,7.25 0,5.23768 4.231069,9.46875 9.46875,9.46875 0.721285,0 1.449828,-0.06621 2.125,-0.21875 0.01117,-0.0094 0.02012,-0.02176 0.03125,-0.03125 2.040226,-1.739511 3.34375,-4.327577 3.34375,-7.21875 0,-5.237681 -4.262319,-9.5 -9.5,-9.5 z M 25.1875,15.75 c 0.430072,0.430072 0.814436,0.900759 1.15625,1.40625 C 26.002894,16.651716 25.616551,16.179051 25.1875,15.75 z"
+         id="path5037"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:0.80327866;fill:#c9dc00;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         d="m 18.46875,12.96875 c -2.324139,0 -4.444474,0.862262 -6.09375,2.25 0.677023,-0.153431 1.370313,-0.25 2.09375,-0.25 5.237681,0 9.5,4.262319 9.5,9.5 0,2.906942 -1.315559,5.510356 -3.375,7.25 4.227658,-0.955174 7.375,-4.733605 7.375,-9.25 0,-5.237681 -4.262319,-9.5 -9.5,-9.5 z"
+         id="path5039"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:type="arc"
+         style="opacity:0.73360656;fill:#ffffff;fill-opacity:1;stroke:none"
+         id="path5041"
+         sodipodi:cx="19.901854"
+         sodipodi:cy="18.956419"
+         sodipodi:rx="2.3904459"
+         sodipodi:ry="2.3904459"
+         d="m 22.2923,18.956419 a 2.3904459,2.3904459 0 1 1 -4.780892,0 2.3904459,2.3904459 0 1 1 4.780892,0 z"
+         transform="matrix(1.4746537,0,0,1.4746537,-9.83563,-8.4418159)" />
+      <path
+         transform="matrix(1.2504577,0,0,1.2504577,-1.8158406,-5.6372485)"
+         d="m 22.2923,18.956419 a 2.3904459,2.3904459 0 1 1 -4.780892,0 2.3904459,2.3904459 0 1 1 4.780892,0 z"
+         sodipodi:ry="2.3904459"
+         sodipodi:rx="2.3904459"
+         sodipodi:cy="18.956419"
+         sodipodi:cx="19.901854"
+         id="path5043"
+         style="opacity:0.73360656;fill:#ffffff;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         style="fill:#ff0000;fill-opacity:1;stroke:none"
+         d="m 25.840842,23.344599 c 0.543352,0.945716 -0.99621,2.200368 -1.999682,2.574293 -1.046856,0.390065 -3.272205,0.268726 -3.272205,-0.68891 0,-0.976331 1.841209,-1.112405 2.84803,-1.451209 0.779509,-0.262044 2.006303,-1.16094 2.423857,-0.434196 z"
+         id="path5045"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="aasaa" />
+      <path
+         sodipodi:type="arc"
+         style="opacity:0.73360656;fill:#000000;fill-opacity:1;stroke:none"
+         id="path5047"
+         sodipodi:cx="29.102291"
+         sodipodi:cy="14.203322"
+         sodipodi:rx="1.1396313"
+         sodipodi:ry="1.1396313"
+         d="m 30.241922,14.203322 a 1.1396313,1.1396313 0 1 1 -2.279262,0 1.1396313,1.1396313 0 1 1 2.279262,0 z"
+         transform="matrix(0.8902439,0,0,0.8902439,-1.9063908,5.3669377)" />
+      <path
+         transform="matrix(1.3231707,0,0,1.3231707,-18.04258,0.72586484)"
+         d="m 30.241922,14.203322 a 1.1396313,1.1396313 0 1 1 -2.279262,0 1.1396313,1.1396313 0 1 1 2.279262,0 z"
+         sodipodi:ry="1.1396313"
+         sodipodi:rx="1.1396313"
+         sodipodi:cy="14.203322"
+         sodipodi:cx="29.102291"
+         id="path5049"
+         style="opacity:0.73360656;fill:#000000;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       id="g10371"
+       mask="url(#mask10494)">
+      <g
+         mask="none"
+         transform="matrix(1.0029307,0,0,1.0029307,-0.02637632,-0.01021167)"
+         inkscape:tile-y0="12.996546"
+         inkscape:tile-x0="9"
+         inkscape:tile-h="19.024342"
+         inkscape:tile-w="59.937957"
+         inkscape:tile-cy="22.508717"
+         inkscape:tile-cx="38.718978"
+         id="g5026">
+        <path
+           inkscape:connector-curvature="0"
+           style="fill:#fffc00;fill-opacity:1;fill-rule:nonzero;stroke:#787800;stroke-width:0.99707788;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 18.46875,12.96875 c -2.324139,0 -4.444474,0.862262 -6.09375,2.25 0.677023,-0.153431 1.370313,-0.25 2.09375,-0.25 5.237681,0 9.5,4.262319 9.5,9.5 0,2.906942 -1.315559,5.510356 -3.375,7.25 4.227658,-0.955174 7.375,-4.733605 7.375,-9.25 0,-5.237681 -4.262319,-9.5 -9.5,-9.5 z"
+           id="path4927" />
+        <path
+           sodipodi:nodetypes="scssccss"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.99707788;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 14.46875,14.96875 c -0.723437,0 -1.416727,0.09657 -2.09375,0.25 -2.067533,1.739669 -3.375,4.336458 -3.375,7.25 0,5.23768 4.231069,9.46875 9.46875,9.46875 0.721285,0 1.449828,-0.06621 2.125,-0.21875 0.01117,-0.0094 0.02012,-0.02176 0.03125,-0.03125 2.040226,-1.739511 3.34375,-4.327577 3.34375,-7.21875 0,-5.237681 -4.262319,-9.5 -9.5,-9.5 z"
+           id="path4929"
+           inkscape:connector-curvature="0" />
+        <path
+           transform="matrix(1.2504577,0,0,1.2504577,-1.8158406,-5.6372485)"
+           d="m 22.2923,18.956419 c 0,1.320207 -1.07024,2.390446 -2.390446,2.390446 -1.320207,0 -2.390446,-1.070239 -2.390446,-2.390446 0,-1.320207 1.070239,-2.390446 2.390446,-2.390446 1.320206,0 2.390446,1.070239 2.390446,2.390446 z"
+           sodipodi:ry="2.3904459"
+           sodipodi:rx="2.3904459"
+           sodipodi:cy="18.956419"
+           sodipodi:cx="19.901854"
+           id="path4976"
+           style="fill:#ffffff;fill-opacity:1;stroke:none"
+           sodipodi:type="arc" />
+        <path
+           style="fill:#ff0000;fill-opacity:1;stroke:none"
+           d="m 25.840842,23.344599 c 0.543352,0.945716 -0.99621,2.200368 -1.999682,2.574293 -1.046856,0.390065 -3.272205,0.268726 -3.272205,-0.68891 0,-0.976331 1.841209,-1.112405 2.84803,-1.451209 0.779509,-0.262044 2.006303,-1.16094 2.423857,-0.434196 z"
+           id="path4978"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="aasaa" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#000000;fill-opacity:1;stroke:none"
+           id="path5022"
+           sodipodi:cx="29.102291"
+           sodipodi:cy="14.203322"
+           sodipodi:rx="1.1396313"
+           sodipodi:ry="1.1396313"
+           d="m 30.241922,14.203322 c 0,0.629401 -0.51023,1.139632 -1.139631,1.139632 -0.629401,0 -1.139631,-0.510231 -1.139631,-1.139632 0,-0.629401 0.51023,-1.139631 1.139631,-1.139631 0.629401,0 1.139631,0.51023 1.139631,1.139631 z"
+           transform="matrix(0.8902439,0,0,0.8902439,-1.9063908,5.3669377)" />
+        <g
+           transform="translate(39.883114,0)"
+           id="g3435">
+          <path
+             sodipodi:type="star"
+             style="fill:#00b800;fill-opacity:1;stroke:none"
+             id="path21093"
+             sodipodi:sides="19"
+             sodipodi:cx="18.956793"
+             sodipodi:cy="24.404411"
+             sodipodi:r1="10.466913"
+             sodipodi:r2="1.9097204"
+             sodipodi:arg1="-0.83048038"
+             sodipodi:arg2="-0.6651334"
+             inkscape:flatsided="false"
+             inkscape:rounded="0"
+             inkscape:randomized="0"
+             d="m 26.016948,16.677155 -5.557521,6.548645 7.684018,-3.837532 -7.382741,4.389297 8.513722,-1.134608 -8.407926,1.754302 8.420831,1.691269 -8.521982,-1.070801 7.415413,4.333871 -7.712549,-3.779865 5.60642,6.506831 -6.067341,-6.079322 3.189884,7.974674 -3.764644,-7.71999 0.427675,8.578338 -1.053988,-8.524078 -2.38088,8.252406 1.770884,-8.404449 -4.931429,7.032198 4.403852,-7.374068 -6.947581,5.049941 6.559595,-5.544592 -8.2108554,2.520446 8.0045044,-3.114274 -8.584356,-0.282179 8.582001,-0.346476 -8.0276081,-3.054226 8.2295051,2.458869 -6.600945,-5.4953 6.985215,4.997757 -4.458967,-7.340873 4.983968,6.99506 -1.83379,-8.390948 2.44263,8.23434 0.990106,-8.531734 -0.363404,8.581301 3.706709,-7.747974 -3.130058,7.998345 z"
+             transform="matrix(0.7791775,-0.45909786,0.13634597,0.23641311,1.1714016,26.311708)"
+             inkscape:transform-center-x="0.68542251"
+             inkscape:transform-center-y="0.69326121" />
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             x="14.892023"
+             y="22.245499"
+             id="text21097"><tspan
+               sodipodi:role="line"
+               id="tspan21099"
+               x="14.892023"
+               y="22.245499"
+               style="font-size:0.997078px;line-height:1.25">2</tspan></text>
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             x="11.221357"
+             y="25.853518"
+             id="text21105"><tspan
+               sodipodi:role="line"
+               id="tspan21107"
+               x="11.221357"
+               y="25.853518"
+               style="font-size:0.997078px;line-height:1.25">4</tspan></text>
+          <text
+             id="text21101"
+             y="24.232067"
+             x="12.776008"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             xml:space="preserve"><tspan
+               y="24.232067"
+               x="12.776008"
+               id="tspan21103"
+               sodipodi:role="line"
+               style="font-size:0.997078px;line-height:1.25">3</tspan></text>
+          <text
+             id="text21109"
+             y="27.472532"
+             x="10.484529"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             xml:space="preserve"><tspan
+               y="27.472532"
+               x="10.484529"
+               id="tspan21111"
+               sodipodi:role="line"
+               style="font-size:0.997078px;line-height:1.25">5</tspan></text>
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             x="10.444389"
+             y="28.729874"
+             id="text21113"><tspan
+               sodipodi:role="line"
+               id="tspan21115"
+               x="10.444389"
+               y="28.729874"
+               style="font-size:0.997078px;line-height:1.25">6</tspan></text>
+          <text
+             id="text21117"
+             y="29.506842"
+             x="11.409289"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             xml:space="preserve"><tspan
+               y="29.506842"
+               x="11.409289"
+               id="tspan21119"
+               sodipodi:role="line"
+               style="font-size:0.997078px;line-height:1.25">7</tspan></text>
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             x="13.271283"
+             y="29.677139"
+             id="text21121"><tspan
+               sodipodi:role="line"
+               id="tspan21123"
+               x="13.271283"
+               y="29.677139"
+               style="font-size:0.997078px;line-height:1.25">8</tspan></text>
+          <text
+             id="text21125"
+             y="29.183586"
+             x="15.65379"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             xml:space="preserve"><tspan
+               y="29.183586"
+               x="15.65379"
+               id="tspan21127"
+               sodipodi:role="line"
+               style="font-size:0.997078px;line-height:1.25">9</tspan></text>
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             x="18.284439"
+             y="27.984732"
+             id="text21129"><tspan
+               sodipodi:role="line"
+               id="tspan21131"
+               x="18.284439"
+               y="27.984732"
+               style="font-size:0.997078px;line-height:1.25">10</tspan></text>
+          <text
+             id="text21133"
+             y="26.242861"
+             x="21.424852"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             xml:space="preserve"><tspan
+               y="26.242861"
+               x="21.424852"
+               id="tspan21135"
+               sodipodi:role="line"
+               style="font-size:0.997078px;line-height:1.25">11</tspan></text>
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             x="24.102234"
+             y="24.286394"
+             id="text21137"><tspan
+               sodipodi:role="line"
+               id="tspan21139"
+               x="24.102234"
+               y="24.286394"
+               style="font-size:0.997078px;line-height:1.25">12</tspan></text>
+          <text
+             id="text21141"
+             y="22.257965"
+             x="25.933411"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             xml:space="preserve"><tspan
+               y="22.257965"
+               x="25.933411"
+               id="tspan21143"
+               sodipodi:role="line"
+               style="font-size:0.997078px;line-height:1.25">13</tspan></text>
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             x="27.372807"
+             y="20.659018"
+             id="text21145"><tspan
+               sodipodi:role="line"
+               id="tspan21147"
+               x="27.372807"
+               y="20.659018"
+               style="font-size:0.997078px;line-height:1.25">14</tspan></text>
+          <text
+             id="text21149"
+             y="19.142786"
+             x="27.788815"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             xml:space="preserve"><tspan
+               y="19.142786"
+               x="27.788815"
+               id="tspan21151"
+               sodipodi:role="line"
+               style="font-size:0.997078px;line-height:1.25">15</tspan></text>
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             x="27.161657"
+             y="17.973324"
+             id="text21153"><tspan
+               sodipodi:role="line"
+               id="tspan21155"
+               x="27.161657"
+               y="17.973324"
+               style="font-size:0.997078px;line-height:1.25">16</tspan></text>
+          <text
+             id="text21157"
+             y="17.718712"
+             x="25.535458"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             xml:space="preserve"><tspan
+               y="17.718712"
+               x="25.535458"
+               id="tspan21159"
+               sodipodi:role="line"
+               style="font-size:0.997078px;line-height:1.25">17</tspan></text>
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             x="23.487963"
+             y="18.017914"
+             id="text21161"><tspan
+               sodipodi:role="line"
+               id="tspan21163"
+               x="23.487963"
+               y="18.017914"
+               style="font-size:0.997078px;line-height:1.25">18</tspan></text>
+          <text
+             id="text21165"
+             y="18.793579"
+             x="20.836828"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             xml:space="preserve"><tspan
+               y="18.793579"
+               x="20.836828"
+               id="tspan21167"
+               sodipodi:role="line"
+               style="font-size:0.997078px;line-height:1.25">19</tspan></text>
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#ffff00;fill-opacity:1;stroke:none"
+             x="18.2003"
+             y="20.059235"
+             id="text21169"><tspan
+               sodipodi:role="line"
+               id="tspan21171"
+               x="18.2003"
+               y="20.059235"
+               style="font-size:0.997078px;line-height:1.25">1</tspan></text>
+        </g>
+      </g>
+      <g
+         mask="none"
+         transform="translate(-1.9358601,1.1587)"
+         inkscape:tile-y0="15.9873"
+         inkscape:tile-x0="15.987632"
+         inkscape:tile-h="7.0501599"
+         inkscape:tile-w="7.0501599"
+         inkscape:tile-cy="19.51238"
+         inkscape:tile-cx="19.512712"
+         id="g5716"
+         style="display:inline">
+        <path
+           transform="matrix(1.4746537,0,0,1.4746537,-9.83563,-8.4417734)"
+           d="m 22.2923,18.956419 c 0,1.320207 -1.07024,2.390446 -2.390446,2.390446 -1.320207,0 -2.390446,-1.070239 -2.390446,-2.390446 0,-1.320207 1.070239,-2.390446 2.390446,-2.390446 1.320206,0 2.390446,1.070239 2.390446,2.390446 z"
+           sodipodi:ry="2.3904459"
+           sodipodi:rx="2.3904459"
+           sodipodi:cy="18.956419"
+           sodipodi:cx="19.901854"
+           id="path4974"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
+           id="path5024"
+           sodipodi:cx="29.102291"
+           sodipodi:cy="14.203322"
+           sodipodi:rx="1.1396313"
+           sodipodi:ry="1.1396313"
+           d="m 30.241922,14.203322 c 0,0.629401 -0.51023,1.139632 -1.139631,1.139632 -0.629401,0 -1.139631,-0.510231 -1.139631,-1.139632 0,-0.629401 0.51023,-1.139631 1.139631,-1.139631 0.629401,0 1.139631,0.51023 1.139631,1.139631 z"
+           transform="matrix(1.3231707,0,0,1.3231707,-18.04258,0.72590656)" />
+      </g>
+    </g>
+    <g
+       id="g10422"
+       mask="url(#mask10498)">
+      <use
+         height="1024"
+         width="32"
+         id="use9288"
+         transform="translate(0,32.022534)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21052"
+         transform="translate(-2.6189421,33.595324)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10426"
+       mask="url(#mask10502)">
+      <use
+         height="1024"
+         width="32"
+         id="use9290"
+         transform="translate(0,64.976971)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21054"
+         transform="translate(-4.8108789,68.305644)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10430"
+       mask="url(#mask10506)">
+      <use
+         height="1024"
+         width="32"
+         id="use9292"
+         transform="translate(0,96.005267)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21056"
+         transform="translate(-6.4190119,101.03689)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10434"
+       mask="url(#mask10510)">
+      <use
+         height="1024"
+         width="32"
+         id="use9294"
+         transform="translate(0,128.01626)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21058"
+         transform="translate(-7.1660409,134.40756)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10438"
+       mask="url(#mask10514)">
+      <use
+         height="1024"
+         width="32"
+         id="use9296"
+         transform="translate(0,159.98796)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21060"
+         transform="translate(-7.2847909,167.4783)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10442"
+       mask="url(#mask10518)">
+      <use
+         height="1024"
+         width="32"
+         id="use9298"
+         transform="translate(0,191.99898)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21062"
+         transform="translate(-6.3872149,200.07047)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10446"
+       mask="url(#mask10522)">
+      <use
+         height="1024"
+         width="32"
+         id="use9300"
+         transform="translate(0,225.03205)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21064"
+         transform="translate(-4.5219099,232.88472)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10450"
+       mask="url(#mask10526)">
+      <use
+         height="1024"
+         width="32"
+         id="use9302"
+         transform="translate(0,255.9817)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21066"
+         transform="translate(-2.4247062,263.4143)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10454"
+       mask="url(#mask10530)">
+      <use
+         height="1024"
+         width="32"
+         id="use9304"
+         transform="translate(0,287.99271)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21068"
+         transform="translate(0.18345947,294.17263)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10458"
+       mask="url(#mask10534)">
+      <use
+         height="1024"
+         width="32"
+         id="use9306"
+         transform="translate(0,320.00373)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21070"
+         transform="translate(2.8669593,324.82617)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10462"
+       mask="url(#mask10538)">
+      <use
+         height="1024"
+         width="32"
+         id="use9308"
+         transform="translate(0,352.01474)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21072"
+         transform="translate(5.3040309,355.07353)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10466"
+       mask="url(#mask10542)">
+      <use
+         height="1024"
+         width="32"
+         id="use9310"
+         transform="translate(0,385.00851)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21074"
+         transform="translate(7.3523439,386.31464)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10470"
+       mask="url(#mask10546)">
+      <use
+         height="1024"
+         width="32"
+         id="use9312"
+         transform="translate(0,415.99747)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21076"
+         transform="translate(8.5794269,415.68241)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10474"
+       mask="url(#mask10550)">
+      <use
+         height="1024"
+         width="32"
+         id="use9314"
+         transform="translate(0,448.00848)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21078"
+         transform="translate(8.9779539,446.44422)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10478"
+       mask="url(#mask10554)">
+      <use
+         height="1024"
+         width="32"
+         id="use9316"
+         transform="translate(0,480.01949)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21080"
+         transform="translate(8.7364099,477.47011)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10482"
+       mask="url(#mask10558)">
+      <use
+         height="1024"
+         width="32"
+         id="use9318"
+         transform="translate(0,511.00845)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21082"
+         transform="translate(7.2414629,508.36201)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10486"
+       mask="url(#mask10562)">
+      <use
+         height="1024"
+         width="32"
+         id="use9320"
+         transform="translate(0,544.00221)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21084"
+         transform="translate(5.2480599,541.63333)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+    <g
+       id="g10490"
+       mask="url(#mask10566)">
+      <use
+         height="1024"
+         width="32"
+         id="use9322"
+         transform="translate(0,576.01323)"
+         xlink:href="#g5026"
+         inkscape:tiled-clone-of="#g5026"
+         y="0"
+         x="0" />
+      <use
+         mask="none"
+         height="1024"
+         width="32"
+         id="use21086"
+         transform="translate(2.7478633,574.58167)"
+         xlink:href="#g5716"
+         inkscape:tiled-clone-of="#g5716"
+         y="0"
+         x="0"
+         style="display:inline" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="eye"
+     style="display:none"
+     sodipodi:insensitive="true" />
+  <g
+     inkscape:groupmode="layer"
+     id="layer10"
+     inkscape:label="frame"
+     style="display:inline" />
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true" />
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/Dragon.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,8195 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="Dragon.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="Dragon.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title14680">dragon</title>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="10.56862"
+     inkscape:cx="38.790533"
+     inkscape:cy="680.56926"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer7"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true"
+     inkscape:bbox-paths="false" />
+  <defs
+     id="defs4">
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5041"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5037"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect4269"
+       is_visible="true" />
+    <inkscape:path-effect
+       pattern-nodetypes="cccc"
+       fuse_tolerance="0"
+       vertical_pattern="false"
+       prop_units="false"
+       tang_offset="0"
+       normal_offset="0"
+       spacing="0"
+       scale_y_rel="false"
+       prop_scale="1"
+       copytype="single_stretched"
+       pattern="M 9.3560298,33.136137 9.2226538,34.46667 12.247068,34.174857 9.3560298,33.136137 z"
+       is_visible="true"
+       id="path-effect5344"
+       effect="skeletal" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect5342"
+       is_visible="true"
+       pattern="M 8.5491019,37.53089 8.4157262,38.861423 11.44014,38.56961 8.5491019,37.53089 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="cccc" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect5340"
+       is_visible="true"
+       pattern="m 8.3690444,30.568642 -0.133376,1.330533 3.0244136,-0.291813 -2.8910376,-1.03872 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="cccc" />
+    <inkscape:path-effect
+       pattern-nodetypes="cccc"
+       fuse_tolerance="0"
+       vertical_pattern="false"
+       prop_units="false"
+       tang_offset="0"
+       normal_offset="0"
+       spacing="0"
+       scale_y_rel="false"
+       prop_scale="1"
+       copytype="single_stretched"
+       pattern="m 14.903841,53.436027 -0.133376,1.330533 3.024414,-0.291813 -2.891038,-1.03872 z"
+       is_visible="true"
+       id="path-effect5338"
+       effect="skeletal" />
+    <inkscape:path-effect
+       pattern-nodetypes="cccc"
+       fuse_tolerance="0"
+       vertical_pattern="false"
+       prop_units="false"
+       tang_offset="0"
+       normal_offset="0"
+       spacing="0"
+       scale_y_rel="false"
+       prop_scale="1"
+       copytype="single_stretched"
+       pattern="m 16.144242,47.494107 -0.133376,1.330533 3.024414,-0.291813 -2.891038,-1.03872 z"
+       is_visible="true"
+       id="path-effect5336"
+       effect="skeletal" />
+    <inkscape:path-effect
+       pattern-nodetypes="cccc"
+       fuse_tolerance="0"
+       vertical_pattern="false"
+       prop_units="false"
+       tang_offset="0"
+       normal_offset="0"
+       spacing="0"
+       scale_y_rel="false"
+       prop_scale="1"
+       copytype="single_stretched"
+       pattern="m 16.917825,40.631892 -0.133376,1.330533 3.024414,-0.291813 -2.891038,-1.03872 z"
+       is_visible="true"
+       id="path-effect5334"
+       effect="skeletal" />
+    <inkscape:path-effect
+       pattern-nodetypes="cccc"
+       fuse_tolerance="0"
+       vertical_pattern="false"
+       prop_units="false"
+       tang_offset="0"
+       normal_offset="0"
+       spacing="0"
+       scale_y_rel="false"
+       prop_scale="1"
+       copytype="single_stretched"
+       pattern="m 17.558032,34.029759 -0.133376,1.330533 3.024414,-0.291813 -2.891038,-1.03872 z"
+       is_visible="true"
+       id="path-effect5332"
+       effect="skeletal" />
+    <inkscape:path-effect
+       pattern-nodetypes="cccc"
+       fuse_tolerance="0"
+       vertical_pattern="false"
+       prop_units="false"
+       tang_offset="0"
+       normal_offset="0"
+       spacing="0"
+       scale_y_rel="false"
+       prop_scale="1"
+       copytype="single_stretched"
+       pattern="m 20.572339,28.507976 -0.133376,1.330533 3.024414,-0.291813 -2.891038,-1.03872 z"
+       is_visible="true"
+       id="path-effect5330"
+       effect="skeletal" />
+    <inkscape:path-effect
+       pattern-nodetypes="cccc"
+       fuse_tolerance="0"
+       vertical_pattern="false"
+       prop_units="false"
+       tang_offset="0"
+       normal_offset="0"
+       spacing="0"
+       scale_y_rel="false"
+       prop_scale="1"
+       copytype="single_stretched"
+       pattern="m 22.819732,19.751816 -0.133376,1.330533 3.024414,-0.291813 -2.891038,-1.03872 z"
+       is_visible="true"
+       id="path-effect5328"
+       effect="skeletal" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5326"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5322"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5318"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5314"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5310"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5306"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect5302"
+       is_visible="true"
+       pattern="m 13.94353,66.300181 -0.133376,1.330533 3.024414,-0.291813 -2.891038,-1.03872 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="cccc" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5300"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5296"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5292"
+       effect="spiro" />
+    <inkscape:path-effect
+       pattern-nodetypes="cccc"
+       fuse_tolerance="0"
+       vertical_pattern="false"
+       prop_units="false"
+       tang_offset="0"
+       normal_offset="0"
+       spacing="0"
+       scale_y_rel="false"
+       prop_scale="1"
+       copytype="single_stretched"
+       pattern="m 9.8295148,48.887891 -0.133376,1.330533 3.0244142,-0.291813 -2.8910382,-1.03872 z"
+       is_visible="true"
+       id="path-effect5288"
+       effect="skeletal" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5286"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5282"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect5278"
+       is_visible="true"
+       pattern="m 10.236313,44.066334 -0.133376,1.330533 3.024414,-0.291813 -2.891038,-1.03872 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="cccc" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5276"
+       is_visible="true" />
+    <inkscape:path-effect
+       pattern-nodetypes="cccc"
+       fuse_tolerance="0"
+       vertical_pattern="false"
+       prop_units="false"
+       tang_offset="0"
+       normal_offset="0"
+       spacing="0"
+       scale_y_rel="false"
+       prop_scale="1"
+       copytype="single_stretched"
+       pattern="m 10.209638,38.664589 -0.133376,1.330533 3.024414,-0.291813 -2.891038,-1.03872 z"
+       is_visible="true"
+       id="path-effect5243"
+       effect="skeletal" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5241"
+       effect="spiro" />
+    <inkscape:path-effect
+       fuse_tolerance="0"
+       vertical_pattern="false"
+       prop_units="false"
+       tang_offset="0"
+       normal_offset="0"
+       spacing="0"
+       scale_y_rel="false"
+       prop_scale="1"
+       copytype="single_stretched"
+       pattern="m 74.808266,1.046748 c 0,0.440032 -16.690437,0.796748 -37.279133,0.796748 C 16.940436,1.843496 0.25,1.48678 0.25,1.046748 0.25,0.606716 16.940436,0.25 37.529133,0.25 c 20.588696,0 37.279133,0.356716 37.279133,0.796748 z"
+       is_visible="true"
+       id="path-effect4733"
+       effect="skeletal" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect4715"
+       effect="spiro" />
+    <linearGradient
+       id="linearGradient4640">
+      <stop
+         id="stop4642"
+         offset="0"
+         style="stop-color:#ff0000;stop-opacity:1;" />
+      <stop
+         id="stop4644"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1;" />
+    </linearGradient>
+    <filter
+       id="filter4090"
+       inkscape:collect="always"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         id="feGaussianBlur4092"
+         stdDeviation="0.15412888"
+         inkscape:collect="always" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4640"
+       id="linearGradient8015"
+       gradientUnits="userSpaceOnUse"
+       x1="24.019348"
+       y1="25.0273"
+       x2="24.493393"
+       y2="24.4837" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect4269-6"
+       is_visible="true" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath11338">
+      <g
+         id="g11340"
+         transform="translate(2.469665,1.095885)">
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,1.0312499 C 0.042228,1.0312499 0,1.0451699 0,1.0624999 L 0,31 c 0,0.0173 0.042228,0.03125 0.09375,0.03125 l 31.8125,0 C 31.95777,31.0312 32,31.01733 32,31 L 32,1.0624999 c 0,-0.0173 -0.04223,-0.03125 -0.09375,-0.03125 l -31.8125,0 z M 15.5,6.46875 c 2.195409,2.329834 2.947015,3.2337409 5.40625,6.09375 0.640256,0.131015 1.255408,0.313653 1.84375,0.5625 0.588341,0.248848 1.164257,0.552754 1.6875,0.90625 0.523243,0.353496 0.992539,0.773789 1.4375,1.21875 0.444961,0.444961 1.009157,1.157305 1.15625,1.84375 0.132308,0.617445 0.378815,1.533126 0.21875,2.21875 -0.156033,0.668354 -0.718209,1.176449 -1,1.4375 -0.479416,0.444132 -0.974343,0.168868 -1.46875,0.40625 C 16.565284,23.168008 16.222732,19.863763 14.3125,13.5 11.262393,10.639918 14.859744,6.599765 15.5,6.46875 z"
+           id="path11342" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,33.03125 C 0.042228,33.03125 0,33.04517 0,33.0625 L 0,63 c 0,0.0173 0.042228,0.03125 0.09375,0.03125 l 31.8125,0 C 31.95777,63.0312 32,63.01733 32,63 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.03125 -0.09375,-0.03125 l -31.8125,0 z M 15.5,38.46875 c 2.195409,2.329834 2.947015,3.233741 5.40625,6.09375 0.640256,0.131015 1.255408,0.313653 1.84375,0.5625 0.588341,0.248848 1.164257,0.552754 1.6875,0.90625 0.523243,0.353496 0.992539,0.773789 1.4375,1.21875 0.444961,0.444961 1.009157,1.157305 1.15625,1.84375 0.132308,0.617445 0.378815,1.533126 0.21875,2.21875 -0.156033,0.668354 -0.718209,1.176449 -1,1.4375 -0.479416,0.444132 -0.974343,0.168868 -1.46875,0.40625 C 16.565284,55.168008 16.222732,51.863763 14.3125,45.5 11.262393,42.639918 14.859744,38.599765 15.5,38.46875 z"
+           id="path11344" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,65.03125 C 0.042228,65.03125 0,65.04517 0,65.0625 L 0,95 c 0,0.0173 0.042228,0.03125 0.09375,0.03125 l 31.8125,0 C 31.95777,95.0312 32,95.01733 32,95 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.03125 -0.09375,-0.03125 l -31.8125,0 z M 15.5,71.40625 c 2.195409,2.329834 2.947015,3.233741 5.40625,6.09375 0.640256,0.131015 1.255408,0.313653 1.84375,0.5625 0.588341,0.248848 1.164257,0.552754 1.6875,0.90625 0.523243,0.353496 0.992539,0.773789 1.4375,1.21875 0.444961,0.444961 1.009157,1.157305 1.15625,1.84375 0.132308,0.617445 0.378815,1.533126 0.21875,2.21875 -0.156033,0.668354 -0.718209,1.207699 -1,1.46875 -0.479416,0.444132 -0.974343,0.137618 -1.46875,0.375 C 16.565284,88.105508 16.222732,84.801263 14.3125,78.4375 11.262393,75.577418 14.859744,71.537265 15.5,71.40625 z"
+           id="path11346" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,97.03125 C 0.042228,97.03125 0,97.04517 0,97.0625 L 0,127 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,127.0312 32,127.01733 32,127 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.03125 -0.09375,-0.03125 l -31.8125,0 z M 15.5,102.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -8.215966,2.01176 -8.558518,-1.29249 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11348" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,129.03125 C 0.042228,129.03125 0,129.04517 0,129.0625 L 0,159 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,159.0312 32,159.01733 32,159 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,134.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -8.215966,2.01176 -8.558518,-1.29249 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11350" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,161.03125 C 0.042228,161.03125 0,161.04517 0,161.0625 L 0,191 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,191.0312 32,191.01733 32,191 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,166.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -8.215966,2.01176 -8.558518,-1.29249 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11352" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,193.03125 C 0.042228,193.03125 0,193.04517 0,193.0625 L 0,223 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,223.0312 32,223.01733 32,223 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,198.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -8.215966,2.01176 -8.558518,-1.29249 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11354" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,225.03125 C 0.042228,225.03125 0,225.04517 0,225.0625 L 0,255 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,255.0312 32,255.01733 32,255 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z m 15.40625,6.375 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.2077 -1,1.46875 -0.479416,0.44413 -0.974343,0.13762 -1.46875,0.375 -8.215966,2.01176 -8.558518,-1.29249 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11356" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,257.03125 C 0.042228,257.03125 0,257.04517 0,257.0625 L 0,287 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,287.0312 32,287.01733 32,287 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,262.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -8.215966,2.01176 -8.558518,-1.29249 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11358" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,289.03125 C 0.042228,289.03125 0,289.04517 0,289.0625 L 0,319 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,319.0312 32,319.01733 32,319 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,294.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -6.487943,-0.53227 -5.956883,-3.26532 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11360" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,321.03125 C 0.042228,321.03125 0,321.04517 0,321.0625 L 0,351 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,351.0312 32,351.01733 32,351 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,326.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -5.422329,-1.44429 -5.779281,-3.82212 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11362" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,353.03125 C 0.042228,353.03125 0,353.04517 0,353.0625 L 0,383 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,383.0312 32,383.01733 32,383 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,358.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -4.841521,-1.96749 -5.625679,-3.87492 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11364" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,385.03125 C 0.042228,385.03125 0,385.04517 0,385.0625 L 0,415 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,415.0312 32,415.01733 32,415 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,390.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -4.371115,-0.88748 -5.376076,-3.62052 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11366" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,417.03125 C 0.042228,417.03125 0,417.04517 0,417.0625 L 0,447 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,447.0312 32,447.01733 32,447 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,422.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -5.254327,-0.97868 -5.952083,-3.13091 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11368" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,449.03125 C 0.042228,449.03125 0,449.04517 0,449.0625 L 0,479 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,479.0312 32,479.01733 32,479 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,454.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -8.215966,2.01176 -8.558518,-1.29249 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11370" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,481.03125 C 0.042228,481.03125 0,481.04517 0,481.0625 L 0,511 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,511.0312 32,511.01733 32,511 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,486.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -8.215966,2.01176 -8.558518,-1.29249 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11372" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,513.03125 C 0.042228,513.03125 0,513.04517 0,513.0625 L 0,543 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,543.0312 32,543.01733 32,543 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z m 15.40625,3.375 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.3449 1.84375,0.59375 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.74254 1.4375,1.1875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.2077 -1,1.46875 -0.479416,0.44413 -0.974343,0.13762 -1.46875,0.375 -8.215966,2.01176 -8.558518,-1.26124 -10.46875,-7.625 -3.050107,-2.86009 0.547244,-6.93149 1.1875,-7.0625 z"
+           id="path11374" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,545.03125 C 0.042228,545.03125 0,545.04517 0,545.0625 L 0,575 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,575.0312 32,575.01733 32,575 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,550.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -8.215966,2.01176 -8.558518,-1.29249 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11376" />
+        <path
+           style="opacity:0.48287671;fill:#000000;fill-opacity:1;stroke:none"
+           d="M 0.09375,577.03125 C 0.042228,577.03125 0,577.04517 0,577.0625 L 0,607 c 0,0.0173 0.042228,0.0313 0.09375,0.0313 l 31.8125,0 C 31.95777,607.0312 32,607.01733 32,607 l 0,-29.9375 c 0,-0.0173 -0.04223,-0.0313 -0.09375,-0.0313 l -31.8125,0 z M 15.5,582.46875 c 2.195409,2.32983 2.947015,3.23374 5.40625,6.09375 0.640256,0.13102 1.255408,0.31365 1.84375,0.5625 0.588341,0.24885 1.164257,0.55276 1.6875,0.90625 0.523243,0.3535 0.992539,0.77379 1.4375,1.21875 0.444961,0.44496 1.009157,1.15731 1.15625,1.84375 0.132308,0.61745 0.378815,1.53313 0.21875,2.21875 -0.156033,0.66835 -0.718209,1.17645 -1,1.4375 -0.479416,0.44413 -0.974343,0.16887 -1.46875,0.40625 -8.215966,2.01176 -8.558518,-1.29249 -10.46875,-7.65625 -3.050107,-2.86009 0.547244,-6.90024 1.1875,-7.03125 z"
+           id="path11378" />
+      </g>
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath12195">
+      <g
+         id="g12197"
+         style="opacity:0.5">
+        <path
+           style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+           d="m -16.547693,1.6690807 c -0.684799,-1.02766397 -4.555727,-5.542427 -4.796686,-5.521327 -1.927673,0.1681 -3.280688,3.98726303 -2.582493,5.850046 1.565251,0.410274 9.950834,7.2637767 11.840459,10.3730563 -0.01886,1.16712 0.206903,1.75852 0.75,2.28125 0.379117,1.22273 0.662326,2.67934 1.3437497,3.75 0.471566,0.0611 0.219212,0.33129 1.03125,0.21875 0.812037,-0.11254 0.134753,-0.0306 1.031249,-1.40625 0.892022,-1.36875 -0.626232,-0.43925 -1.718749,-0.40625 -0.03406,0.001 -0.11739,-0.002 -0.15625,0 0.672291,-0.2714 1.26965,-0.83295 1.687499,-0.9375 0.668561,-0.16729 2.24872,0.43726 2.34375,-0.3125 0.09503,-0.74976 -0.984118,-2.083681 -0.984118,-2.083681 -0.04433,-0.436312 0.523008,-1.113937 -0.916733,-2.004506 l 0.287691,-0.951525 c 0,0 -1.292208,-1.4682346 -1.66559,-2.7944326 -0.42511,-1.509929 -1.1324647,-4.2542337 -3.7757507,-4.8973237 -1.60156,-0.389647 -2.227028,-1.443543 -3.719278,-1.157807 z"
+           id="path12199"
+           sodipodi:nodetypes="csccccsssssscccssc" />
+        <g
+           id="g12201"
+           inkscape:tile-cx="15.984375"
+           inkscape:tile-cy="15.979922"
+           inkscape:tile-w="32.03125"
+           inkscape:tile-h="30.031251"
+           inkscape:tile-x0="-0.03124992"
+           inkscape:tile-y0="0.96429649">
+          <path
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             id="path12203"
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12205"
+           transform="translate(0,32.055408)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12207"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12209"
+           transform="translate(0,65.020352)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12211"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12213"
+           transform="translate(0,96.041046)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12215"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12217"
+           transform="translate(0,128.03871)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12219"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12221"
+           transform="translate(0,160.0544)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12223"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12225"
+           transform="translate(0,192.04332)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12227"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12229"
+           transform="translate(0,225.03983)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12231"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12233"
+           transform="translate(0,256.06523)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12235"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12237"
+           transform="translate(0,288.03992)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12239"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12241"
+           transform="translate(0,320.04232)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12243"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12245"
+           transform="translate(0,352.05802)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12247"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12249"
+           transform="translate(0,385.08665)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12251"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12253"
+           transform="translate(0,416.04367)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12255"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12257"
+           transform="translate(0,448.0785)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12259"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12261"
+           transform="translate(0,480.0388)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12263"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12265"
+           transform="translate(0,512.04119)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12267"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12269"
+           transform="translate(0,544.05215)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12271"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+        <g
+           inkscape:tile-y0="0.96429649"
+           inkscape:tile-x0="-0.03124992"
+           id="g12273"
+           transform="translate(0,576.03632)">
+          <path
+             sodipodi:nodetypes="cccccccccccsscccssssssccccc"
+             id="path12275"
+             d="M 0.0625,0.96875 C 0.010978,0.96875 -0.03125,0.98267 -0.03125,1 l 0,29.96875 C -0.03125,30.98608 0.010978,31 0.0625,31 l 31.84375,0 C 31.95777,31 32,30.98608 32,30.96875 L 32,1 C 32,0.98267 31.95777,0.96875 31.90625,0.96875 l -31.84375,0 z m 15.75,5.0625 c 0.240959,-0.0211 4.096451,4.472336 4.78125,5.5 1.49225,-0.285736 2.03218,0.732287 3.625,1.15625 2.632485,0.700691 3.44989,3.396321 3.875,4.90625 0.373382,1.326198 0.316277,1.908653 0.316277,1.908653 l 1.058723,1.841347 c 1.439741,0.890569 0.89317,1.563688 0.9375,2 0,0 1.06378,1.34399 0.96875,2.09375 -0.09503,0.74976 -1.675189,0.14521 -2.34375,0.3125 -0.417849,0.10455 -1.015209,0.6661 -1.6875,0.9375 0.03886,-0.002 0.12219,0.001 0.15625,0 1.092517,-0.033 2.610772,-0.9625 1.71875,0.40625 C 28.322254,28.4694 28.999537,28.38746 28.1875,28.5 27.375462,28.61254 27.627816,28.34235 27.15625,28.28125 26.474826,27.21059 26.191617,25.75398 25.8125,24.53125 25.269403,24.00852 25.04364,23.41712 25.0625,22.25 23.172875,19.14072 15.752751,10.379024 14.1875,9.96875 13.489305,8.105967 13.884827,6.19935 15.8125,6.03125 z"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        </g>
+      </g>
+    </clipPath>
+  </defs>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>dragon</dc:title>
+        <dc:date />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat dragon and laminaria hat</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+        <dc:description>A moustache without a dragon
+is the same as a moustache with a dragon,
+only without a dragon.</dc:description>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(0,-28.362183)"
+     style="display:none"
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Layer 1"
+     sodipodi:insensitive="true">
+    <path
+       id="path3833"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z"
+       id="path3086"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z"
+       id="path3090"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z"
+       id="path3092"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z"
+       id="path3094"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z"
+       id="path3096"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z"
+       id="path3098"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z"
+       id="path3100"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z"
+       id="path3102"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z"
+       id="path3104"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z"
+       id="path3106"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z"
+       id="path3108"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z"
+       id="path3110"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z"
+       id="path3112"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z"
+       id="path3114"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z"
+       id="path3116"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z"
+       id="path3118"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z"
+       id="path3126"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z"
+       id="path3128"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z"
+       id="path3130"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z"
+       id="path3132"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="32.616512"
+       y="54.359245"
+       id="text8131"><tspan
+         sodipodi:role="line"
+         id="tspan8133"
+         x="32.616512"
+         y="54.359245"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> 1</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="70.359245"
+         id="tspan8135"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="86.359245"
+         id="tspan8175"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> 2</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="102.35925"
+         id="tspan8137"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="118.35925"
+         id="tspan8177"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> 3</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="134.35925"
+         id="tspan8139"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="150.35925"
+         id="tspan8179"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> 4</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="166.35925"
+         id="tspan8141"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="182.35925"
+         id="tspan8181"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> 5</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="198.35925"
+         id="tspan8143"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="214.35925"
+         id="tspan8183"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> 6</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="230.35925"
+         id="tspan8145"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="246.35925"
+         id="tspan8185"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> 7</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="262.35925"
+         id="tspan8147"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="278.35925"
+         id="tspan8187"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> 8</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="294.35925"
+         id="tspan8149"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="310.35925"
+         id="tspan8189"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> 9</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="326.35925"
+         id="tspan8151"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="342.35925"
+         id="tspan8191"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'">10</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="358.35925"
+         id="tspan8153"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="374.35925"
+         id="tspan8193"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'">11</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="390.35925"
+         id="tspan8155"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="406.35925"
+         id="tspan8195"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'">12</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="422.35925"
+         id="tspan8157"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="438.35925"
+         id="tspan8197"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'">13</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="454.35925"
+         id="tspan8159"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="470.35925"
+         id="tspan8199"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'">14</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="486.35925"
+         id="tspan8161"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="502.35925"
+         id="tspan8201"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'">15</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="518.35925"
+         id="tspan8163"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="534.35925"
+         id="tspan8203"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'">16</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="550.35925"
+         id="tspan8165"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="566.35925"
+         id="tspan8205"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'">17</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="582.35925"
+         id="tspan8167"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="598.35925"
+         id="tspan8207"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'">18</tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="614.35925"
+         id="tspan8173"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'"> </tspan><tspan
+         sodipodi:role="line"
+         x="32.616512"
+         y="630.35925"
+         id="tspan8209"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:1;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono'">19</tspan></text>
+    <path
+       style="fill:#00f808;fill-opacity:1;fill-rule:nonzero;stroke:#006c01;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+       id="path8213"
+       d="m 44.481281,319.50857 c -0.04112,1.22799 -0.530517,2.2687 -1.380545,3.12503 -0.573838,0.21914 -1.147134,-0.0264 -1.733864,-0.0589 -0.44711,-0.006 -0.890067,0.0626 -1.33269,-0.0225 -0.661553,-0.17955 -0.829406,-0.76372 -0.995339,-1.35209 -0.100241,-0.56814 -0.165805,-1.11618 0.0097,-1.67354 0.142412,-0.31499 0.366652,-0.49164 0.607081,-0.73525 0.03479,-0.0353 0.141234,-0.13041 0.0942,-0.11491 -0.06725,0.0222 -0.248229,0.2637 -0.07273,0.0397 0.167292,-0.32996 0.285926,-0.67966 0.436105,-1.01746 0.240407,-0.56303 0.754823,-0.79267 1.204477,-1.12647 0.441332,-0.42233 0.971319,-0.66028 1.570805,-0.76395 0.465806,-0.10774 0.921859,0.0266 1.38032,0.0885 0.32328,-0.0737 0.67027,-0.0657 1.004632,-0.0183 0.735563,0.15501 1.28193,0.64928 1.845353,1.10529 0.447955,0.38647 0.617701,0.92258 0.610398,1.49959 0.03411,0.40657 0.172327,0.79561 0.313399,1.17633 0.21892,0.64465 0.399346,1.28784 0.410309,1.97132 0.02953,0.60063 -0.245759,1.14383 -0.354408,1.719 -0.104478,0.51512 -0.21072,1.02442 -0.367369,1.52665 -0.238654,0.77605 -0.963517,1.12185 -1.613759,1.48843 -0.56621,0.34212 -1.224702,0.45003 -1.870239,0.53536 -0.455798,0.0395 -0.91159,0.11031 -1.369325,0.10838 -0.628089,0.0371 -1.255777,0.0328 -1.884476,0.0304 -0.852938,-5.1e-4 -1.613197,-0.24786 -2.341634,-0.6688 -0.447782,-0.35997 -0.797822,-0.80792 -1.056654,-1.31799 -0.146895,-0.38371 -0.449002,-0.66252 -0.699239,-0.97689 -0.414692,-0.44255 -0.672619,-0.99752 -1.002936,-1.49979 -0.434648,-0.68213 -0.698225,-1.44654 -0.851536,-2.2359 -0.06218,-0.69552 0.04382,-1.35823 0.329236,-1.99262 0.30866,-0.5835 0.630593,-1.14114 0.872331,-1.75733 0.266111,-0.93699 0.607685,-1.83854 1.088896,-2.68503 0.406233,-0.76699 1.007514,-1.38388 1.670709,-1.93478 0.70436,-0.40375 1.432126,-0.74392 2.181943,-1.05358 0.739311,-0.25697 1.514958,-0.33568 2.291377,-0.36718 0.567676,-0.0287 1.135084,0.019 1.699653,0.0723 0.692215,0.0527 1.2698,0.38539 1.816654,0.78629 0.581912,0.53628 1.196203,1.03636 1.776721,1.57388 0.468542,0.47242 0.972142,0.98264 1.211617,1.61628 0.141658,0.34778 0.439303,0.58878 0.690955,0.85986 0.687267,0.77036 1.339967,1.56833 1.778774,2.50848 0.164808,0.42958 0.405465,0.81101 0.626407,1.2111 0.41731,0.7012 0.559821,1.49432 0.623323,2.29537 -0.01886,0.5503 0.07097,1.29831 -0.46007,1.66057 -1.175666,0.80202 -0.197146,-0.15725 -0.827143,0.50078 -0.0027,0.0148 -0.211786,-0.0235 -0.20908,-0.0383 l 0,0 c -0.06419,-0.50971 0.05501,-0.0967 -0.441162,-0.57696 -0.314108,-0.30403 -0.108452,-0.80587 -0.138052,-1.18823 -0.01181,-0.57286 -0.03669,-1.14821 -0.206585,-1.69969 -0.172159,-0.38727 -0.476746,-0.68743 -0.700798,-1.04401 -0.590542,-0.76627 -1.147756,-1.56199 -1.664721,-2.37956 -0.206766,-0.36845 -0.423768,-0.73137 -0.648335,-1.08867 -0.356048,-0.34486 -0.586203,-0.8292 -1.018659,-1.10807 -0.589406,-0.5013 -1.133566,-1.04727 -1.675344,-1.59832 -0.251299,-0.26307 -0.522981,-0.39382 -0.88848,-0.41684 -0.494509,-0.0232 -0.989145,-0.0156 -1.483782,0.009 -0.596058,0.0566 -1.19266,0.13255 -1.736521,0.40212 -0.600987,0.25358 -1.232502,0.4929 -1.785698,0.8276 -0.04806,0.0335 -0.173366,0.15136 -0.144187,0.10055 0.05078,-0.0884 0.125663,-0.16675 0.212706,-0.21987 0.0625,-0.0381 -0.08865,0.11661 -0.135591,0.1728 -0.178589,0.21381 -0.351494,0.42568 -0.478045,0.67748 -0.389658,0.81424 -0.741691,1.64109 -1.047202,2.4911 -0.258677,0.68073 -0.597473,1.32753 -1.074693,1.87973 -0.196253,0.31457 -0.304681,0.6512 -0.276314,1.03139 0.04443,0.62406 0.431328,1.15278 0.651065,1.72457 0.19929,0.45942 0.445722,0.89122 0.736693,1.2993 0.350135,0.38799 0.682958,0.79453 0.90946,1.26948 0.124571,0.25465 0.216027,0.53494 0.488957,0.6678 0.468819,0.30341 1.111339,0.24763 1.641896,0.32905 0.576883,0.0482 1.154443,0.0899 1.733004,0.11019 0.401926,-0.0414 0.807836,-0.0567 1.204204,-0.1477 0.49588,-0.0927 0.980229,-0.20569 1.430117,-0.44449 0.139165,-0.0603 0.282184,-0.11992 0.419007,-0.18627 0.03294,-0.016 0.116158,-0.0825 0.09715,-0.0513 -0.277489,0.45668 -0.270355,0.273 -0.05231,0.13647 0.217247,-0.41305 0.264029,-0.8941 0.361113,-1.34504 0.133577,-0.46122 0.251226,-0.92769 0.351581,-1.39729 0.01693,-0.55989 -0.132343,-1.07765 -0.288152,-1.61347 -0.105626,-0.51005 -0.305832,-1.00648 -0.323752,-1.53017 -0.01027,-0.2618 0.143787,-0.36545 -0.06425,-0.50989 -0.41808,-0.29906 -0.839391,-0.60974 -1.303619,-0.83182 -0.30313,-0.0755 -0.602829,-0.0803 -0.914682,-0.0752 -0.328472,-0.036 -0.651885,-0.006 -0.978273,0.0446 -0.420877,0.12792 -0.783149,0.33391 -1.152517,0.57225 -0.109211,0.0659 -0.224412,0.12161 -0.333456,0.18782 -0.06104,0.0371 -0.201492,0.18625 -0.178313,0.11871 0.02806,-0.0817 0.110279,-0.13443 0.151749,-0.21027 0.01396,-0.0255 -0.04482,0.0371 -0.06723,0.0557 -0.218659,0.36277 -0.255427,0.82901 -0.536954,1.16394 -0.196857,0.29194 -0.127414,0.21131 -0.478444,0.55583 -0.03722,0.0365 -0.123814,0.14906 -0.122799,0.0969 0.0033,-0.16774 0.229561,-0.12502 -0.0065,-0.0665 -0.262041,0.20262 0.0205,0.81806 -0.0069,1.09146 0.0038,0.1973 0.0048,0.5364 0.02976,0.67894 0.444798,-0.007 0.888494,-0.079 1.333106,-0.005 0.279247,0.0488 0.777117,0.28634 1.005183,0.22379 -0.148566,0.19054 0.191345,-0.44381 0.279781,-0.66866 0.151767,-0.38586 0.269168,-0.73819 0.405307,-1.13085 0.06867,-0.1776 0.150892,-0.34967 0.226338,-0.5245 0.0037,-0.068 0.965573,-0.0159 0.961887,0.0521 z" />
+    <path
+       transform="translate(-4.3518064e-8,28.362175)"
+       sodipodi:type="arc"
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+       id="path4639"
+       sodipodi:cx="46.870216"
+       sodipodi:cy="20.927509"
+       sodipodi:rx="8.8274755"
+       sodipodi:ry="9.4146013"
+       d="m 55.697692,20.927509 c 0,5.199541 -3.952196,9.414602 -8.827476,9.414602 -4.87528,0 -8.827475,-4.215061 -8.827475,-9.414602 0,-5.19954 3.952195,-9.414601 8.827475,-9.414601 4.87528,0 8.827476,4.215061 8.827476,9.414601 z" />
+    <path
+       transform="translate(-4.3518064e-8,28.362175)"
+       sodipodi:type="arc"
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+       id="path4641"
+       sodipodi:cx="46.313992"
+       sodipodi:cy="148.66711"
+       sodipodi:rx="8.8274755"
+       sodipodi:ry="9.8060179"
+       d="m 55.141467,148.66711 c 0,5.41572 -3.952195,9.80602 -8.827475,9.80602 -4.875281,0 -8.827476,-4.3903 -8.827476,-9.80602 0,-5.41571 3.952195,-9.80601 8.827476,-9.80601 4.87528,0 8.827475,4.3903 8.827475,9.80601 z" />
+    <path
+       transform="translate(-4.3518064e-8,28.362175)"
+       sodipodi:type="arc"
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+       id="path4643"
+       sodipodi:cx="43.74403"
+       sodipodi:cy="469.21613"
+       sodipodi:rx="10.851512"
+       sodipodi:ry="9.8369188"
+       d="m 54.595542,469.21613 c 0,5.43278 -4.858387,9.83691 -10.851512,9.83691 -5.993125,0 -10.851512,-4.40413 -10.851512,-9.83691 0,-5.43278 4.858387,-9.83692 10.851512,-9.83692 5.993125,0 10.851512,4.40414 10.851512,9.83692 z" />
+    <path
+       sodipodi:type="arc"
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path4915"
+       sodipodi:cx="47.238342"
+       sodipodi:cy="310.52466"
+       sodipodi:rx="9.6251583"
+       sodipodi:ry="9.6251583"
+       d="m 56.863501,310.52466 c 0,5.31583 -4.309331,9.62516 -9.625159,9.62516 -5.315828,0 -9.625158,-4.30933 -9.625158,-9.62516 0,-5.31583 4.30933,-9.62516 9.625158,-9.62516 5.315828,0 9.625159,4.30933 9.625159,9.62516 z"
+       transform="translate(-3.6490386,26.220831)" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+       x="57.056164"
+       y="503.27432"
+       id="text4917"><tspan
+         sodipodi:role="line"
+         id="tspan4919"
+         x="57.056164"
+         y="503.27432"
+         style="font-size:16px;line-height:1">keyframe</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+       x="57.24984"
+       y="342.81644"
+       id="text4921"><tspan
+         sodipodi:role="line"
+         id="tspan4923"
+         x="57.24984"
+         y="342.81644"
+         style="font-size:16px;line-height:1">keyframe</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+       x="59.227528"
+       y="182.60344"
+       id="text4925"><tspan
+         sodipodi:role="line"
+         x="59.227528"
+         y="182.60344"
+         id="tspan4929"
+         style="font-size:16px;line-height:1">keyframe</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+       x="59.474731"
+       y="54.383572"
+       id="text4933"><tspan
+         sodipodi:role="line"
+         id="tspan4935"
+         x="59.474731"
+         y="54.383572"
+         style="font-size:16px;line-height:1">keyframe</tspan></text>
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 3.7182319,-168.86597 c -0.019423,0.13596 -0.038845,0.27192 -0.058268,0.40787 0,0.0777 0.00773,0.15577 0,0.23308 -0.011756,0.11755 -0.049851,0.23176 -0.058268,0.3496 -0.019373,0.27123 0,0.54384 0,0.81576 0,0.40787 0,0.81575 0,1.22363 0,0.58268 0,1.16536 0,1.74804 0,0.31076 -0.018249,0.62206 0,0.93229 0.011462,0.19486 0.046092,0.38786 0.058268,0.58268 0.016962,0.27139 0.016962,0.54436 0,0.81575 -0.032849,0.52558 -0.1497055,1.04617 -0.1748042,1.57324 -0.040522,0.85097 0.021347,0.43271 0.058268,1.2819 0,1.68981 -0.021101,-0.24722 0.058268,1.34016 0.032935,0.65869 -0.02636,1.32212 0,1.98112 0.00935,0.23369 0.041605,0.46593 0.058268,0.69922 0.022184,0.31057 0.025097,0.62269 0.058268,0.93229 0.2506453,2.33935 0.00223,-0.93134 0.1748043,1.39843 0.018933,0.25559 0.1106032,1.65693 0.1165361,1.86458 0.029351,1.02727 0,2.06027 0,3.08821 0,0.38845 0.013864,0.77715 0,1.16536 -0.011113,0.31117 -0.048837,0.62106 -0.058268,0.93229 -0.02059,0.67948 0,1.35959 0,2.03938 0,0.33019 -0.010313,0.66053 0,0.99056 0.02855,0.9136 0.147113,1.82479 0.1748043,2.7386 0.010001,0.33003 -0.00971,0.66051 0,0.99056 0.00972,0.33061 0.04825,0.65995 0.058268,0.99055 0.037045,1.22249 -0.038202,2.44844 0,3.67089 0.00973,0.31122 0.039432,0.62149 0.058268,0.93229 0.020009,0.33015 0.011492,0.66313 0.058268,0.99056 0.050648,0.35454 0.1725602,0.69584 0.2330723,1.04882 0.056174,0.32769 0.069519,0.66144 0.1165362,0.99056 0.050124,0.35087 0.1246801,0.69796 0.1748042,1.04883 0.1977981,1.38458 0.074518,0.57827 0.1165362,1.92284 0.026755,0.85617 0.1431149,1.70819 0.1748043,2.5638 0.019409,0.52405 0,1.04882 0,1.57324 0,0.25249 0.00935,0.50516 0,0.75748 -0.033121,0.89426 -0.1492317,1.78529 -0.1748043,2.68033 -0.01997,0.69894 0,1.39844 0,2.09765 0,0.38846 -0.019895,0.77742 0,1.16537 0.019004,0.37058 0.078676,0.73796 0.1165362,1.10709 0.039831,0.38835 0.057174,0.77951 0.1165361,1.16536 0.057344,0.37274 0.1629688,0.73655 0.2330724,1.10709 0.1274003,0.67341 0.2342366,1.48292 0.3496084,2.15592 0.1927568,1.12442 0.1939112,0.72891 0.2330724,1.86458 0.0087,0.25235 -0.0097,0.50518 0,0.75749 0.044937,1.16835 0.2446088,2.32779 0.2913404,3.49608 0.02096,0.524 -0.018717,1.04916 0,1.57324 0.00904,0.25308 0.048535,0.50443 0.058268,0.75749 0.0097,0.2523 -0.010092,0.50519 0,0.75748 0.00935,0.23369 0.048532,0.46554 0.058268,0.69922 0.0097,0.23287 -0.010583,0.46638 0,0.69921 0.00886,0.194999 0.04852,0.387733 0.058268,0.582685 0.0097,0.193985 -0.0097,0.388697 0,0.582681 0.00975,0.194952 0.04852,0.387729 0.058268,0.582681 0.02505,0.501002 0,1.013024 0,1.51497 0,0.271918 0.018088,0.544438 0,0.815753 -0.011699,0.175491 -0.04794,0.348837 -0.058268,0.524413 -0.00912,0.155113 0.01107,0.311158 0,0.466145 -0.01957,0.27398 -0.084442,0.542956 -0.1165361,0.815753 -0.061289,0.520959 -0.058268,0.934736 -0.058268,1.456702 0,0.135959 -0.011291,0.272387 0,0.407876 0.00822,0.09869 0.040552,0.193902 0.058268,0.291341 0.050465,0.27756 0.1064784,0.54245 0.1748042,0.815753 0.019423,0.07769 0.036268,0.156072 0.058268,0.233072 0.016873,0.05906 0.014838,0.218235 0.058268,0.174805 0.02266,-0.02266 -0.016995,-0.356892 0,-0.407877 0.041202,-0.123605 0.1165361,-0.233072 0.1748042,-0.349609"
+       id="path4157"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 29.699645,-120.06169 c -0.02268,0.50373 0.02797,1.01153 0,1.51497 -0.01083,0.19489 -0.04801,0.38775 -0.05827,0.58268 -0.0092,0.17456 0.0109,0.34995 0,0.52441 -0.0086,0.13707 -0.04848,0.27089 -0.05827,0.40788 -0.01799,0.25185 0,0.50499 0,0.75748 0,0.4273 0,0.8546 0,1.2819 0,0.29134 -0.01938,0.58333 0,0.87402 0.01042,0.15625 0.04785,0.3099 0.05827,0.46615 0.009,0.13566 -0.01043,0.27232 0,0.40787 0.04258,0.55348 0.112504,0.16493 0.05827,0.81576 -0.0067,0.0798 -0.05102,0.15332 -0.05827,0.23307 -0.01231,0.1354 0.009,0.27222 0,0.40788 -0.01042,0.15624 -0.04626,0.31001 -0.05827,0.46614 -0.01788,0.23239 0,0.46615 0,0.69922 0,0.34961 0,0.69922 0,1.04882 0,0.11654 0.0089,0.23342 0,0.34961 -0.01053,0.13694 -0.04773,0.27094 -0.05827,0.40788 -0.01836,0.23868 -0.02205,0.63152 0,0.87402 0.15646,0.93876 -0.01969,-0.23629 0.05827,0.69922 0.0098,0.11773 0.04846,0.23187 0.05827,0.34961 0.0097,0.11613 0,0.23307 0,0.3496 0,0.4273 0,0.8546 0,1.2819 0,0.13596 -0.01043,0.27232 0,0.40788 0.0091,0.11779 0.04921,0.23181 0.05827,0.34961 0.01043,0.13556 -0.01129,0.27238 0,0.40787 0.0082,0.0987 0.04841,0.1928 0.05827,0.29134 0.0097,0.0966 0,0.19423 0,0.29134 0,0.2525 0,0.50499 0,0.75749 0,0.21365 -0.01934,0.42818 0,0.64095 0.02661,0.29266 0.09213,0.58119 0.116536,0.87402 0.01936,0.23227 0.01936,0.46695 0,0.69922 -0.0098,0.11773 -0.04846,0.23187 -0.05827,0.34961 -0.01936,0.23226 0,0.46614 0,0.69921 0,0.89713 -0.02235,-0.0487 0.05827,0.75749 0.0077,0.0773 -0.0086,0.15585 0,0.23307 0.01094,0.0984 0.04733,0.19291 0.05827,0.29134 0.01501,0.13513 0,0.27192 0,0.40788 0,0.21365 0,0.4273 0,0.64095 0,0.18496 0.02598,0.40081 0,0.58268 -0.0087,0.0608 -0.05065,0.11385 -0.05827,0.1748 -0.02168,0.17345 0.02168,0.35096 0,0.52441 -0.0099,0.0795 -0.04833,0.15361 -0.05827,0.23308 -0.0265,0.212 0,0.42729 0,0.64094 0,0.36904 0,0.73807 0,1.1071 0,0.40787 0,0.81575 0,1.22363 0,0.25249 -0.01483,0.50542 0,0.75748 0.155861,1.40275 -0.01954,-0.35176 0.05827,1.04883 0.0098,0.17561 0.04851,0.3488 0.05827,0.52441 0.0097,0.17454 0,0.34961 0,0.52441 0.01942,0.17481 0.0473,0.34888 0.05827,0.52442 0.0085,0.13569 -0.01129,0.27238 0,0.40787 0.0082,0.0987 0.0493,0.19271 0.05827,0.29134 0.03039,0.33426 0,0.71566 0,1.04883 0,0.6021 0,1.20421 0,1.80631 0,0.33018 0,0.66037 0,0.99056 0,0.31076 0.02383,0.62244 0,0.93229 -0.01053,0.13693 -0.0497,0.2708 -0.05827,0.40787 -0.01938,0.31016 0,0.62153 0,0.93229 0,0.54384 0,1.08767 0,1.63151 0,0.61871 -0.03089,1.24683 0,1.86458 0.01969,0.39379 0.07926,0.77396 0.116536,1.16536 0.193502,2.03178 -0.03196,-0.40044 0.05827,1.22363 0.0098,0.17561 0.04794,0.34883 0.05827,0.52441 0.02053,0.34901 -0.01837,0.6997 0,1.04883 0.0092,0.17563 0.0473,0.34887 0.05827,0.52441 0.0085,0.13569 -0.009,0.27222 0,0.40788 0.01042,0.15624 0.04785,0.3099 0.05827,0.46614 0.03478,0.52165 -0.02271,1.05096 0,1.57324 0.01016,0.23366 0.03885,0.46614 0.05827,0.699215 0.05664,0.679687 0.110142,1.360424 0.174804,2.039383 0.01667,0.175088 0.04949,0.348752 0.05827,0.524413 0.01067,0.213383 -0.0085,0.42747 0,0.640949 0.17063,2.388813 -0.01786,-0.522677 0.05827,1.456702 0.01282,0.333294 0.08289,1.203084 0.116536,1.573238 0.01767,0.194394 0.04898,0.387706 0.05827,0.582681 0,1.793645 -0.02126,-0.446438 0.05827,1.223629 0.01016,0.213408 -0.01067,0.427566 0,0.640949 0.03561,0.71219 0.06332,0.34274 0.174804,1.048826 0.06089,0.385614 0.07567,0.777115 0.116536,1.165361 0.01841,0.174914 0.04851,0.348804 0.05827,0.524413 0.0097,0.174535 -0.0097,0.349878 0,0.524413 0.0098,0.175609 0.04657,0.348922 0.05827,0.524412 0.0078,0.116278 -0.0089,0.233416 0,0.349609 0.01053,0.136935 0.04583,0.271101 0.05827,0.407876 0.03296,0.36252 0,0.742336 0,1.107094"
+       id="path36608" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 51.364369,-161.81042 c 0.01597,0.27145 -0.01597,0.54431 0,0.81576 0.03222,0.54775 0.145937,1.08302 0.174805,1.6315 0.0082,0.15517 -0.0086,0.31101 0,0.46615 0.01083,0.19489 0.04059,0.38828 0.05827,0.58268 0.01801,0.19808 0.09036,1.12207 0.116536,1.34016 0.230322,1.91936 0.04795,-0.19957 0.116536,1.51497 0.01012,0.25304 0.05827,0.50425 0.05827,0.75749 0,0.25324 -0.04815,0.50445 -0.05827,0.75748 -0.0093,0.23289 0.009,0.46632 0,0.69922 -0.01048,0.27241 -0.04818,0.54333 -0.05827,0.81575 -0.0093,0.25233 0.01009,0.5052 0,0.75749 -0.0093,0.23369 -0.04765,0.46558 -0.05827,0.69922 -0.01764,0.38805 0,0.7769 0,1.16536 0,0.36903 -0.01676,0.73844 0,1.10709 0.03274,0.72026 0.148098,1.43486 0.174804,2.15592 0.03736,1.0086 -0.03735,2.02134 0,3.02994 0.005,0.13379 0.103645,1.41211 0.116536,1.57324 0.03885,0.48557 0.0585,0.97305 0.116536,1.4567 0.02815,0.23461 0.08723,0.46476 0.116537,0.69922 0.02901,0.23207 0.02926,0.46714 0.05827,0.69922 0.0901,0.7208 0.239136,1.43785 0.349608,2.15591 0.07905,0.51384 0.164822,1.1779 0.233072,1.68978 0.03885,0.29134 0.09631,0.5808 0.116537,0.87402 0.01871,0.27127 -0.0097,0.54401 0,0.81575 0.0042,0.50726 0.09629,1.0089 0.116536,1.51497 0.01009,0.2523 -0.0097,0.50518 0,0.75749 0.0097,0.25305 0.04854,0.50443 0.05827,0.75748 0.0097,0.25231 0,0.50499 0,0.75749 0,0.75748 0,1.51497 0,2.27245 0,0.2525 -0.01799,0.50564 0,0.75749 0.02094,0.29317 0.08629,0.58166 0.116536,0.87402 0.02392,0.23128 0.105827,1.56598 0.116536,1.74804 0.02056,0.34955 0.04855,0.69882 0.05827,1.04883 0.01995,0.71836 0,1.43728 0,2.15592 0,0.33018 0.01,0.66052 0,0.99055 -0.0094,0.31123 -0.04823,0.62109 -0.05827,0.93229 -0.02628,0.81475 0.03133,1.63271 0,2.44726 -0.0097,0.25306 -0.04854,0.50443 -0.05827,0.75749 -0.0097,0.25231 0.01009,0.50519 0,0.75748 -0.0093,0.2337 -0.04853,0.46554 -0.05827,0.69922 -0.0097,0.23287 0.0093,0.46633 0,0.69922 -0.01012,0.25304 -0.0489,0.50441 -0.05827,0.75748 -0.01941,0.52406 0,1.04883 0,1.57324 0,0.73806 0,1.47612 0,2.21419 0,0.58268 0.01879,1.16566 0,1.74804 -0.01004,0.31121 -0.04823,0.62108 -0.05827,0.93229 -0.0094,0.29119 0.0104,0.58287 0,0.87402 -0.03507,0.9819 -0.09607,0.51158 -0.05827,1.4567 0.01012,0.25304 0.04854,0.50443 0.05827,0.75749 0.07958,2.06914 -0.103912,-0.6162 0.05827,1.57324 0.05164,0.69709 0.146871,1.39931 0.174804,2.097651 0.02948,0.7369 -0.02834,1.47723 0,2.21418 0.0097,0.25306 0.04889,0.50442 0.05827,0.75749 0.03017,0.81463 -0.03017,1.63262 0,2.44726 0.0094,0.25307 0.03956,0.50493 0.05827,0.75748 0.02014,0.27187 0.02923,0.5447 0.05827,0.81576 0.02926,0.27311 0.08827,0.54253 0.116537,0.81575 0.03005,0.29044 0.03746,0.58278 0.05827,0.87402 0.03471,0.48588 0.09626,0.97001 0.116536,1.4567 0.0097,0.23287 0,0.46615 0,0.69922 0.01942,0.23307 0.04659,0.46563 0.05827,0.69922 0.0078,0.15518 -0.01716,0.31171 0,0.46614 0.02187,0.19686 0.08564,0.38703 0.116536,0.58268 0.02743,0.17373 0.02935,0.35093 0.05827,0.52441 0.136128,0.81677 0.12352,0.23526 0.174804,1.1071 0.09278,1.5772 -0.05827,-0.63967 -0.05827,0.75748 0,0.25547 0.116536,0.50202 0.116536,0.75749 0,0.099 -0.05067,0.19259 -0.05827,0.29134 -0.0263,0.34187 0,0.70463 0,1.04882 0,0.17481 -0.02168,0.35096 0,0.52442 0.0076,0.0609 0.04958,0.114 0.05827,0.1748 0.02465,0.17254 0.01277,0.73361 0,0.87402 -0.0072,0.0797 -0.04834,0.15361 -0.05827,0.23307 -0.02409,0.19273 0.01758,0.38926 0,0.58269 -0.009,0.0986 -0.04733,0.1929 -0.05827,0.29134 -0.0086,0.0772 0.0086,0.15585 0,0.23307 -0.01094,0.0984 -0.04841,0.19279 -0.05827,0.29134 -0.01365,0.13651 -0.02158,0.48987 0,0.64095 0.01132,0.0793 0.04694,0.15379 0.05827,0.23307 0.02472,0.17305 -0.01583,0.35033 0,0.52441 0.009,0.0986 0.05121,0.19256 0.05827,0.29134 0.02352,0.32935 -0.03858,0.66264 0,0.99056 0.02092,0.17784 0.0871,0.34778 0.116537,0.52441 0.02891,0.17349 0.02377,0.35195 0.05827,0.52442 0.02409,0.12045 0.0908,0.22949 0.116536,0.3496 0.03281,0.15312 0.03612,0.31113 0.05827,0.46615 0.03342,0.23391 0.07769,0.46614 0.116536,0.69922 0.01942,0.11653 0.01789,0.23857 0.05827,0.3496 0.0387,0.10644 0.12794,0.18824 0.174804,0.29134 0.05083,0.11183 0.07091,0.23556 0.116536,0.34961 0.03226,0.0807 0.09158,0.14988 0.116537,0.23308 0.128212,0.42737 0.03098,0.90353 0.05827,1.34016 0.02849,0.45579 0.110053,0.94517 0.174804,1.398435 0.03416,0.239121 0.08238,0.460096 0.116536,0.699217 0.05434,0.380342 0.08882,0.851031 0.174804,1.22363 0.02762,0.119694 0.08124,0.231949 0.116537,0.349608 0.02301,0.07671 0.03015,0.15809 0.05827,0.233073 0.0305,0.08133 0.08604,0.151741 0.116536,0.233072 0.102949,0.27453 0.03265,0.216967 0.05827,0.524413 0.0114,0.136864 0.05827,0.270537 0.05827,0.407876 0,0.137339 -0.04583,0.271102 -0.05827,0.407877 -0.007,0.07737 0,0.155381 0,0.233072 -0.01942,0.155382 -0.03612,0.311128 -0.05827,0.466145 -0.03071,0.21497 -0.09688,0.424688 -0.116536,0.640949 -0.01055,0.116057 0.01055,0.233551 0,0.349608 -0.009,0.09863 -0.03885,0.194227 -0.05827,0.29134 0,0.116537 0.01055,0.233551 0,0.349609 -0.01793,0.19726 -0.09683,0.38559 -0.116537,0.582681 -0.04187,0.418665 0.02365,0.167265 0.05827,0.582681 0.01129,0.135489 -0.0085,0.272182 0,0.407876 0.01097,0.175538 0.04851,0.348804 0.05827,0.524413 0.02047,0.368463 -0.01755,0.73848 0,1.107093 0.0102,0.214288 0.03884,0.4273 0.05827,0.640949 0,0.252495 -0.01097,0.505229 0,0.757485 0.0085,0.195012 0.04898,0.387706 0.05827,0.582681 0.02759,0.579471 0,1.16767 0,1.748043 0,0.334915 -0.0265,0.768021 0.05827,1.107093 0.04025,0.160993 0.125306,0.307751 0.174804,0.466145 0.04777,0.152873 0.06267,0.315312 0.116536,0.466144 0.04382,0.122701 0.149252,0.221848 0.174804,0.349609 0.03428,0.17141 0,0.349608 0,0.524413 0,0.561486 -0.04567,1.135412 0.05827,1.689774 0.172149,0.918129 0.02873,0.13967 0.349608,1.048825 0.05331,0.151033 0.05345,0.318931 0.116536,0.466145 0.05517,0.128735 0.175116,0.222104 0.233072,0.349609 0.04098,0.09016 0.02695,0.197386 0.05827,0.29134 0.02747,0.0824 0.08232,0.153235 0.116536,0.233072 0.02419,0.05645 0.07769,0.233073 0.05827,0.174805 -0.03885,-0.116537 -0.07769,-0.233073 -0.116536,-0.349609"
+       id="path36612" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 76.668275,-126.67769 c 0.283652,0.99278 -0.04684,-0.24984 0.174805,0.93229 0.02606,0.13897 0.08691,0.26961 0.116536,0.40787 0.02878,0.13429 0.03739,0.27214 0.05827,0.40788 0.0249,0.16184 0.106597,0.6084 0.116536,0.75748 0.01034,0.15504 -0.01107,0.31116 0,0.46615 0.0084,0.11784 0.04265,0.2325 0.05827,0.34961 0.04904,0.36781 0.05553,0.74107 0.116536,1.10709 0.02633,0.15798 0.09156,0.30794 0.116537,0.46614 0.03346,0.21191 0.02928,0.42839 0.05827,0.64095 0.226225,1.65899 0.0219,-0.32494 0.233072,1.22363 0.0316,0.23174 0.01643,0.46911 0.05827,0.69922 0.03627,0.19951 0.13303,0.38425 0.174804,0.58268 0.09248,0.43929 0.06527,0.90201 0.174804,1.34017 0.02979,0.11917 0.08041,0.2322 0.116537,0.34961 0.07769,0.25249 0.155381,0.50499 0.233072,0.75748 0.04158,0.13515 0.09785,0.26772 0.116536,0.40788 0.05677,0.42578 -0.04003,0.97901 -0.05827,1.39843 -0.02193,0.50451 0,1.00998 0,1.51497 0,0.44672 -0.02231,0.894 0,1.34017 0.0088,0.17566 0.04794,0.34883 0.05827,0.52441 0.0091,0.15511 -0.01034,0.31111 0,0.46614 0.02437,0.36561 0.109251,0.74655 0.174804,1.1071 0.03203,0.17618 0.09872,0.34623 0.116537,0.52441 0.01159,0.11596 -0.0116,0.23365 0,0.34961 0.008,0.0797 0.04942,0.15348 0.05827,0.23307 0.01072,0.0965 0,0.19423 0,0.29134 0.01942,0.0971 0.04733,0.19291 0.05827,0.29134 0.02771,0.24942 -0.02771,0.50807 0,0.75749 0.01094,0.0984 0.0493,0.19271 0.05827,0.29134 0.01055,0.11606 -0.0083,0.23337 0,0.34961 0.01116,0.15619 0.05045,0.30975 0.05827,0.46614 0.02134,0.42677 -0.02134,0.85513 0,1.2819 0.0097,0.19495 0.04609,0.38786 0.05827,0.58268 0.0073,0.11631 -0.0116,0.23365 0,0.34961 0.008,0.0797 0.04942,0.15348 0.05827,0.23307 0.01072,0.0965 -0.01205,0.19498 0,0.29134 0.0076,0.0609 0.03884,0.11654 0.05827,0.17481 0.01942,0.0971 0.04733,0.1929 0.05827,0.29134 0.0086,0.0772 -0.01099,0.15616 0,0.23307 0.0087,0.0608 0.05065,0.11386 0.05827,0.1748 0,0.66909 -0.02355,-0.0483 0.05827,0.52441 0.02472,0.17305 -0.01583,0.35033 0,0.52442 0.009,0.0986 0.04841,0.19279 0.05827,0.29134 0.0097,0.0966 0,0.19422 0,0.29134 0.01942,0.11653 0.04651,0.23205 0.05827,0.34961 0.02692,0.26916 -0.02449,0.546372 0,0.815753 0.009,0.0986 0.05067,0.1926 0.05827,0.29134 0.01192,0.15492 -0.0097,0.31107 0,0.46615 0.0098,0.15628 0.04785,0.3099 0.05827,0.46614 0.02298,0.34471 -0.0382,0.70503 0,1.04883 0.0077,0.0693 0.08784,0.43832 0.116536,0.52441 0.03308,0.0992 0.09385,0.18923 0.116536,0.29134 0.01685,0.0758 -0.01099,0.15616 0,0.23307 0.0087,0.0608 0.04817,0.11422 0.05827,0.1748 0.03781,0.22684 -0.02855,0.47082 0,0.69922 0.03178,0.25427 0.13855,0.50371 0.174804,0.75749 0.0082,0.0577 -0.0053,0.11677 0,0.1748 0.01418,0.15595 0.04711,0.30995 0.05827,0.46615 0.0083,0.11624 0,0.23307 0,0.3496 0,0.4273 0,0.8546 0,1.2819 0,0.27192 -0.01809,0.54444 0,0.81576 0.01042,0.15624 0.0485,0.30985 0.05827,0.46614 0.0097,0.15508 -0.01033,0.31111 0,0.46614 0.01175,0.17622 0.09008,0.5723 0.116537,0.75749 0.02214,0.15502 0.03446,0.31137 0.05827,0.46614 0.01506,0.0979 0.0493,0.19271 0.05827,0.29134 0.01055,0.11606 -0.0116,0.23366 0,0.34961 0.008,0.0797 0.04694,0.1538 0.05827,0.23308 0.02824,0.1977 0,0.44462 0,0.64094 0,0.31077 0.01478,0.62188 0,0.93229 -0.01112,0.23362 -0.04811,0.46556 -0.05827,0.69922 0,1.7066 0.02126,-0.36691 -0.05827,1.22363 -0.0097,0.19398 0.0092,0.38867 0,0.58268 -0.02041,0.42858 -0.09939,0.85318 -0.116536,1.2819 -0.02096,0.52399 0,1.04882 0,1.57324 0,0.66037 0,1.32074 0,1.98111 0,2.54437 0,5.08875 0,7.63312 0,0.54384 0,1.08767 0,1.63151 0,0.291337 0.01711,0.58318 0,0.874018 -0.01033,0.175576 -0.0473,0.348875 -0.05827,0.524413 -0.0085,0.135694 0.0085,0.272182 0,0.407876 -0.01976,0.316253 -0.08545,0.516764 -0.05827,0.815753 0.03766,0.414206 0.201097,0.807948 0.233073,1.22363 0.02085,0.271117 -0.01937,0.544526 0,0.815753 0.0098,0.13699 0.03884,0.271918 0.05827,0.407877 0,0.155381 -0.01034,0.311107 0,0.466144 0.0091,0.137035 0.04913,0.270842 0.05827,0.407877 0.02811,0.421673 0,0.858989 0,1.281898 0,0.874021 0,1.748042 0,2.622063 0,0.524413 0,1.048826 0,1.573238 0,0.230251 0.03164,0.536038 0,0.757485 -0.0087,0.0608 -0.05065,0.113859 -0.05827,0.174805 -0.01205,0.09636 0,0.194227 0,0.29134 0,0.252495 0,0.50499 0,0.757485 0,0.38456 -0.04796,0.79357 0.05827,1.165362 0.03375,0.118113 0.07769,0.233072 0.116536,0.349608 0.01942,0.05827 0.07208,0.234652 0.05827,0.174805 -0.07203,-0.312125 -0.543835,-0.854599 -0.233072,-0.93229 0.310763,-0.07769 0.155381,0.621526 0.233072,0.93229"
+       id="path36622" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 104.65787,-161.29186 c 0.0245,0.93141 -0.0333,1.86576 0,2.79686 0.01,0.27244 0.0489,0.54331 0.0583,0.81576 0.0214,0.62115 0,1.24305 0,1.86458 0,0.3496 0.02,0.69978 0,1.04882 -0.019,0.33192 -0.0798,0.66013 -0.11654,0.99056 -0.041,0.3688 -0.0744,0.73842 -0.11653,1.10709 -0.0417,0.36515 -0.20313,1.57352 -0.23308,1.92285 -0.0299,0.34887 -0.0383,0.69925 -0.0583,1.04882 -0.0103,0.18085 -0.11243,1.88753 -0.11653,2.03939 -0.01,0.36889 0,0.73806 0,1.10709 0,0.33019 -0.0183,0.66088 0,0.99056 0.0206,0.3705 0.0865,0.73723 0.11653,1.10709 0.0283,0.349 0.0284,0.69996 0.0583,1.04883 0.0284,0.33124 0.0873,0.65938 0.11654,0.99055 0.0788,0.89305 0.0583,1.13178 0.0583,2.03939 0,0.98996 0.0373,1.98456 -0.0583,2.97167 -0.11189,1.15619 -0.13332,0.56976 -0.17481,1.68977 -0.009,0.25233 0,0.50499 0,0.75749 -0.0194,0.25249 -0.0477,0.50446 -0.0583,0.75748 -0.009,0.21347 0.01,0.42752 0,0.64095 -0.01,0.21431 -0.0481,0.42666 -0.0583,0.64095 -0.009,0.19401 0,0.38846 0,0.58268 0,0.40788 -0.0194,0.81622 0,1.22363 0.0102,0.21429 0.0397,0.42723 0.0583,0.64095 0.0203,0.233 0.028,0.4673 0.0583,0.69922 0.0281,0.21533 0.0949,0.42487 0.11654,0.64095 0.0174,0.17393 -0.008,0.3498 0,0.52441 0.0111,0.23361 0.0481,0.46556 0.0583,0.69922 0.0278,0.6395 -0.0336,1.28365 0,1.92284 0.008,0.15638 0.0496,0.3098 0.0583,0.46615 0.0108,0.19393 -0.01,0.38869 0,0.58268 0.01,0.19495 0.0388,0.38845 0.0583,0.58268 0.0194,0.23307 0.0471,0.4656 0.0583,0.69922 0.008,0.1746 -0.01,0.34987 0,0.52441 0.01,0.17561 0.0408,0.3494 0.0583,0.52441 0.0408,0.40769 0.0794,0.81559 0.11654,1.22363 0.0371,0.40804 0.0938,0.81454 0.11653,1.22363 0.01,0.17454 -0.01,0.34988 0,0.52441 0.01,0.17561 0.0473,0.34888 0.0583,0.52442 0.008,0.13569 0,0.27191 0,0.40787 0,0.46615 0,0.93229 0,1.39844 0,0.15538 -0.0111,0.31115 0,0.46614 0.008,0.11784 0.0492,0.23181 0.0583,0.34961 0.0104,0.13556 -0.01,0.27226 0,0.40788 0.01,0.13699 0.0477,0.27094 0.0583,0.40787 0.0282,0.36686 -0.0282,0.74024 0,1.1071 0.009,0.11779 0.0492,0.23181 0.0583,0.34961 0.0104,0.13555 -0.0104,0.27231 0,0.40787 0.009,0.1178 0.0492,0.23181 0.0583,0.34961 0.0179,0.23239 0,0.46614 0,0.69922 0,0.52441 0,1.04882 0,1.57324 0,0.25249 -0.0194,0.50573 0,0.75748 0.15618,1.09322 -0.0196,-0.27468 0.0583,0.81575 0.01,0.13699 0.0485,0.27089 0.0583,0.40788 0.01,0.13561 -0.01,0.27226 0,0.40788 0.01,0.13699 0.0485,0.27088 0.0583,0.40787 0.01,0.13562 -0.01,0.27227 0,0.40788 0.01,0.13699 0.0491,0.27084 0.0583,0.40788 0.0103,0.15503 0,0.31076 0,0.46614 0,0.13596 0.01,0.27226 0,0.40788 -0.01,0.13699 -0.0477,0.27094 -0.0583,0.40787 -0.0265,0.34396 0,0.70374 0,1.04883 0,0.77691 0,1.55382 0,2.33072 0,1.32075 0,2.64149 0,3.962235 0,0.46615 0,0.93229 0,1.39844 0,0.15538 0.01,0.31106 0,0.46614 -0.01,0.15629 -0.0496,0.3098 -0.0583,0.46615 -0.0108,0.19392 0,0.38845 0,0.58268 0,0.58268 0,1.16536 0,1.74804 0,0.0915 0,0.71593 0,0.87402 0,0.15538 -0.0193,0.31196 0,0.46614 0.0199,0.15893 0.0777,0.31077 0.11654,0.46615 0.10798,0.43193 0.22186,0.85607 0.34961,1.2819 0.0628,0.20928 0.12737,0.42752 0.1748,0.64095 0.0215,0.0967 0.0269,0.19738 0.0583,0.29134 0.10036,0.30107 0.14341,0.15215 0.1748,0.46614 0.0116,0.11596 -0.0106,0.23355 0,0.34961 0.009,0.0986 0.05,0.19265 0.0583,0.29134 0.0113,0.13549 -0.009,0.27222 0,0.40788 0.16801,1.34405 -0.0224,-0.33556 0.0583,0.87402 0.0104,0.15624 0.0485,0.30986 0.0583,0.46614 0.0427,0.68352 -0.0486,1.41649 0,2.09765 0.01,0.13699 0.0491,0.27084 0.0583,0.40788 0.0103,0.15504 -0.009,0.311 0,0.46614 0.16495,1.64946 -0.0217,-0.41208 0.0583,1.1071 0.0103,0.19492 0.0474,0.38778 0.0583,0.58268 0.009,0.15514 -0.009,0.31103 0,0.46614 0.0103,0.17558 0.0473,0.34888 0.0583,0.52442 0.029,0.46428 -0.0309,0.93429 0,1.39843 0.008,0.11788 0.0509,0.2317 0.0583,0.34961 0.0121,0.19385 -0.0114,0.38879 0,0.58268 0.008,0.1371 0.0469,0.27101 0.0583,0.40788 0.021,0.25162 0,0.50499 0,0.75748 0,0.21365 0.0152,0.42784 0,0.64095 -0.01,0.13699 -0.0477,0.27094 -0.0583,0.40788 -0.009,0.11619 0.008,0.23336 0,0.3496 -0.0112,0.1562 -0.0478,0.30991 -0.0583,0.46615 -0.0309,0.46388 0.0357,0.93495 0,1.39843 -0.009,0.1178 -0.0485,0.23188 -0.0583,0.34961 -0.0332,0.39803 0.0493,0.82939 0,1.22363 -0.0123,0.0983 -0.0473,0.19291 -0.0583,0.29134 -0.0172,0.15443 0,0.31077 0,0.46615 0,0.21365 0,0.4273 0,0.64095"
+       id="path36628" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 99.355471,-158.43673 c 0.02324,0.42564 -0.03037,0.85677 0,1.2819 0.0098,0.13699 0.04848,0.27089 0.05827,0.40788 0.0097,0.13561 -0.0097,0.27226 0,0.40787 0.0098,0.13699 0.04583,0.2711 0.05827,0.40788 0.02445,0.26899 -0.04281,0.61716 0,0.87402 0.0101,0.0606 0.04817,0.11422 0.05827,0.1748 0.0378,0.22678 -0.0378,0.47245 0,0.69922 0.03029,0.18175 0.116536,0.34961 0.174804,0.52441"
+       id="path36632" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 98.947595,-145.55948 c 0,0.6021 0,1.2042 0,1.80631 0,0.21365 -0.01774,0.42804 0,0.64095 0.01962,0.23547 0.08061,0.46567 0.116536,0.69921 0.09338,0.60695 0.199073,1.2526 0.233072,1.86458 0.02673,0.48116 0,0.97459 0,1.4567 0,0.52442 0,1.04883 0,1.57324 0,0.0583 0,0.11654 0,0.17481 0,0.0583 0.05827,0.1748 0,0.1748 -0.05827,0 0,-0.11653 0,-0.1748"
+       id="path36634" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 100.4043,-125.8066 c 0,1.10315 -0.0135,-0.44538 0.0583,0.99055 0.01,0.19399 -0.0102,0.38873 0,0.58269 0.009,0.17563 0.0485,0.3488 0.0583,0.52441 0.01,0.17453 -0.0103,0.34991 0,0.52441 0.009,0.15632 0.0491,0.30982 0.0583,0.46615 0.0103,0.1745 -0.01,0.34987 0,0.52441 0.01,0.17561 0.0485,0.3488 0.0583,0.52441 0.01,0.17454 -0.0103,0.34991 0,0.52441 0.0753,1.27983 0.0307,-0.21376 0.11653,0.81576 0.01,0.11613 -0.01,0.23347 0,0.34961 0.01,0.11773 0.0476,0.23195 0.0583,0.3496 0.0224,0.24603 0,0.50993 0,0.75749 0,0.0777 0.0777,0.23307 0,0.23307 -0.0777,0 0,-0.15538 0,-0.23307"
+       id="path36636" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 100.22949,-168.10923 c 0,-0.91287 0,-1.82573 0,-2.7386 0,-1.65093 0,-3.30186 0,-4.95279 0,-0.73514 0.0294,-1.47968 0,-2.21418 -0.009,-0.2337 -0.0481,-0.46556 -0.0583,-0.69922 0,-1.7118 0.0236,0.30815 -0.0583,-1.16536 -0.01,-0.17454 0.0116,-0.35 0,-0.52441 -0.0157,-0.23577 -0.093,-0.46411 -0.116533,-0.69922 -0.01546,-0.15461 0,-0.31076 0,-0.46615 0,-0.11653 0,-0.46614 0,-0.3496 0,0.11653 0,0.23307 0,0.3496"
+       id="path36642" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 99.879884,-193.68892 c 0.01942,-0.23307 0.02802,-0.4673 0.05827,-0.69921 0.137586,-1.05485 0.128156,-0.23232 0.174806,-1.39844 0.009,-0.23288 -0.009,-0.46631 0,-0.69922 0.0105,-0.2724 0.0381,-0.54388 0.0583,-0.81575 0.0117,-0.15759 0.0888,-1.19468 0.11653,-1.39843 0.0293,-0.21516 0.0926,-0.42513 0.11654,-0.64095 0.015,-0.13513 -0.0104,-0.27232 0,-0.40788 0.009,-0.11779 0.0476,-0.23195 0.0583,-0.34961 0.0297,-0.32616 -0.0406,-0.66568 0,-0.99055 0.01,-0.0795 0.0388,-0.15539 0.0583,-0.23308"
+       id="path36644" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+       x="-0.010925263"
+       y="-144.44234"
+       id="text36650"><tspan
+         sodipodi:role="line"
+         id="tspan36652"
+         x="-0.010925263"
+         y="-144.44234"
+         style="font-size:16px;line-height:1">1</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+       x="26.844509"
+       y="-125.10734"
+       id="text36654"><tspan
+         sodipodi:role="line"
+         id="tspan36656"
+         x="26.844509"
+         y="-125.10734"
+         style="font-size:16px;line-height:1">5</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+       x="43.78952"
+       y="-166.04031"
+       id="text36658"><tspan
+         sodipodi:role="line"
+         id="tspan36660"
+         x="43.78952"
+         y="-166.04031"
+         style="font-size:16px;line-height:1">10</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+       x="68.685547"
+       y="-131.25719"
+       id="text36662"><tspan
+         sodipodi:role="line"
+         id="tspan36664"
+         x="68.685547"
+         y="-131.25719"
+         style="font-size:16px;line-height:1">15</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+       x="92.188499"
+       y="-206.01807"
+       id="text36666"><tspan
+         sodipodi:role="line"
+         id="tspan36668"
+         x="92.188499"
+         y="-206.01807"
+         style="font-size:16px;line-height:1">19</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+       x="106.87205"
+       y="-161.96741"
+       id="text36670"><tspan
+         sodipodi:role="line"
+         id="tspan36672"
+         x="106.87205"
+         y="-161.96741"
+         style="font-size:16px;line-height:1">1</tspan></text>
+    <g
+       id="g4291"
+       transform="translate(103.70482,-75.399211)">
+      <path
+         sodipodi:nodetypes="csssssssssssssssssssssssssssssssssssssssssssc"
+         id="path4262"
+         d="m -99.473911,-72.184271 c 3.170128,-0.112298 6.339018,0.746148 9.133565,2.24709 2.794547,1.500943 5.225271,3.628195 7.26612,6.056622 4.081698,4.856853 6.580882,10.815436 8.985095,16.68647 2.404214,5.871034 4.827787,11.849073 8.794963,16.799911 1.983588,2.475419 4.348577,4.670491 7.088844,6.268381 2.740268,1.597891 5.866841,2.583853 9.038755,2.619684 3.17326,0.03585 6.322934,-0.880176 9.098025,-2.419571 2.775091,-1.539395 5.186086,-3.687119 7.216084,-6.126377 4.059994,-4.878515 6.574654,-10.826243 9.023197,-16.681848 2.448544,-5.855605 4.943653,-11.808546 8.974024,-16.711563 2.015186,-2.451508 4.409175,-4.616864 7.1701662,-6.181407 2.7609911,-1.564543 5.899595,-2.513595 9.0730569,-2.516191 3.1511645,-0.0026 6.2698527,0.927972 9.0191589,2.467828 2.749307,1.539857 5.139483,3.674723 7.156955,6.095395 4.034943,4.841343 6.558168,10.732754 9.022329,16.533382 2.464161,5.800628 4.979554,11.694185 9.00262,16.545403 2.011534,2.425609 4.394889,4.567565 7.138516,6.117517 2.743627,1.549953 5.857826,2.493748 9.008965,2.506616 3.147574,0.01285 6.26596,-0.903375 9.019735,-2.427877 2.753776,-1.524502 5.153052,-3.643101 7.18327,-6.048428 4.060437,-4.810654 6.623293,-10.676116 9.128574,-16.451331 2.505281,-5.775215 5.063864,-11.641884 9.117843,-16.457982 2.026989,-2.408049 4.42256,-4.530548 7.173262,-6.060589 2.750701,-1.530041 5.866671,-2.453525 9.014268,-2.449118 3.15141,0.0044 6.26846,0.938899 9.01723,2.4802 2.74878,1.541302 5.1395,3.675281 7.15959,6.094081 4.04019,4.8376 6.57712,10.722394 9.06073,16.515246 2.48362,5.792852 5.02446,11.67656 9.07057,16.509207 2.02306,2.416324 4.41718,4.54675 7.16878,6.082999 2.7516,1.536249 5.87088,2.464111 9.02229,2.460803 3.14728,-0.0033 6.26072,-0.935281 9.00607,-2.474248 2.74535,-1.538967 5.13272,-3.670802 7.14801,-6.088237 4.03057,-4.83487 6.55152,-10.71908 9.00156,-16.51725 2.45005,-5.798171 4.93732,-11.691567 8.91664,-16.568704 1.98967,-2.438569 4.34757,-4.60075 7.06821,-6.182982 2.72065,-1.582232 5.81434,-2.571001 8.96085,-2.640729 3.13623,-0.0695 6.26129,0.775673 9.03971,2.232081 2.77843,1.456408 5.21934,3.510239 7.29594,5.861512 4.15322,4.702547 6.82329,10.501503 9.35649,16.241363 2.53321,5.73986 5.03309,11.588804 8.92665,16.508493 1.94677,2.459844 4.2382,4.668618 6.88978,6.344885 2.65159,1.676268 5.6733,2.809117 8.79877,3.077807 3.0788,0.264678 6.22645,-0.321924 9.00323,-1.677859 2.77678,-1.355935 5.17493,-3.477413 6.85944,-6.068071"
+         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0"
+         transform="translate(0,28.362183)" />
+      <path
+         inkscape:original-d="m -102.47615,-19.178288 504.06227,0"
+         inkscape:path-effect="#path-effect4269"
+         id="path4267"
+         d="M -102.47615,-19.178288 H 401.58612"
+         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </g>
+  </g>
+  <g
+     style="display:none"
+     sodipodi:insensitive="true"
+     inkscape:label="cleanface"
+     id="layer2"
+     inkscape:groupmode="layer">
+    <path
+       inkscape:tile-y0="14.9823"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-cx="21.051967"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       sodipodi:ry="7.6036916"
+       sodipodi:rx="7.6036916"
+       sodipodi:cy="22.596518"
+       sodipodi:cx="22.440649"
+       id="path3101"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       sodipodi:type="arc" />
+    <use
+       height="1024"
+       width="32"
+       transform="translate(0,32)"
+       id="use4006"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4008"
+       transform="translate(0,65.01394)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4010"
+       transform="translate(0,96.003339)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4012"
+       transform="translate(0,127.99875)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4014"
+       transform="translate(0,160.0188)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4016"
+       transform="translate(0,192.02656)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4018"
+       transform="translate(0,225.01593)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4020"
+       transform="translate(0,256.00529)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4022"
+       transform="translate(0,287.98851)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4024"
+       transform="translate(0,319.99628)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4026"
+       transform="translate(0,352.01632)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4028"
+       transform="translate(0,385.01795)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4030"
+       transform="translate(0,416.00731)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4032"
+       transform="translate(0,448.01508)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4034"
+       transform="translate(0,480.01058)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4036"
+       transform="translate(0,511.02494)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4038"
+       transform="translate(0,544.00112)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use4040"
+       transform="translate(0,576.02116)"
+       xlink:href="#path3101"
+       inkscape:tiled-clone-of="#path3101"
+       y="0"
+       x="0" />
+  </g>
+  <g
+     inkscape:label="hair"
+     id="layer5"
+     inkscape:groupmode="layer"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <path
+       inkscape:transform-center-y="4.2277721"
+       sodipodi:nodetypes="csss"
+       inkscape:original-d="m 28.838479,28.118617 c -0.207577,3.121921 -0.933742,0.08573 -0.726901,3.207702 0.211838,3.197391 1.243723,-1.809555 1.547166,1.380446 0.324858,3.415136 -1.653867,3.634507 -1.653867,3.634507"
+       inkscape:path-effect="#path-effect5241;#path-effect5243"
+       id="path5239"
+       d="m 28.860157,28.890555 c -0.19682,-0.412491 -0.309463,-0.877054 -0.313947,-1.369565 -0.744318,0.386804 -1.269929,1.086493 -1.438369,1.891658 -0.162066,0.80661 0.0502,1.640509 0.562044,2.263786 0.57455,0.663215 1.25256,0.946425 1.59867,1.354893 0.21156,0.236213 0.359623,0.542465 0.413312,0.861473 0,0 0,0 0,0 0.05446,0.318904 0.01618,0.663124 -0.110551,0.967727 -0.126071,0.304904 -0.345486,0.580814 -0.62009,0.775015 -0.274236,0.194761 -0.612646,0.313676 -0.954892,0.332374 0.343453,0.03407 0.713401,-0.03291 1.042103,-0.200219 0.328927,-0.16697 0.621634,-0.437841 0.821115,-0.776009 0.199667,-0.338084 0.306979,-0.745874 0.293108,-1.162066 0,0 0,0 0,0 -0.01387,-0.416191 -0.148991,-0.839714 -0.397186,-1.203317 -0.417313,-0.605215 -1.082478,-0.999725 -1.381605,-1.507896 0,0 0,0 0,0 -0.276173,-0.447095 -0.322134,-1.018149 -0.155789,-1.454168 0.120164,-0.326531 0.363756,-0.605032 0.642077,-0.773686 z"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+    <path
+       inkscape:transform-center-y="4.2277721"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 26.526716,28.797192 c -0.19682,-0.412491 -0.309463,-0.877054 -0.313947,-1.369565 -0.744318,0.386804 -1.269929,1.086493 -1.438369,1.891658 -0.162066,0.80661 0.0502,1.640508 0.562044,2.263786 0,0 0,0 0,0 0.57455,0.663215 1.25256,0.946425 1.59867,1.354893 0.21156,0.236213 0.359623,0.542465 0.413312,0.861473 0,0 0,0 0,0 0.05446,0.318904 0.01618,0.663124 -0.110551,0.967727 -0.126071,0.304904 -0.345486,0.580814 -0.62009,0.775015 -0.274236,0.194761 -0.612646,0.313676 -0.954892,0.332374 0.343453,0.03407 0.713401,-0.03291 1.042103,-0.200219 0.328927,-0.16697 0.621634,-0.437841 0.821115,-0.776009 0.199667,-0.338084 0.306979,-0.745874 0.293108,-1.162066 -0.01387,-0.416191 -0.148991,-0.839713 -0.397186,-1.203317 -0.417313,-0.605215 -1.082478,-0.999725 -1.381605,-1.507896 -0.276173,-0.447095 -0.322134,-1.018149 -0.155789,-1.454168 0.120164,-0.326531 0.363756,-0.605032 0.642077,-0.773686 z"
+       id="path5274"
+       inkscape:path-effect="#path-effect5276;#path-effect5278"
+       inkscape:original-d="m 26.505038,28.025254 c -0.207577,3.121921 -0.933742,0.08573 -0.726901,3.207702 0.211838,3.197391 1.243723,-1.809555 1.547166,1.380446 0.324858,3.415136 -1.653867,3.634507 -1.653867,3.634507"
+       sodipodi:nodetypes="csss" />
+    <path
+       inkscape:transform-center-y="4.2277721"
+       sodipodi:nodetypes="csss"
+       inkscape:original-d="m 24.344987,28.085273 c -0.207577,3.121921 -0.933742,0.08573 -0.726901,3.207702 0.211838,3.197391 1.243723,-1.809555 1.547166,1.380446 0.324858,3.415136 -1.653867,3.634507 -1.653867,3.634507"
+       inkscape:path-effect="#path-effect5282;#path-effect5344"
+       id="path5280"
+       d="m 24.366665,28.857211 c -0.19682,-0.412491 -0.309463,-0.877054 -0.313947,-1.369565 -0.744318,0.386804 -1.269929,1.086493 -1.438369,1.891658 -0.162066,0.80661 0.0502,1.640509 0.562044,2.263786 0.57455,0.663215 1.25256,0.946425 1.59867,1.354893 0.21156,0.236213 0.359623,0.542465 0.413312,0.861473 0,0 0,0 0,0 0.05446,0.318904 0.01618,0.663124 -0.110551,0.967727 -0.126071,0.304904 -0.345486,0.580814 -0.62009,0.775015 -0.274236,0.194761 -0.612647,0.313676 -0.954893,0.332374 0.343454,0.03407 0.713402,-0.03291 1.042104,-0.200219 0.328927,-0.16697 0.621634,-0.437841 0.821115,-0.776009 0.199667,-0.338084 0.306979,-0.745874 0.293108,-1.162066 0,0 0,0 0,0 -0.01387,-0.416191 -0.148991,-0.839713 -0.397186,-1.203317 -0.417313,-0.605215 -1.082478,-0.999725 -1.381605,-1.507896 0,0 0,0 0,0 -0.276173,-0.447095 -0.322134,-1.018149 -0.155789,-1.454168 0.120164,-0.326531 0.363756,-0.605032 0.642077,-0.773686 z"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+    <path
+       inkscape:transform-center-y="4.2277721"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 21.759802,28.123641 c -0.19682,-0.412491 -0.309463,-0.877054 -0.313947,-1.369565 -0.744318,0.386804 -1.269929,1.086493 -1.438369,1.891658 -0.162066,0.80661 0.0502,1.640508 0.562044,2.263786 0,0 0,0 0,0 0.57455,0.663215 1.25256,0.946425 1.59867,1.354893 0.21156,0.236213 0.359623,0.542465 0.413312,0.861473 0,0 0,0 0,0 0.05446,0.318904 0.01618,0.663124 -0.110551,0.967727 -0.126071,0.304904 -0.345486,0.580814 -0.62009,0.775015 -0.274236,0.194761 -0.612647,0.313676 -0.954893,0.332374 0.343454,0.03407 0.713402,-0.03291 1.042104,-0.200219 0.328927,-0.16697 0.621634,-0.437841 0.821115,-0.776009 0.199667,-0.338084 0.306979,-0.745874 0.293108,-1.162066 0,0 0,0 0,0 -0.01387,-0.416191 -0.148991,-0.839714 -0.397186,-1.203317 -0.417313,-0.605215 -1.082478,-0.999725 -1.381605,-1.507896 0,0 0,0 0,0 -0.276173,-0.447095 -0.322134,-1.018149 -0.155789,-1.454168 0.120164,-0.326531 0.363756,-0.605032 0.642077,-0.773686 z"
+       id="path5284"
+       inkscape:path-effect="#path-effect5286;#path-effect5288"
+       inkscape:original-d="m 21.738124,27.351703 c -0.207577,3.121921 -0.933742,0.08573 -0.726901,3.207702 0.211838,3.197391 1.243723,-1.809555 1.547166,1.380446 0.324858,3.415136 -1.653867,3.634507 -1.653867,3.634507"
+       sodipodi:nodetypes="csss" />
+    <path
+       inkscape:transform-center-y="4.2277721"
+       sodipodi:nodetypes="csss"
+       inkscape:original-d="m 19.177943,26.984918 c -0.207577,3.121921 -0.933742,0.08573 -0.726901,3.207702 0.211838,3.197391 1.243723,-1.809555 1.547166,1.380446 0.324858,3.415136 -1.653867,3.634507 -1.653867,3.634507"
+       inkscape:path-effect="#path-effect5292;#path-effect5342"
+       id="path5290"
+       d="m 19.199622,27.756856 c -0.19682,-0.412492 -0.309463,-0.877054 -0.313948,-1.369565 -0.744318,0.386804 -1.269929,1.086493 -1.438369,1.891658 -0.162066,0.80661 0.0502,1.640509 0.562044,2.263786 0.57455,0.663215 1.25256,0.946425 1.59867,1.354893 0.21156,0.236213 0.359623,0.542465 0.413312,0.861473 0,0 0,0 0,0 0.05446,0.318904 0.01618,0.663124 -0.110551,0.967727 -0.126071,0.304904 -0.345486,0.580814 -0.62009,0.775015 -0.274236,0.194761 -0.612646,0.313675 -0.954892,0.332374 0.343453,0.03407 0.713401,-0.03291 1.042103,-0.200219 0.328927,-0.16697 0.621633,-0.437841 0.821115,-0.776009 0.199667,-0.338084 0.306978,-0.745874 0.293108,-1.162066 0,0 0,0 0,0 -0.01387,-0.416191 -0.148991,-0.839713 -0.397186,-1.203317 -0.417313,-0.605215 -1.082478,-0.999725 -1.381605,-1.507896 0,0 0,0 0,0 -0.276173,-0.447095 -0.322135,-1.018149 -0.15579,-1.454169 0.120164,-0.32653 0.363758,-0.605032 0.642079,-0.773685 z"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+    <path
+       inkscape:transform-center-y="4.2277721"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 17.379679,26.289716 c -0.19682,-0.412491 -0.309463,-0.877054 -0.313947,-1.369565 -0.744318,0.386804 -1.269929,1.086493 -1.438369,1.891658 -0.162066,0.80661 0.0502,1.640509 0.562044,2.263786 0.57455,0.663215 1.25256,0.946425 1.59867,1.354893 0.21156,0.236213 0.359623,0.542465 0.413312,0.861473 0.05446,0.318904 0.01618,0.663124 -0.110551,0.967727 -0.126071,0.304904 -0.345486,0.580814 -0.62009,0.775015 -0.274236,0.194761 -0.612647,0.313676 -0.954894,0.332374 0.343454,0.03407 0.713403,-0.03291 1.042105,-0.200219 0.328927,-0.16697 0.621634,-0.437841 0.821115,-0.776009 0.199667,-0.338084 0.306979,-0.745874 0.293108,-1.162066 0,0 0,0 0,0 -0.01387,-0.416191 -0.148991,-0.839714 -0.397186,-1.203317 -0.417313,-0.605215 -1.082478,-0.999725 -1.381604,-1.507896 -10e-7,0 -10e-7,0 -10e-7,0 -0.276173,-0.447095 -0.322134,-1.018149 -0.155789,-1.454168 0.120164,-0.326531 0.363756,-0.605032 0.642077,-0.773686 z"
+       id="path5294"
+       inkscape:path-effect="#path-effect5296;#path-effect5340"
+       inkscape:original-d="m 17.358001,25.517778 c -0.207577,3.121921 -0.933742,0.08573 -0.726901,3.207702 0.211838,3.197391 1.243723,-1.809555 1.547166,1.380446 0.324858,3.415136 -1.653867,3.634507 -1.653867,3.634507"
+       sodipodi:nodetypes="csss" />
+    <path
+       inkscape:transform-center-y="4.2277721"
+       sodipodi:nodetypes="csss"
+       inkscape:original-d="m 16.411675,22.783561 c -0.207577,3.121921 -0.933742,0.08573 -0.726901,3.207702 0.211838,3.197391 1.243723,-1.809555 1.547166,1.380446 0.324858,3.415136 -1.653867,3.634507 -1.653867,3.634507"
+       inkscape:path-effect="#path-effect5300;#path-effect5302"
+       id="path5298"
+       d="m 16.433353,23.555499 c -0.19682,-0.412491 -0.309463,-0.877054 -0.313947,-1.369565 -0.744318,0.386804 -1.269929,1.086493 -1.438369,1.891658 -0.162066,0.80661 0.0502,1.640509 0.562044,2.263786 0.57455,0.663215 1.25256,0.946425 1.59867,1.354893 0.211561,0.236213 0.359623,0.542465 0.413312,0.861473 0.05446,0.318904 0.01618,0.663124 -0.110551,0.967727 -0.126071,0.304904 -0.345486,0.580814 -0.62009,0.775015 -0.274236,0.194761 -0.612646,0.313676 -0.954892,0.332374 0.343453,0.03407 0.713401,-0.03291 1.042103,-0.200219 0.328927,-0.16697 0.621634,-0.437841 0.821115,-0.776009 0.199667,-0.338084 0.306979,-0.745874 0.293108,-1.162066 0,0 0,0 0,0 -0.01387,-0.416191 -0.148991,-0.839714 -0.397186,-1.203317 -0.417313,-0.605215 -1.082478,-0.999725 -1.381605,-1.507896 -0.276173,-0.447095 -0.322134,-1.018149 -0.155789,-1.454168 0.120164,-0.326531 0.363756,-0.605032 0.642077,-0.773686 z"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+    <path
+       inkscape:transform-center-x="2.1415982"
+       inkscape:transform-center-y="3.7927563"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 15.490929,21.656093 c 0.0028,-0.457034 0.104048,-0.924211 0.31482,-1.369365 -0.838497,0.02344 -1.616648,0.423831 -2.119395,1.074914 -0.49764,0.655163 -0.670329,1.498147 -0.481576,2.282258 0.227763,0.8474 0.714365,1.397966 0.847669,1.916492 0.08735,0.304834 0.08702,0.644999 -0.0038,0.955482 0,0 0,1e-6 0,1e-6 -0.09008,0.310727 -0.274661,0.603785 -0.521555,0.822616 -0.246431,0.219389 -0.564214,0.371977 -0.896024,0.426965 -0.331722,0.05565 -0.688114,0.01506 -1.004248,-0.117379 0.294207,0.180453 0.656324,0.281537 1.025088,0.27434 0.368817,-0.0068 0.750356,-0.122878 1.077355,-0.340184 0.32713,-0.217149 0.601554,-0.537305 0.770593,-0.917875 0.169038,-0.38057 0.232167,-0.820619 0.167407,-1.256067 -0.111566,-0.726628 -0.538066,-1.371748 -0.585605,-1.959502 0,0 0,0 0,0 -0.05352,-0.522782 0.154183,-1.056705 0.494042,-1.376517 0.250548,-0.241427 0.591219,-0.385801 0.91523,-0.416179 z"
+       id="path5304"
+       inkscape:path-effect="#path-effect5306;#path-effect5338"
+       inkscape:original-d="m 15.808101,20.95199 c -1.548413,2.718804 -0.877642,-0.330103 -2.053153,2.569494 -1.203908,2.969645 1.908429,-1.085925 0.790177,1.917023 -1.197173,3.214881 -3.073456,2.54927 -3.073456,2.54927"
+       sodipodi:nodetypes="csss" />
+    <path
+       inkscape:transform-center-x="3.1391557"
+       inkscape:transform-center-y="3.116301"
+       sodipodi:nodetypes="csss"
+       inkscape:original-d="m 15.219001,20.4608 c -2.292418,2.129389 -0.738272,-0.578082 -2.72916,1.835599 -2.038983,2.47199 2.146235,-0.463696 0.17898,2.06575 -2.106094,2.707961 -3.6964488,1.510359 -3.6964488,1.510359"
+       inkscape:path-effect="#path-effect5310;#path-effect5336"
+       id="path5308"
+       d="m 14.705293,21.037396 c 0.139711,-0.435165 0.376392,-0.850482 0.71095,-1.21195 -0.806942,-0.229068 -1.669346,-0.08044 -2.344192,0.38993 -0.671197,0.475793 -1.088716,1.228204 -1.143771,2.032833 -0.03682,0.876702 0.2623,1.547845 0.233986,2.082482 -0.0081,0.317001 -0.110393,0.641413 -0.290136,0.910376 0,0 0,0 0,0 -0.17911,0.269418 -0.443072,0.493642 -0.744224,0.62837 -0.300877,0.135399 -0.649792,0.185675 -0.982822,0.138637 -0.3331453,-0.04638 -0.6609658,-0.191966 -0.922838,-0.41311 0.2265582,0.260369 0.5417011,0.465385 0.895653,0.569096 0.353882,0.104115 0.752673,0.107778 1.129787,-0.0015 0.37719,-0.109063 0.734988,-0.332199 1.010366,-0.644568 0,0 0,0 0,0 0.275377,-0.312371 0.467553,-0.713241 0.536346,-1.148069 0.111454,-0.726646 -0.101975,-1.46997 0.02892,-2.044932 0.105702,-0.514775 0.46395,-0.961847 0.884069,-1.165033 0.311412,-0.155188 0.679699,-0.190765 0.99791,-0.122587 z"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+    <path
+       inkscape:transform-center-x="3.5179156"
+       inkscape:transform-center-y="2.6755251"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 13.677244,19.54893 c 0.201229,-0.410359 0.495536,-0.787042 0.878892,-1.096276 -0.765285,-0.34346 -1.64012,-0.321231 -2.375944,0.0465 -0.732999,0.373625 -1.255033,1.057674 -1.425981,1.845858 0,1e-6 0,1e-6 0,1e-6 -0.163334,0.862138 0.03548,1.569511 -0.06992,2.094418 -0.05387,0.312493 -0.202075,0.618678 -0.418859,0.858789 0,0 0,0 0,1e-6 -0.216222,0.240653 -0.5098611,0.424307 -0.8273429,0.514023 -0.3173074,0.09042 -0.6698249,0.08966 -0.9925385,-0.0051 -0.3229236,-0.09411 -0.6262178,-0.28562 -0.8533212,-0.542342 0.1864834,0.290422 0.468631,0.538897 0.8038434,0.692751 0.3350837,0.154243 0.7291446,0.215593 1.1181007,0.16208 0.3890051,-0.05332 0.7753335,-0.222309 1.0930275,-0.491527 0,0 0,0 0,0 0.317692,-0.269219 0.565871,-0.638049 0.696883,-1.05834 0.215463,-0.702859 0.111881,-1.469248 0.324621,-2.019207 0,0 0,0 0,-1e-6 0.179103,-0.494052 0.598293,-0.884557 1.043398,-1.024791 0.330596,-0.108476 0.700154,-0.09037 1.005145,0.02315 z"
+       id="path5312"
+       inkscape:path-effect="#path-effect5314;#path-effect5334"
+       inkscape:original-d="m 14.269004,19.052766 c -2.576507,1.775131 -0.646817,-0.678859 -2.966122,1.421216 -2.3753342,2.150807 2.190751,-0.148141 -0.121928,2.0699 -2.4758951,2.374579 -3.8761443,0.959383 -3.8761443,0.959383"
+       sodipodi:nodetypes="csss" />
+    <path
+       inkscape:transform-center-x="3.7855685"
+       inkscape:transform-center-y="2.2430901"
+       sodipodi:nodetypes="csss"
+       inkscape:original-d="m 13.202482,17.900971 c -2.778312,1.438909 -0.556823,-0.754434 -3.120598,1.039039 -2.62571,1.836799 2.192075,0.127051 -0.3798807,2.038393 -2.7534721,2.046234 -3.9657057,0.467005 -3.9657057,0.467005"
+       inkscape:path-effect="#path-effect5318;#path-effect5332"
+       id="path5316"
+       d="m 12.553307,18.319218 c 0.250979,-0.381965 0.590091,-0.718877 1.009117,-0.97773 -0.716313,-0.436488 -1.587058,-0.523862 -2.3631,-0.251059 -0.773978,0.279003 -1.3774761,0.892383 -1.6456698,1.652994 -0.2698912,0.834937 -0.1611156,1.561624 -0.3313517,2.069224 -0.092539,0.3033 -0.2778751,0.588543 -0.5229899,0.799652 -1e-7,0 -2e-7,0 -3e-7,0 -0.2446255,0.211718 -0.5589309,0.3572 -0.8851414,0.4065 -0.3261257,0.05002 -0.6757796,0.0052 -0.9841071,-0.1292 -0.3086155,-0.133766 -0.5855733,-0.361707 -0.7787811,-0.64482 0.1486915,0.311467 0.397543,0.593283 0.710878,0.787859 0.3131589,0.194945 0.6964511,0.305104 1.0890463,0.300663 0.392619,-0.0042 0.7970518,-0.123582 1.1459253,-0.350947 0.3488724,-0.227366 0.641237,-0.562256 0.8237911,-0.962859 0.3016876,-0.670388 0.2947806,-1.443715 0.5746406,-1.962745 0,0 0,0 0,0 0.239495,-0.46777 0.704238,-0.802775 1.163388,-0.886231 0.341569,-0.06627 0.705959,-0.0021 0.994355,0.148699 z"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+    <path
+       inkscape:transform-center-x="4.1030027"
+       inkscape:transform-center-y="-1.0716341"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 13.574054,17.327162 c 0.444619,-0.105837 0.922477,-0.118441 1.404954,-0.01943 -0.221924,-0.808935 -0.795675,-1.469723 -1.547535,-1.803444 -0.75461,-0.327792 -1.614488,-0.295321 -2.331331,0.07427 -0.769054,0.422513 -1.1882931,1.025956 -1.6603196,1.278601 C 9.1644588,17.014412 8.8339478,17.094881 8.5107777,17.080402 8.1875467,17.0667 7.8590348,16.957006 7.5878255,16.769152 7.3161839,16.58188 7.0924857,16.309431 6.960262,16.000176 6.8274137,15.691164 6.7821938,15.335331 6.8357621,14.996786 c -0.1054113,0.328648 -0.117596,0.704412 -0.023019,1.060914 0.094195,0.35665 0.2975795,0.699699 0.5863332,0.965729 0.2886323,0.266194 0.6648059,0.456725 1.0746344,0.530537 0.4098285,0.07381 0.8522792,0.03062 1.2598858,-0.135713 0.6793367,-0.280956 1.2046987,-0.848475 1.7643427,-1.034252 0,0 0,0 0,0 0.49511,-0.176156 1.063087,-0.101208 1.454468,0.152967 0.294026,0.186037 0.515182,0.482669 0.621647,0.790194 z"
+       id="path5320"
+       inkscape:path-effect="#path-effect5322;#path-effect5330"
+       inkscape:original-d="M 14.333341,17.468025 C 11.32457,16.609666 14.445548,16.537094 11.349727,16.083907 8.1791172,15.619772 12.857851,17.679806 9.6752361,17.306787 6.2680071,16.907441 6.468933,14.926758 6.468933,14.926758"
+       sodipodi:nodetypes="csss" />
+    <path
+       inkscape:transform-center-x="4.2350355"
+       inkscape:transform-center-y="0.46221235"
+       sodipodi:nodetypes="csss"
+       inkscape:original-d="m 15.004722,14.399282 c -3.126424,0.122286 -0.183568,-0.919526 -3.266408,-0.38512 -3.1573139,0.547316 1.930449,1.046281 -1.20987,1.683915 -3.3619492,0.682634 -3.7884422,-1.261995 -3.7884422,-1.261995"
+       inkscape:path-effect="#path-effect5326;#path-effect5328"
+       id="path5324"
+       d="m 14.239357,14.502117 c 0.389475,-0.239157 0.839596,-0.400088 1.328897,-0.456404 -0.463023,-0.699454 -1.214165,-1.148473 -2.03259,-1.231201 -0.819191,-0.07624 -1.626105,0.222653 -2.192025,0.797276 -0.599033,0.641187 -0.809281,1.345248 -1.179036,1.732442 -0.212625,0.235256 -0.501585,0.414742 -0.8131668,0.50172 -2e-7,0 -3e-7,10e-7 -4e-7,10e-7 -0.3113973,0.08774 -0.6577349,0.08591 -0.9739885,-0.008 C 8.0609644,15.744639 7.7634854,15.555495 7.5414504,15.302865 7.318898,15.05066 7.1650128,14.726651 7.1103828,14.388276 c 0.00228,0.345131 0.1078384,0.705971 0.3088295,1.01523 0.2006749,0.309518 0.5008594,0.572078 0.8581519,0.734844 0.357228,0.16296 0.7740506,0.226739 1.1864683,0.169125 2e-7,-1e-6 3e-7,-1e-6 5e-7,-1e-6 0.4124172,-0.05762 0.819359,-0.236577 1.154809,-0.521677 0.557911,-0.478717 0.880193,-1.181723 1.354043,-1.532693 0,0 0,0 0,0 0.415532,-0.321713 0.978572,-0.427546 1.429683,-0.308034 0.337367,0.08512 0.639969,0.298031 0.836989,0.557047 z"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+  </g>
+  <g
+     style="display:inline"
+     inkscape:label="hat"
+     id="layer4"
+     inkscape:groupmode="layer"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:nodetypes="czzzzzzzz"
+       id="path4690"
+       d="m 54.289813,24.946834 c -0.781842,0.293236 -0.02776,-1.847247 -1.217278,-1.596706 -1.189518,0.250541 2.085402,1.604371 -0.03213,1.983794 -2.117532,0.379423 -0.0039,-2.135669 -1.798941,-1.646528 -1.795062,0.489141 1.472588,1.684833 -0.03686,2.025951 -1.509442,0.341119 -2.172124,-2.372399 -1.691628,-3.28214 0.480496,-0.909741 0.988309,-1.209617 1.879424,-1.209617 0.891115,0 1.797515,-0.08338 2.381489,0.500594 0.583975,0.583975 1.297766,2.931416 0.515924,3.224652 z"
+       style="fill:#6d6f8b;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       inkscape:connector-curvature="0" />
+    <g
+       id="g7965"
+       inkscape:tile-cx="22.09015"
+       inkscape:tile-cy="20.514303"
+       inkscape:tile-w="18.573795"
+       inkscape:tile-h="17.131596"
+       inkscape:tile-x0="12.803253"
+       inkscape:tile-y0="11.948505">
+      <path
+         sodipodi:type="arc"
+         style="fill:url(#linearGradient8015);fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4638"
+         sodipodi:cx="23.669546"
+         sodipodi:cy="24.70376"
+         sodipodi:rx="5.3441734"
+         sodipodi:ry="3.5555556"
+         d="m 29.01372,24.70376 a 5.3441734,3.5555556 0 1 1 -10.688347,0 5.3441734,3.5555556 0 1 1 10.688347,0 z"
+         transform="matrix(1.0569123,0.34095844,-0.30701827,0.95170362,4.123598,-8.6333268)" />
+      <path
+         sodipodi:nodetypes="czzzzzzzzzzzzzzzzzzzzz"
+         id="path3900-6"
+         d="m 30.534314,23.715857 c -0.01702,0.781459 0.931067,1.258806 0.836037,2.008564 -0.09503,0.749758 -1.670745,0.147597 -2.339306,0.314884 -0.66856,0.167287 -1.771032,1.468276 -2.961087,0.958518 -1.190054,-0.509758 -3.618976,0.169169 -3.74209,-2.341786 -0.123114,-2.510955 -2.842983,-2.598531 -3.230413,-1.95102 -0.38743,0.647511 -1.220428,2.853704 1.23904,3.730614 2.443638,0.871266 6.063323,0.566745 7.155841,0.533783 1.092517,-0.03296 2.608997,-0.965366 1.716975,0.403381 -0.896497,1.375614 -0.212815,1.302763 -1.024853,1.415301 -0.812038,0.112537 -0.551427,-0.166931 -1.022993,-0.227992 -0.491691,-0.06367 -0.174115,0.342884 -0.972431,0.466736 -0.798317,0.123852 -2.024558,0.04472 -2.987665,-0.375618 -0.963107,-0.420335 -1.053205,-0.435523 -3.007198,-0.94253 -1.953993,-0.507006 -4.99587,-1.73156 -4.062734,-4.783947 0.933136,-3.052387 -4.447865,-1.191514 -3.114553,-6.285782 1.337294,-5.109485 8.255553,-2.035291 9.448283,-2.429605 1.19273,-0.394314 -4.084789,-2.060405 -2.157116,-2.228507 1.927672,-0.168103 1.184172,0.333967 3.776523,1.158734 2.59235,0.824767 3.219648,3.448858 3.582672,4.777929 0.363025,1.329072 1.279562,2.3241 1.832621,2.938164 0.553059,0.614064 1.051467,2.078721 1.034447,2.860179 z"
+         style="fill:#f8bd00;fill-opacity:1;fill-rule:nonzero;stroke:#be0000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4633"
+         sodipodi:cx="23.961382"
+         sodipodi:cy="19.757961"
+         sodipodi:rx="2.1327913"
+         sodipodi:ry="2.1327913"
+         d="m 26.094173,19.757961 a 2.1327913,2.1327913 0 1 1 -4.265582,0 2.1327913,2.1327913 0 1 1 4.265582,0 z"
+         transform="matrix(1.2098573,0,0,1.2098573,-7.1562673,-5.9489458)" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         id="path4662"
+         sodipodi:cx="23.127541"
+         sodipodi:cy="18.475271"
+         sodipodi:rx="0.69376695"
+         sodipodi:ry="0.69376695"
+         d="m 23.821308,18.475271 a 0.69376695,0.69376695 0 1 1 -1.387534,0 0.69376695,0.69376695 0 1 1 1.387534,0 z"
+         transform="matrix(1.4257812,0,0,1.4257812,-10.201446,-8.0206323)" />
+      <path
+         transform="matrix(0.60910073,-0.41624343,0.60166974,0.88044027,-0.67846224,10.218049)"
+         d="m 26.094173,19.757961 a 2.1327913,2.1327913 0 1 1 -4.265582,0 2.1327913,2.1327913 0 1 1 4.265582,0 z"
+         sodipodi:ry="2.1327913"
+         sodipodi:rx="2.1327913"
+         sodipodi:cy="19.757961"
+         sodipodi:cx="23.961382"
+         id="path4670"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.75573189,-0.5164473,0.74651201,1.092392,-4.8345559,9.8164943)"
+         d="m 23.821308,18.475271 a 0.69376695,0.69376695 0 1 1 -1.387534,0 0.69376695,0.69376695 0 1 1 1.387534,0 z"
+         sodipodi:ry="0.69376695"
+         sodipodi:rx="0.69376695"
+         sodipodi:cy="18.475271"
+         sodipodi:cx="23.127541"
+         id="path4672"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(2.0264311,0,0,1.6875545,-29.780675,-17.639811)"
+         sodipodi:type="arc"
+         style="fill:#f80000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4776"
+         sodipodi:cx="27.638718"
+         sodipodi:cy="24.28425"
+         sodipodi:rx="0.52350241"
+         sodipodi:ry="0.76691431"
+         d="m 28.16222,24.28425 a 0.52350241,0.76691431 0 1 1 -1.047005,0 0.52350241,0.76691431 0 1 1 1.047005,0 z" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path4776"
+         id="use8093"
+         transform="translate(3.0934664,-0.56244845)"
+         width="32"
+         height="1024" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       id="use7975"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,65.014657)"
+       id="use7977"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,96.029314)"
+       id="use7979"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,127.99153)"
+       id="use7981"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,159.991)"
+       id="use7983"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,192.02087)"
+       id="use7985"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,225.03553)"
+       id="use7987"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,256.01636)"
+       id="use7989"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,287.97855)"
+       id="use7991"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,320.01186)"
+       id="use7993"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,352.00789)"
+       id="use7995"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,385.02256)"
+       id="use7997"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,416.00339)"
+       id="use7999"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,447.99942)"
+       id="use8001"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,479.99889)"
+       id="use8003"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,511.01012)"
+       id="use8005"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,544.02478)"
+       id="use8007"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7965"
+       xlink:href="#g7965"
+       transform="translate(0,575.99041)"
+       id="use8009"
+       width="32"
+       height="1024" />
+    <g
+       id="g5043">
+      <path
+         transform="matrix(1.5484855,0,0,1.1065611,-50.904804,-58.913966)"
+         d="m 50.741987,590.23462 a 2.8945866,2.8945866 0 1 1 -5.789173,0 2.8945866,2.8945866 0 1 1 5.789173,0 z"
+         sodipodi:ry="2.8945866"
+         sodipodi:rx="2.8945866"
+         sodipodi:cy="590.23462"
+         sodipodi:cx="47.847401"
+         id="path4261"
+         style="fill:#f8bd00;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cc"
+         inkscape:original-d="m 19.838421,593.18691 3.762537,2.06004"
+         inkscape:path-effect="#path-effect5037"
+         id="path5035"
+         d="m 19.838421,593.18691 3.762537,2.06004"
+         style="fill:none;stroke:#be0000;stroke-linecap:round;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="cc"
+         inkscape:original-d="m 27.080054,593.56298 -1.009641,1.57837"
+         inkscape:path-effect="#path-effect5041"
+         id="path5039"
+         d="m 27.080054,593.56298 -1.009641,1.57837"
+         style="fill:none;stroke:#be0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         inkscape:connector-curvature="0" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="whiskers"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <g
+       id="g6815"
+       transform="translate(-60,0)"
+       sodipodi:insensitive="true">
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6669"
+         xlink:href="#use5036"
+         inkscape:tiled-clone-of="#use5036"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6673"
+         xlink:href="#use5038"
+         inkscape:tiled-clone-of="#use5038"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6677"
+         xlink:href="#use5040"
+         inkscape:tiled-clone-of="#use5040"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6681"
+         xlink:href="#use5042"
+         inkscape:tiled-clone-of="#use5042"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6685"
+         xlink:href="#use5044"
+         inkscape:tiled-clone-of="#use5044"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6689"
+         xlink:href="#use5046"
+         inkscape:tiled-clone-of="#use5046"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6693"
+         xlink:href="#use5048"
+         inkscape:tiled-clone-of="#use5048"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6697"
+         xlink:href="#use5050"
+         inkscape:tiled-clone-of="#use5050"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6701"
+         xlink:href="#use5052"
+         inkscape:tiled-clone-of="#use5052"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6705"
+         xlink:href="#use5054"
+         inkscape:tiled-clone-of="#use5054"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6709"
+         xlink:href="#use5056"
+         inkscape:tiled-clone-of="#use5056"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6713"
+         xlink:href="#use5058"
+         inkscape:tiled-clone-of="#use5058"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6717"
+         xlink:href="#use5060"
+         inkscape:tiled-clone-of="#use5060"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6721"
+         xlink:href="#use5062"
+         inkscape:tiled-clone-of="#use5062"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6725"
+         xlink:href="#use5064"
+         inkscape:tiled-clone-of="#use5064"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6729"
+         xlink:href="#use5066"
+         inkscape:tiled-clone-of="#use5066"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6731"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5066"
+         inkscape:tiled-clone-of="#use5066"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6733"
+         xlink:href="#use5068"
+         inkscape:tiled-clone-of="#use5068"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6735"
+         transform="translate(60,-575.97923)"
+         xlink:href="#use5068"
+         inkscape:tiled-clone-of="#use5068"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,576)"
+         id="use6661"
+         xlink:href="#g5028"
+         inkscape:tiled-clone-of="#g5028"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6663"
+         transform="translate(60,32.020768)"
+         xlink:href="#g5028"
+         inkscape:tiled-clone-of="#g5028"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(60,-32)"
+         id="use6665"
+         xlink:href="#use5034"
+         inkscape:tiled-clone-of="#use5034"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6667"
+         transform="translate(60,32.020768)"
+         xlink:href="#use5034"
+         inkscape:tiled-clone-of="#use5034"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6671"
+         transform="translate(60,32.020768)"
+         xlink:href="#use5036"
+         inkscape:tiled-clone-of="#use5036"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6675"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5038"
+         inkscape:tiled-clone-of="#use5038"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6679"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5040"
+         inkscape:tiled-clone-of="#use5040"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6683"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5042"
+         inkscape:tiled-clone-of="#use5042"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6687"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5044"
+         inkscape:tiled-clone-of="#use5044"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6691"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5046"
+         inkscape:tiled-clone-of="#use5046"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6695"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5048"
+         inkscape:tiled-clone-of="#use5048"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6699"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5050"
+         inkscape:tiled-clone-of="#use5050"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6703"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5052"
+         inkscape:tiled-clone-of="#use5052"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6707"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5054"
+         inkscape:tiled-clone-of="#use5054"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6711"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5056"
+         inkscape:tiled-clone-of="#use5056"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6715"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5058"
+         inkscape:tiled-clone-of="#use5058"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6719"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5060"
+         inkscape:tiled-clone-of="#use5060"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6723"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5062"
+         inkscape:tiled-clone-of="#use5062"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+      <use
+         height="1024"
+         width="32"
+         id="use6727"
+         transform="translate(60,32.020767)"
+         xlink:href="#use5064"
+         inkscape:tiled-clone-of="#use5064"
+         y="0"
+         x="0"
+         style="opacity:0.5" />
+    </g>
+    <g
+       id="g5028"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="15.992678"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32.010384"
+       inkscape:tile-x0="-1.4532307e-15"
+       inkscape:tile-y0="-0.012513974"
+       transform="translate(0,0.01251397)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="-0.012513974"
+         x="-1.4532307e-15"
+         height="32.010384"
+         width="32"
+         id="rect5026"
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         inkscape:tile-y0="2.4163"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-cx="17.2007"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         d="m 18.769071,1.9159464 c 0.01479,-0.014132 0.527396,0.1854024 0.928078,1.1015917 0.240848,0.5573876 0.375243,1.2879783 0.297022,2.2041333 -0.05823,0.7136836 -0.197095,1.3138235 -0.357741,2.1236792 0,-10e-8 0,1.4e-6 0,1.4e-6 -0.118944,0.6163592 -0.243895,1.3227928 -0.204542,1.9832916 0.03853,0.5898304 0.189503,1.2257224 0.557918,1.6815764 0.380963,0.516971 1.048566,0.847284 1.812216,1.036367 0.723166,0.1709 1.487931,0.169079 2.387049,0.197604 0.814949,0.01605 1.747345,0.06672 2.680072,0.366003 0.451557,0.147572 0.902155,0.368202 1.315298,0.67965 0,0 3e-6,2e-6 3e-6,2e-6 0.404662,0.304631 0.759577,0.70674 1.009963,1.195636 0.238243,0.486977 0.355143,0.998111 0.388626,1.491469 0.03582,0.482503 0.01583,0.93535 -0.0063,1.36504 -0.01826,0.417506 -0.03873,0.814667 -0.005,1.173543 0.03619,0.351507 0.102974,0.68225 0.245367,0.939471 0.15999,0.333498 0.556673,0.708256 0.905405,1.318051 0.177259,0.301129 0.306689,0.674675 0.336694,1.10652 0.03238,0.440283 -0.11028,0.906089 -0.446463,1.305475 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.251948,0.259507 -0.522315,0.423619 -0.773857,0.509919 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.244591,0.09171 -0.448307,0.142431 -0.602438,0.188506 -0.415682,0.123359 -0.879899,0.353943 -1.449359,0.543404 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.605987,0.196983 -1.213578,0.303722 -1.80488,0.369867 -0.549738,0.06509 -1.067623,0.09725 -1.515365,0.194927 -0.673992,0.129747 -1.342919,0.435463 -2.073625,0.775876 -0.533038,0.248326 -1.083581,0.507378 -1.681045,0.723103 -0.715133,0.266354 -1.500445,0.442062 -2.327838,0.425389 -0.850113,-0.01423 -1.712487,-0.297732 -2.411357,-0.874233 -0.423505,-0.365892 -0.741182,-0.813596 -0.951507,-1.291945 -0.212552,-0.482534 -0.329545,-0.982631 -0.372448,-1.470746 -0.08105,-0.990863 0.07769,-1.920782 0.262279,-2.74743 0.182257,-0.868441 0.378584,-1.63214 0.406179,-2.37579 0.01836,-0.756561 -0.08971,-1.47968 -0.453167,-1.989253 -0.377417,-0.608535 -1.131617,-0.99542 -1.887641,-1.223716 C 12.17277,14.710688 11.23587,14.675165 10.345334,14.612212 9.3502893,14.553301 8.3746475,14.447633 7.4248602,14.095466 6.924042,13.907204 6.4568393,13.643636 6.0511318,13.304028 5.6215991,12.94491 5.2815711,12.497471 5.0637243,11.998176 4.7490325,11.242376 4.7323096,10.461069 4.8491275,9.7940786 4.9748189,9.0580351 5.236902,8.3870736 5.4709451,7.8348584 c 0,0 6e-7,-1.4e-6 6e-7,-1.4e-6 C 5.7704926,7.1184238 5.9953912,6.6377533 6.1721073,6.0530496 6.3874068,5.3305738 6.4397155,4.7541695 6.3706277,4.2484012 6.2454493,3.2908178 5.8299326,2.8349194 5.8911215,2.781365 c -0.00107,9.384e-4 0.6189999,0.2350177 0.9369122,1.3710466 0.1549137,0.5639684 0.18224,1.2562767 0.00865,2.0689015 -0.1356033,0.6464412 -0.3369164,1.2009982 -0.579824,1.9120538 -10e-8,4e-7 -3e-7,9e-7 -4e-7,1.4e-6 -0.1861327,0.5539157 -0.3915665,1.185201 -0.4529722,1.7934991 -0.052154,0.5475656 -0.017136,1.1473906 0.230803,1.6302006 0.1569344,0.325663 0.4127014,0.622852 0.7291095,0.869741 0.3011018,0.234609 0.6638135,0.415158 1.0636688,0.551475 0.7616895,0.264571 1.608172,0.309251 2.582564,0.349543 0.874663,0.02598 1.893151,0.04467 2.914868,0.293456 0.986875,0.231002 2.016087,0.77132 2.71953,1.733054 0.579434,0.860343 0.796958,1.878312 0.753494,2.854403 -0.03246,0.939184 -0.226606,1.794996 -0.397727,2.631562 -0.151995,0.797299 -0.291469,1.579987 -0.207606,2.289037 0.03825,0.3483 0.116355,0.684666 0.253642,0.978325 0.13517,0.288206 0.317976,0.549886 0.543727,0.734399 0.350512,0.313109 0.887535,0.46479 1.438558,0.489731 0.550939,0.02186 1.138397,-0.124878 1.73979,-0.337071 0.501767,-0.183841 1.008457,-0.427512 1.55282,-0.678156 0.746267,-0.343609 1.532183,-0.684887 2.420529,-0.881429 0.597703,-0.120654 1.163182,-0.158339 1.661598,-0.212355 0.53521,-0.06186 1.038383,-0.14235 1.494767,-0.292469 0,0 2e-6,-10e-7 2e-6,-10e-7 0.430991,-0.13741 0.912143,-0.369166 1.490025,-0.543426 0.21346,-0.06404 0.381275,-0.100679 0.492913,-0.145655 0,0 2e-6,-1e-6 2e-6,-1e-6 0.106195,-0.05097 0.179412,-0.0774 0.183619,-0.09973 0,0 0,-1e-6 0,-1e-6 0.02934,-0.0028 0.04343,-0.09935 0.05312,-0.196975 0.0071,-0.111202 -0.05564,-0.261176 -0.138195,-0.431645 -0.178912,-0.34798 -0.582642,-0.750077 -0.909252,-1.371858 -0.245757,-0.504804 -0.357733,-1.024608 -0.385965,-1.511133 -0.0317,-0.491742 -0.0043,-0.952849 0.02506,-1.371481 0.02684,-0.430816 0.05549,-0.819703 0.03203,-1.180052 -0.02685,-0.364478 -0.08511,-0.698231 -0.218879,-0.965705 -0.125632,-0.273674 -0.339803,-0.52173 -0.590398,-0.726572 0,0 -1e-6,-1e-6 -1e-6,-1e-6 -0.258482,-0.210752 -0.572888,-0.371144 -0.904967,-0.49372 -0.684561,-0.258183 -1.499288,-0.314369 -2.293027,-0.367352 -0.87971,-0.04782 -1.737738,-0.0893 -2.621987,-0.320945 -0.960651,-0.242787 -1.829645,-0.769104 -2.399399,-1.552678 -0.501242,-0.733923 -0.668861,-1.568664 -0.65937,-2.3012051 0.0071,-0.8118047 0.186269,-1.5726924 0.357416,-2.1977339 0,0 0,-1.5e-6 0,-1.5e-6 0.22331,-0.8318347 0.394837,-1.3520298 0.508069,-2.0144888 C 19.45744,4.307361 19.427309,3.685268 19.286335,3.1631143 19.069805,2.3443685 18.714445,1.9681494 18.769071,1.9159464 Z"
+         id="path4713"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         inkscape:original-d="m 5.8911215,2.781365 c 0,0 -0.8348177,0.8317157 0.7082092,1.4190414 1.45782,0.5548931 -2.0507092,6.3805656 -1.0501232,7.5772156 1.11093,1.328615 8.9376865,1.947494 9.9051145,3.982872 0.736185,1.551525 -0.537674,8.973847 1.027097,9.681445 1.054823,0.476997 6.881836,-1.902914 7.822781,-1.22853 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.375071,-1.163553 -0.894982,-2.865262 C 28.138619,18.451419 28.740954,16.47 28.558452,14.799064 28.38575,13.217854 20.411122,12.668966 19.551262,11.330799 18.866509,10.265145 20.652473,3.597478 19.491742,3.0903262 18.624856,2.7115634 18.769092,1.9159685 18.769092,1.9159685"
+         sodipodi:nodetypes="cssssssssssssss"
+         clip-path="none"
+         transform="translate(4.322867e-8,-0.3124032)"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.1371666"
+         id="text4678"><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="1.1371666"
+           id="tspan4720"
+           style="font-size:1.67107606px;line-height:1">1</tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="31.987486"
+       inkscape:tile-x0="38.207347"
+       id="use5034"
+       transform="translate(0,32)"
+       inkscape:tile-cx="55.103673"
+       inkscape:tile-cy="47.992678"
+       inkscape:tile-w="33.792653"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect7174"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 5.9850166,2.9918282 c 0,0 -1.6402086,1.7524955 -0.097182,2.3398212 1.4578197,0.5548931 -1.6860955,4.5495828 -0.6855104,5.7462326 1.11093,1.328615 9.3835958,1.942641 10.3510238,3.978019 0.736185,1.551525 -1.406017,8.825364 0.158754,9.532962 1.054823,0.476997 7.651153,-1.049838 8.592098,-0.375447 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.340379,-0.491684 -0.929676,-2.193393 -1.005017,-1.346595 -0.94543,-5.415993 -1.127932,-7.086929 -0.172702,-1.58121 -8.307281,-2.023443 -9.167141,-3.361609 C 18.129116,8.9556905 20.216432,4.8685076 19.055698,4.3613558 18.188812,3.982593 18.747453,2.0811033 18.747453,2.0811033"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path7176"
+         d="m 18.747444,2.0810775 c 0.01444,-0.00512 0.613947,0.675124 0.587115,2.3003394 -0.01657,0.8258603 -0.27789,1.8136649 -0.43059,2.8940796 -0.05857,0.427501 -0.09579,0.8906249 -0.04364,1.3341035 0.04848,0.4030329 0.161829,0.8186673 0.383384,1.1558624 0.336,0.5530356 0.987528,0.9409236 1.754506,1.1635876 0.712082,0.199727 1.480818,0.211215 2.379756,0.227344 0.801618,0.0053 1.734088,0.01407 2.675816,0.240841 0.905157,0.209833 1.849453,0.708543 2.496923,1.596294 0.425337,0.628469 0.640381,1.346547 0.698786,2.053707 0.06169,0.683131 0.01929,1.327062 -0.0245,1.947998 -0.03605,0.594738 -0.07445,1.171708 -0.0048,1.691023 0.07287,0.502727 0.213977,0.987863 0.491507,1.32012 0,0 10e-7,2e-6 10e-7,2e-6 0.18398,0.239626 0.544206,0.524219 0.890676,1.019718 0.1739,0.247533 0.30659,0.563523 0.358804,0.93766 0.05457,0.38245 -0.04161,0.795526 -0.306163,1.170654 -0.257331,0.306652 -0.547108,0.493867 -0.818763,0.578449 -0.260851,0.09238 -0.470502,0.136111 -0.618664,0.176103 0,0 -3e-6,0 -3e-6,0 -0.3974,0.104389 -0.850739,0.34219 -1.426262,0.536603 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.612605,0.202062 -1.221567,0.304226 -1.806614,0.370967 -0.543427,0.06559 -1.065285,0.106549 -1.532019,0.19801 -0.689595,0.125706 -1.382876,0.382743 -2.129809,0.660666 -0.699619,0.260318 -1.420735,0.528583 -2.204794,0.714102 -0.823619,0.199374 -1.710613,0.269074 -2.602163,0.10689 -0.918964,-0.164836 -1.793216,-0.638802 -2.415561,-1.398623 -0.653379,-0.859761 -0.88887,-1.888754 -0.844038,-2.830149 0.03742,-0.953874 0.273126,-1.828777 0.508176,-2.608494 0.236567,-0.82011 0.468231,-1.548273 0.530787,-2.263392 0.05525,-0.729743 -0.0185,-1.434667 -0.345505,-1.947009 -0.185655,-0.318239 -0.47094,-0.592988 -0.793057,-0.812339 C 13.82345,14.389904 13.433204,14.228333 13.028721,14.110844 12.193354,13.863858 11.21888,13.841686 10.299838,13.798649 9.2596315,13.761897 8.2557157,13.689628 7.2647937,13.364635 6.7388212,13.189771 6.2473535,12.937358 5.8178649,12.606037 5.3588835,12.252416 4.9924533,11.805705 4.7513664,11.304768 4.4934008,10.753016 4.4014336,10.178306 4.4081618,9.6540517 4.4146711,9.0800336 4.5217808,8.5452982 4.6547086,8.0790822 4.9874655,6.9030941 5.4120697,6.0220891 5.6120613,5.2746968 5.9932709,3.861954 5.886602,3.0037585 5.9850166,2.9918282 6.0223996,2.9872964 6.4018225,3.7936492 6.1636079,5.388602 6.0385655,6.2150735 5.6820227,7.1857783 5.4584515,8.2763604 5.3709674,8.7080431 5.3064737,9.1775067 5.3333266,9.6357852 c 0.025277,0.4163558 0.1163861,0.8495698 0.3199551,1.2152098 0.180428,0.336848 0.463597,0.639811 0.8112216,0.88716 0.3275829,0.232746 0.7170115,0.406501 1.1453476,0.532684 0.8114885,0.243547 1.6913443,0.25681 2.7210821,0.271275 0.912193,0.0023 1.977804,0.0047 3.046635,0.268475 0.51642,0.129577 1.040428,0.335434 1.532172,0.643926 0.479484,0.300277 0.916825,0.71109 1.247215,1.228752 0.522815,0.864201 0.691084,1.866087 0.601802,2.818064 -0.07749,0.91421 -0.314016,1.745589 -0.542743,2.552675 -0.2082,0.77038 -0.413723,1.525429 -0.41829,2.232368 0.0039,0.679332 0.139839,1.371974 0.526159,1.813773 0.321916,0.422217 0.886136,0.699205 1.486365,0.82217 0.598851,0.120159 1.264744,0.05114 1.945088,-0.101718 0.650609,-0.15048 1.306269,-0.401287 2.011756,-0.662546 0.753474,-0.27903 1.534158,-0.558027 2.38866,-0.725765 0.582278,-0.107894 1.140817,-0.152387 1.644943,-0.209272 0.541611,-0.06499 1.044733,-0.140094 1.493034,-0.291369 0,0 2e-6,-1e-6 2e-6,-1e-6 0.423264,-0.138235 0.909605,-0.38194 1.513122,-0.550227 0,0 3e-6,-1e-6 3e-6,-1e-6 0.224517,-0.06153 0.39258,-0.09016 0.492217,-0.130241 0.09021,-0.04839 0.147806,-0.06124 0.123186,-0.05903 -8.03e-4,0.03008 -0.0036,-0.01249 0.0035,-0.0586 0.0045,-0.05759 -0.044,-0.149348 -0.10726,-0.261865 -0.133528,-0.233249 -0.472449,-0.496748 -0.812309,-0.938292 0,0 -2e-6,-3e-6 -2e-6,-3e-6 -0.475582,-0.647081 -0.7051,-1.382386 -0.769594,-2.076905 -0.0708,-0.704402 -0.0228,-1.370849 0.0316,-1.971477 0.05063,-0.626902 0.106125,-1.188482 0.06319,-1.715135 -0.04912,-0.536081 -0.165686,-1.031528 -0.42011,-1.397487 -0.334133,-0.548133 -1.011877,-0.90125 -1.691032,-1.108531 -0.7266,-0.212429 -1.57317,-0.239639 -2.379062,-0.282585 -0.906091,-0.03804 -1.786002,-0.102391 -2.663109,-0.374757 -0.973753,-0.294494 -1.80774,-0.900966 -2.294078,-1.729279 -0.29154,-0.5247645 -0.415524,-1.0838184 -0.437908,-1.5968958 -0.02553,-0.5610693 0.04978,-1.0890427 0.150536,-1.5496511 0.249631,-1.1626188 0.583967,-2.0473697 0.680185,-2.7893944 0.18897,-1.4125853 -0.12212,-2.2273588 -0.02939,-2.2602172 z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.1291616"
+         id="text4678-1"><tspan
+           sodipodi:role="line"
+           id="tspan4680-9"
+           x="-1.8505859"
+           y="1.1291616"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8129463"
+           id="tspan4720-7"
+           style="font-size:1.67107606px;line-height:1">2</tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="63.905491"
+       inkscape:tile-x0="38.187764"
+       id="use5036"
+       transform="translate(0,63.918005)"
+       inkscape:tile-cx="55.093882"
+       inkscape:tile-cy="79.910683"
+       inkscape:tile-w="33.812236"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect7264"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,0.86372632)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 5.6718781,2.0469894 c 0,0 -1.9009137,1.5475965 -0.3578866,2.1349221 1.45782,0.5548934 -0.5953024,4.1297616 -0.5284664,5.0553623 0.124731,1.7273752 11.9665539,4.0724502 10.5648249,3.5033152 -1.591168,-0.646052 -1.944283,8.573888 -0.379512,9.281486 1.054823,0.476997 8.392417,1.51695 9.333362,2.191337 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.114,-1.520238 -1.156053,-3.221947 -1.005016,-1.346595 -1.240532,-6.961972 -1.423034,-8.632908 -0.172702,-1.5812087 -10.074535,-3.6411467 -9.057447,-2.4182066 1.024994,1.232445 1.297593,-4.4360155 0.136859,-4.9431673 -0.866886,-0.3787628 0.0035,-2.2044016 0.0035,-2.2044016"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path7266"
+         d="m 18.542437,1.242604 c 0.04246,-0.00624 0.40291,0.7409424 0.263842,2.2445919 -0.06738,0.7198947 -0.301308,1.5669402 -0.393769,2.500027 -0.0365,0.3731583 -0.04828,0.7741027 0.01542,1.1574726 0.05866,0.3486845 0.173496,0.7043878 0.374312,0.9947815 0.176069,0.2636862 0.431127,0.4935419 0.734414,0.6757642 0.286082,0.171634 0.618791,0.2926898 0.980851,0.3729974 0.684595,0.1559108 1.419961,0.1203846 2.273993,0.063544 0.753847,-0.058473 1.642614,-0.1433867 2.554646,-0.044938 0.874678,0.086633 1.828953,0.4126852 2.587119,1.1300662 0.643073,0.652458 1.017767,1.501481 1.147204,2.373959 0.128978,0.830874 0.09177,1.636334 0.02154,2.416888 -0.05944,0.738593 -0.142667,1.47247 -0.09867,2.140898 0.04939,0.648116 0.183707,1.288252 0.514015,1.756262 0,0 1e-6,2e-6 1e-6,2e-6 0.254792,0.394302 0.75774,0.808151 1.191908,1.492273 0.21775,0.339021 0.375136,0.762252 0.409419,1.249124 0.03607,0.496188 -0.133157,1.016676 -0.524137,1.444341 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.248749,0.23894 -0.510361,0.392961 -0.753185,0.479585 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.237323,0.0911 -0.43808,0.144857 -0.59424,0.193773 -0.422583,0.132153 -0.893064,0.361629 -1.465138,0.547324 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.609849,0.192032 -1.210563,0.290938 -1.785189,0.365371 -0.537587,0.07208 -1.065886,0.130745 -1.580238,0.204723 -0.522198,0.07764 -1.059032,0.173565 -1.610869,0.263887 -1.216219,0.199063 -2.458542,0.361482 -3.759462,0.25153 -0.971279,-0.08567 -1.94221,-0.361815 -2.808226,-0.879184 -0.893584,-0.532912 -1.616098,-1.350541 -1.993155,-2.345458 -0.329477,-0.938845 -0.331732,-1.899933 -0.17165,-2.756116 0.155756,-0.87108 0.433865,-1.674939 0.666067,-2.399641 0.237033,-0.764839 0.440396,-1.466644 0.469913,-2.147932 0.02418,-0.697886 -0.08977,-1.371811 -0.430133,-1.852875 0,0 -10e-7,-10e-7 -10e-7,-10e-7 -0.203962,-0.312056 -0.507634,-0.573724 -0.84498,-0.776275 C 13.584293,12.150003 13.180504,12.010419 12.765919,11.916481 11.908131,11.717994 10.918686,11.75494 9.9957996,11.76244 8.9397578,11.783269 7.9256228,11.756807 6.9211259,11.466473 6.3838568,11.308696 5.8825242,11.067977 5.4458295,10.744993 4.9752883,10.397386 4.6030821,9.951501 4.361846,9.4521915 3.9023407,8.4441382 3.9939738,7.3903421 4.1956393,6.6061193 4.4550954,5.5573247 4.8319328,4.769304 5.0557415,4.1113278 5.4973548,2.8129585 5.5781561,2.040853 5.6718781,2.0469894 5.7328666,2.0509826 5.8731615,2.8316856 5.5722415,4.2524952 5.4209429,4.9669525 5.1138772,5.808236 4.9586868,6.7639602 4.8519885,7.4697527 4.8210948,8.3588747 5.2092042,9.0223561 c 0.1838963,0.3387584 0.4746824,0.6420926 0.8331846,0.884694 0.335091,0.2264639 0.7331816,0.3898899 1.1706502,0.5009169 0.8231394,0.213617 1.706018,0.183351 2.7451744,0.139363 0.9092316,-0.04916 1.9821386,-0.114073 3.0699036,0.08437 0.524718,0.09775 1.062716,0.271757 1.574342,0.552181 0.49778,0.272316 0.960092,0.659397 1.319212,1.161638 0,0 2e-6,3e-6 2e-6,3e-6 0.549223,0.805408 0.772007,1.76799 0.728021,2.703137 -0.03625,0.894037 -0.246737,1.727983 -0.490724,2.525031 -0.224632,0.758671 -0.476495,1.505589 -0.585557,2.213925 -0.09928,0.690726 -0.109437,1.391768 0.123434,1.964316 0.222656,0.616831 0.733424,1.160716 1.352517,1.539499 0.611029,0.372848 1.358745,0.569 2.143076,0.645859 1.058696,0.108497 2.162711,-0.05394 3.353096,-0.251277 0.542479,-0.08993 1.086892,-0.184087 1.646322,-0.260633 0.548579,-0.07755 1.081975,-0.135438 1.596724,-0.20256 0.549114,-0.07422 1.058367,-0.149895 1.514459,-0.296964 0,0 2e-6,-1e-6 2e-6,-1e-6 0.43032,-0.133189 0.906715,-0.361058 1.474246,-0.539506 0.20887,-0.06559 0.376796,-0.106223 0.493888,-0.153749 0,0 2e-6,-10e-7 2e-6,-10e-7 0.113015,-0.05257 0.19368,-0.08488 0.211514,-0.116709 0,0 0,0 0,0 0.05118,-0.02143 0.07728,-0.154464 0.08595,-0.281486 0.0066,-0.1429 -0.0731,-0.324368 -0.178349,-0.519177 -0.222699,-0.401522 -0.716231,-0.813536 -1.142518,-1.457493 0,0 -2e-6,-3e-6 -2e-6,-3e-6 -0.502765,-0.802006 -0.70299,-1.691716 -0.726999,-2.515119 -0.03114,-0.838396 0.06783,-1.636241 0.144238,-2.349342 0.07339,-0.754059 0.131135,-1.437917 0.037,-2.072541 C 27.599502,12.269707 27.379142,11.668764 26.9858,11.279931 26.564531,10.812423 25.866535,10.5743 25.184063,10.459501 24.458435,10.34615 23.631166,10.40188 22.85472,10.4258 21.97508,10.462327 21.116756,10.449952 20.262502,10.228807 19.808084,10.109033 19.378143,9.9228018 18.994284,9.6686992 18.584667,9.397885 18.244772,9.0458028 18.001928,8.6409518 17.736322,8.1869372 17.607943,7.7019713 17.567954,7.2507768 c -0.0444,-0.4932459 1.37e-4,-0.9606001 0.07519,-1.3728157 0.186078,-1.0282265 0.488858,-1.8127681 0.628459,-2.4710628 0.288452,-1.3521265 0.176937,-2.1504976 0.27083,-2.1642943 z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.2175927"
+         id="text4678-4"><tspan
+           sodipodi:role="line"
+           id="tspan4680-98"
+           x="-1.8505859"
+           y="1.2175927"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.9013772"
+           id="tspan4682-4"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5851622"
+           id="tspan4720-0"
+           style="font-size:1.67107606px;line-height:1">3</tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="95.980296"
+       inkscape:tile-x0="38.174709"
+       id="use5038"
+       transform="translate(0,95.99281)"
+       inkscape:tile-cx="55.087354"
+       inkscape:tile-cy="111.98549"
+       inkscape:tile-w="33.825291"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect7354"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 5.1857215,3.4939536 c 0,0 -1.8709561,1.9863698 -0.3279291,2.5736955 1.45782,0.5548931 -1.3412779,2.5874914 -0.3406921,3.7841418 1.1109297,1.3286151 9.2617767,0.7459941 10.2292047,2.7813721 0.736185,1.551525 -1.273899,9.973379 0.290872,10.680977 1.054823,0.476997 8.326078,0.224885 9.267023,0.899272 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -0.173836,-1.414715 -1.443893,-3.116428 C 27.589708,18.200253 27.141791,12.56664 26.991662,10.892485 26.84392,9.2449452 19.380972,10.997859 18.521112,9.6596839 17.836359,8.5940297 19.113124,5.1412646 17.95239,4.6341128 17.085504,4.25535 18.04357,2.614583 18.04357,2.614583"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path7356"
+         d="m 18.043569,2.6145571 c 0.069,-0.00205 0.246816,0.7081969 0.167651,2.0507494 -0.04182,0.7214097 -0.211755,1.6061476 -0.158833,2.5757042 0.02038,0.3819325 0.07853,0.7887615 0.218458,1.1637511 0.127063,0.3389121 0.319002,0.6734161 0.587403,0.9203886 0.401189,0.394028 1.021045,0.597551 1.71309,0.6537176 0.640996,0.046311 1.29939,-0.067566 2.070949,-0.1998983 0.686021,-0.1252618 1.485203,-0.2706923 2.330042,-0.2456114 0.809206,0.017243 1.704384,0.2548184 2.450352,0.8609427 0.705977,0.619824 1.126754,1.479916 1.267923,2.37325 0.140382,0.845965 0.09678,1.665016 0.01833,2.455538 -0.06538,0.745551 -0.155409,1.484527 -0.09983,2.151189 0.06165,0.642864 0.21879,1.280458 0.581743,1.707411 0.277826,0.366378 0.83233,0.719372 1.34571,1.367718 0.258102,0.320568 0.459994,0.738358 0.534452,1.236003 0.03266,0.24854 0.01666,0.51161 -0.05487,0.776405 -0.07177,0.265081 -0.209662,0.517209 -0.411747,0.73648 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.250689,0.249425 -0.516886,0.408538 -0.764137,0.494988 0,0 -4e-6,10e-7 -4e-6,10e-7 -0.24104,0.09141 -0.443246,0.143607 -0.598233,0.191058 -0.418736,0.127628 -0.886223,0.358121 -1.458092,0.545491 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.609265,0.194023 -1.212197,0.294915 -1.791382,0.366915 -0.537429,0.06943 -1.069268,0.121807 -1.561899,0.202303 -0.573131,0.09295 -1.155404,0.23234 -1.763789,0.379064 -1.028745,0.248104 -2.078371,0.502706 -3.210338,0.575746 -0.92143,0.05912 -1.875113,-0.04058 -2.780664,-0.376993 -0.933605,-0.345258 -1.76378,-0.984641 -2.303469,-1.85964 -0.585536,-1.016317 -0.714945,-2.153815 -0.590286,-3.167743 0.117574,-1.03323 0.421986,-1.984649 0.678598,-2.833464 0.261945,-0.904298 0.488199,-1.725491 0.484535,-2.520118 -0.01182,-0.817356 -0.215876,-1.60498 -0.693009,-2.095096 -0.472653,-0.554501 -1.299552,-0.81292 -2.087515,-0.914729 -0.840739,-0.0975 -1.806978,0.01884 -2.690595,0.07927 -1.0235444,0.08235 -2.0175903,0.07874 -2.9850986,-0.20313 C 5.9666761,11.906978 5.4848161,11.661503 5.0751188,11.333333 4.6304277,10.977433 4.2960296,10.522587 4.1010534,10.025005 3.8178173,9.256705 3.8701484,8.4869876 4.004949,7.8800365 4.1424,7.236576 4.4441205,6.4119418 4.5722824,5.9967745 c 0,0 2e-7,-1.1e-6 2e-7,-1.1e-6 0.481894,-1.5634294 0.5095406,-2.5038739 0.6134389,-2.5028198 0.058677,5.953e-4 0.2875023,0.9338865 -0.042419,2.6445691 -1e-7,0 -2e-7,1.1e-6 -2e-7,1.1e-6 C 5.0339802,6.706662 4.8449657,7.3338881 4.7595231,8.0101312 4.6969074,8.5477139 4.6887602,9.1791156 4.9331472,9.6785767 5.082976,10.009165 5.343426,10.312281 5.6750364,10.553761 c 0.3079714,0.224097 0.6827203,0.385674 1.0969245,0.490825 0.7724495,0.201861 1.613892,0.147373 2.5949331,0.04668 0.846206,-0.09749 1.868438,-0.250318 2.912105,-0.178843 0.999343,0.05852 2.11078,0.409626 2.961401,1.253094 0.766254,0.823571 1.132961,1.926191 1.131801,3.022452 0.0065,1.035503 -0.221067,2.005484 -0.488747,2.938245 -0.241669,0.879555 -0.515628,1.752484 -0.586054,2.576629 -0.05849,0.795653 0.01586,1.617637 0.404582,2.208208 0.312755,0.530903 0.885402,0.942662 1.529285,1.191832 0.637255,0.244939 1.3727,0.305975 2.131645,0.265877 0.938988,-0.04924 1.892801,-0.292815 2.928994,-0.54334 0.612939,-0.148192 1.236538,-0.293874 1.885862,-0.397649 0.559208,-0.08877 1.108039,-0.141893 1.615063,-0.204979 0.545515,-0.0707 1.052867,-0.147316 1.508266,-0.295421 0,0 3e-6,-1e-6 3e-6,-1e-6 0.429831,-0.134524 0.908168,-0.36471 1.481292,-0.541339 0.2113,-0.06491 0.379218,-0.103551 0.49351,-0.149761 0,0 1e-6,-1e-6 1e-6,-1e-6 0.109537,-0.05175 0.186273,-0.08102 0.196947,-0.108009 0,0 0,0 0,0 0.01704,-0.01245 0.03454,-0.04863 0.0491,-0.0889 0.01523,-0.04211 0.01735,-0.103047 0.01221,-0.169558 -0.0017,-0.136994 -0.0991,-0.308664 -0.222851,-0.492079 -0.263914,-0.377568 -0.816585,-0.740246 -1.31271,-1.365714 -0.583634,-0.786191 -0.827539,-1.69856 -0.862312,-2.542172 -0.04336,-0.858718 0.06353,-1.671665 0.148234,-2.392538 0.08075,-0.764801 0.146699,-1.452934 0.04482,-2.086913 -0.111411,-0.649587 -0.352193,-1.248398 -0.768706,-1.599714 -0.401267,-0.386349 -1.036631,-0.554972 -1.65332,-0.612118 -0.656966,-0.05323 -1.38678,0.05883 -2.084698,0.150558 -0.783498,0.111504 -1.54929,0.195859 -2.347346,0.112112 -0.88312,-0.08624 -1.704133,-0.445017 -2.291305,-1.0470046 C 17.810345,9.5941405 17.575298,9.1266931 17.44485,8.6732183 17.301004,8.1749783 17.264173,7.6853919 17.277815,7.2473905 17.3078,6.319845 17.598861,5.1106266 17.69356,4.6029191 17.928524,3.3360159 17.952308,2.6172689 18.043569,2.6145571 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.2166455"
+         id="text4678-47"><tspan
+           sodipodi:role="line"
+           id="tspan4680-5"
+           x="-1.8505859"
+           y="1.2166455"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.9004302"
+           id="tspan4682-5"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5842142"
+           id="tspan4684-8"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.267999"
+           id="tspan4686-0"
+           style="font-size:1.67107606px;line-height:1">4</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.951783"
+           id="tspan4720-8"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="128.02118"
+       inkscape:tile-x0="38.200819"
+       id="use5040"
+       transform="translate(0,128.03369)"
+       inkscape:tile-cx="55.10041"
+       inkscape:tile-cy="144.02637"
+       inkscape:tile-w="33.799181"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect7444"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="csszzzsssssssss"
+         inkscape:original-d="m 4.61218,3.9512863 c 0,0 -1.8347237,1.0380798 -0.291697,1.6254055 1.45782,0.5548931 -1.0009624,2.3374221 -3.763e-4,3.5340711 1.11093,1.3286151 8.9006903,3.3200031 9.7936973,2.9242621 0.893007,-0.395741 1.630143,11.126052 0.845287,10.729161 -0.784855,-0.39689 8.750339,1.022956 9.345109,1.449222 0.59477,0.426279 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -0.656992,-2.168231 -1.927045,-3.869948 C 27.106556,17.446741 26.846149,12.045268 26.663647,10.374332 26.490945,8.793122 14.39955,7.9506969 17.868631,8.815993 19.097666,9.122551 18.57741,5.3345673 17.416676,4.8274155 c -0.866886,-0.3787628 0.04592,-1.771951 0.04592,-1.771951"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path7446"
+         d="m 17.462594,3.0553957 c 0.07017,-0.00253 0.225899,0.6166014 0.200601,1.7937455 -0.0084,0.4112823 -0.08629,1.4318951 -0.03965,2.0223658 0.04925,0.5572562 0.190057,1.2284369 0.589137,1.6755346 0,10e-8 0,5e-7 1e-6,9e-7 0.194473,0.2316926 0.460652,0.4241737 0.770175,0.5668211 0.288863,0.1328914 0.617058,0.213792 0.971107,0.2534692 0.665291,0.078226 1.354052,-0.026889 2.170131,-0.1597986 0.709629,-0.1239133 1.552054,-0.2793833 2.435959,-0.2499526 0.842012,0.020491 1.781607,0.2780325 2.545226,0.9394421 0.662022,0.6195333 1.051389,1.4564613 1.178799,2.3221733 0.126899,0.819349 0.08142,1.611138 0.0031,2.377203 -0.06573,0.72114 -0.154785,1.43737 -0.106859,2.084376 0.05378,0.624044 0.196537,1.242657 0.536766,1.667595 0.332623,0.480264 1.054347,0.871604 1.718167,1.629254 0.334183,0.369698 0.60639,0.861984 0.712307,1.457333 0.04738,0.297116 0.03249,0.613427 -0.05494,0.929904 -0.08774,0.316613 -0.260788,0.614474 -0.515006,0.863584 -0.244729,0.222628 -0.498815,0.368942 -0.734841,0.45588 -0.231474,0.09064 -0.430019,0.146904 -0.588376,0.198244 -0.429119,0.139417 -0.903775,0.36632 -1.473892,0.55006 -0.6075,0.190051 -1.207586,0.290444 -1.784286,0.364776 0,0 -3e-6,0 -3e-6,0 -0.53953,0.07185 -1.066634,0.127821 -1.575484,0.203758 -0.371335,0.05627 -0.747778,0.124848 -1.133099,0.197298 -1.290895,0.242718 -2.596403,0.509982 -4.001174,0.492725 -0.935323,-0.01341 -1.884466,-0.186939 -2.768303,-0.581305 -0.91163,-0.405512 -1.706907,-1.077581 -2.225741,-1.956225 -0.562151,-1.008702 -0.70885,-2.122374 -0.631641,-3.127604 0.07053,-1.027358 0.312282,-1.994968 0.505687,-2.855968 0.197802,-0.923331 0.359175,-1.762785 0.302655,-2.563469 -0.06558,-0.830237 -0.318648,-1.610864 -0.821015,-2.101514 -0.48367,-0.526263 -1.268023,-0.789083 -2.023125,-0.916487 -0.805954,-0.126938 -1.7406889,-0.0765 -2.5773435,-0.07022 C 8.0625962,11.535473 7.129303,11.480224 6.2290116,11.189418 5.7384756,11.028592 5.2892493,10.793204 4.9039291,10.490214 4.4809223,10.157899 4.156058,9.744034 3.9486234,9.2944089 3.6419946,8.6027922 3.6209955,7.8949871 3.6857645,7.3318428 3.7607413,6.6525081 3.9692607,5.9454759 4.0862891,5.528775 4.3738618,4.499797 4.5243644,3.9377155 4.61218,3.9512863 c 0.076632,0.011842 0.085254,0.5989135 -0.057503,1.6733223 -0.054439,0.4137249 -0.1832009,1.175446 -0.1889171,1.7501617 -0.00214,0.4953508 0.058481,1.0825941 0.3258303,1.5523466 0.1689704,0.3117437 0.4322036,0.5959458 0.7627667,0.8274272 0.3028983,0.2119187 0.6638279,0.3703979 1.0648825,0.4807719 0.7404609,0.208195 1.5430155,0.199544 2.4922954,0.1547 0.8062243,-0.04627 1.7886393,-0.133373 2.7734113,-0.02668 0.936777,0.09341 1.971251,0.43322 2.79455,1.201609 0.782495,0.782217 1.206865,1.847034 1.284152,2.937973 0.0793,1.025944 -0.07024,2.010174 -0.269471,2.968423 -0.177333,0.896015 -0.393347,1.799049 -0.42843,2.639766 -0.02557,0.812895 0.07043,1.643142 0.460009,2.263606 0.320878,0.558708 0.886786,1.008676 1.535526,1.304669 0.638782,0.290164 1.381195,0.410653 2.153418,0.42767 1.167727,0.02859 2.361855,-0.234176 3.678888,-0.479601 0.393246,-0.07328 0.790235,-0.14339 1.194068,-0.201802 0.553361,-0.08121 1.088642,-0.13703 1.601479,-0.203524 0,0 3e-6,-1e-6 3e-6,-1e-6 0.547145,-0.07341 1.056439,-0.150992 1.515356,-0.297559 0.433112,-0.132932 0.907662,-0.356343 1.465498,-0.536772 0.204919,-0.06639 0.372727,-0.109999 0.494238,-0.159602 0.118454,-0.05391 0.205653,-0.09096 0.235381,-0.130096 0.03904,-0.03057 0.07382,-0.0957 0.09802,-0.165875 0.02523,-0.07283 0.02776,-0.169695 0.01634,-0.270901 -0.01278,-0.208653 -0.162878,-0.447034 -0.348348,-0.687357 -0.399966,-0.491165 -1.14982,-0.933516 -1.759568,-1.735687 -0.542559,-0.776474 -0.762583,-1.661134 -0.788235,-2.476793 -0.03363,-0.831459 0.07332,-1.618113 0.158466,-2.315186 0.08203,-0.741078 0.149287,-1.406653 0.05871,-2.022701 -0.09965,-0.632883 -0.320582,-1.215879 -0.712988,-1.571958 -0.409562,-0.42398 -1.084618,-0.610554 -1.731576,-0.67504 -0.693548,-0.06055 -1.47338,0.05785 -2.202427,0.145504 -0.836724,0.110166 -1.645498,0.176898 -2.472813,0.04882 -0.443734,-0.07063 -0.868232,-0.206211 -1.254168,-0.4089351 -0.416186,-0.2182853 -0.770462,-0.5197109 -1.036449,-0.8770414 0,-5e-7 0,-1.1e-6 0,-1.6e-6 -0.513616,-0.7208044 -0.632299,-1.5462283 -0.61654,-2.1934635 0.0125,-0.7443159 0.192908,-1.6504278 0.262119,-2.0857886 0.177297,-1.1225196 0.191077,-1.7466345 0.292437,-1.7502941 z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.168416"
+         id="text4678-6"><tspan
+           sodipodi:role="line"
+           id="tspan4680-2"
+           x="-1.8505859"
+           y="1.168416"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8522005"
+           id="tspan4682-0"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.535985"
+           id="tspan4684-4"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.219769"
+           id="tspan4686-8"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.903554"
+           id="tspan4688-22"
+           style="font-size:1.67107606px;line-height:1">5</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.587339"
+           id="tspan4720-74"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="159.93919"
+       inkscape:tile-x0="38.210611"
+       id="use5042"
+       transform="translate(0,159.9517)"
+       inkscape:tile-cx="55.105305"
+       inkscape:tile-cy="175.94438"
+       inkscape:tile-w="33.789389"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect7534"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 3.9534546,4.5603804 c 0,0 -1.6063933,0.950439 -0.063366,1.5377647 1.45782,0.5548931 -0.8852744,0.8252337 0.1153116,2.0218842 1.1109306,1.3286153 8.7768398,1.1844743 9.7442678,3.2198537 0.736185,1.551525 -0.840464,10.283958 0.724307,10.991556 1.054823,0.476997 8.88928,1.207584 9.830225,1.881973 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -1.424086,-3.007979 -2.694139,-4.709688 C 26.339462,16.606993 26.414812,11.474653 26.23231,9.8037165 26.059608,8.2225068 18.326433,9.6466505 17.466573,8.3084828 16.78182,7.2428282 18.043135,5.5102368 16.882401,5.003085 16.015515,4.6243222 16.802243,3.6532108 16.802243,3.6532108"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path7536"
+         d="m 16.802236,3.6531513 c 0.06459,-0.00725 0.222576,0.4507556 0.298249,1.3484267 0.03983,0.468695 0.03162,1.0501381 0.13125,1.6790634 0.07645,0.459197 0.22277,1.0060015 0.552836,1.387731 0.19232,0.2343458 0.45943,0.4303106 0.774259,0.5737859 0.289337,0.1316451 0.619253,0.2099995 0.977035,0.2447186 0.665222,0.068239 1.345852,-0.051099 2.167809,-0.2032636 0.701113,-0.1384234 1.544227,-0.3121732 2.431644,-0.2908231 0.840127,0.012517 1.786193,0.2727933 2.539534,0.9562625 0.624744,0.6143282 0.980191,1.4340073 1.077448,2.2760413 0.09798,0.794827 0.02909,1.557726 -0.07261,2.294703 -0.08752,0.691791 -0.198584,1.379286 -0.175456,2.002247 0.02979,0.600326 0.143841,1.198537 0.454118,1.615645 0.201918,0.309552 0.543304,0.575907 0.935355,0.87228 0.386557,0.278986 0.848881,0.586332 1.290953,0.999883 0.448348,0.406107 0.838451,0.971005 1.013902,1.681959 0.08063,0.35474 0.08088,0.738729 -0.01606,1.123438 -0.09741,0.384635 -0.308716,0.744901 -0.626456,1.033975 -0.489793,0.385989 -0.960183,0.539527 -1.29271,0.631065 -0.436921,0.148404 -0.916899,0.372602 -1.485378,0.553678 -0.605708,0.187258 -1.203967,0.287872 -1.779881,0.363538 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.53889,0.07292 -1.067767,0.130845 -1.581677,0.204439 -0.299808,0.04396 -0.602958,0.09406 -0.911254,0.146574 -1.485915,0.253131 -2.979373,0.5391 -4.579204,0.457233 -0.992707,-0.05344 -1.988829,-0.282952 -2.899337,-0.744459 -0.941874,-0.476287 -1.741395,-1.229026 -2.234089,-2.179579 -0.514601,-1.052087 -0.613793,-2.185532 -0.505102,-3.200961 0.103016,-1.039868 0.370548,-2.026422 0.575695,-2.897255 0.212948,-0.943505 0.378851,-1.802471 0.317029,-2.622716 -0.07115,-0.857357 -0.345454,-1.658903 -0.872244,-2.157799 -0.50773,-0.532909 -1.317274,-0.788241 -2.08501,-0.911839 C 10.405559,10.76888 9.4205295,10.814022 8.5923194,10.802964 7.5716095,10.799214 6.6284908,10.695302 5.7540789,10.345065 5.2639498,10.146052 4.8335912,9.8686036 4.4838013,9.5318709 c 0,0 -1.1e-6,-1.1e-6 -1.1e-6,-1.1e-6 C 4.0855308,9.1487234 3.8161059,8.6938597 3.6760866,8.2332388 3.4450162,7.4130207 3.5904038,6.5455299 3.6583341,6.0831972 3.7956536,5.0959339 3.8676814,4.55884 3.9534546,4.5603804 c 0.075618,0.00136 0.1599341,0.5416135 0.1683885,1.5527126 0.00755,0.4672305 -0.030777,1.3278218 0.2128707,1.8937268 0.132778,0.3328289 0.3688463,0.6544364 0.6924653,0.9255561 0,0 9e-7,8e-7 9e-7,8e-7 0.2858281,0.2393597 0.6398504,0.4289755 1.0450833,0.566695 0.727435,0.2520795 1.5335386,0.2759088 2.5060754,0.2457867 0.7890771,-0.032399 1.8037883,-0.1217476 2.7868293,-0.025655 0.933255,0.082854 1.980971,0.3999171 2.826272,1.1575781 0.808212,0.774616 1.261311,1.853727 1.349921,2.974043 0.08888,1.045468 -0.06273,2.055442 -0.277266,3.042842 -0.190008,0.914082 -0.429882,1.848576 -0.49225,2.715785 -0.05214,0.839399 0.01316,1.701906 0.383589,2.371712 0.315035,0.620881 0.897711,1.13761 1.579953,1.488539 0.669147,0.343063 1.45691,0.507929 2.279937,0.557287 1.335593,0.08433 2.704804,-0.200857 4.223858,-0.454751 0.31527,-0.05269 0.63241,-0.103068 0.952818,-0.147359 0.549121,-0.07766 1.082122,-0.135001 1.595285,-0.202843 0,0 3e-6,0 3e-6,0 0.547479,-0.07464 1.05793,-0.153289 1.519761,-0.298797 0.435861,-0.13199 0.907803,-0.350191 1.454012,-0.533154 0.392762,-0.152882 0.682638,-0.197578 0.760126,-0.312757 0.06762,-0.05123 0.123692,-0.153891 0.157325,-0.262036 0.03521,-0.112224 0.03244,-0.255029 0.0062,-0.39881 -0.04097,-0.29801 -0.279273,-0.607936 -0.560849,-0.904177 -0.296931,-0.297524 -0.707414,-0.570893 -1.128521,-0.890874 -0.442751,-0.322706 -0.896229,-0.719568 -1.264701,-1.251944 -0.495835,-0.772796 -0.674429,-1.635938 -0.668092,-2.423049 -9.69e-4,-0.803495 0.131446,-1.557974 0.238044,-2.223837 0.10528,-0.710566 0.19268,-1.346564 0.125262,-1.939391 -0.07586,-0.610273 -0.270442,-1.175218 -0.636051,-1.524831 -0.394405,-0.4335458 -1.072117,-0.6232977 -1.713224,-0.6844123 -0.693001,-0.05715 -1.474607,0.075268 -2.19486,0.1744512 -0.842201,0.126059 -1.644239,0.2050315 -2.465576,0.085375 C 18.970339,9.766898 18.547326,9.6323947 18.166574,9.4307406 17.749589,9.2102195 17.402194,8.9048164 17.148575,8.5485929 16.735895,7.9463212 16.611297,7.2766674 16.587916,6.7456204 c -0.03112,-0.6159519 0.05036,-1.3879121 0.0764,-1.7410286 0.06342,-0.8680806 0.05293,-1.3419058 0.137919,-1.3514405 z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.2257644"
+         id="text4678-7"><tspan
+           sodipodi:role="line"
+           id="tspan4680-1"
+           x="-1.8505859"
+           y="1.2257644"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.9095488"
+           id="tspan4682-51"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5933332"
+           id="tspan4684-3"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.277118"
+           id="tspan4686-3"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.960902"
+           id="tspan4688-9"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.644688"
+           id="tspan4690-4"
+           style="font-size:1.67107606px;line-height:1">6</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.328472"
+           id="tspan4720-81"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="191.95255"
+       inkscape:tile-x0="38.221218"
+       id="use5044"
+       transform="translate(0,191.96506)"
+       inkscape:tile-cx="55.110609"
+       inkscape:tile-cy="207.95774"
+       inkscape:tile-w="33.778782"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect7624"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 3.2531295,5.0647307 c 0,0 -1.4692195,1.1691863 0.073807,1.756512 1.45782,0.5548931 -0.00974,0.2638616 0.9908501,1.4605096 1.11093,1.3286151 7.9785544,0.3192392 8.9459834,2.3546167 0.736185,1.551525 -1.340036,9.846191 0.224735,10.553789 1.054823,0.476997 9.87475,2.348867 10.815695,3.023254 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -1.949813,-3.553681 -3.219866,-5.25539 C 25.813735,16.061291 25.961188,10.8723 25.778686,9.201364 25.605984,7.620154 17.409289,8.5292757 16.549429,7.1911084 15.864676,6.1254543 19.634147,8.955956 16.114613,5.2041668 15.467373,4.5142153 16.056985,4.1295916 16.056985,4.1295916"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path7626"
+         d="m 16.056984,4.1295791 c 0.06796,-0.00341 0.15042,0.3662564 0.252946,1.0634286 0.06431,0.413936 0.156714,1.3071363 0.522987,1.8333823 0.179104,0.2738467 0.447873,0.5202448 0.787678,0.7094306 0,0 10e-7,6e-7 10e-7,6e-7 0.298544,0.166066 0.649017,0.277631 1.039444,0.3382402 0.70355,0.1131484 1.427964,0.017756 2.328238,-0.1237154 0.734368,-0.1240613 1.646201,-0.2956702 2.586349,-0.2539633 0.448315,0.021365 0.921232,0.1017521 1.389011,0.2739873 0.449871,0.1651947 0.88986,0.4289129 1.262817,0.8045568 0.59561,0.6284401 0.929086,1.4479932 1.016043,2.2888152 0.08773,0.791772 0.0154,1.551284 -0.08697,2.291019 -0.08826,0.6911 -0.198504,1.382611 -0.175892,2.011108 0.02877,0.604793 0.142259,1.209121 0.451967,1.638245 0.228799,0.361146 0.627543,0.659731 1.084987,0.981184 0.446835,0.299405 0.989656,0.620944 1.507233,1.059161 0.524129,0.429162 0.992863,1.040409 1.212851,1.826795 0.101949,0.392016 0.111678,0.82004 0.0076,1.24866 -0.104604,0.428187 -0.341758,0.828243 -0.701252,1.141111 -0.48029,0.366823 -0.940432,0.520101 -1.274386,0.617854 0,0 -2e-6,10e-7 -2e-6,10e-7 -0.441336,0.153735 -0.924535,0.376576 -1.492517,0.555969 -0.605198,0.185429 -1.201824,0.28535 -1.775642,0.362526 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.536938,0.07424 -1.068556,0.135969 -1.591489,0.205661 -0.259115,0.03591 -0.520102,0.07389 -0.784985,0.112407 -1.814419,0.263836 -3.632853,0.520985 -5.525695,0.255201 -1.121623,-0.161839 -2.217284,-0.542315 -3.170146,-1.181102 -0.99227,-0.664445 -1.767741,-1.628338 -2.153625,-2.756245 -0.33519,-1.046639 -0.322932,-2.108236 -0.162165,-3.053972 0.157247,-0.966189 0.443498,-1.904053 0.651191,-2.717995 0.22024,-0.892639 0.383368,-1.710863 0.336471,-2.494998 -0.05459,-0.825402 -0.3005,-1.595586 -0.783312,-2.103642 C 12.387027,10.572043 11.721429,10.276087 11.06933,10.102236 10.358667,9.9177717 9.5575837,9.885568 8.8320853,9.8559759 7.9574157,9.825571 7.1941012,9.7989019 6.3979264,9.6390914 5.4594705,9.4550711 4.6740729,9.0746962 4.092702,8.5482396 3.5283812,8.0299103 3.2255451,7.4161232 3.0895497,6.8998972 2.7534202,5.6193516 3.2683449,5.0683891 3.2531295,5.0647307 c 0.084935,0.020422 -0.098139,0.6937474 0.3111938,1.6778575 0.1746339,0.4211131 0.4863017,0.8986913 0.9785479,1.2726768 0.5046191,0.390579 1.1745362,0.6343882 2.0041917,0.753119 0.7140508,0.098644 1.4083713,0.074444 2.2956329,0.062218 0.7356316,-0.014491 1.6030352,-0.016424 2.4793742,0.1597347 0.814111,0.159377 1.688928,0.5260499 2.388737,1.2197086 0.731258,0.765007 1.138665,1.795299 1.212467,2.866719 0.07361,0.996386 -0.07561,1.96423 -0.298008,2.912059 -0.196618,0.867233 -0.455611,1.776916 -0.568396,2.607544 -0.103219,0.811085 -0.116114,1.644455 0.145593,2.350651 0.2602,0.769258 0.850391,1.459331 1.588865,1.956822 0.718586,0.483339 1.600474,0.769275 2.534722,0.907738 1.587176,0.242557 3.245298,-0.02367 5.071807,-0.279785 0.266533,-0.03737 0.533385,-0.07393 0.801544,-0.108006 0.541452,-0.07157 1.070787,-0.131915 1.585474,-0.201621 0,0 3e-6,0 3e-6,0 0.549137,-0.07653 1.060776,-0.155169 1.524,-0.299809 0.437152,-0.131123 0.907408,-0.346386 1.446873,-0.530863 0,0 3e-6,-1e-6 3e-6,-1e-6 0.388895,-0.151477 0.68088,-0.204994 0.778445,-0.325966 0.09006,-0.0665 0.16255,-0.196757 0.202967,-0.332914 0.04237,-0.141232 0.03542,-0.31705 -0.0023,-0.490658 -0.06318,-0.360592 -0.364278,-0.717333 -0.712217,-1.046997 -0.365397,-0.330087 -0.8605,-0.626225 -1.35558,-0.974801 -0.524387,-0.353969 -1.051413,-0.800339 -1.461211,-1.408499 -0.484576,-0.776528 -0.656921,-1.63832 -0.64943,-2.423985 7e-4,-0.804345 0.133706,-1.561471 0.242569,-2.229639 0.108817,-0.716428 0.200169,-1.356 0.141702,-1.957711 C 25.874108,10.577308 25.689792,10.001587 25.330917,9.6278012 25.12089,9.3913084 24.834553,9.2084702 24.529074,9.0770754 24.208853,8.9399009 23.851897,8.8663233 23.493567,8.8300156 22.745106,8.7511782 21.883918,8.8758665 21.125472,8.9555396 20.19792,9.0635761 19.345003,9.1028954 18.498449,8.9201995 18.023985,8.8156576 17.591057,8.6351376 17.219302,8.3901353 c 0,0 -10e-7,-8e-7 -10e-7,-8e-7 C 16.793679,8.1099293 16.472534,7.745714 16.265941,7.3558268 15.864735,6.5569459 15.902313,5.6461339 15.919296,5.2153259 15.94165,4.5091925 15.990117,4.1329308 16.056984,4.1295791 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.2258592"
+         id="text4678-9"><tspan
+           sodipodi:role="line"
+           id="tspan4680-6"
+           x="-1.8505859"
+           y="1.2258592"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.9096437"
+           id="tspan4682-9"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5934286"
+           id="tspan4684-9"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.277213"
+           id="tspan4686-87"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.960998"
+           id="tspan4688-73"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.644781"
+           id="tspan4690-6"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.328566"
+           id="tspan4692-52"
+           style="font-size:1.67107606px;line-height:1">7</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="27.01235"
+           id="tspan4720-5"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="223.96592"
+       inkscape:tile-x0="38.202451"
+       id="use5046"
+       transform="translate(0,223.97843)"
+       inkscape:tile-cx="55.101226"
+       inkscape:tile-cy="239.97111"
+       inkscape:tile-w="33.797549"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect7714"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,0.7460309)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 2.5977371,4.4180091 c 0,0 0.774441,2.0666234 2.3174682,2.6539493 1.45782,0.5548931 7.0666657,0.9179375 8.0672517,2.1145871 1.11093,1.3286155 -0.812871,9.1003635 0.154557,11.1357415 0.736185,1.551525 4.943148,1.401161 6.507919,2.108759 1.054823,0.476997 3.718322,1.107979 4.659267,1.782366 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.830633,-1.94708 0.56058,-3.648789 C 29.594181,17.667892 26.1726,17.463695 25.990098,15.792759 25.817396,14.211549 26.277222,8.9527593 25.417362,7.6145917 24.732609,6.5489377 19.257437,7.4017561 18.096703,6.8946043 17.229817,6.5158415 15.460837,3.5371828 15.460837,3.5371828"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path7716"
+         d="m 15.460836,3.5371483 c 0.09829,-0.0026 0.07417,0.9277425 0.982207,1.94232 0.387211,0.4336058 0.988235,0.8683422 1.755708,1.0406729 0.518245,0.1210793 1.085497,0.1095407 1.742115,0.028072 0,-2e-7 1e-6,-2e-7 1e-6,-2e-7 0.566093,-0.073393 1.178093,-0.2121962 1.864903,-0.3151918 0.615608,-0.095928 1.323289,-0.1521252 2.060437,-0.032992 0.690928,0.1087584 1.421724,0.4203604 1.993279,1.0143432 0.577782,0.6421587 0.875754,1.4787468 0.909926,2.3253409 0.03825,0.7932464 -0.0881,1.5425324 -0.243548,2.2704924 -0.136412,0.67734 -0.295031,1.354791 -0.307237,1.975738 -0.0041,0.595151 0.08147,1.198875 0.379243,1.620541 0.179349,0.286468 0.470857,0.533623 0.810125,0.760156 0.336682,0.220896 0.731741,0.40056 1.165773,0.598593 0.42283,0.189063 0.888247,0.396253 1.352556,0.67243 0.460813,0.270161 0.914626,0.63378 1.288233,1.118681 0.529663,0.703319 0.783479,1.606864 0.661409,2.51902 -0.125386,0.894855 -0.623952,1.721248 -1.405147,2.245657 -0.423771,0.268839 -0.83026,0.422947 -1.172136,0.550987 0,0 -2e-6,1e-6 -2e-6,1e-6 -0.459721,0.181647 -0.967824,0.402656 -1.537318,0.569952 -0.612193,0.17305 -1.190395,0.255459 -1.726956,0.351354 -0.398938,0.0766 -0.85037,0.169937 -1.350981,0.203697 -0.127572,0.0086 -0.25827,0.01334 -0.392173,0.01301 -1.03981,-0.03679 -1.957749,-0.39144 -2.730844,-0.794769 -0.802785,-0.398462 -1.475803,-0.811117 -2.165641,-1.036891 -0.967314,-0.343282 -2.121087,-0.365926 -3.321228,-0.578058 0,0 -3e-6,0 -3e-6,0 -0.620084,-0.10421 -1.25136,-0.267561 -1.863265,-0.542935 -0.628693,-0.280605 -1.210088,-0.704034 -1.660999,-1.270719 -0.743188,-0.994515 -0.960955,-2.19403 -0.862243,-3.259273 0.09271,-1.098956 0.425131,-2.10537 0.726237,-2.985636 0.317857,-0.964914 0.604736,-1.806417 0.666109,-2.654245 C 13.135519,10.99279 12.98191,10.137871 12.517092,9.5594849 12.169058,9.086546 11.610686,8.7588265 11.047408,8.546852 10.430704,8.3179979 9.7364829,8.2300691 9.0913987,8.1731678 7.2870323,8.0385865 6.0663489,8.0380958 4.768806,7.3878704 2.1799778,6.0507547 2.8734871,4.3330743 2.5977371,4.4180091 2.7170559,4.3812573 3.0876859,5.9602825 5.0616026,6.7560455 6.2453208,7.2538871 7.2412302,7.1092371 9.146447,7.1802703 c 0.6847394,0.016803 1.466919,0.081654 2.250764,0.3215209 0.725294,0.2192961 1.475687,0.6331169 2.050613,1.3118177 0.700168,0.8753229 0.997301,2.0176771 0.923999,3.1561731 -0.0597,1.053433 -0.341837,2.022529 -0.646607,2.993839 -0.268303,0.890474 -0.557419,1.799948 -0.59634,2.660567 -0.02758,0.815056 0.114496,1.678226 0.59588,2.233736 0.264645,0.338991 0.662198,0.605503 1.110933,0.809801 0.443187,0.199476 0.949634,0.316918 1.494178,0.408596 0,0 2e-6,0 2e-6,0 1.030493,0.163336 2.310528,0.206448 3.565229,0.607408 0.899917,0.306387 1.64589,0.744597 2.374379,1.10989 0.708516,0.335658 1.401766,0.632545 2.04767,0.623182 0.08317,0.0032 0.169131,0.0011 0.257992,-0.0051 0.347992,-0.0242 0.742475,-0.11155 1.175815,-0.185491 0.580894,-0.106228 1.106487,-0.174847 1.572693,-0.310982 0.435475,-0.120839 0.899699,-0.324463 1.402072,-0.51688 0,0 3e-6,-1e-6 3e-6,-1e-6 0.36717,-0.147638 0.674974,-0.248018 0.880695,-0.392833 0.382049,-0.239948 0.659966,-0.698778 0.728374,-1.151761 0.07631,-0.467541 -0.0684,-0.993535 -0.350952,-1.38114 -0.19757,-0.282266 -0.504701,-0.522182 -0.846208,-0.74107 -0.349761,-0.22003 -0.762442,-0.407622 -1.18901,-0.610082 -0.441228,-0.20541 -0.90002,-0.430239 -1.350659,-0.730048 -0.463348,-0.304292 -0.890738,-0.705467 -1.215636,-1.212396 -0.473525,-0.792001 -0.609292,-1.66778 -0.55444,-2.452453 0.0487,-0.804789 0.236355,-1.550275 0.393949,-2.204343 0.16109,-0.705434 0.299541,-1.330973 0.279184,-1.9290821 C 25.47336,8.9723071 25.319139,8.3908322 24.975238,8.0148107 24.669187,7.639361 24.161826,7.4110635 23.658797,7.2933732 c -0.547619,-0.1245245 -1.154652,-0.099448 -1.72764,-0.048121 -0.640553,0.061427 -1.277024,0.1662624 -1.902098,0.208836 0,0 -2e-6,-1e-7 -2e-6,-1e-7 -0.724868,0.05307 -1.404849,0.00659 -2.034402,-0.1850203 C 17.05673,6.9767379 16.395393,6.3833766 16.003451,5.8245856 15.012388,4.4087877 15.524184,3.5354747 15.460836,3.5371483 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.1527568"
+         id="text4678-64"><tspan
+           sodipodi:role="line"
+           id="tspan4680-7"
+           x="-1.8505859"
+           y="1.1527568"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8365412"
+           id="tspan4682-02"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5203257"
+           id="tspan4684-91"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.20411"
+           id="tspan4686-6"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.887895"
+           id="tspan4688-3"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.57168"
+           id="tspan4690-8"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.255465"
+           id="tspan4692-28"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="26.939249"
+           id="tspan4694-5"
+           style="font-size:1.67107606px;line-height:1">8</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.623034"
+           id="tspan4720-05"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="256.0068"
+       inkscape:tile-x0="38.207347"
+       id="use5048"
+       transform="translate(0,256.01931)"
+       inkscape:tile-cx="55.103673"
+       inkscape:tile-cy="272.01199"
+       inkscape:tile-w="33.792653"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect7804"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="csssssssssssszs"
+         inkscape:original-d="m 2.1143491,5.8585257 c 0,0 1.4993024,1.5658938 3.042329,2.1532195 1.45782,0.5548931 6.0520709,0.1969066 7.0526569,1.3935561 1.110931,1.3286147 -0.895272,9.3012217 0.07216,11.3365997 0.736185,1.551525 7.060628,1.293748 8.625399,2.001346 1.054823,0.476997 2.456365,0.795778 3.39731,1.470165 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.561387,-0.889412 0.291332,-2.591121 C 29.324932,18.72556 25.661565,19.358103 25.479063,17.687167 25.306364,16.105957 23.1845,9.3073736 24.377084,8.254856 25.107287,7.6104139 18.421277,7.2300863 17.695052,7.7048256 16.984369,8.1694048 14.921169,4.9059114 14.921169,4.9059114"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path7806"
+         d="m 14.921155,4.9058464 c 0.09209,-0.020234 0.2356,0.7878103 1.17189,1.6126642 0.399594,0.3525372 0.976178,0.6945197 1.685481,0.8220728 1.01051,0.199515 1.815088,-0.079019 3.280351,-0.2744369 0.55678,-0.082146 1.193358,-0.1326162 1.85901,-0.042116 0.622355,0.082262 1.286737,0.3244777 1.847002,0.8043387 0.378227,0.3363183 0.671316,0.7602242 0.861933,1.2308769 0.182729,0.4501621 0.281621,0.9273827 0.308388,1.4076662 0.04689,0.921005 -0.11804,1.784683 -0.307537,2.637629 -0.162126,0.782061 -0.344287,1.574104 -0.309074,2.293912 0.01492,0.350387 0.06802,0.693865 0.184002,0.999734 0,0 1e-6,2e-6 1e-6,2e-6 0.113269,0.297273 0.275871,0.573274 0.488966,0.773934 0.223063,0.226993 0.548666,0.39359 0.917308,0.538928 0.366768,0.140016 0.781282,0.23392 1.241897,0.352394 0.449068,0.110855 0.941154,0.249711 1.438773,0.479603 0,0 3e-6,2e-6 3e-6,2e-6 0.495128,0.224277 0.979559,0.574154 1.361886,1.074076 0.393794,0.528416 0.597063,1.195977 0.539046,1.890362 0,0 0,4e-6 0,4e-6 -0.06207,0.688939 -0.404572,1.337893 -0.981222,1.783429 -0.455522,0.31931 -0.889479,0.471567 -1.224861,0.584366 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.443614,0.165716 -0.948006,0.394343 -1.521687,0.564946 -0.620396,0.176444 -1.195454,0.251103 -1.720158,0.350957 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.487145,0.102737 -1.084396,0.243226 -1.785892,0.217525 -0.118255,-0.0098 -0.234191,-0.02437 -0.347795,-0.04321 -0.667133,-0.11065 -1.248377,-0.367199 -1.738867,-0.650809 -0.591282,-0.322592 -1.075525,-0.648689 -1.556798,-0.834788 -1.156675,-0.507907 -2.7079,-0.329555 -4.235168,-0.385657 -0.809924,-0.01472 -1.646678,-0.103212 -2.471249,-0.370164 -0.855327,-0.272707 -1.650673,-0.786413 -2.221252,-1.533934 0,0 -2e-6,-3e-6 -2e-6,-3e-6 -0.37097,-0.506577 -0.60348,-1.075467 -0.71592,-1.645922 0,0 0,-3e-6 0,-3e-6 -0.115239,-0.582146 -0.122836,-1.158618 -0.06041,-1.702159 0.132534,-1.115692 0.506596,-2.13229 0.83096,-3.016143 0.345253,-0.97698 0.646215,-1.83104 0.697915,-2.690865 0.02938,-0.44725 0.0016,-0.877104 -0.104808,-1.269069 C 12.22182,10.456741 12.037069,10.084555 11.782854,9.7976814 11.457296,9.4134222 10.976518,9.148815 10.489329,8.9772102 9.9586198,8.7924327 9.3706243,8.7239544 8.8158046,8.6891113 7.2585319,8.6041629 6.3398483,8.7211394 5.0703237,8.3600606 2.2658241,7.5388245 2.2851588,5.7461298 2.1143491,5.8585257 c 0.1078393,-0.07096 0.9083349,1.3673882 3.1286812,1.8049036 1.1755012,0.2429904 1.9108442,0.040553 3.600712,0.048278 0.6022347,-0.00179 1.2795077,0.045681 1.9646037,0.2385273 0.635762,0.1771947 1.292865,0.5120691 1.827472,1.0626881 0.400351,0.424589 0.695766,0.9455906 0.867625,1.5139469 0.163822,0.540515 0.226975,1.107271 0.204377,1.673313 -0.04778,1.079147 -0.344522,2.076166 -0.680549,3.070548 -0.293825,0.904978 -0.621712,1.834154 -0.691038,2.715524 -0.0358,0.42865 -0.02502,0.857582 0.06651,1.255662 0,0 1e-6,2e-6 1e-6,2e-6 0.08954,0.387061 0.243889,0.758176 0.474722,1.051729 0,0 10e-7,2e-6 10e-7,2e-6 0.330732,0.450818 0.885369,0.772973 1.501732,0.979419 0.607533,0.19931 1.293611,0.252353 2.029792,0.268465 1.392775,0.0022 3.114476,-0.156578 4.791605,0.465053 0.675005,0.274887 1.220601,0.627656 1.735776,0.912786 0.433776,0.224047 0.84497,0.424309 1.22427,0.482122 0.06467,0.0099 0.128375,0.01558 0.191114,0.01661 0.369094,0.03827 0.836599,-0.09274 1.39107,-0.189757 0,0 3e-6,-10e-7 3e-6,-10e-7 0.593305,-0.114558 1.120216,-0.175669 1.579484,-0.311377 0.431413,-0.119941 0.892483,-0.331319 1.417703,-0.521886 0,0 2e-6,-10e-7 2e-6,-10e-7 0.380379,-0.150427 0.679772,-0.225999 0.82797,-0.359454 0.200026,-0.136848 0.343736,-0.415661 0.373539,-0.677779 0,0 0,-2e-6 0,-2e-6 0.0354,-0.272625 -0.06259,-0.588431 -0.233051,-0.830666 -0.163046,-0.24493 -0.45273,-0.442935 -0.776292,-0.610418 0,0 -2e-6,-10e-7 -2e-6,-10e-7 -0.333752,-0.167933 -0.735649,-0.281308 -1.162145,-0.399801 -0.440688,-0.117617 -0.908271,-0.236792 -1.393893,-0.425804 -0.497487,-0.188998 -0.9888,-0.475264 -1.409583,-0.888949 -0.38144,-0.39095 -0.648454,-0.851688 -0.808961,-1.328025 0,0 -10e-7,-3e-6 -10e-7,-3e-6 -0.163963,-0.48518 -0.233188,-0.976022 -0.236252,-1.445057 -0.0016,-0.961944 0.215076,-1.851835 0.409732,-2.622516 0.200301,-0.843458 0.38123,-1.574842 0.355634,-2.284168 C 24.675803,10.155596 24.621635,9.808086 24.506414,9.4988359 24.386611,9.1782895 24.212635,8.8920494 23.989279,8.6813431 23.673708,8.3648562 23.206654,8.1802768 22.743544,8.0840481 22.240901,7.9824546 21.690773,8.0020052 21.170818,8.0432355 19.795447,8.1731744 18.793281,8.3709531 17.611578,8.0690678 16.756059,7.8380794 16.120457,7.3602073 15.711347,6.8967949 14.694731,5.7438239 14.946906,4.9001885 14.921155,4.9058464 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.2070411"
+         id="text4678-99"><tspan
+           sodipodi:role="line"
+           id="tspan4680-61"
+           x="-1.8505859"
+           y="1.2070411"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8908257"
+           id="tspan4682-7"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5746098"
+           id="tspan4684-1"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.258394"
+           id="tspan4686-4"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.942179"
+           id="tspan4688-0"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.625963"
+           id="tspan4690-25"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.309748"
+           id="tspan4692-80"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="26.993532"
+           id="tspan4694-1"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.677317"
+           id="tspan4696-6"
+           style="font-size:1.67107606px;line-height:1">9</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="34.361103"
+           id="tspan4720-06"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="287.98625"
+       inkscape:tile-x0="38.254672"
+       id="use5050"
+       transform="translate(0,287.99876)"
+       inkscape:tile-cx="55.127336"
+       inkscape:tile-cy="303.99144"
+       inkscape:tile-w="33.745328"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect7894"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 1.7931266,6.0498658 c 0,0 0.5919811,1.0195668 2.1350084,1.6068928 1.45782,0.554893 6.36367,0.6013689 7.364256,1.7980159 1.11093,1.3286145 -0.573152,8.8543945 0.394273,10.8897725 0.736185,1.551525 6.821382,1.407117 8.386153,2.114715 1.054823,0.476997 3.290438,1.079762 4.231383,1.75415 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.555283,-0.697631 0.28523,-2.39934 -1.005017,-1.346595 -4.744924,0.263843 -4.927426,-1.407093 C 25.22372,17.275633 24.860429,10.104574 24.000569,8.7664062 23.315816,7.7007527 16.864718,7.2690326 15.703984,6.7618807 14.837098,6.3831179 14.614089,5.1599739 14.614089,5.1599739"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path7896"
+         d="m 14.614078,5.1599334 c 0.08865,-0.024893 0.27248,0.7551726 1.248874,1.3927054 0.475844,0.3162153 1.096328,0.5172563 1.922329,0.5880912 0.673371,0.054497 1.280552,0.00128 2.138576,-0.040535 0.673441,-0.03692 1.484632,-0.058372 2.309282,0.1061852 0.753127,0.1463501 1.570402,0.5030106 2.200155,1.1862547 0.354391,0.4002218 0.61275,0.8801591 0.7646,1.3973271 0.14525,0.4928908 0.205036,1.0046238 0.196855,1.5150918 -0.01876,0.983078 -0.233127,1.869324 -0.429691,2.783407 -0.165246,0.828642 -0.321901,1.678026 -0.19821,2.432888 0.0562,0.365288 0.161938,0.719436 0.338092,1.015872 0.170999,0.287058 0.400557,0.540608 0.668798,0.690837 0.251221,0.156215 0.588372,0.233411 0.964867,0.288217 0.375721,0.04942 0.78637,0.04993 1.254595,0.07541 0.455723,0.01939 0.96083,0.07402 1.484919,0.235296 0.523528,0.156452 1.042928,0.467172 1.451609,0.956939 0.406233,0.510456 0.602488,1.162634 0.532048,1.829939 -0.0748,0.65868 -0.410646,1.263551 -0.951033,1.677375 -0.45624,0.320384 -0.890945,0.472777 -1.226602,0.585159 -0.443911,0.165264 -0.947997,0.393047 -1.519763,0.564051 -0.617743,0.177004 -1.196166,0.255395 -1.727446,0.352158 -0.474581,0.09411 -1.035774,0.217652 -1.679283,0.217747 -0.02647,4e-6 -0.05307,-2e-4 -0.07982,-6.23e-4 -0.977007,-0.05363 -1.824578,-0.407634 -2.526507,-0.80487 -0.72793,-0.389526 -1.330614,-0.787727 -1.945709,-1.002312 -1.167119,-0.457297 -2.69799,-0.323757 -4.18684,-0.42593 -0.793705,-0.04284 -1.607346,-0.162512 -2.40063,-0.450693 -0.82353,-0.295539 -1.580618,-0.814363 -2.124158,-1.545054 -0.687649,-0.988106 -0.88038,-2.148301 -0.790117,-3.177091 0.08477,-1.066205 0.389276,-2.052397 0.654325,-2.911154 0.28239,-0.951029 0.528521,-1.779968 0.554412,-2.607153 0.01986,-0.882151 -0.170223,-1.709478 -0.646279,-2.2587393 C 10.528921,9.4058184 10.019885,9.113808 9.5087845,8.9213568 8.9454488,8.7116963 8.3170797,8.6238155 7.7372459,8.5674953 6.0268973,8.4185952 5.0356357,8.4514452 3.8221631,7.9440572 c -4e-7,-2e-7 -7e-7,-5e-7 -1e-6,-7e-7 C 1.9936077,7.161874 1.8342311,6.0196564 1.7931266,6.0498658 c 0.087432,-0.064258 0.6811309,0.8453269 2.2409795,1.319594 5e-7,-10e-8 7e-7,1e-7 1e-6,3e-7 1.1606877,0.3651261 1.9242183,0.2080964 3.7591723,0.2737078 0.6197103,0.016369 1.3289927,0.078717 2.0429472,0.2939003 0.6544944,0.1952678 1.3364934,0.5550966 1.8822284,1.1457551 0.712836,0.8126045 1.059313,1.9071837 1.038888,3.0276777 -0.01142,1.025904 -0.245221,1.985216 -0.513954,2.951532 -0.233676,0.876324 -0.496708,1.780658 -0.530188,2.628746 -0.02286,0.802796 0.108345,1.649521 0.566141,2.217452 0.323703,0.447346 0.856968,0.777516 1.4548,0.998924 0.58747,0.213994 1.253634,0.2923 1.968542,0.331784 1.343139,0.05246 3.00924,-0.07029 4.637336,0.477045 0.833718,0.306237 1.512759,0.734561 2.165639,1.089224 0.638258,0.325061 1.254794,0.614252 1.824911,0.611894 0.01558,9.78e-4 0.03128,0.0017 0.0471,0.0023 0.383978,0.01301 0.843893,-0.102002 1.370755,-0.192425 0.586787,-0.109261 1.112145,-0.173286 1.572202,-0.310178 0.432592,-0.121456 0.894427,-0.332514 1.419627,-0.522781 0.380266,-0.150272 0.679297,-0.225481 0.826234,-0.358663 0.181886,-0.129211 0.318971,-0.372895 0.345563,-0.599046 0.0325,-0.231045 -0.04754,-0.505065 -0.194088,-0.692319 -0.138707,-0.201118 -0.412549,-0.350026 -0.713774,-0.462251 -0.313158,-0.111472 -0.69247,-0.149037 -1.101031,-0.181223 -0.422497,-0.02768 -0.872099,-0.03898 -1.36483,-0.107325 -0.501548,-0.06426 -1.025827,-0.216912 -1.519227,-0.50753 -0.510992,-0.317371 -0.90435,-0.755918 -1.168652,-1.242961 -0.269558,-0.496177 -0.420701,-1.023354 -0.48025,-1.537485 -0.115048,-1.059579 0.07551,-2.055129 0.290389,-2.911065 0.222922,-0.945028 0.453341,-1.728554 0.484576,-2.524152 0.01766,-0.409468 -0.0088,-0.799172 -0.102117,-1.155602 C 23.945358,9.7431542 23.78782,9.4049196 23.567846,9.1401788 23.200842,8.6695649 22.590249,8.381813 21.999851,8.2185754 21.343678,8.0419774 20.599385,8.0232734 19.941055,8.0115192 19.105245,8.0018206 18.428923,8.003691 17.693798,7.8856917 16.775358,7.7425013 16.057223,7.405026 15.545016,6.9711226 14.400259,5.9885359 14.665655,5.1454502 14.614078,5.1599334 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.1448002"
+         id="text4678-17"><tspan
+           sodipodi:role="line"
+           id="tspan4680-55"
+           x="-1.8505859"
+           y="1.1448002"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8285847"
+           id="tspan4682-6"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5123692"
+           id="tspan4684-30"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.196154"
+           id="tspan4686-2"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.879938"
+           id="tspan4688-5"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.563723"
+           id="tspan4690-9"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.247507"
+           id="tspan4692-82"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="26.931292"
+           id="tspan4694-38"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.615076"
+           id="tspan4696-61"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="34.298862"
+           id="tspan4700-66"
+           style="font-size:1.67107606px;line-height:1">10</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="37.982647"
+           id="tspan4720-050"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="319.99961"
+       inkscape:tile-x0="38.254672"
+       id="use5052"
+       transform="translate(0,320.01212)"
+       inkscape:tile-cx="55.127336"
+       inkscape:tile-cy="336.0048"
+       inkscape:tile-w="33.745328"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect7984"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 1.4766026,6.0602799 c 0,0 0.3202976,0.742468 1.8633244,1.329794 1.45782,0.5548933 6.2927015,1.1982325 7.293288,2.3948828 1.110929,1.3286143 -0.114072,8.1988653 0.853356,10.2342433 0.736185,1.551525 6.650147,1.106623 8.214918,1.814221 1.054823,0.476997 3.661766,1.705604 4.602711,2.379991 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.667369,-0.894391 0.397316,-2.5961 -1.005017,-1.346595 -5.93858,0.200849 -6.121082,-1.470087 -0.172702,-1.58121 0.007,-8.9388284 -0.852883,-10.2769952 C 22.777216,7.2544398 17.460752,7.6381164 16.300018,7.1309646 15.433132,6.7522018 14.324735,5.168079 14.324735,5.168079"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path7986"
+         d="m 14.32473,5.1680653 c 0.103221,-0.041272 0.500431,1.1532061 2.089711,1.6714146 1e-6,-3e-7 1e-6,3e-7 1e-6,3e-7 0.488706,0.1634738 1.040168,0.2149018 1.71525,0.1935381 0.549372,-0.019787 1.155274,-0.1021906 1.83791,-0.1550449 0,0 2e-6,-2e-7 2e-6,-2e-7 0.592311,-0.048766 1.280802,-0.066493 1.989859,0.072661 0.653475,0.1256102 1.35057,0.4258144 1.911997,0.9849033 0.380651,0.3937242 0.658508,0.8813085 0.815736,1.4129399 0.149814,0.5048619 0.203545,1.0319545 0.178315,1.5559355 -0.05234,1.002883 -0.325716,1.904661 -0.598449,2.82207 -0.232474,0.831123 -0.469707,1.684415 -0.411388,2.46216 0.02459,0.375922 0.100545,0.745066 0.254692,1.060181 0.149497,0.304678 0.362495,0.58014 0.623423,0.750041 0.293618,0.214674 0.715593,0.30871 1.178654,0.357787 0.461115,0.04151 0.962918,-4.4e-5 1.536013,-0.01787 0,0 3e-6,0 3e-6,0 0.555011,-0.0251 1.176932,-0.01479 1.827727,0.140838 0.650209,0.149202 1.301547,0.512226 1.784719,1.122936 0,0 3e-6,4e-6 3e-6,4e-6 0.416545,0.558206 0.600036,1.260844 0.497949,1.964229 -0.105746,0.692474 -0.481204,1.318115 -1.058313,1.737641 0,0 -4e-6,3e-6 -4e-6,3e-6 -0.445976,0.30216 -0.870939,0.454762 -1.208236,0.57251 -0.449692,0.170972 -0.954761,0.396472 -1.527625,0.565721 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.618047,0.174921 -1.194558,0.251704 -1.722365,0.349947 -0.182827,0.03736 -0.379767,0.07942 -0.589262,0.116441 -0.358011,0.06326 -0.751836,0.111659 -1.184058,0.09992 -1.12799,-0.086 -2.067441,-0.587813 -2.804877,-1.128695 -0.774188,-0.529534 -1.391851,-1.058166 -2.059818,-1.32159 -1.079252,-0.494138 -2.544664,-0.345713 -3.978091,-0.395752 -0.764174,-0.012 -1.551742,-0.08514 -2.334084,-0.316394 -0.812853,-0.236274 -1.578385,-0.687474 -2.154888,-1.35758 C 10.224674,19.60916 9.9512408,18.541107 9.9508643,17.5687 c -0.00771,-1.00933 0.1978587,-1.956948 0.3926257,-2.786127 0.206031,-0.916543 0.397537,-1.704746 0.410934,-2.492045 0.0072,-0.838113 -0.151984,-1.61309 -0.56569,-2.170087 C 9.8721999,9.66382 9.379903,9.3236607 8.8791384,9.0836355 8.3242039,8.819881 7.6971404,8.6725325 7.1202349,8.5641318 5.3352862,8.243325 4.4340156,8.2264503 3.2307973,7.650636 1.760203,6.9358078 1.4712741,6.0650269 1.4766026,6.0602799 1.5508781,5.9941106 2.11565,6.6664361 3.4490567,7.1295118 4.661625,7.5601212 5.3043126,7.4364576 7.2535725,7.6738403 c 0.6211239,0.070995 1.3293885,0.1976996 2.0293144,0.4770541 0.6375658,0.2526773 1.2906541,0.6679323 1.7948091,1.2985784 0.609208,0.7982782 0.899487,1.8095642 0.90027,2.8452342 0.0074,0.954916 -0.164988,1.847219 -0.349704,2.761996 -0.159115,0.829365 -0.329255,1.684761 -0.289937,2.475708 0.04455,0.746708 0.235893,1.51859 0.699585,2.017024 0.34246,0.408438 0.879506,0.68992 1.473672,0.868839 0.583302,0.171727 1.234213,0.212052 1.935824,0.222398 1.32057,-0.008 2.959095,-0.140938 4.553277,0.467479 0.945207,0.402019 1.669413,0.981959 2.363533,1.468469 0.679764,0.439798 1.348222,0.844981 1.977194,0.841228 0.239728,0.0197 0.512811,-0.02239 0.822946,-0.08097 0.181783,-0.03433 0.375321,-0.07411 0.580696,-0.10995 0.588987,-0.112361 1.116095,-0.176315 1.577283,-0.312389 0,0 2e-6,-1e-6 2e-6,-1e-6 0.429408,-0.119571 0.896802,-0.330413 1.411759,-0.521109 0.375798,-0.149603 0.677752,-0.233829 0.8446,-0.371312 0,0 10e-7,-1e-6 10e-7,-1e-6 0.220385,-0.152542 0.388645,-0.427477 0.428378,-0.691133 0.04565,-0.267582 -0.03286,-0.582662 -0.194115,-0.799193 0,0 0,-1e-6 0,-1e-6 -0.170022,-0.265068 -0.534114,-0.446602 -0.921779,-0.564601 -0.4058,-0.116395 -0.889353,-0.119194 -1.403013,-0.114845 0,0 -2e-6,0 -2e-6,0 -0.532609,0.01264 -1.097155,0.04358 -1.713482,-0.0136 -0.63257,-0.05129 -1.29052,-0.244864 -1.876769,-0.643433 -0.497235,-0.358511 -0.86228,-0.834845 -1.089049,-1.350246 -0.231485,-0.525374 -0.337755,-1.07218 -0.351774,-1.596527 -0.02127,-1.080238 0.261762,-2.06824 0.542925,-2.910381 0.295495,-0.933725 0.577869,-1.712763 0.633514,-2.507598 0.03092,-0.411009 0.01115,-0.803967 -0.08302,-1.1608076 C 23.451781,9.2973551 23.285795,8.9593971 23.054478,8.70465 22.731513,8.3266721 22.227088,8.0905949 21.729416,7.9548339 21.181562,7.8086345 20.57226,7.7940668 20.011035,7.7996819 c 0,0 -2e-6,0 -2e-6,0 -0.71554,0.010883 -1.216023,0.052322 -1.883855,0.026272 -0.737576,-0.02575 -1.382552,-0.1559016 -1.941584,-0.4035047 -10e-7,-3e-7 -10e-7,-6e-7 -10e-7,-9e-7 -2.10653,-0.947907 -1.668284,-2.3313829 -1.860863,-2.2543828 z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.1865013"
+         id="text4678-19"><tspan
+           sodipodi:role="line"
+           id="tspan4680-90"
+           x="-1.8505859"
+           y="1.1865013"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.870286"
+           id="tspan4682-93"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5540705"
+           id="tspan4684-47"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.237855"
+           id="tspan4686-31"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.921639"
+           id="tspan4688-78"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.605423"
+           id="tspan4690-253"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.289207"
+           id="tspan4692-1"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="26.972992"
+           id="tspan4694-21"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.656776"
+           id="tspan4696-29"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="34.340561"
+           id="tspan4700-26"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="38.024345"
+           id="tspan4704-4"
+           style="font-size:1.67107606px;line-height:1">11</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="41.70813"
+           id="tspan4720-2"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="352.0405"
+       inkscape:tile-x0="38.254672"
+       id="use5054"
+       transform="translate(0,352.05301)"
+       inkscape:tile-cx="55.127336"
+       inkscape:tile-cy="368.04569"
+       inkscape:tile-w="33.745328"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect8074"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 1.6387415,5.7087521 c 0,0 1.141208,0.5723957 2.6842349,1.1597207 1.45782,0.554893 4.8719257,1.1044941 5.8725116,2.3011441 1.110929,1.3286151 -0.4042509,8.6627091 0.563177,10.6980871 0.736185,1.551525 7.237219,0.875449 8.80199,1.583047 1.054823,0.476997 3.8026,2.088274 4.743545,2.762661 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.393137,-0.5742 0.579824,-2.689382 0.08225,-0.931902 -6.318731,-0.591572 -7.087811,-1.761141 C 22.656699,16.883733 23.982196,8.7663793 23.122336,7.4282124 22.437583,6.3625588 18.675578,6.9430912 17.514844,6.4359396 16.647958,6.0571768 14.506119,4.808339 14.506119,4.808339"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path8076"
+         d="m 14.506088,4.8083052 c 0.09027,-0.081937 0.989678,1.0666613 3.062369,1.2911428 0,-4e-7 1e-6,1e-7 1e-6,1e-7 0.779335,0.089577 1.719068,-0.05484 2.874835,-0.052505 0.483035,-0.0015 1.021894,0.039014 1.570176,0.1892148 0.509656,0.1383959 1.036794,0.3949155 1.483997,0.8140102 0.408882,0.3948749 0.710546,0.899541 0.877598,1.4581656 0.157797,0.5261768 0.209126,1.0801818 0.169834,1.6317469 -0.07935,1.04653 -0.408011,1.985732 -0.754901,2.941284 -0.295678,0.857336 -0.610721,1.746188 -0.609626,2.576199 -0.0029,0.400221 0.04905,0.798541 0.189324,1.146317 0.135836,0.335573 0.342843,0.645474 0.610508,0.845742 0.331791,0.278384 0.834428,0.40113 1.379592,0.457299 0.542035,0.04685 1.126622,-0.01762 1.795843,-0.05434 0.644407,-0.04518 1.369414,-0.04868 2.123463,0.134983 0,0 3e-6,10e-7 3e-6,10e-7 0.753331,0.176121 1.499557,0.625693 1.999323,1.374915 0.37634,0.605256 0.506696,1.333859 0.355853,2.039025 -0.15263,0.692545 -0.559809,1.30429 -1.148167,1.71228 -0.435946,0.286131 -0.852128,0.439161 -1.191119,0.561743 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.454341,0.176084 -0.960893,0.399936 -1.53399,0.567777 -0.617746,0.173387 -1.19267,0.24947 -1.718581,0.348931 -0.160073,0.0334 -0.331555,0.07057 -0.513168,0.104539 -0.378878,0.07087 -0.800861,0.127654 -1.268951,0.111823 -0.60568,-0.04024 -1.162264,-0.218331 -1.644616,-0.471569 0,0 -3e-6,-2e-6 -3e-6,-2e-6 -0.486034,-0.252647 -0.908415,-0.556277 -1.285645,-0.860743 -0.784132,-0.613674 -1.395857,-1.219985 -2.086881,-1.509281 -0.564196,-0.264172 -1.244773,-0.348789 -1.938617,-0.372114 0,0 -3e-6,0 -3e-6,0 -0.70239,-0.01794 -1.48108,0.05377 -2.249425,0.08289 -0.809729,0.03654 -1.647941,0.01369 -2.490927,-0.184869 C 11.685532,21.490674 10.848548,21.043354 10.221509,20.343257 9.4603344,19.434438 9.1798151,18.308456 9.2009854,17.291994 9.2155236,16.232891 9.4679497,15.246084 9.7088317,14.388361 9.9679197,13.430228 10.207979,12.618887 10.261088,11.7914 10.310597,10.90335 10.174802,10.079669 9.7587185,9.4779483 9.506384,9.0906547 9.1369071,8.7758387 8.7478423,8.5323904 8.3216229,8.2667216 7.8402196,8.0819802 7.3790778,7.9404341 6.236841,7.5912582 5.1285425,7.4486579 4.2439549,7.172411 c 0,0 -1.1e-6,-5e-7 -1.1e-6,-5e-7 C 2.3470344,6.5778938 1.6162512,5.7445219 1.6387415,5.7087521 1.6980987,5.6143469 2.6097592,6.19818 4.4019969,6.5645344 c 0,-2e-7 10e-7,2e-7 10e-7,2e-7 0.8502013,0.1747845 1.9249502,0.2206583 3.2059425,0.5177136 0.518721,0.1197451 1.0833948,0.3010878 1.6314227,0.5960542 0.5034357,0.270156 1.0003839,0.6568481 1.3928939,1.1829831 0.602789,0.8416063 0.865464,1.9040915 0.817532,2.9888185 -0.03683,0.992586 -0.259694,1.907569 -0.493275,2.859992 -0.200773,0.854989 -0.41156,1.744691 -0.386464,2.574194 0.03122,0.778535 0.228629,1.595274 0.725771,2.107861 0.372003,0.428366 0.961871,0.704465 1.607103,0.86069 0.632675,0.148553 1.330231,0.145229 2.083237,0.110618 0.71422,-0.03838 1.520889,-0.120621 2.343979,-0.113291 0,0 3e-6,0 3e-6,0 0.816503,0.0017 1.697551,0.121431 2.548011,0.484328 1.001833,0.461052 1.737,1.134441 2.437965,1.701385 0.34397,0.268865 0.679468,0.51429 1.022813,0.685317 0,0 2e-6,1e-6 2e-6,1e-6 0.339072,0.166371 0.684558,0.285901 1.009165,0.297023 0.251811,0.02391 0.543964,-0.02639 0.880892,-0.09233 0.162044,-0.03172 0.332774,-0.06669 0.513951,-0.09859 0.590358,-0.114155 1.118507,-0.178117 1.581067,-0.313405 0.431072,-0.119081 0.895803,-0.326945 1.4054,-0.519055 0,0 3e-6,-1e-6 3e-6,-1e-6 0.371834,-0.148929 0.676636,-0.240971 0.861711,-0.382077 0.251564,-0.169801 0.448572,-0.457738 0.51067,-0.746568 0.06722,-0.291429 0.01133,-0.63431 -0.143336,-0.880891 -0.176922,-0.336256 -0.613164,-0.571778 -1.069517,-0.713651 0,0 -3e-6,-1e-6 -3e-6,-1e-6 -0.481146,-0.141044 -1.054352,-0.131574 -1.655452,-0.112399 -0.626754,0.03024 -1.285072,0.08304 -2.002468,0.01971 -0.740485,-0.05631 -1.503977,-0.300848 -2.149958,-0.803083 -0.491461,-0.405782 -0.835138,-0.926871 -1.031325,-1.4774 -0.200816,-0.56251 -0.268562,-1.137995 -0.243133,-1.68216 0.05985,-1.123283 0.430167,-2.132107 0.772919,-2.986448 0.367225,-0.959046 0.700485,-1.760353 0.778951,-2.589582 0.04344,-0.4320507 0.02768,-0.8466164 -0.07144,-1.2218368 C 23.182395,8.4238476 22.999916,8.067881 22.747206,7.806256 22.481251,7.517725 22.106208,7.3165584 21.724242,7.1824663 21.309359,7.0383279 20.851655,6.9797065 20.415242,6.9496567 19.367634,6.883524 18.338697,6.9468367 17.46123,6.7724311 c 0,-2e-7 -1e-6,-4e-7 -1e-6,-7e-7 -2.555668,-0.522603 -2.85625,-2.0538857 -2.955141,-1.9641252 z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.1497917"
+         id="text4678-0"><tspan
+           sodipodi:role="line"
+           id="tspan4680-24"
+           x="-1.8505859"
+           y="1.1497917"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8335762"
+           id="tspan4682-99"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5173607"
+           id="tspan4684-95"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.201145"
+           id="tspan4686-03"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.88493"
+           id="tspan4688-70"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.568714"
+           id="tspan4690-49"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.252499"
+           id="tspan4692-4"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="26.936283"
+           id="tspan4694-89"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.620068"
+           id="tspan4696-00"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="34.303852"
+           id="tspan4700-8"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="37.987637"
+           id="tspan4704-2"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="41.671421"
+           id="tspan4706-25"
+           style="font-size:1.67107606px;line-height:1">12</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="45.355206"
+           id="tspan4720-1"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="383.99242"
+       inkscape:tile-x0="38.254672"
+       id="use5056"
+       transform="translate(0,384.00493)"
+       inkscape:tile-cx="55.127336"
+       inkscape:tile-cy="399.99761"
+       inkscape:tile-w="33.745328"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect8164"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,0.74685828)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 2.0351219,4.4443559 c 0,0 2.722703,0.552921 4.2657299,1.140247 1.45782,0.5548931 2.0943415,0.2440523 3.0949275,1.4407023 1.1109297,1.328615 -0.6579032,8.4792468 0.3095248,10.5146248 0.7361849,1.551525 8.1639829,1.625207 9.7287539,2.332805 1.054823,0.476997 3.929197,3.66629 4.870142,4.340677 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.456483,-3.059351 -0.813573,-4.76106 C 28.220028,16.555621 23.4543,18.551291 23.271798,16.880355 23.099096,15.299144 23.215311,7.1691842 22.355451,5.8310172 21.670698,4.7653637 19.686202,5.1549865 18.525468,4.6478347 17.658582,4.2690719 14.859364,3.4772849 14.859364,3.4772849"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path8166"
+         d="m 14.859336,3.4772709 c 0.05748,-0.114161 1.330492,0.5621526 3.719866,0.8189882 0.500449,0.053566 1.374002,0.098554 2.059733,0.2288478 0.65865,0.1196416 1.421901,0.3819428 2.058857,0.9492471 0.413192,0.3829341 0.731117,0.8767643 0.92293,1.4331502 0.179273,0.5187889 0.258682,1.0724292 0.25005,1.6332511 -0.02042,1.0558344 -0.289079,2.0233797 -0.582384,3.0300977 -0.245439,0.88807 -0.512718,1.823876 -0.474488,2.686498 0.01537,0.414892 0.08527,0.827009 0.241527,1.188608 0.151074,0.348447 0.373052,0.669589 0.657118,0.883405 0.282194,0.228617 0.669645,0.368144 1.093837,0.455472 0.418225,0.08298 0.878085,0.08881 1.37932,0.08316 0.954812,-0.03423 2.133487,-0.106836 3.323617,0.328625 0.562952,0.222084 1.081068,0.576846 1.497426,1.048821 0,0 2e-6,2e-6 2e-6,2e-6 0.409616,0.465363 0.703105,1.038714 0.832436,1.66903 0.126594,0.622156 0.07914,1.280926 -0.156078,1.89508 -0.233878,0.606436 -0.651444,1.13931 -1.210072,1.512748 -0.425492,0.27026 -0.832789,0.423803 -1.173386,0.5512 -1e-6,0 -2e-6,0 -3e-6,1e-6 -0.458361,0.181255 -0.966965,0.404173 -1.54119,0.570371 -0.619044,0.171657 -1.190263,0.244918 -1.710823,0.347307 -0.202192,0.04457 -0.425207,0.09598 -0.667328,0.138012 -0.341908,0.05935 -0.720916,0.09985 -1.138369,0.07828 -0.750547,-0.07131 -1.416699,-0.37041 -1.946046,-0.782661 -0.533266,-0.410755 -0.953661,-0.890577 -1.304498,-1.362363 -0.745219,-0.958039 -1.243619,-1.874497 -1.991945,-2.34249 -0.558292,-0.397144 -1.308894,-0.569789 -2.069791,-0.649434 -0.780025,-0.07401 -1.643585,-0.01704 -2.500653,-0.0019 -0.907601,0.02409 -1.841656,-0.0121 -2.774959,-0.261373 C 10.671788,19.35119 9.7589287,18.791795 9.1411314,17.946719 8.4878701,16.983637 8.3218454,15.862241 8.4214334,14.879633 8.5173012,13.85154 8.8266879,12.899551 9.0895829,12.082733 9.3771421,11.156522 9.6204093,10.363542 9.6518651,9.5633809 9.6791038,8.6905502 9.4884757,7.8870309 9.0264572,7.3514906 8.7156455,6.964083 8.2527035,6.6860562 7.8003368,6.4800728 7.2997439,6.2553824 6.7038805,6.0947258 6.2110742,5.9523952 3.4898505,5.1721765 2.0002152,4.5643992 2.0351219,4.4443559 2.076676,4.3014523 3.6374985,4.6607152 6.3906276,5.2168102 c 0.5010247,0.1001871 1.132118,0.2240002 1.7391656,0.4451519 0.5505496,0.1978506 1.1454844,0.5181483 1.6353083,1.0371578 0.6773675,0.7545631 1.0251375,1.7967784 1.0062365,2.8905132 -0.01035,0.9797389 -0.235961,1.8988769 -0.504254,2.8430349 -0.228432,0.836477 -0.4921635,1.718338 -0.5315341,2.542831 -0.028614,0.774055 0.090967,1.600263 0.5339271,2.157642 0.369163,0.523743 1.02837,0.875261 1.757182,1.074826 0.711414,0.188689 1.500728,0.191256 2.361264,0.166732 0.813108,-0.03075 1.727351,-0.09918 2.668497,-0.03025 0.927669,0.06061 1.922682,0.30599 2.812251,0.881068 1.101197,0.773827 1.739669,1.809589 2.383068,2.679422 0.318793,0.40964 0.639289,0.786233 1.001378,1.050865 0.355518,0.255224 0.745405,0.447147 1.113349,0.463553 0.205703,0.0273 0.446674,-0.0079 0.725244,-0.06247 0.197575,-0.03868 0.412955,-0.08679 0.646021,-0.128518 0.591203,-0.118063 1.129462,-0.182394 1.588825,-0.315029 0.431896,-0.117724 0.893956,-0.322951 1.3982,-0.516461 0,0 3e-6,-10e-7 3e-6,-10e-7 0.368032,-0.148489 0.675934,-0.248234 0.879444,-0.39262 0.272716,-0.174569 0.494495,-0.457202 0.617922,-0.765428 0.127312,-0.313878 0.154999,-0.681719 0.09103,-1.022299 -0.06425,-0.34769 -0.234979,-0.685984 -0.468742,-0.96089 0,0 -1e-6,-1e-6 -1e-6,-1e-6 -0.238104,-0.281046 -0.557531,-0.503661 -0.903641,-0.647821 -0.721436,-0.334417 -1.722745,-0.248024 -2.74327,-0.266495 -0.538225,0.0027 -1.100094,-0.02308 -1.676794,-0.140878 -0.594265,-0.118202 -1.182183,-0.366043 -1.689656,-0.769097 -0.491613,-0.406669 -0.841391,-0.924099 -1.051455,-1.470459 -0.215831,-0.560345 -0.30367,-1.136255 -0.302078,-1.684405 0.0097,-1.136959 0.327267,-2.181847 0.619989,-3.067045 0.31817,-1.008111 0.604142,-1.8443455 0.642782,-2.7035064 C 22.762856,8.0541939 22.726098,7.6252568 22.60925,7.2381461 22.484518,6.8261485 22.282425,6.4598571 22.01311,6.1876804 21.61756,5.764135 21.008265,5.5247827 20.448439,5.3696558 19.775673,5.1902145 19.09325,5.1216302 18.471732,4.9994099 15.926736,4.5001187 14.84224,3.5112259 14.859336,3.4772709 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.1677153"
+         id="text4678-93"><tspan
+           sodipodi:role="line"
+           id="tspan4680-4"
+           x="-1.8505859"
+           y="1.1677153"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8515"
+           id="tspan4682-70"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.535284"
+           id="tspan4684-11"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.219069"
+           id="tspan4686-01"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.902853"
+           id="tspan4688-8"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.586637"
+           id="tspan4690-7"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.270422"
+           id="tspan4692-53"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="26.954206"
+           id="tspan4694-0"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.637991"
+           id="tspan4696-66"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="34.321777"
+           id="tspan4700-1"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="38.005562"
+           id="tspan4704-82"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="41.689346"
+           id="tspan4706-8"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="45.373131"
+           id="tspan4708-54"
+           style="font-size:1.67107606px;line-height:1">13</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="49.056915"
+           id="tspan4720-07"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="415.97187"
+       inkscape:tile-x0="38.254672"
+       id="use5058"
+       transform="translate(0,415.98438)"
+       inkscape:tile-cx="55.127336"
+       inkscape:tile-cy="431.97706"
+       inkscape:tile-w="33.745328"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect8254"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 2.5046557,5.1368738 c 0,0 2.3764943,0.167235 3.9195211,0.7545607 1.45782,0.5548931 1.1548937,-0.064913 2.1554795,1.1317372 1.1109296,1.328615 -0.5712429,8.4704663 0.3961851,10.5058443 0.736185,1.551525 6.5242416,1.139338 8.0890126,1.846936 1.054823,0.476997 6.298401,4.163073 7.239346,4.83746 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.802334,-0.268803 1.026418,-0.471911 0.35302,-0.319976 2.468099,0.225869 1.198046,-1.47584 C 30.231647,19.840841 22.209378,18.51984 22.026876,16.848904 21.854174,15.267694 22.387399,7.5424471 21.527537,6.2042811 20.842784,5.1386271 19.203772,6.0498006 18.87094,4.7751438 18.631933,3.8598141 15.384062,4.257674 15.384062,4.257674"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path8256"
+         d="m 15.383997,4.2576713 c 0.003,-0.07153 1.291345,-0.296311 3.573041,0.1837639 0.45839,0.095387 1.002687,0.2328336 1.540121,0.4723264 0.474277,0.2101434 0.974244,0.5279128 1.386625,0.9994689 0.645282,0.7700363 0.966739,1.8227549 0.921969,2.9378314 -0.03252,0.9857399 -0.270074,1.8947371 -0.535835,2.8602601 -0.221815,0.840889 -0.466633,1.737111 -0.457893,2.571 0.002,0.40036 0.0499,0.800481 0.173063,1.164878 0.119164,0.351213 0.299714,0.68338 0.54583,0.93499 0.239525,0.255981 0.56782,0.454871 0.934452,0.601465 0.359227,0.142656 0.763442,0.220471 1.19442,0.26422 0.831891,0.08483 1.762731,-0.01007 2.795697,0.01614 0.994363,0.0062 2.120867,0.195884 3.123966,0.844172 0.4888,0.325885 0.913477,0.784756 1.196046,1.357462 0.280062,0.569338 0.373867,1.240471 0.220983,1.908237 -0.112694,0.447781 -0.325776,0.848451 -0.6083,1.178855 -0.278302,0.326099 -0.603128,0.58886 -0.948762,0.790677 0,0 -3e-6,2e-6 -3e-6,2e-6 -0.39678,0.230474 -0.781949,0.386757 -1.12893,0.525937 -0.470643,0.194168 -0.98385,0.411047 -1.552246,0.574722 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.609859,0.169457 -1.185932,0.252224 -1.721825,0.34929 -0.159387,0.03106 -0.327496,0.06479 -0.50317,0.09605 -0.379831,0.0676 -0.794022,0.123509 -1.24624,0.12019 -0.927924,-0.03185 -1.779523,-0.343956 -2.488373,-0.791179 -0.718503,-0.448714 -1.318397,-0.995674 -1.847903,-1.533002 -0.551588,-0.553134 -1.025451,-1.07628 -1.540531,-1.533587 -0.522913,-0.458345 -1.053941,-0.84593 -1.62045,-1.061321 -1.084798,-0.46691 -2.560643,-0.308306 -3.969517,-0.365682 -0.76313,-0.0175 -1.544212,-0.104632 -2.310934,-0.354412 C 9.706116,19.112609 8.9664975,18.63324 8.4345234,17.94581 7.7467806,16.993503 7.5674769,15.863267 7.6648893,14.879927 7.7587697,13.845257 8.0770321,12.887775 8.3436997,12.076614 8.6403832,11.140306 8.8863949,10.351786 8.9147602,9.551004 8.9318894,9.124575 8.8948967,8.7212069 8.7889672,8.3545627 8.6747145,7.960051 8.4918901,7.6092287 8.2493845,7.3370428 7.7851697,6.780787 6.9601671,6.4725765 6.319834,6.2415669 3.9471057,5.4202755 2.492722,5.2680196 2.5046557,5.1368738 2.5117059,5.0593954 3.985224,4.898432 6.528518,5.5413017 c 0.6927705,0.1661785 1.6386643,0.4550518 2.3814101,1.1679989 0.3634403,0.3654382 0.647657,0.8250963 0.82479,1.3433215 0.1640036,0.4788858 0.2433884,0.9915315 0.2445725,1.5162187 -0.0015,0.9766242 -0.2257861,1.8947652 -0.4997706,2.8503702 -0.2289438,0.831972 -0.4980844,1.721464 -0.5323497,2.548882 -0.023288,0.771167 0.1077826,1.602782 0.5699905,2.14413 0.3200962,0.419217 0.8430192,0.717441 1.4281212,0.907857 0.570469,0.181956 1.211264,0.229344 1.904707,0.241465 1.282031,-0.0025 2.906833,-0.160024 4.489975,0.399836 0.801793,0.311403 1.49629,0.787075 2.10035,1.323806 0.597702,0.525247 1.100776,1.067544 1.622672,1.585487 0.505926,0.495786 1.013484,0.964334 1.56555,1.295263 0.541268,0.319871 1.129393,0.5509 1.692862,0.551275 0.27622,0.01242 0.583959,-0.03668 0.9281,-0.09975 0.159792,-0.02929 0.325456,-0.0612 0.499452,-0.09128 0.580654,-0.107735 1.107715,-0.178134 1.577823,-0.313046 0,0 2e-6,0 2e-6,0 0.439839,-0.120479 0.899042,-0.316749 1.387138,-0.512109 0.356664,-0.146706 0.67253,-0.266405 0.923906,-0.417885 0,0 2e-6,-1e-6 2e-6,-1e-6 0.217814,-0.130217 0.409664,-0.277588 0.550149,-0.446269 0.140085,-0.168889 0.247163,-0.354411 0.288876,-0.535876 0.07511,-0.261355 0.02387,-0.586759 -0.101525,-0.867631 -0.129439,-0.291262 -0.375863,-0.552627 -0.663659,-0.75898 -0.585527,-0.440384 -1.44655,-0.562718 -2.305019,-0.617123 -0.907007,-0.03725 -1.885563,0.03679 -2.900769,-0.07684 -0.527349,-0.05922 -1.058338,-0.180508 -1.569884,-0.390833 -0.527455,-0.215838 -1.015697,-0.542015 -1.413157,-0.973964 -0.393935,-0.439642 -0.660417,-0.950475 -0.812892,-1.471121 -0.157346,-0.535942 -0.209409,-1.07472 -0.190983,-1.585428 0.04296,-1.063185 0.337692,-2.046219 0.603893,-2.881678 0.295718,-0.963153 0.554806,-1.7569563 0.610953,-2.5788499 C 21.788281,7.8887651 21.619733,7.0641055 21.171289,6.49533 20.903241,6.1341014 20.518978,5.8560145 20.137565,5.6459461 19.703502,5.4084317 19.212476,5.2419997 18.78484,5.1088519 16.664298,4.4540168 15.378794,4.38101 15.383997,4.2576713 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.2398182"
+         id="text4678-176"><tspan
+           sodipodi:role="line"
+           id="tspan4680-8"
+           x="-1.8505859"
+           y="1.2398182"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.9236026"
+           id="tspan4682-2"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.6073875"
+           id="tspan4684-477"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.291172"
+           id="tspan4686-33"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.974957"
+           id="tspan4688-37"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.658741"
+           id="tspan4690-78"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.342525"
+           id="tspan4692-9"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="27.02631"
+           id="tspan4694-6"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.710094"
+           id="tspan4696-46"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="34.393879"
+           id="tspan4700-45"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="38.077663"
+           id="tspan4704-42"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="41.761448"
+           id="tspan4706-09"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="45.445232"
+           id="tspan4708-775"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="49.129017"
+           id="tspan4710-4"
+           style="font-size:1.67107606px;line-height:1">14</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="52.812801"
+           id="tspan4720-52"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="447.98523"
+       inkscape:tile-x0="38.254672"
+       id="use5060"
+       transform="translate(0,447.99774)"
+       inkscape:tile-cx="55.127336"
+       inkscape:tile-cy="463.99042"
+       inkscape:tile-w="33.745328"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect8344"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 3.1916385,4.6696491 c 0,0 3.902572,3.2573043 5.4455989,3.84463 1.4578196,0.5548931 -1.3020357,6.2650399 -0.3014497,7.4616899 1.1109303,1.328615 8.2289543,1.357291 9.1963823,3.392669 0.736185,1.551525 -0.365741,2.446812 1.19903,3.15441 1.054823,0.476997 4.632055,1.015977 5.573,1.690364 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 2.490436,0.657124 1.220383,-1.044585 C 30.253984,20.272096 30.758725,20.088595 30.576223,18.417659 30.403521,16.836449 22.203287,17.05497 21.343427,15.716803 20.658674,14.651149 22.680775,7.6937428 21.520041,7.186591 20.653155,6.8078282 16.056393,3.7604851 16.056393,3.7604851"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path8346"
+         d="m 16.056385,3.7604874 c 0.08697,0.2913822 1.131266,-1.2773959 3.692943,0.1803543 0.948078,0.5424144 1.949862,1.6195153 2.244939,3.1689458 0.139395,0.762581 0.104881,1.5524213 -0.03783,2.358817 -0.124408,0.7222025 -0.319329,1.4400875 -0.471698,2.1613475 0,0 -1e-6,2e-6 -1e-6,2e-6 -0.135897,0.661201 -0.247828,1.353349 -0.196772,2.005817 0.05113,0.61043 0.220099,1.235499 0.584986,1.682008 0.370943,0.498135 1.005642,0.831771 1.714221,1.032842 0.6871,0.188765 1.445129,0.212242 2.283214,0.225699 0.787878,0.0052 1.673326,-0.0048 2.581539,0.136529 0.890675,0.131557 1.83099,0.466787 2.624905,1.126167 0.55689,0.469686 0.991062,1.117619 1.186309,1.88085 0,0 10e-7,3e-6 10e-7,3e-6 0.191249,0.756675 0.09196,1.591544 -0.337865,2.311492 -0.408307,0.624033 -0.961493,1.048749 -1.514028,1.327877 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.371339,0.198797 -0.739177,0.358655 -1.092899,0.506857 -0.482442,0.204668 -0.998508,0.413868 -1.555897,0.576768 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.59502,0.170066 -1.182532,0.271707 -1.752999,0.354969 -0.17579,0.0261 -0.352106,0.05114 -0.528926,0.07507 -0.364128,0.04927 -0.727815,0.09345 -1.091063,0.132333 -1.060092,0.122439 -2.181508,0.179957 -3.32361,-0.06223 -0.580455,-0.126619 -1.150766,-0.347016 -1.673396,-0.67465 -0.532077,-0.333146 -0.994001,-0.788258 -1.329916,-1.342374 0,0 -2e-6,-3e-6 -2e-6,-3e-6 C 17.705222,22.302301 17.535415,21.675764 17.402784,21.139319 17.248969,20.594882 17.130501,20.121796 16.897396,19.789433 16.5806,19.258748 15.930262,18.903169 15.258559,18.684103 14.552268,18.463419 13.731682,18.423682 12.910827,18.373056 12.032223,18.329635 11.139319,18.270988 10.233266,18.012254 9.2711942,17.746346 8.3823222,17.18558 7.7987933,16.343444 7.3574098,15.663381 7.1754845,14.901924 7.1626661,14.195833 7.146554,13.454758 7.2752336,12.758821 7.4348962,12.140964 7.7999198,10.647979 8.2275984,9.6890167 8.149967,8.5548332 8.0867961,7.2584569 7.3588991,6.1989542 6.6058523,5.6126331 c -3e-7,-1e-7 -7e-7,-2e-7 -10e-7,-2e-7 C 4.8584916,4.2437371 3.2243292,4.7933986 3.1916385,4.6696491 c 0.088237,0.3340177 1.2216932,-1.3181554 3.8249834,0.3611606 -10e-8,6e-7 1.2e-6,8e-7 1.2e-6,8e-7 0.9540539,0.6188347 1.9273998,1.8096718 2.1078847,3.4429145 0.1319548,1.387788 -0.2506863,2.5321 -0.556407,3.930186 -0.1175105,0.576606 -0.2103201,1.174092 -0.1694535,1.737919 0.041176,0.530275 0.177575,1.068317 0.4741348,1.466664 0.3504142,0.522659 1.0023776,0.870625 1.7327149,1.080966 0.709359,0.195829 1.489717,0.215424 2.369339,0.250537 0.824862,0.02288 1.753935,0.06248 2.696162,0.318771 0.925005,0.242927 1.860218,0.782951 2.495946,1.689075 0.387547,0.603852 0.582751,1.227827 0.726929,1.789919 0.157051,0.539201 0.277872,1.034422 0.505993,1.382354 0,0 1e-6,2e-6 1e-6,2e-6 0.190564,0.319581 0.486465,0.597864 0.830865,0.816382 0.341477,0.216244 0.745494,0.364458 1.175792,0.460581 0.849691,0.196756 1.796673,0.125572 2.812421,0.02451 0.348404,-0.03774 0.697697,-0.08041 1.047912,-0.127799 0.170062,-0.02301 0.339757,-0.04706 0.509061,-0.07208 0.548853,-0.08258 1.066897,-0.168136 1.546649,-0.307367 0,0 2e-6,-1e-6 2e-6,-1e-6 0.450705,-0.127209 0.910033,-0.31435 1.383488,-0.510062 0.345878,-0.144827 0.6689,-0.281121 0.959937,-0.436965 0,0 2e-6,-2e-6 2e-6,-2e-6 0.411733,-0.237157 0.767877,-0.469569 0.926733,-0.76129 0.200966,-0.298489 0.246597,-0.737418 0.162601,-1.122759 0,0 0,-2e-6 0,-2e-6 -0.0857,-0.402445 -0.348814,-0.788595 -0.679712,-1.086958 -0.472815,-0.436474 -1.16508,-0.6726 -1.871918,-0.810181 -0.731409,-0.134871 -1.550106,-0.134557 -2.362456,-0.161525 -0.865452,-0.02082 -1.746751,-0.08207 -2.629413,-0.33251 -0.933272,-0.258318 -1.798456,-0.786607 -2.397926,-1.576259 -0.537048,-0.750453 -0.760487,-1.616531 -0.780359,-2.416895 -0.02421,-0.843338 0.126739,-1.636479 0.307979,-2.335506 0,0 0,-1e-6 0,-2e-6 0.193543,-0.762451 0.414954,-1.4501564 0.557812,-2.1006397 0.155786,-0.726587 0.230225,-1.383843 0.146478,-1.9993898 C 20.889612,6.0253972 20.131638,5.0576259 19.378004,4.5329965 17.627825,3.3075021 16.09224,3.8806114 16.056385,3.7604874 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.1258703"
+         id="text4678-2"><tspan
+           sodipodi:role="line"
+           id="tspan4680-3"
+           x="-1.8505859"
+           y="1.1258703"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8096547"
+           id="tspan4682-98"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.4934397"
+           id="tspan4684-0"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.177224"
+           id="tspan4686-315"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.861009"
+           id="tspan4688-777"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.544792"
+           id="tspan4690-0"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.228577"
+           id="tspan4692-98"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="26.912361"
+           id="tspan4694-03"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.596146"
+           id="tspan4696-1"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="34.27993"
+           id="tspan4700-48"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="37.963715"
+           id="tspan4704-90"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="41.647499"
+           id="tspan4706-5"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="45.331284"
+           id="tspan4708-13"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="49.015068"
+           id="tspan4710-01"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="52.698853"
+           id="tspan4712-99"
+           style="font-size:1.67107606px;line-height:1">15</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="56.382637"
+           id="tspan4720-9"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="480.02612"
+       inkscape:tile-x0="38.254672"
+       id="use5062"
+       transform="translate(0,480.03863)"
+       inkscape:tile-cx="55.127336"
+       inkscape:tile-cy="496.03131"
+       inkscape:tile-w="33.745328"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect8434"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 3.9420533,4.0599258 c 0,0 2.1594097,2.8040262 3.7024366,3.391352 1.45782,0.5548931 -0.8880016,7.0481802 0.1125844,8.2448302 1.11093,1.328615 7.2987257,-0.206084 8.2661537,1.829294 0.736185,1.551525 1.487436,5.926874 3.052207,6.634472 1.054823,0.476997 4.28782,-0.620849 5.228765,0.05354 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 2.34198,0.421768 1.071927,-1.279941 C 30.105528,20.03674 28.33195,18.133589 28.149448,16.462653 27.976746,14.881443 21.052155,16.315886 20.192295,14.977719 19.507542,13.912065 21.97662,6.690812 20.815886,6.1836602 19.949,5.8048974 16.780607,3.1576889 16.780607,3.1576889"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path8436"
+         d="m 16.780603,3.1576893 c 0.0138,0.142394 1.000736,-0.7210016 2.787686,0.4860938 0,4e-7 1e-6,6e-7 1e-6,6e-7 0.685662,0.4646934 1.402266,1.2938268 1.662793,2.4611815 0.16599,0.7724315 0.12736,1.5981463 -0.06434,2.4496941 -0.173552,0.7898504 -0.402494,1.4221871 -0.636314,2.2188017 -0.191801,0.669318 -0.369284,1.384705 -0.358847,2.066867 0.01367,0.630384 0.158046,1.294937 0.533989,1.757201 0.310506,0.41812 0.822461,0.719362 1.398828,0.904894 0.556887,0.176299 1.182808,0.214645 1.858116,0.204555 1.210964,-0.03519 2.796179,-0.300729 4.359887,0.03482 1.201299,0.271329 2.359639,0.982137 3.106886,2.102046 0.357646,0.544885 0.598023,1.177898 0.678768,1.852198 0,0 0,4e-6 0,4e-6 0.07886,0.663706 -0.0091,1.353636 -0.277539,1.994457 -0.274934,0.65553 -0.744631,1.234643 -1.368298,1.63829 0,0 -3e-6,2e-6 -3e-6,2e-6 -0.414866,0.256753 -0.815438,0.412594 -1.161665,0.544028 -0.467459,0.185103 -0.974471,0.398402 -1.530257,0.567445 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.594725,0.176943 -1.190034,0.284223 -1.774441,0.359375 -0.256404,0.03368 -0.505825,0.06147 -0.750417,0.09 -0.280923,0.03278 -0.55103,0.06605 -0.810743,0.109533 -0.827048,0.137019 -1.71562,0.399333 -2.703429,0.498329 0,0 -3e-6,0 -3e-6,0 -0.502872,0.05029 -1.029584,0.04375 -1.5626,-0.05286 -0.541611,-0.09708 -1.076413,-0.30909 -1.552235,-0.647914 -0.65574,-0.492594 -1.097288,-1.146349 -1.361585,-1.812565 -0.271952,-0.670568 -0.414418,-1.337683 -0.5292,-1.946204 -0.124777,-0.62715 -0.224926,-1.195916 -0.409159,-1.701373 -0.191824,-0.509585 -0.435498,-0.963904 -0.778487,-1.254902 -0.390419,-0.370966 -0.988333,-0.561753 -1.595723,-0.660163 -0.632938,-0.09523 -1.340839,-0.05449 -2.049602,-0.02941 -0.756935,0.03468 -1.529415,0.04752 -2.3262514,-0.09749 C 8.7230019,17.147633 7.9130137,16.764421 7.3034344,16.129218 6.6919223,15.451644 6.4048428,14.615029 6.3413561,13.836252 6.2706004,13.007412 6.39461,12.223336 6.5578154,11.541824 6.7347026,10.785248 6.9479459,10.112065 7.0862802,9.4820515 7.2417039,8.7562905 7.3133673,8.1189161 7.2322158,7.5208732 7.113966,6.593001 6.6539669,5.8371199 6.1720373,5.3420924 c 0,0 -9e-7,-4e-7 -9e-7,-4e-7 C 5.0491394,4.185997 3.9335582,4.1664466 3.9420533,4.0599258 c -0.0073,0.091508 1.065247,-0.4649389 2.6378479,0.8368881 -1e-7,3e-7 1e-6,7e-7 1e-6,7e-7 0.6193811,0.5137755 1.2476032,1.3536081 1.4768618,2.4848678 0.1418928,0.7237955 0.1175787,1.4838427 -0.016067,2.2814517 -0.1127135,0.6931629 -0.2936194,1.3919509 -0.423803,2.1006379 -0.1132784,0.6377 -0.1976466,1.315365 -0.1075372,1.94347 0.086476,0.579329 0.3008663,1.173302 0.7013564,1.555755 0.3690846,0.389855 0.948763,0.614306 1.5852645,0.727901 0.6162581,0.103802 1.2796751,0.06391 2.0243401,0.01995 0.697611,-0.04858 1.484039,-0.104154 2.305915,-0.0112 0.803821,0.08415 1.660642,0.370498 2.382235,0.969466 0.584334,0.517879 0.98112,1.172388 1.223406,1.849884 0.241095,0.657625 0.37144,1.301555 0.496458,1.916854 0.126874,0.593448 0.247354,1.163688 0.459386,1.647617 0.211501,0.468749 0.484791,0.898631 0.846732,1.139545 0.249105,0.183664 0.573126,0.30145 0.921161,0.368767 0.346475,0.06591 0.726135,0.06349 1.123553,0.02705 0,0 3e-6,0 3e-6,0 0.783425,-0.07165 1.631493,-0.330936 2.594546,-0.491185 0.302565,-0.04989 0.597942,-0.08696 0.886336,-0.12086 0.251176,-0.02952 0.49334,-0.05624 0.729466,-0.08688 0.537215,-0.07134 1.04889,-0.1596 1.525207,-0.302961 0,0 2e-6,-1e-6 2e-6,-1e-6 0.446478,-0.130695 0.914065,-0.328231 1.409128,-0.519385 0.361731,-0.145311 0.670865,-0.252259 0.891171,-0.399794 0,0 2e-6,-1e-6 2e-6,-1e-6 0.336886,-0.207733 0.610887,-0.54675 0.775551,-0.921589 0.162726,-0.369792 0.219011,-0.797086 0.177006,-1.206638 0,0 -1e-6,-3e-6 -1e-6,-3e-6 -0.04231,-0.418428 -0.196456,-0.833069 -0.424497,-1.194521 -0.460393,-0.748878 -1.301687,-1.267121 -2.166585,-1.491501 -1.137421,-0.312139 -2.628916,-0.07007 -4.000515,-0.08056 -0.760572,0.0038 -1.534276,-0.07729 -2.284953,-0.324597 -0.79315,-0.258151 -1.510194,-0.741891 -2.01201,-1.420443 -0.553631,-0.792781 -0.740381,-1.711467 -0.703974,-2.536234 0.03482,-0.877699 0.263147,-1.686306 0.50622,-2.382359 0.265846,-0.7762485 0.547824,-1.4654269 0.727432,-2.1198129 0.20276,-0.7553426 0.290716,-1.4324521 0.19199,-2.0571469 -0.138127,-0.9366005 -0.664552,-1.6800234 -1.198723,-2.1300603 0,-10e-8 0,-2e-7 -10e-7,-3e-7 C 17.954732,3.0776441 16.791038,3.2653383 16.780603,3.1576893 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.2139806"
+         id="text4678-471"><tspan
+           sodipodi:role="line"
+           id="tspan4680-39"
+           x="-1.8505859"
+           y="1.2139806"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8977652"
+           id="tspan4682-8"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5815496"
+           id="tspan4684-17"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.265334"
+           id="tspan4686-42"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.949119"
+           id="tspan4688-98"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.632902"
+           id="tspan4690-5"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.316687"
+           id="tspan4692-522"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="27.000471"
+           id="tspan4694-07"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.684256"
+           id="tspan4696-15"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="34.368042"
+           id="tspan4700-63"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="38.051826"
+           id="tspan4704-21"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="41.735611"
+           id="tspan4706-08"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="45.419395"
+           id="tspan4708-8"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="49.10318"
+           id="tspan4710-5"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="52.786964"
+           id="tspan4712-64"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="56.470749"
+           id="tspan4714-92"
+           style="font-size:1.67107606px;line-height:1">16</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="60.154533"
+           id="tspan4720-82"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="512.03948"
+       inkscape:tile-x0="38.254672"
+       id="use5064"
+       transform="translate(0,512.05199)"
+       inkscape:tile-cx="55.127336"
+       inkscape:tile-cy="528.04467"
+       inkscape:tile-w="33.745328"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect8524"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-1.3716649)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 4.550545,4.6121637 c 0,0 0.8093951,2.7470883 2.3524216,3.334414 1.4578199,0.5548931 -1.1788365,6.5368263 -0.1782509,7.7334763 1.11093,1.328615 8.4678253,0.504647 9.4352533,2.540025 0.736185,1.551525 1.353531,7.435889 2.918302,8.143487 1.054823,0.476997 4.284984,-2.824541 5.225929,-2.150154 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.750607,0.08593 0.480554,-1.61578 C 29.514155,19.700901 29.280492,18.662987 29.09799,16.992051 28.925288,15.410841 20.280524,15.80494 19.420664,14.466773 18.735911,13.401119 21.423832,7.6410551 20.263102,7.1339033 19.396216,6.7551405 17.428273,3.6829544 17.428273,3.6829544"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path8526"
+         d="m 17.428225,3.6829417 c -0.01548,0.058672 0.987423,-0.232895 2.195483,1.086372 0.479237,0.524244 0.934915,1.3251637 1.034469,2.3398535 0.110623,1.3301826 -0.315864,2.4098801 -0.761537,3.8469238 -0.162161,0.554166 -0.310101,1.144995 -0.31748,1.712955 -0.004,0.525614 0.08722,1.07624 0.358613,1.49418 0.170182,0.279069 0.425149,0.524581 0.726514,0.721833 0.291423,0.190451 0.634421,0.327836 1.005298,0.422939 0.714933,0.188543 1.505622,0.167986 2.389521,0.11968 0.811237,-0.05353 1.746702,-0.144962 2.710361,-0.0643 0.940161,0.06998 1.959379,0.372361 2.810583,1.066583 0.683678,0.592227 1.146839,1.375092 1.391729,2.207357 0.239798,0.803537 0.315629,1.616516 0.319615,2.405764 0.0079,0.302513 -0.0037,0.655772 -0.08704,1.045728 -0.07876,0.394634 -0.283387,0.801562 -0.637279,1.149477 0,0 -4e-6,3e-6 -4e-6,3e-6 -0.241641,0.212934 -0.491014,0.354885 -0.723218,0.442163 -0.228172,0.09047 -0.426014,0.1484 -0.58659,0.201152 -0.502119,0.16562 -0.969535,0.383744 -1.471654,0.549364 -0.595969,0.192799 -1.206063,0.309426 -1.814801,0.369342 0,0 -3e-6,0 -3e-6,0 -0.567653,0.0614 -1.071175,0.06521 -1.457124,0.181373 -0.2943,0.0664 -0.5841,0.210113 -0.886154,0.396695 -0.429952,0.265586 -0.879161,0.613754 -1.389667,0.93844 -0.43491,0.291447 -0.927355,0.56203 -1.492386,0.743944 -0.575677,0.18908 -1.226492,0.232154 -1.876102,0.06504 -0.51494,-0.146952 -0.963511,-0.41992 -1.317537,-0.770861 -0.356133,-0.352787 -0.623418,-0.761133 -0.807816,-1.186941 -0.364997,-0.864758 -0.458926,-1.746484 -0.46284,-2.538247 0,0 0,-3e-6 0,-3e-6 -0.01653,-0.826003 0.02995,-1.539521 -0.05042,-2.216243 -0.09189,-0.678116 -0.263658,-1.303502 -0.631152,-1.71485 -0.3853,-0.497336 -1.077617,-0.780494 -1.772013,-0.928272 -0.732273,-0.146628 -1.561942,-0.107436 -2.378831,-0.08485 -0.88723,0.03485 -1.7783683,0.04621 -2.6911222,-0.1452 C 7.7757318,17.342495 6.8643362,16.836685 6.2516796,16.044556 5.7575195,15.364856 5.5504711,14.581933 5.5248016,13.864513 5.4946134,13.094231 5.6286067,12.370985 5.7907744,11.744012 6.2057709,10.052366 6.6270576,9.1952567 6.5298112,7.9883121 6.4806103,7.2419155 6.2228913,6.6039567 5.9345068,6.1328028 5.2610566,5.0314697 4.5090292,4.6973752 4.550545,4.6121637 c -0.00349,0.00716 0.8666494,0.00427 1.8252537,1.2093087 0.3910364,0.4919479 0.7670656,1.1979232 0.9003233,2.0833709 0.1911641,1.3826837 -0.1681673,2.4645777 -0.4975873,4.0626997 -0.1136368,0.591682 -0.2047024,1.226473 -0.1453929,1.824425 0.057222,0.549574 0.2225301,1.117978 0.5646113,1.523586 0.3857543,0.50358 1.0623197,0.811932 1.8150849,0.965682 0.7203998,0.139572 1.49319,0.0932 2.372692,0.0458 0.810674,-0.05317 1.734188,-0.108817 2.68947,0.04254 0.930096,0.13909 1.91078,0.558126 2.645326,1.371922 0.610855,0.734161 0.916666,1.623093 1.011063,2.491218 0.102991,0.845304 0.07019,1.611651 0.09093,2.360564 0,0 1e-6,3e-6 1e-6,3e-6 0.03162,0.710494 0.09112,1.396749 0.351448,1.939436 0.123797,0.26782 0.28094,0.511946 0.474999,0.694182 0.190331,0.178409 0.413372,0.31858 0.638402,0.374424 0.278336,0.0872 0.630566,0.04586 0.984553,-0.05574 0.35467,-0.105653 0.712192,-0.314157 1.090933,-0.55832 0.429462,-0.293984 0.904718,-0.658126 1.450282,-0.974503 0.385809,-0.223734 0.807783,-0.424536 1.281781,-0.567627 0.645921,-0.165177 1.235463,-0.183329 1.719838,-0.225909 0,0 3e-6,0 3e-6,0 0.518149,-0.05145 1.017814,-0.142313 1.484841,-0.292994 0.440783,-0.139216 0.917666,-0.357528 1.467736,-0.537468 0.202345,-0.0664 0.368594,-0.111238 0.493004,-0.162317 0.121429,-0.05469 0.212678,-0.09471 0.25002,-0.138186 0,0 0,-1e-6 0,-1e-6 0.07427,-0.04561 0.128771,-0.18783 0.181527,-0.354143 0.04925,-0.175761 0.05063,-0.409147 0.05527,-0.682212 -0.0046,-0.713677 -0.04848,-1.381568 -0.227887,-1.980314 -0.185967,-0.608988 -0.48034,-1.160756 -0.903133,-1.517455 -0.492355,-0.457971 -1.242011,-0.670652 -1.987674,-0.767953 -0.777068,-0.09205 -1.652666,-0.0214 -2.501892,0.0068 -0.925583,0.04083 -1.863243,0.01823 -2.794232,-0.238945 -0.484923,-0.136652 -0.949258,-0.347141 -1.366428,-0.635756 -0.434677,-0.30037 -0.800544,-0.69152 -1.062148,-1.148013 -0.387004,-0.703738 -0.49599,-1.468435 -0.4439,-2.153098 0.0528,-0.730825 0.249024,-1.401492 0.458614,-1.981734 C 19.437251,9.1285141 19.909881,8.2758051 19.868027,7.1586394 19.852519,6.3343009 19.539914,5.6251584 19.182931,5.1313954 18.34939,3.9760749 17.402589,3.7801204 17.428225,3.6829417 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.2103162"
+         id="text4678-13"><tspan
+           sodipodi:role="line"
+           id="tspan4680-0"
+           x="-1.8505859"
+           y="1.2103162"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8941007"
+           id="tspan4682-71"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5778856"
+           id="tspan4684-78"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.26167"
+           id="tspan4686-61"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.945455"
+           id="tspan4688-08"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.629238"
+           id="tspan4690-30"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.313023"
+           id="tspan4692-0"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="26.996807"
+           id="tspan4694-29"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.680592"
+           id="tspan4696-65"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="34.364376"
+           id="tspan4700-43"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="38.048161"
+           id="tspan4704-70"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="41.731945"
+           id="tspan4706-50"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="45.41573"
+           id="tspan4708-72"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="49.099514"
+           id="tspan4710-84"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="52.783298"
+           id="tspan4712-2"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="56.467083"
+           id="tspan4714-57"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="60.150867"
+           id="tspan4716-38"
+           style="font-size:1.67107606px;line-height:1">17</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="63.834652"
+           id="tspan4718-91"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="67.51844"
+           id="tspan4720-19"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="544.01892"
+       inkscape:tile-x0="38.254672"
+       id="use5066"
+       transform="translate(0,544.03143)"
+       inkscape:tile-cx="55.127336"
+       inkscape:tile-cy="560.02411"
+       inkscape:tile-w="33.745328"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect8614"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 5.142559,3.2229683 c 0,0 0.2390397,2.4535592 1.7820666,3.0408849 1.45782,0.5548931 -1.6732579,6.4235218 -0.6726717,7.6201718 1.11093,1.328615 8.8540921,1.086621 9.8215201,3.121999 0.736185,1.551525 0.42134,8.213571 1.986111,8.921169 1.054823,0.476997 5.30367,-2.388168 6.244615,-1.713781 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.217256,-0.369199 -0.0528,-2.070908 -1.005017,-1.346595 -0.847263,-2.940734 -1.029765,-4.61167 C 28.783354,14.399488 20.59696,14.433072 19.7371,13.094905 19.052347,12.029251 20.998641,5.1000874 19.837907,4.5929356 18.971021,4.2141728 17.969765,2.3064187 17.969765,2.3064187"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path8616"
+         d="m 17.969747,2.3064096 c -0.111366,0.2225572 1.419325,-0.1562281 2.175294,2.2037524 0,3e-7 1e-6,1.2e-6 1e-6,1.2e-6 0.211981,0.6769164 0.258835,1.4530735 0.13777,2.3208233 -0.102416,0.7577899 -0.270482,1.3663173 -0.447979,2.1745005 -0.138055,0.6456817 -0.269115,1.357259 -0.225851,2.027258 0.04283,0.608428 0.208026,1.253212 0.591239,1.70441 0.386608,0.501122 1.052612,0.813989 1.80008,0.983358 0.714161,0.154286 1.47944,0.133764 2.355921,0.123142 0.806335,-0.01895 1.723525,-0.02715 2.661402,0.178147 0.912059,0.191696 1.855821,0.670099 2.524975,1.52649 0.577072,0.813182 0.802461,1.740417 0.876946,2.60374 0.09367,0.811259 0.105937,1.59979 0.302966,2.229401 0.08617,0.283057 0.239366,0.658983 0.322945,1.144804 0.04076,0.243987 0.04289,0.517436 -0.01129,0.809301 -0.05353,0.294125 -0.191626,0.588168 -0.419508,0.850988 -0.252356,0.25999 -0.523096,0.424351 -0.774962,0.510692 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.244908,0.09176 -0.448893,0.142467 -0.603127,0.188405 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.41615,0.123069 -0.880122,0.352587 -1.447575,0.542317 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.603868,0.19789 -1.214148,0.30817 -1.812842,0.370586 -0.557383,0.06267 -1.067906,0.08204 -1.487349,0.188871 -0.501618,0.105419 -0.998523,0.360093 -1.539823,0.66099 -0.415171,0.230784 -0.844944,0.481909 -1.31835,0.710076 -0.547233,0.274488 -1.158015,0.50042 -1.830544,0.597129 -0.687371,0.102069 -1.426086,0.01047 -2.102906,-0.326483 -0.48399,-0.255952 -0.87903,-0.619825 -1.169179,-1.039741 -0.292314,-0.422583 -0.489424,-0.882569 -0.60537,-1.344751 -0.227387,-0.937518 -0.192931,-1.849491 -0.09803,-2.661303 0.08683,-0.847772 0.212945,-1.586514 0.191423,-2.293887 -0.03248,-0.713688 -0.166542,-1.384714 -0.527267,-1.84169 -0.378959,-0.555754 -1.108751,-0.889541 -1.839854,-1.071135 -0.773996,-0.18222 -1.660157,-0.163816 -2.523682,-0.166002 -0.945934,0.0088 -1.889611,-0.0133 -2.8412202,-0.262812 C 7.7876735,15.815394 7.3109036,15.611805 6.8792015,15.329924 6.4274915,15.035427 6.0430791,14.648784 5.7624812,14.19392 5.3407994,13.483886 5.2066865,12.701118 5.2384429,11.999867 5.2700954,11.242718 5.4552187,10.543221 5.6546931,9.9429432 6.1811435,8.286187 6.6286916,7.47051 6.5789805,6.2904977 6.5242097,4.1674679 5.0736827,3.3263827 5.142559,3.2229683 4.9324121,3.5384937 6.9076659,3.2169996 7.2702706,6.237207 7.4136252,7.5802612 7.0207409,8.6372489 6.5842087,10.219311 c -0.1499306,0.574807 -0.2857955,1.198377 -0.2741462,1.796323 0.013344,0.547537 0.1285792,1.124168 0.4313659,1.558499 0.1888744,0.286657 0.4644487,0.535294 0.7878344,0.73382 0.3113593,0.190765 0.6737639,0.32613 1.0654524,0.419911 0.7547713,0.185087 1.5734878,0.163843 2.5081188,0.141318 0.854785,-0.03085 1.834553,-0.06498 2.837382,0.127977 0.974372,0.178534 1.994553,0.663698 2.717986,1.567151 0.590531,0.802238 0.844464,1.757463 0.863068,2.678078 0.02845,0.891778 -0.08942,1.702775 -0.166103,2.493666 -0.06142,0.754606 -0.100119,1.489041 0.07968,2.114607 0.08468,0.307945 0.206849,0.597568 0.378285,0.833043 0.168488,0.230888 0.377699,0.428276 0.608866,0.54157 0.310707,0.172926 0.735594,0.205935 1.165222,0.156892 0.430654,-0.05254 0.877069,-0.230415 1.341349,-0.452831 0.395479,-0.198654 0.806212,-0.442775 1.251329,-0.683678 0.583175,-0.315622 1.214305,-0.619009 1.939707,-0.806233 0.620199,-0.141111 1.196771,-0.169942 1.689613,-0.218411 0.528261,-0.05684 1.029037,-0.140429 1.486806,-0.29175 0,0 3e-6,-10e-7 3e-6,-10e-7 0.432125,-0.139067 0.914022,-0.370412 1.491809,-0.544513 0,0 3e-6,-1e-6 3e-6,-1e-6 0.213363,-0.06397 0.380999,-0.100583 0.492325,-0.145532 0,0 2e-6,-10e-7 2e-6,-10e-7 0.105841,-0.05094 0.17868,-0.07721 0.182411,-0.09919 0.01667,-0.0064 0.03307,-0.05534 0.05205,-0.115486 0.01875,-0.06446 0.01384,-0.159736 0.002,-0.273472 -0.02207,-0.233144 -0.15613,-0.54076 -0.267487,-0.947764 -0.241331,-0.901605 -0.257288,-1.772898 -0.320895,-2.498703 -0.09138,-0.757918 -0.202587,-1.438897 -0.558723,-1.891497 -0.34235,-0.515595 -1.005376,-0.839768 -1.677378,-1.025556 -0.711196,-0.187663 -1.527991,-0.191228 -2.331033,-0.204329 -0.874918,-0.0042 -1.74708,-0.02178 -2.639675,-0.231378 -0.96029,-0.217415 -1.846882,-0.722385 -2.447441,-1.499184 -0.541794,-0.746342 -0.740447,-1.612659 -0.739396,-2.387417 -0.0024,-0.841687 0.178905,-1.6275845 0.368107,-2.292492 0.234335,-0.8403012 0.427734,-1.3807682 0.571233,-2.0781235 0.156974,-0.7809527 0.18477,-1.4337316 0.05685,-2.0189165 0,-3e-7 0,-5e-7 0,-8e-7 C 19.165999,2.9377577 17.919144,2.4075351 17.969747,2.3064096 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.147082"
+         id="text4678-90"><tspan
+           sodipodi:role="line"
+           id="tspan4680-70"
+           x="-1.8505859"
+           y="1.147082"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8308663"
+           id="tspan4682-06"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.5146513"
+           id="tspan4684-784"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.198436"
+           id="tspan4686-40"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.88222"
+           id="tspan4688-1"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.566004"
+           id="tspan4690-91"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.249788"
+           id="tspan4692-81"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="26.933573"
+           id="tspan4694-49"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.617357"
+           id="tspan4696-17"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="34.301144"
+           id="tspan4700-97"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="37.984928"
+           id="tspan4704-14"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="41.668713"
+           id="tspan4706-42"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="45.352497"
+           id="tspan4708-84"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="49.036282"
+           id="tspan4710-93"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="52.720066"
+           id="tspan4712-98"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="56.403851"
+           id="tspan4714-36"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="60.087635"
+           id="tspan4716-05"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="63.77142"
+           id="tspan4718-40"
+           style="font-size:1.67107606px;line-height:1">18</tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="67.4552"
+           id="tspan4720-4"
+           style="font-size:1.67107606px;line-height:1"> </tspan></text>
+    </g>
+    <g
+       inkscape:tile-y0="575.99837"
+       inkscape:tile-x0="38.254672"
+       id="use5068"
+       transform="translate(0,576.01088)"
+       inkscape:tile-cx="55.127336"
+       inkscape:tile-cy="592.00356"
+       inkscape:tile-w="33.745328"
+       inkscape:tile-h="32.010384">
+      <rect
+         style="opacity:0.07876713;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="rect8704"
+         width="32"
+         height="32.010384"
+         x="-1.4532307e-15"
+         y="-0.012513974"
+         rx="0.093000002"
+         ry="0.03128048" />
+      <path
+         transform="translate(4.322867e-8,-0.3124032)"
+         clip-path="none"
+         sodipodi:nodetypes="cssssssssssssss"
+         inkscape:original-d="m 5.5735751,2.9386003 c 0,0 -0.3819209,2.5488784 1.161102,3.1362041 1.45782,0.5548931 -2.19603,5.3836796 -1.195444,6.5803296 1.11093,1.328615 9.8343109,2.526275 10.8017389,4.561653 0.736185,1.551525 -0.796108,8.660835 0.768663,9.368433 1.054823,0.476997 6.25362,-3.046195 7.194565,-2.371808 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.853306,-0.831813 -0.416751,-2.533522 -1.005013,-1.346595 -0.542027,-2.937093 -0.724529,-4.608029 -0.172702,-1.58121 -8.122186,-1.434322 -8.982046,-2.772489 -0.684753,-1.065654 1.137935,-7.5879494 -0.0228,-8.0951012 C 19.025607,4.275372 18.41974,2.0166059 18.41974,2.0166059"
+         inkscape:path-effect="#path-effect4715;#path-effect4733"
+         id="path8706"
+         d="m 18.419696,2.0165691 c -0.100409,0.1201352 1.336993,0.2550452 1.786183,2.5921462 0,5e-7 0,9e-7 0,1.2e-6 0.253803,1.4045421 -0.08731,2.4598708 -0.423233,4.2547091 -0.1071,0.6171722 -0.190921,1.2932854 -0.107322,1.9268124 0.07855,0.574346 0.279537,1.173435 0.670904,1.582435 0.407589,0.4669 1.075125,0.733533 1.818286,0.865813 0.711198,0.118453 1.457177,0.07073 2.326182,0.04599 0.797356,-0.03241 1.705215,-0.03594 2.630525,0.197847 0.449755,0.116245 0.902536,0.302919 1.325376,0.578722 0.415212,0.270422 0.78857,0.637679 1.068328,1.095172 0.489409,0.873882 0.587863,1.808404 0.578161,2.641198 0.02755,0.783307 -0.0046,1.523017 0.235486,2.058791 0.120426,0.312863 0.388094,0.702492 0.59225,1.268599 0,0 10e-7,3e-6 10e-7,3e-6 0.102699,0.281414 0.160174,0.612019 0.139646,0.977901 0,0 0,5e-6 0,5e-6 -0.01921,0.37066 -0.165537,0.750422 -0.449542,1.082008 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.251487,0.258582 -0.521328,0.422296 -0.772495,0.508671 -0.244285,0.09171 -0.44807,0.142594 -0.602608,0.188769 -0.416848,0.123716 -0.880822,0.353061 -1.447451,0.542963 -0.602714,0.198154 -1.213325,0.309647 -1.813943,0.371474 -0.558937,0.06237 -1.068075,0.07884 -1.480439,0.188202 0,0 -3e-6,0 -3e-6,0 -0.512991,0.118629 -1.023672,0.400472 -1.554181,0.732737 -0.243693,0.156176 -0.489303,0.326534 -0.745951,0.503094 -0.294257,0.202433 -0.59807,0.409546 -0.923452,0.608224 -0.613979,0.382424 -1.315838,0.705209 -2.106158,0.85116 -0.812424,0.154186 -1.698267,0.03456 -2.470116,-0.423282 0,0 -3e-6,-2e-6 -3e-6,-2e-6 -0.479626,-0.303546 -0.854671,-0.71626 -1.111123,-1.179483 -0.258315,-0.466155 -0.409984,-0.963228 -0.473334,-1.453686 -0.119886,-0.99416 0.04167,-1.92983 0.261281,-2.750787 0.217079,-0.860988 0.464138,-1.596503 0.559273,-2.329323 0.08462,-0.740235 0.05965,-1.452982 -0.23573,-1.985203 C 15.521381,17.210967 15.233594,16.905047 14.902134,16.659694 14.559937,16.407098 14.151063,16.22446 13.724447,16.09062 12.846389,15.810108 11.814263,15.77953 10.82982,15.723838 9.7306804,15.67569 8.6527019,15.584783 7.5986186,15.205103 7.0432476,15.002158 6.5260142,14.710683 6.0818789,14.329961 5.6112628,13.927031 5.2476843,13.420561 5.0314672,12.85801 4.7877432,12.195105 4.761209,11.519553 4.8475124,10.921276 4.9388441,10.274949 5.1390918,9.684365 5.3438779,9.174306 5.8890972,7.7765358 6.3060907,7.0938299 6.4019704,6.057107 c 0,0 -4e-7,-1e-6 -4e-7,-1e-6 C 6.6129894,4.0430711 5.4875466,3.0207433 5.5735751,2.9386003 5.3906164,3.1132957 7.0941045,3.3548392 7.0673838,6.0925005 c -5e-7,1e-7 0,1.3e-6 0,1.3e-6 -0.023181,1.1753695 -0.410193,2.0547063 -0.8619424,3.395438 -0.1600345,0.4920583 -0.3117496,1.0247062 -0.3526849,1.5470612 -0.03576,0.480432 0.00195,0.988795 0.1942423,1.417257 0.1559706,0.368962 0.4311045,0.70848 0.7777798,0.987895 0.3299592,0.265562 0.7330395,0.467253 1.1779826,0.616234 0.8488329,0.289767 1.7896974,0.319179 2.8751758,0.350868 0.975705,0.01595 2.108893,0.0331 3.240061,0.34198 0.548706,0.152307 1.101448,0.390645 1.611825,0.741941 0.499342,0.343118 0.943111,0.808231 1.257631,1.384147 0.466759,0.910669 0.564956,1.921828 0.434074,2.859656 -0.11609,0.91186 -0.364374,1.712733 -0.559513,2.508741 -0.173381,0.758715 -0.314851,1.504445 -0.205473,2.165565 0.04957,0.324717 0.142281,0.63552 0.294058,0.894029 0.149035,0.253305 0.346284,0.47592 0.574542,0.61039 0,0 2e-6,1e-6 2e-6,1e-6 0.34609,0.233904 0.86253,0.276263 1.366975,0.201459 0.507919,-0.07981 1.022598,-0.33451 1.550024,-0.646908 0.277909,-0.168571 0.556455,-0.359705 0.847992,-0.560502 0.254288,-0.175142 0.514783,-0.355054 0.79023,-0.531516 0.59475,-0.388743 1.267081,-0.737942 2.034051,-0.934216 0,0 3e-6,-1e-6 3e-6,-1e-6 0.62569,-0.146019 1.205232,-0.172332 1.696517,-0.219079 0.526775,-0.0553 1.027145,-0.13949 1.485705,-0.290862 0.433011,-0.139325 0.915141,-0.37012 1.491939,-0.543869 0.213029,-0.06386 0.380724,-0.100566 0.492593,-0.145644 0.106497,-0.051 0.180148,-0.07779 0.18514,-0.100738 0,0 0,0 0,0 0.0239,-0.0064 0.04121,-0.07922 0.05783,-0.160852 0,0 0,-1e-6 0,-1e-6 0.01558,-0.08989 -0.01357,-0.2173 -0.05599,-0.365734 0,0 0,-2e-6 0,-2e-6 -0.08972,-0.304357 -0.347064,-0.681695 -0.552986,-1.211935 -0.330256,-0.937994 -0.315802,-1.845585 -0.301407,-2.593206 -0.02352,-0.777929 -0.03253,-1.460616 -0.334004,-1.922863 -0.140842,-0.25317 -0.363935,-0.476432 -0.619388,-0.656997 -0.262761,-0.18523 -0.57591,-0.319479 -0.904629,-0.417011 -0.6757,-0.205811 -1.463643,-0.211533 -2.240389,-0.214417 -0.84922,0.0075 -1.688465,0.0219 -2.567541,-0.142631 -0.943457,-0.167884 -1.832633,-0.608938 -2.463448,-1.330381 -0.559692,-0.679449 -0.807166,-1.491712 -0.855845,-2.234396 -0.05562,-0.807808 0.07374,-1.5699207 0.232573,-2.2211656 0.438398,-1.8984171 0.851232,-2.6887798 0.718021,-3.9706842 0,0 -10e-7,-1e-6 -10e-7,-1e-6 C 19.413923,2.8729565 18.347533,2.1029091 18.419696,2.0165691 Z"
+         style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:tile-cx="17.2007"
+         inkscape:tile-cy="13.863643"
+         inkscape:tile-w="29.170415"
+         inkscape:tile-h="22.894687"
+         inkscape:tile-x0="2.6154919"
+         inkscape:tile-y0="2.4163"
+         inkscape:connector-curvature="0" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+         x="-1.8505859"
+         y="1.1226861"
+         id="text4678-92"><tspan
+           sodipodi:role="line"
+           id="tspan4680-67"
+           x="-1.8505859"
+           y="1.1226861"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="4.8064709"
+           id="tspan4682-56"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="8.4902554"
+           id="tspan4684-31"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="12.17404"
+           id="tspan4686-7"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="15.857824"
+           id="tspan4688-95"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="19.541609"
+           id="tspan4690-28"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="23.225393"
+           id="tspan4692-92"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="26.909178"
+           id="tspan4694-82"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="30.592962"
+           id="tspan4696-05"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="34.276745"
+           id="tspan4700-41"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="37.960529"
+           id="tspan4704-00"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="41.644314"
+           id="tspan4706-253"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="45.328098"
+           id="tspan4708-623"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="49.011883"
+           id="tspan4710-97"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="52.695667"
+           id="tspan4712-51"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="56.379452"
+           id="tspan4714-4"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="60.063236"
+           id="tspan4716-28"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="63.747021"
+           id="tspan4718-28"
+           style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+           sodipodi:role="line"
+           x="-1.8505859"
+           y="67.430809"
+           id="tspan4720-29"
+           style="font-size:1.67107606px;line-height:1">19</tspan></text>
+    </g>
+    <g
+       id="g5108"
+       transform="matrix(0.5329189,0.7036701,-0.46801118,0.35094948,9.2648366,-91.23184)"
+       inkscape:transform-center-x="-23.388125"
+       inkscape:transform-center-y="30.757243"
+       sodipodi:insensitive="true">
+      <path
+         sodipodi:nodetypes="csssssssssssssssssssssssssssssssssssssssssssc"
+         id="path4262-3"
+         d="m -16.60364,6.2810478 c 0.590124,-0.020904 1.180018,0.1388967 1.700228,0.4182996 0.520209,0.279403 0.972693,0.6753944 1.3526,1.1274501 0.759815,0.9041112 1.225042,2.0133113 1.67259,3.1062135 0.447549,1.092903 0.898701,2.205725 1.637197,3.127332 0.3692484,0.460803 0.809495,0.869419 1.3196002,1.166869 0.5101054,0.29745 1.0921221,0.480989 1.6825792,0.487659 0.5907075,0.0067 1.1770246,-0.163847 1.6936123,-0.450408 0.5165878,-0.28656 0.9653985,-0.686363 1.343286,-1.140435 0.7557745,-0.908143 1.2238827,-2.015323 1.679683,-3.105353 0.4558005,-1.0900308 0.9202691,-2.1981806 1.67052935,-3.1108853 0.3751302,-0.4563523 0.8207752,-0.8594368 1.33473827,-1.1506791 C 0.99696637,6.4658683 1.5812227,6.2892007 2.1719678,6.2887175 c 0.5865945,-4.84e-4 1.1671435,0.1727435 1.6789313,0.4593902 0.5117881,0.286647 0.9567233,0.6840558 1.332279,1.1346679 0.7511113,0.901224 1.2208138,1.9979198 1.6795215,3.0777164 0.4587076,1.079796 0.9269521,2.176892 1.6758525,3.079954 0.3744504,0.451531 0.8181159,0.85026 1.3288466,1.138786 0.5107303,0.288526 1.0904443,0.464215 1.6770333,0.466611 0.585926,0.0024 1.166419,-0.168165 1.679039,-0.451954 0.51262,-0.283788 0.959249,-0.678169 1.337177,-1.125925 0.755858,-0.895511 1.232937,-1.987376 1.6993,-3.062442 0.466362,-1.0750658 0.942646,-2.1671559 1.697301,-3.0636805 0.377327,-0.4482623 0.823267,-0.843369 1.335315,-1.1281886 0.512047,-0.2848197 1.09209,-0.4567278 1.678021,-0.4559074 0.58664,8.191e-4 1.166884,0.1747776 1.678572,0.4616933 0.51169,0.2869159 0.956726,0.6841596 1.332769,1.1344232 0.752088,0.9005273 1.224342,1.9959914 1.68667,3.07434 0.46233,1.078349 0.935312,2.173611 1.688502,3.073216 0.376596,0.449803 0.822265,0.846385 1.33448,1.132361 0.512215,0.285975 1.092874,0.458698 1.679514,0.458082 0.585871,-6.14e-4 1.165443,-0.174104 1.676495,-0.460585 0.511051,-0.286481 0.955464,-0.683326 1.330614,-1.133335 0.750297,-0.900019 1.219576,-1.995375 1.675655,-3.074714 0.456081,-1.0793388 0.91909,-2.1764042 1.659847,-3.0842913 0.370381,-0.4539437 0.809308,-0.8564372 1.315759,-1.1509723 0.506454,-0.2945351 1.082349,-0.4785961 1.668077,-0.4915761 0.583815,-0.012938 1.16555,0.1443928 1.682757,0.4155056 0.517209,0.2711127 0.971589,0.6534367 1.358151,1.0911301 0.773129,0.8753869 1.270167,1.9548721 1.741726,3.023357 0.471562,1.068484 0.936918,2.157275 1.661711,3.073083 0.362394,0.457904 0.788948,0.869071 1.282544,1.181111 0.493598,0.31204 1.056094,0.522921 1.637906,0.572938 0.573123,0.04927 1.159063,-0.05993 1.675966,-0.312336 0.516902,-0.252409 0.963321,-0.647326 1.276896,-1.129581"
+         style="fill:none;stroke:#000000;stroke-width:0.1391639;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         inkscape:connector-curvature="0" />
+      <path
+         inkscape:original-d="m -21.162512,10.868532 93.832023,0"
+         inkscape:path-effect="#path-effect4269-6"
+         id="path4267-6"
+         d="M -21.162512,10.868532 H 72.669511"
+         style="fill:none;stroke:#000000;stroke-width:0.1391639;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         inkscape:connector-curvature="0" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="stars"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <g
+       transform="translate(3.8429468e-8,0.02377623)"
+       style="display:inline"
+       id="g6189"
+       inkscape:tile-cx="10.123105"
+       inkscape:tile-cy="3.702524"
+       inkscape:tile-w="17.591285"
+       inkscape:tile-h="4.491048"
+       inkscape:tile-x0="1.3274627"
+       inkscape:tile-y0="1.457">
+      <g
+         transform="matrix(0.80627991,-0.5915342,0.5915342,0.80627991,-44.146519,32.256031)"
+         id="g6068">
+        <path
+           sodipodi:type="star"
+           style="fill:#ff0909;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5095"
+           sodipodi:sides="19"
+           sodipodi:cx="46.05555"
+           sodipodi:cy="4.6531157"
+           sodipodi:r1="1.7614504"
+           sodipodi:r2="0.81724387"
+           sodipodi:arg1="-0.78539816"
+           sodipodi:arg2="-0.62005118"
+           inkscape:flatsided="false"
+           inkscape:rounded="0"
+           inkscape:randomized="0"
+           d="m 47.301083,3.4075822 -0.58042,0.7706521 0.917358,-0.2987416 -0.799202,0.5404338 0.964654,0.015311 -0.931378,0.251651 0.907416,0.3277041 -0.962624,-0.064402 0.751844,0.6045855 -0.889556,-0.3734761 0.514799,0.8159507 -0.720089,-0.6420782 0.221966,0.938895 -0.47259,-0.8411012 -0.09492,0.9600954 -0.173879,-0.9489778 -0.401519,0.8772545 0.143675,-0.9540179 -0.664607,0.6993496 0.445659,-0.8556755 -0.855676,0.4456593 0.69935,-0.6646072 -0.954018,0.1436749 0.877255,-0.4015186 -0.948978,-0.1738789 0.960095,-0.094919 -0.841101,-0.4725903 0.938895,0.2219663 -0.642078,-0.7200891 0.815951,0.5147983 -0.373477,-0.8895552 0.604586,0.7518438 -0.0644,-0.962624 0.327704,0.9074154 0.251651,-0.9313777 0.01531,0.9646545 0.540434,-0.7992022 -0.298742,0.9173583 z"
+           transform="matrix(1.5163171,0,0,0.05200206,-14.577881,5.4172698)" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="57.860878"
+           y="5.7448378"
+           id="text5953"><tspan
+             sodipodi:role="line"
+             id="tspan5955"
+             x="57.860878"
+             y="5.7448378"
+             style="font-size:0.31635901px;line-height:1">1</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="57.793228"
+           y="5.9037013"
+           id="text5957"><tspan
+             sodipodi:role="line"
+             id="tspan5959"
+             x="57.793228"
+             y="5.9037013"
+             style="font-size:0.31635901px;line-height:1">2</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="57.462807"
+           y="5.9292879"
+           id="text5961"><tspan
+             sodipodi:role="line"
+             id="tspan5963"
+             x="57.462807"
+             y="5.9292879"
+             style="font-size:0.31635901px;line-height:1">3</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="56.864819"
+           y="5.9478998"
+           id="text5965"><tspan
+             sodipodi:role="line"
+             id="tspan5967"
+             x="56.864819"
+             y="5.9478998"
+             style="font-size:0.31635901px;line-height:1">4</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="56.139133"
+           y="5.9642158"
+           id="text5969"><tspan
+             sodipodi:role="line"
+             id="tspan5971"
+             x="56.139133"
+             y="5.9642158"
+             style="font-size:0.31635901px;line-height:1">5</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="55.279285"
+           y="5.9711914"
+           id="text5973"><tspan
+             sodipodi:role="line"
+             id="tspan5975"
+             x="55.279285"
+             y="5.9711914"
+             style="font-size:0.31635901px;line-height:1">6</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="54.412022"
+           y="5.9634032"
+           id="text5977"><tspan
+             sodipodi:role="line"
+             id="tspan5979"
+             x="54.412022"
+             y="5.9634032"
+             style="font-size:0.31635901px;line-height:1">7</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="53.634026"
+           y="5.9554682"
+           id="text5981"><tspan
+             sodipodi:role="line"
+             id="tspan5983"
+             x="53.634026"
+             y="5.9554682"
+             style="font-size:0.31635901px;line-height:1">8</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="53.014366"
+           y="5.9374967"
+           id="text5985"><tspan
+             sodipodi:role="line"
+             id="tspan5987"
+             x="53.014366"
+             y="5.9374967"
+             style="font-size:0.31635901px;line-height:1">9</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="52.5313"
+           y="5.9098005"
+           id="text5989"><tspan
+             sodipodi:role="line"
+             id="tspan5991"
+             x="52.5313"
+             y="5.9098005"
+             style="font-size:0.31635901px;line-height:1">10</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="52.310688"
+           y="5.7640057"
+           id="text5993"><tspan
+             sodipodi:role="line"
+             id="tspan5995"
+             x="52.310688"
+             y="5.7640057"
+             style="font-size:0.31635901px;line-height:1">11</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="52.615913"
+           y="5.624907"
+           id="text5997"><tspan
+             sodipodi:role="line"
+             id="tspan5999"
+             x="52.615913"
+             y="5.624907"
+             style="font-size:0.31635901px;line-height:1">12</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="53.077099"
+           y="5.5961151"
+           id="text6001"><tspan
+             sodipodi:role="line"
+             id="tspan6003"
+             x="53.077099"
+             y="5.5961151"
+             style="font-size:0.31635901px;line-height:1">13</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="53.70874"
+           y="5.5792313"
+           id="text6005"><tspan
+             sodipodi:role="line"
+             id="tspan6007"
+             x="53.70874"
+             y="5.5792313"
+             style="font-size:0.31635901px;line-height:1">14</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="54.531425"
+           y="5.5684533"
+           id="text6009"><tspan
+             sodipodi:role="line"
+             id="tspan6011"
+             x="54.531425"
+             y="5.5684533"
+             style="font-size:0.31635901px;line-height:1">15</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="55.400852"
+           y="5.5684304"
+           id="text6013"><tspan
+             sodipodi:role="line"
+             id="tspan6015"
+             x="55.400852"
+             y="5.5684304"
+             style="font-size:0.31635901px;line-height:1">16</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="56.246353"
+           y="5.5734482"
+           id="text6017"><tspan
+             sodipodi:role="line"
+             id="tspan6019"
+             x="56.246353"
+             y="5.5734482"
+             style="font-size:0.31635901px;line-height:1">17</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="56.957752"
+           y="5.5878391"
+           id="text6021"><tspan
+             sodipodi:role="line"
+             id="tspan6023"
+             x="56.957752"
+             y="5.5878391"
+             style="font-size:0.31635901px;line-height:1">18</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="57.465813"
+           y="5.608417"
+           id="text6025"><tspan
+             sodipodi:role="line"
+             id="tspan6027"
+             x="57.465813"
+             y="5.608417"
+             style="font-size:0.31635901px;line-height:1">19</tspan></text>
+      </g>
+      <g
+         id="g6109"
+         transform="matrix(0.80627991,-0.5915342,0.5915342,0.80627991,-31.30266,31.326134)">
+        <path
+           transform="matrix(1.5163171,0,0,0.05200206,-14.577881,5.4172698)"
+           d="m 47.301083,3.4075822 -0.58042,0.7706521 0.917358,-0.2987416 -0.799202,0.5404338 0.964654,0.015311 -0.931378,0.251651 0.907416,0.3277041 -0.962624,-0.064402 0.751844,0.6045855 -0.889556,-0.3734761 0.514799,0.8159507 -0.720089,-0.6420782 0.221966,0.938895 -0.47259,-0.8411012 -0.09492,0.9600954 -0.173879,-0.9489778 -0.401519,0.8772545 0.143675,-0.9540179 -0.664607,0.6993496 0.445659,-0.8556755 -0.855676,0.4456593 0.69935,-0.6646072 -0.954018,0.1436749 0.877255,-0.4015186 -0.948978,-0.1738789 0.960095,-0.094919 -0.841101,-0.4725903 0.938895,0.2219663 -0.642078,-0.7200891 0.815951,0.5147983 -0.373477,-0.8895552 0.604586,0.7518438 -0.0644,-0.962624 0.327704,0.9074154 0.251651,-0.9313777 0.01531,0.9646545 0.540434,-0.7992022 -0.298742,0.9173583 z"
+           inkscape:randomized="0"
+           inkscape:rounded="0"
+           inkscape:flatsided="false"
+           sodipodi:arg2="-0.62005118"
+           sodipodi:arg1="-0.78539816"
+           sodipodi:r2="0.81724387"
+           sodipodi:r1="1.7614504"
+           sodipodi:cy="4.6531157"
+           sodipodi:cx="46.05555"
+           sodipodi:sides="19"
+           id="path6111"
+           style="fill:#ff0909;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           sodipodi:type="star" />
+        <text
+           id="text6113"
+           y="5.7448378"
+           x="57.860878"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.7448378"
+             x="57.860878"
+             id="tspan6115"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">1</tspan></text>
+        <text
+           id="text6117"
+           y="5.9037013"
+           x="57.793228"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.9037013"
+             x="57.793228"
+             id="tspan6119"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">2</tspan></text>
+        <text
+           id="text6121"
+           y="5.9292879"
+           x="57.462807"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.9292879"
+             x="57.462807"
+             id="tspan6123"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">3</tspan></text>
+        <text
+           id="text6125"
+           y="5.9478998"
+           x="56.864819"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.9478998"
+             x="56.864819"
+             id="tspan6127"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">4</tspan></text>
+        <text
+           id="text6129"
+           y="5.9642158"
+           x="56.139133"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.9642158"
+             x="56.139133"
+             id="tspan6131"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">5</tspan></text>
+        <text
+           id="text6133"
+           y="5.9711914"
+           x="55.279285"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.9711914"
+             x="55.279285"
+             id="tspan6135"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">6</tspan></text>
+        <text
+           id="text6137"
+           y="5.9634032"
+           x="54.412022"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.9634032"
+             x="54.412022"
+             id="tspan6139"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">7</tspan></text>
+        <text
+           id="text6141"
+           y="5.9554682"
+           x="53.634026"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.9554682"
+             x="53.634026"
+             id="tspan6143"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">8</tspan></text>
+        <text
+           id="text6145"
+           y="5.9374967"
+           x="53.014366"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.9374967"
+             x="53.014366"
+             id="tspan6147"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">9</tspan></text>
+        <text
+           id="text6149"
+           y="5.9098005"
+           x="52.5313"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.9098005"
+             x="52.5313"
+             id="tspan6151"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">10</tspan></text>
+        <text
+           id="text6153"
+           y="5.7640057"
+           x="52.310688"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.7640057"
+             x="52.310688"
+             id="tspan6155"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">11</tspan></text>
+        <text
+           id="text6157"
+           y="5.624907"
+           x="52.615913"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.624907"
+             x="52.615913"
+             id="tspan6159"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">12</tspan></text>
+        <text
+           id="text6161"
+           y="5.5961151"
+           x="53.077099"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.5961151"
+             x="53.077099"
+             id="tspan6163"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">13</tspan></text>
+        <text
+           id="text6165"
+           y="5.5792313"
+           x="53.70874"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.5792313"
+             x="53.70874"
+             id="tspan6167"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">14</tspan></text>
+        <text
+           id="text6169"
+           y="5.5684533"
+           x="54.531425"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.5684533"
+             x="54.531425"
+             id="tspan6171"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">15</tspan></text>
+        <text
+           id="text6173"
+           y="5.5684304"
+           x="55.400852"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.5684304"
+             x="55.400852"
+             id="tspan6175"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">16</tspan></text>
+        <text
+           id="text6177"
+           y="5.5734482"
+           x="56.246353"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.5734482"
+             x="56.246353"
+             id="tspan6179"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">17</tspan></text>
+        <text
+           id="text6181"
+           y="5.5878391"
+           x="56.957752"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.5878391"
+             x="56.957752"
+             id="tspan6183"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">18</tspan></text>
+        <text
+           id="text6185"
+           y="5.608417"
+           x="57.465813"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="5.608417"
+             x="57.465813"
+             id="tspan6187"
+             sodipodi:role="line"
+             style="font-size:0.31635901px;line-height:1">19</tspan></text>
+      </g>
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       id="use6786"
+       transform="translate(0,31.993086)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,64.007624)"
+       id="use6788"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,95.980296)"
+       id="use6790"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,127.99068)"
+       id="use6792"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,160.01078)"
+       id="use6794"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,191.99699)"
+       id="use6796"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,223.98886)"
+       id="use6798"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,255.996)"
+       id="use6800"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,288.00315)"
+       id="use6802"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,320.01029)"
+       id="use6804"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,352.00253)"
+       id="use6806"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,384.00967)"
+       id="use6808"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,416.01681)"
+       id="use6810"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,448.00869)"
+       id="use6812"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,480.00093)"
+       id="use6814"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,512.00807)"
+       id="use6816"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,544.01521)"
+       id="use6818"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6189"
+       xlink:href="#g6189"
+       transform="translate(0,576.02235)"
+       id="use6820"
+       width="32"
+       height="1024" />
+    <g
+       style="display:inline"
+       transform="translate(43.000503,0.33260784)"
+       id="g7127-2">
+      <path
+         transform="matrix(0.13249014,-0.07444828,0.03695462,0.06576543,10.295951,-1.187137)"
+         d="m -41.179226,30.784427 -8.013063,-5.225872 3.570117,8.875426 -5.882055,-7.544558 0.494832,9.553746 -3.113636,-9.045672 -2.634075,9.196769 -0.0078,-9.566549 -5.47754,7.84318 3.098871,-9.050741 -7.727428,5.63966 5.869736,-7.554145 -9.139929,2.824997 8.004525,-5.238941 -9.561978,-0.2958 9.271899,-2.356015 -8.947837,-3.384542 9.534519,0.782221 -7.36406,-6.106516 8.763925,3.835691 -4.982272,-8.1667543 7.043625,6.4735053 -2.060578,-9.3419989 4.560038,8.4098139 1.084412,-9.5048919 1.5823,9.4347889 4.111889,-8.6377826 -1.566904,9.4373586 6.693779,-6.8346361 -4.54631,8.4172431 8.550294,-4.2908497 -7.033053,6.4849897 9.480252,-1.282084 -8.757655,3.849986 9.382878,1.865616 -9.53323,0.797777 8.268724,4.811147 -9.275732,-2.340883 z"
+         inkscape:randomized="0"
+         inkscape:rounded="0"
+         inkscape:flatsided="false"
+         sodipodi:arg2="0.88312631"
+         sodipodi:arg1="0.71777933"
+         sodipodi:r2="8.1036491"
+         sodipodi:r1="17.466238"
+         sodipodi:cy="19.296646"
+         sodipodi:cx="-54.335987"
+         sodipodi:sides="19"
+         id="path4149-2"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="star" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="6.1918035"
+         y="2.9261479"
+         id="text7051-6"><tspan
+           sodipodi:role="line"
+           id="tspan7053-9"
+           x="6.1918035"
+           y="2.9261479"
+           style="font-size:0.31635901px;line-height:1">1</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="6.2427325"
+         y="3.4306412"
+         id="text7055-1"><tspan
+           sodipodi:role="line"
+           id="tspan7057-0"
+           x="6.2427325"
+           y="3.4306412"
+           style="font-size:0.31635901px;line-height:1">2</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="6.1257315"
+         y="3.9896243"
+         id="text7059-4"><tspan
+           sodipodi:role="line"
+           id="tspan7061-2"
+           x="6.1257315"
+           y="3.9896243"
+           style="font-size:0.31635901px;line-height:1">3</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="5.5692372"
+         y="4.6361365"
+         id="text7063-7"><tspan
+           sodipodi:role="line"
+           id="tspan7065-4"
+           x="5.5692372"
+           y="4.6361365"
+           style="font-size:0.31635901px;line-height:1">4</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="4.9228697"
+         y="5.2599058"
+         id="text7067-0"><tspan
+           sodipodi:role="line"
+           id="tspan7069-3"
+           x="4.9228697"
+           y="5.2599058"
+           style="font-size:0.31635901px;line-height:1">5</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="4.0882206"
+         y="5.7588506"
+         id="text7071-2"><tspan
+           sodipodi:role="line"
+           id="tspan7073-8"
+           x="4.0882206"
+           y="5.7588506"
+           style="font-size:0.31635901px;line-height:1">6</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="3.2360754"
+         y="6.0328469"
+         id="text7075-0"><tspan
+           sodipodi:role="line"
+           id="tspan7077-3"
+           x="3.2360754"
+           y="6.0328469"
+           style="font-size:0.31635901px;line-height:1">7</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="2.4538076"
+         y="6.1123772"
+         id="text7079-7"><tspan
+           sodipodi:role="line"
+           id="tspan7081-0"
+           x="2.4538076"
+           y="6.1123772"
+           style="font-size:0.31635901px;line-height:1">8</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="1.8196442"
+         y="6.0287499"
+         id="text7083-0"><tspan
+           sodipodi:role="line"
+           id="tspan7085-3"
+           x="1.8196442"
+           y="6.0287499"
+           style="font-size:0.31635901px;line-height:1">9</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="1.1561428"
+         y="5.7837977"
+         id="text7087-4"><tspan
+           sodipodi:role="line"
+           id="tspan7089-9"
+           x="1.1561428"
+           y="5.7837977"
+           style="font-size:0.31635901px;line-height:1">10</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="1.0805029"
+         y="5.2730513"
+         id="text7091-2"><tspan
+           sodipodi:role="line"
+           id="tspan7093-7"
+           x="1.0805029"
+           y="5.2730513"
+           style="font-size:0.31635901px;line-height:1">11</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="1.1297529"
+         y="4.728075"
+         id="text7095-4"><tspan
+           sodipodi:role="line"
+           id="tspan7097-2"
+           x="1.1297529"
+           y="4.728075"
+           style="font-size:0.31635901px;line-height:1">12</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="1.4221509"
+         y="4.1372485"
+         id="text7099-5"><tspan
+           sodipodi:role="line"
+           id="tspan7101-2"
+           x="1.4221509"
+           y="4.1372485"
+           style="font-size:0.31635901px;line-height:1">13</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="1.9831048"
+         y="3.5422289"
+         id="text7103-4"><tspan
+           sodipodi:role="line"
+           id="tspan7105-4"
+           x="1.9831048"
+           y="3.5422289"
+           style="font-size:0.31635901px;line-height:1">14</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="2.7626455"
+         y="2.9782231"
+         id="text7107-3"><tspan
+           sodipodi:role="line"
+           id="tspan7109-8"
+           x="2.7626455"
+           y="2.9782231"
+           style="font-size:0.31635901px;line-height:1">15</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="3.6432242"
+         y="2.569711"
+         id="text7111-6"><tspan
+           sodipodi:role="line"
+           id="tspan7113-0"
+           x="3.6432242"
+           y="2.569711"
+           style="font-size:0.31635901px;line-height:1">16</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="4.5046115"
+         y="2.4290659"
+         id="text7115-8"><tspan
+           sodipodi:role="line"
+           id="tspan7117-9"
+           x="4.5046115"
+           y="2.4290659"
+           style="font-size:0.31635901px;line-height:1">17</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="5.2278433"
+         y="2.3714876"
+         id="text7119-2"><tspan
+           sodipodi:role="line"
+           id="tspan7121-2"
+           x="5.2278433"
+           y="2.3714876"
+           style="font-size:0.31635901px;line-height:1">18</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         x="5.8262777"
+         y="2.5514946"
+         id="text7123-3"><tspan
+           sodipodi:role="line"
+           id="tspan7125-1"
+           x="5.8262777"
+           y="2.5514946"
+           style="font-size:0.31635901px;line-height:1">19</tspan></text>
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="dragon-whiskers"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <g
+       style="display:inline"
+       id="g9952-2"
+       clip-path="url(#clipPath12195)">
+      <g
+         transform="translate(3.2788765e-8,0.01251397)"
+         inkscape:tile-y0="-0.012513974"
+         inkscape:tile-x0="-1.4532307e-15"
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="15.992678"
+         inkscape:tile-cx="16"
+         id="g5028-3-0"
+         style="display:inline">
+        <path
+           transform="translate(4.322867e-8,-0.3124032)"
+           clip-path="none"
+           sodipodi:nodetypes="cssssssssssssss"
+           inkscape:original-d="m 5.8911215,2.781365 c 0,0 -0.8348177,0.8317157 0.7082092,1.4190414 1.45782,0.5548931 -2.0507092,6.3805656 -1.0501232,7.5772156 1.11093,1.328615 8.9376865,1.947494 9.9051145,3.982872 0.736185,1.551525 -0.537674,8.973847 1.027097,9.681445 1.054823,0.476997 6.881836,-1.902914 7.822781,-1.22853 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.375071,-1.163553 -0.894982,-2.865262 C 28.138619,18.451419 28.740954,16.47 28.558452,14.799064 28.38575,13.217854 20.411122,12.668966 19.551262,11.330799 18.866509,10.265145 20.652473,3.597478 19.491742,3.0903262 18.624856,2.7115634 18.769092,1.9159685 18.769092,1.9159685"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           id="path4713-8-9"
+           d="m 18.769071,1.9159464 c 0.01479,-0.014132 0.527396,0.1854024 0.928078,1.1015917 0.240848,0.5573876 0.375243,1.2879783 0.297022,2.2041333 -0.05823,0.7136836 -0.197095,1.3138235 -0.357741,2.1236792 0,-10e-8 0,1.4e-6 0,1.4e-6 -0.118944,0.6163592 -0.243895,1.3227928 -0.204542,1.9832916 0.03853,0.5898304 0.189503,1.2257224 0.557918,1.6815764 0.380963,0.516971 1.048566,0.847284 1.812216,1.036367 0.723166,0.1709 1.487931,0.169079 2.387049,0.197604 0.814949,0.01605 1.747345,0.06672 2.680072,0.366003 0.451557,0.147572 0.902155,0.368202 1.315298,0.67965 0,0 3e-6,2e-6 3e-6,2e-6 0.404662,0.304631 0.759577,0.70674 1.009963,1.195636 0.238243,0.486977 0.355143,0.998111 0.388626,1.491469 0.03582,0.482503 0.01583,0.93535 -0.0063,1.36504 -0.01826,0.417506 -0.03873,0.814667 -0.005,1.173543 0.03619,0.351507 0.102974,0.68225 0.245367,0.939471 0.15999,0.333498 0.556673,0.708256 0.905405,1.318051 0.177259,0.301129 0.306689,0.674675 0.336694,1.10652 0.03238,0.440283 -0.11028,0.906089 -0.446463,1.305475 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.251948,0.259507 -0.522315,0.423619 -0.773857,0.509919 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.244591,0.09171 -0.448307,0.142431 -0.602438,0.188506 -0.415682,0.123359 -0.879899,0.353943 -1.449359,0.543404 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.605987,0.196983 -1.213578,0.303722 -1.80488,0.369867 -0.549738,0.06509 -1.067623,0.09725 -1.515365,0.194927 -0.673992,0.129747 -1.342919,0.435463 -2.073625,0.775876 -0.533038,0.248326 -1.083581,0.507378 -1.681045,0.723103 -0.715133,0.266354 -1.500445,0.442062 -2.327838,0.425389 -0.850113,-0.01423 -1.712487,-0.297732 -2.411357,-0.874233 -0.423505,-0.365892 -0.741182,-0.813596 -0.951507,-1.291945 -0.212552,-0.482534 -0.329545,-0.982631 -0.372448,-1.470746 -0.08105,-0.990863 0.07769,-1.920782 0.262279,-2.74743 0.182257,-0.868441 0.378584,-1.63214 0.406179,-2.37579 0.01836,-0.756561 -0.08971,-1.47968 -0.453167,-1.989253 -0.377417,-0.608535 -1.131617,-0.99542 -1.887641,-1.223716 C 12.17277,14.710688 11.23587,14.675165 10.345334,14.612212 9.3502893,14.553301 8.3746475,14.447633 7.4248602,14.095466 6.924042,13.907204 6.4568393,13.643636 6.0511318,13.304028 5.6215991,12.94491 5.2815711,12.497471 5.0637243,11.998176 4.7490325,11.242376 4.7323096,10.461069 4.8491275,9.7940786 4.9748189,9.0580351 5.236902,8.3870736 5.4709451,7.8348584 c 0,0 6e-7,-1.4e-6 6e-7,-1.4e-6 C 5.7704926,7.1184238 5.9953912,6.6377533 6.1721073,6.0530496 6.3874068,5.3305738 6.4397155,4.7541695 6.3706277,4.2484012 6.2454493,3.2908178 5.8299326,2.8349194 5.8911215,2.781365 c -0.00107,9.384e-4 0.6189999,0.2350177 0.9369122,1.3710466 0.1549137,0.5639684 0.18224,1.2562767 0.00865,2.0689015 -0.1356033,0.6464412 -0.3369164,1.2009982 -0.579824,1.9120538 -10e-8,4e-7 -3e-7,9e-7 -4e-7,1.4e-6 -0.1861327,0.5539157 -0.3915665,1.185201 -0.4529722,1.7934991 -0.052154,0.5475656 -0.017136,1.1473906 0.230803,1.6302006 0.1569344,0.325663 0.4127014,0.622852 0.7291095,0.869741 0.3011018,0.234609 0.6638135,0.415158 1.0636688,0.551475 0.7616895,0.264571 1.608172,0.309251 2.582564,0.349543 0.874663,0.02598 1.893151,0.04467 2.914868,0.293456 0.986875,0.231002 2.016087,0.77132 2.71953,1.733054 0.579434,0.860343 0.796958,1.878312 0.753494,2.854403 -0.03246,0.939184 -0.226606,1.794996 -0.397727,2.631562 -0.151995,0.797299 -0.291469,1.579987 -0.207606,2.289037 0.03825,0.3483 0.116355,0.684666 0.253642,0.978325 0.13517,0.288206 0.317976,0.549886 0.543727,0.734399 0.350512,0.313109 0.887535,0.46479 1.438558,0.489731 0.550939,0.02186 1.138397,-0.124878 1.73979,-0.337071 0.501767,-0.183841 1.008457,-0.427512 1.55282,-0.678156 0.746267,-0.343609 1.532183,-0.684887 2.420529,-0.881429 0.597703,-0.120654 1.163182,-0.158339 1.661598,-0.212355 0.53521,-0.06186 1.038383,-0.14235 1.494767,-0.292469 0,0 2e-6,-10e-7 2e-6,-10e-7 0.430991,-0.13741 0.912143,-0.369166 1.490025,-0.543426 0.21346,-0.06404 0.381275,-0.100679 0.492913,-0.145655 0,0 2e-6,-1e-6 2e-6,-1e-6 0.106195,-0.05097 0.179412,-0.0774 0.183619,-0.09973 0,0 0,-1e-6 0,-1e-6 0.02934,-0.0028 0.04343,-0.09935 0.05312,-0.196975 0.0071,-0.111202 -0.05564,-0.261176 -0.138195,-0.431645 -0.178912,-0.34798 -0.582642,-0.750077 -0.909252,-1.371858 -0.245757,-0.504804 -0.357733,-1.024608 -0.385965,-1.511133 -0.0317,-0.491742 -0.0043,-0.952849 0.02506,-1.371481 0.02684,-0.430816 0.05549,-0.819703 0.03203,-1.180052 -0.02685,-0.364478 -0.08511,-0.698231 -0.218879,-0.965705 -0.125632,-0.273674 -0.339803,-0.52173 -0.590398,-0.726572 0,0 -1e-6,-1e-6 -1e-6,-1e-6 -0.258482,-0.210752 -0.572888,-0.371144 -0.904967,-0.49372 -0.684561,-0.258183 -1.499288,-0.314369 -2.293027,-0.367352 -0.87971,-0.04782 -1.737738,-0.0893 -2.621987,-0.320945 -0.960651,-0.242787 -1.829645,-0.769104 -2.399399,-1.552678 -0.501242,-0.733923 -0.668861,-1.568664 -0.65937,-2.3012051 0.0071,-0.8118047 0.186269,-1.5726924 0.357416,-2.1977339 0,0 0,-1.5e-6 0,-1.5e-6 0.22331,-0.8318347 0.394837,-1.3520298 0.508069,-2.0144888 C 19.45744,4.307361 19.427309,3.685268 19.286335,3.1631143 19.069805,2.3443685 18.714445,1.9681494 18.769071,1.9159464 Z"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           inkscape:tile-cx="17.2007"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-y0="2.4163" />
+        <text
+           id="text4678-06-8"
+           y="1.1371666"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             id="tspan4720-295-8"
+             y="1.1371666"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">1</tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.792653"
+         inkscape:tile-cy="47.992678"
+         inkscape:tile-cx="55.103673"
+         transform="translate(3.2788765e-8,32)"
+         id="use5034-7-6"
+         inkscape:tile-x0="38.207347"
+         inkscape:tile-y0="31.987486"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 18.747444,2.0810775 c 0.01444,-0.00512 0.613947,0.675124 0.587115,2.3003394 -0.01657,0.8258603 -0.27789,1.8136649 -0.43059,2.8940796 -0.05857,0.427501 -0.09579,0.8906249 -0.04364,1.3341035 0.04848,0.4030329 0.161829,0.8186673 0.383384,1.1558624 0.336,0.5530356 0.987528,0.9409236 1.754506,1.1635876 0.712082,0.199727 1.480818,0.211215 2.379756,0.227344 0.801618,0.0053 1.734088,0.01407 2.675816,0.240841 0.905157,0.209833 1.849453,0.708543 2.496923,1.596294 0.425337,0.628469 0.640381,1.346547 0.698786,2.053707 0.06169,0.683131 0.01929,1.327062 -0.0245,1.947998 -0.03605,0.594738 -0.07445,1.171708 -0.0048,1.691023 0.07287,0.502727 0.213977,0.987863 0.491507,1.32012 0,0 10e-7,2e-6 10e-7,2e-6 0.18398,0.239626 0.544206,0.524219 0.890676,1.019718 0.1739,0.247533 0.30659,0.563523 0.358804,0.93766 0.05457,0.38245 -0.04161,0.795526 -0.306163,1.170654 -0.257331,0.306652 -0.547108,0.493867 -0.818763,0.578449 -0.260851,0.09238 -0.470502,0.136111 -0.618664,0.176103 0,0 -3e-6,0 -3e-6,0 -0.3974,0.104389 -0.850739,0.34219 -1.426262,0.536603 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.612605,0.202062 -1.221567,0.304226 -1.806614,0.370967 -0.543427,0.06559 -1.065285,0.106549 -1.532019,0.19801 -0.689595,0.125706 -1.382876,0.382743 -2.129809,0.660666 -0.699619,0.260318 -1.420735,0.528583 -2.204794,0.714102 -0.823619,0.199374 -1.710613,0.269074 -2.602163,0.10689 -0.918964,-0.164836 -1.793216,-0.638802 -2.415561,-1.398623 -0.653379,-0.859761 -0.88887,-1.888754 -0.844038,-2.830149 0.03742,-0.953874 0.273126,-1.828777 0.508176,-2.608494 0.236567,-0.82011 0.468231,-1.548273 0.530787,-2.263392 0.05525,-0.729743 -0.0185,-1.434667 -0.345505,-1.947009 -0.185655,-0.318239 -0.47094,-0.592988 -0.793057,-0.812339 C 13.82345,14.389904 13.433204,14.228333 13.028721,14.110844 12.193354,13.863858 11.21888,13.841686 10.299838,13.798649 9.2596315,13.761897 8.2557157,13.689628 7.2647937,13.364635 6.7388212,13.189771 6.2473535,12.937358 5.8178649,12.606037 5.3588835,12.252416 4.9924533,11.805705 4.7513664,11.304768 4.4934008,10.753016 4.4014336,10.178306 4.4081618,9.6540517 4.4146711,9.0800336 4.5217808,8.5452982 4.6547086,8.0790822 4.9874655,6.9030941 5.4120697,6.0220891 5.6120613,5.2746968 5.9932709,3.861954 5.886602,3.0037585 5.9850166,2.9918282 6.0223996,2.9872964 6.4018225,3.7936492 6.1636079,5.388602 6.0385655,6.2150735 5.6820227,7.1857783 5.4584515,8.2763604 5.3709674,8.7080431 5.3064737,9.1775067 5.3333266,9.6357852 c 0.025277,0.4163558 0.1163861,0.8495698 0.3199551,1.2152098 0.180428,0.336848 0.463597,0.639811 0.8112216,0.88716 0.3275829,0.232746 0.7170115,0.406501 1.1453476,0.532684 0.8114885,0.243547 1.6913443,0.25681 2.7210821,0.271275 0.912193,0.0023 1.977804,0.0047 3.046635,0.268475 0.51642,0.129577 1.040428,0.335434 1.532172,0.643926 0.479484,0.300277 0.916825,0.71109 1.247215,1.228752 0.522815,0.864201 0.691084,1.866087 0.601802,2.818064 -0.07749,0.91421 -0.314016,1.745589 -0.542743,2.552675 -0.2082,0.77038 -0.413723,1.525429 -0.41829,2.232368 0.0039,0.679332 0.139839,1.371974 0.526159,1.813773 0.321916,0.422217 0.886136,0.699205 1.486365,0.82217 0.598851,0.120159 1.264744,0.05114 1.945088,-0.101718 0.650609,-0.15048 1.306269,-0.401287 2.011756,-0.662546 0.753474,-0.27903 1.534158,-0.558027 2.38866,-0.725765 0.582278,-0.107894 1.140817,-0.152387 1.644943,-0.209272 0.541611,-0.06499 1.044733,-0.140094 1.493034,-0.291369 0,0 2e-6,-1e-6 2e-6,-1e-6 0.423264,-0.138235 0.909605,-0.38194 1.513122,-0.550227 0,0 3e-6,-1e-6 3e-6,-1e-6 0.224517,-0.06153 0.39258,-0.09016 0.492217,-0.130241 0.09021,-0.04839 0.147806,-0.06124 0.123186,-0.05903 -8.03e-4,0.03008 -0.0036,-0.01249 0.0035,-0.0586 0.0045,-0.05759 -0.044,-0.149348 -0.10726,-0.261865 -0.133528,-0.233249 -0.472449,-0.496748 -0.812309,-0.938292 0,0 -2e-6,-3e-6 -2e-6,-3e-6 -0.475582,-0.647081 -0.7051,-1.382386 -0.769594,-2.076905 -0.0708,-0.704402 -0.0228,-1.370849 0.0316,-1.971477 0.05063,-0.626902 0.106125,-1.188482 0.06319,-1.715135 -0.04912,-0.536081 -0.165686,-1.031528 -0.42011,-1.397487 -0.334133,-0.548133 -1.011877,-0.90125 -1.691032,-1.108531 -0.7266,-0.212429 -1.57317,-0.239639 -2.379062,-0.282585 -0.906091,-0.03804 -1.786002,-0.102391 -2.663109,-0.374757 -0.973753,-0.294494 -1.80774,-0.900966 -2.294078,-1.729279 -0.29154,-0.5247645 -0.415524,-1.0838184 -0.437908,-1.5968958 -0.02553,-0.5610693 0.04978,-1.0890427 0.150536,-1.5496511 0.249631,-1.1626188 0.583967,-2.0473697 0.680185,-2.7893944 0.18897,-1.4125853 -0.12212,-2.2273588 -0.02939,-2.2602172 z"
+           id="path7176-9-9"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 5.9850166,2.9918282 c 0,0 -1.6402086,1.7524955 -0.097182,2.3398212 1.4578197,0.5548931 -1.6860955,4.5495828 -0.6855104,5.7462326 1.11093,1.328615 9.3835958,1.942641 10.3510238,3.978019 0.736185,1.551525 -1.406017,8.825364 0.158754,9.532962 1.054823,0.476997 7.651153,-1.049838 8.592098,-0.375447 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.340379,-0.491684 -0.929676,-2.193393 -1.005017,-1.346595 -0.94543,-5.415993 -1.127932,-7.086929 -0.172702,-1.58121 -8.307281,-2.023443 -9.167141,-3.361609 C 18.129116,8.9556905 20.216432,4.8685076 19.055698,4.3613558 18.188812,3.982593 18.747453,2.0811033 18.747453,2.0811033"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-1-9-5"
+           y="1.1291616"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1291616"
+             x="-1.8505859"
+             id="tspan4680-9-4-0"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4720-7-9-9"
+             y="4.8129463"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">2</tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.812236"
+         inkscape:tile-cy="79.910683"
+         inkscape:tile-cx="55.093882"
+         transform="translate(3.2788765e-8,63.918005)"
+         id="use5036-4-3"
+         inkscape:tile-x0="38.187764"
+         inkscape:tile-y0="63.905491"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 18.542437,1.242604 c 0.04246,-0.00624 0.40291,0.7409424 0.263842,2.2445919 -0.06738,0.7198947 -0.301308,1.5669402 -0.393769,2.500027 -0.0365,0.3731583 -0.04828,0.7741027 0.01542,1.1574726 0.05866,0.3486845 0.173496,0.7043878 0.374312,0.9947815 0.176069,0.2636862 0.431127,0.4935419 0.734414,0.6757642 0.286082,0.171634 0.618791,0.2926898 0.980851,0.3729974 0.684595,0.1559108 1.419961,0.1203846 2.273993,0.063544 0.753847,-0.058473 1.642614,-0.1433867 2.554646,-0.044938 0.874678,0.086633 1.828953,0.4126852 2.587119,1.1300662 0.643073,0.652458 1.017767,1.501481 1.147204,2.373959 0.128978,0.830874 0.09177,1.636334 0.02154,2.416888 -0.05944,0.738593 -0.142667,1.47247 -0.09867,2.140898 0.04939,0.648116 0.183707,1.288252 0.514015,1.756262 0,0 1e-6,2e-6 1e-6,2e-6 0.254792,0.394302 0.75774,0.808151 1.191908,1.492273 0.21775,0.339021 0.375136,0.762252 0.409419,1.249124 0.03607,0.496188 -0.133157,1.016676 -0.524137,1.444341 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.248749,0.23894 -0.510361,0.392961 -0.753185,0.479585 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.237323,0.0911 -0.43808,0.144857 -0.59424,0.193773 -0.422583,0.132153 -0.893064,0.361629 -1.465138,0.547324 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.609849,0.192032 -1.210563,0.290938 -1.785189,0.365371 -0.537587,0.07208 -1.065886,0.130745 -1.580238,0.204723 -0.522198,0.07764 -1.059032,0.173565 -1.610869,0.263887 -1.216219,0.199063 -2.458542,0.361482 -3.759462,0.25153 -0.971279,-0.08567 -1.94221,-0.361815 -2.808226,-0.879184 -0.893584,-0.532912 -1.616098,-1.350541 -1.993155,-2.345458 -0.329477,-0.938845 -0.331732,-1.899933 -0.17165,-2.756116 0.155756,-0.87108 0.433865,-1.674939 0.666067,-2.399641 0.237033,-0.764839 0.440396,-1.466644 0.469913,-2.147932 0.02418,-0.697886 -0.08977,-1.371811 -0.430133,-1.852875 0,0 -10e-7,-10e-7 -10e-7,-10e-7 -0.203962,-0.312056 -0.507634,-0.573724 -0.84498,-0.776275 C 13.584293,12.150003 13.180504,12.010419 12.765919,11.916481 11.908131,11.717994 10.918686,11.75494 9.9957996,11.76244 8.9397578,11.783269 7.9256228,11.756807 6.9211259,11.466473 6.3838568,11.308696 5.8825242,11.067977 5.4458295,10.744993 4.9752883,10.397386 4.6030821,9.951501 4.361846,9.4521915 3.9023407,8.4441382 3.9939738,7.3903421 4.1956393,6.6061193 4.4550954,5.5573247 4.8319328,4.769304 5.0557415,4.1113278 5.4973548,2.8129585 5.5781561,2.040853 5.6718781,2.0469894 5.7328666,2.0509826 5.8731615,2.8316856 5.5722415,4.2524952 5.4209429,4.9669525 5.1138772,5.808236 4.9586868,6.7639602 4.8519885,7.4697527 4.8210948,8.3588747 5.2092042,9.0223561 c 0.1838963,0.3387584 0.4746824,0.6420926 0.8331846,0.884694 0.335091,0.2264639 0.7331816,0.3898899 1.1706502,0.5009169 0.8231394,0.213617 1.706018,0.183351 2.7451744,0.139363 0.9092316,-0.04916 1.9821386,-0.114073 3.0699036,0.08437 0.524718,0.09775 1.062716,0.271757 1.574342,0.552181 0.49778,0.272316 0.960092,0.659397 1.319212,1.161638 0,0 2e-6,3e-6 2e-6,3e-6 0.549223,0.805408 0.772007,1.76799 0.728021,2.703137 -0.03625,0.894037 -0.246737,1.727983 -0.490724,2.525031 -0.224632,0.758671 -0.476495,1.505589 -0.585557,2.213925 -0.09928,0.690726 -0.109437,1.391768 0.123434,1.964316 0.222656,0.616831 0.733424,1.160716 1.352517,1.539499 0.611029,0.372848 1.358745,0.569 2.143076,0.645859 1.058696,0.108497 2.162711,-0.05394 3.353096,-0.251277 0.542479,-0.08993 1.086892,-0.184087 1.646322,-0.260633 0.548579,-0.07755 1.081975,-0.135438 1.596724,-0.20256 0.549114,-0.07422 1.058367,-0.149895 1.514459,-0.296964 0,0 2e-6,-1e-6 2e-6,-1e-6 0.43032,-0.133189 0.906715,-0.361058 1.474246,-0.539506 0.20887,-0.06559 0.376796,-0.106223 0.493888,-0.153749 0,0 2e-6,-10e-7 2e-6,-10e-7 0.113015,-0.05257 0.19368,-0.08488 0.211514,-0.116709 0,0 0,0 0,0 0.05118,-0.02143 0.07728,-0.154464 0.08595,-0.281486 0.0066,-0.1429 -0.0731,-0.324368 -0.178349,-0.519177 -0.222699,-0.401522 -0.716231,-0.813536 -1.142518,-1.457493 0,0 -2e-6,-3e-6 -2e-6,-3e-6 -0.502765,-0.802006 -0.70299,-1.691716 -0.726999,-2.515119 -0.03114,-0.838396 0.06783,-1.636241 0.144238,-2.349342 0.07339,-0.754059 0.131135,-1.437917 0.037,-2.072541 C 27.599502,12.269707 27.379142,11.668764 26.9858,11.279931 26.564531,10.812423 25.866535,10.5743 25.184063,10.459501 24.458435,10.34615 23.631166,10.40188 22.85472,10.4258 21.97508,10.462327 21.116756,10.449952 20.262502,10.228807 19.808084,10.109033 19.378143,9.9228018 18.994284,9.6686992 18.584667,9.397885 18.244772,9.0458028 18.001928,8.6409518 17.736322,8.1869372 17.607943,7.7019713 17.567954,7.2507768 c -0.0444,-0.4932459 1.37e-4,-0.9606001 0.07519,-1.3728157 0.186078,-1.0282265 0.488858,-1.8127681 0.628459,-2.4710628 0.288452,-1.3521265 0.176937,-2.1504976 0.27083,-2.1642943 z"
+           id="path7266-3-1"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 5.6718781,2.0469894 c 0,0 -1.9009137,1.5475965 -0.3578866,2.1349221 1.45782,0.5548934 -0.5953024,4.1297616 -0.5284664,5.0553623 0.124731,1.7273752 11.9665539,4.0724502 10.5648249,3.5033152 -1.591168,-0.646052 -1.944283,8.573888 -0.379512,9.281486 1.054823,0.476997 8.392417,1.51695 9.333362,2.191337 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.114,-1.520238 -1.156053,-3.221947 -1.005016,-1.346595 -1.240532,-6.961972 -1.423034,-8.632908 -0.172702,-1.5812087 -10.074535,-3.6411467 -9.057447,-2.4182066 1.024994,1.232445 1.297593,-4.4360155 0.136859,-4.9431673 -0.866886,-0.3787628 0.0035,-2.2044016 0.0035,-2.2044016"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,0.86372632)" />
+        <text
+           id="text4678-4-3-9"
+           y="1.2175927"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2175927"
+             x="-1.8505859"
+             id="tspan4680-98-2-3"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-4-1-1"
+             y="4.9013772"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4720-0-3-0"
+             y="8.5851622"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">3</tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.825291"
+         inkscape:tile-cy="111.98549"
+         inkscape:tile-cx="55.087354"
+         transform="translate(3.2788765e-8,95.99281)"
+         id="use5038-3-3"
+         inkscape:tile-x0="38.174709"
+         inkscape:tile-y0="95.980296"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 18.043569,2.6145571 c 0.069,-0.00205 0.246816,0.7081969 0.167651,2.0507494 -0.04182,0.7214097 -0.211755,1.6061476 -0.158833,2.5757042 0.02038,0.3819325 0.07853,0.7887615 0.218458,1.1637511 0.127063,0.3389121 0.319002,0.6734161 0.587403,0.9203886 0.401189,0.394028 1.021045,0.597551 1.71309,0.6537176 0.640996,0.046311 1.29939,-0.067566 2.070949,-0.1998983 0.686021,-0.1252618 1.485203,-0.2706923 2.330042,-0.2456114 0.809206,0.017243 1.704384,0.2548184 2.450352,0.8609427 0.705977,0.619824 1.126754,1.479916 1.267923,2.37325 0.140382,0.845965 0.09678,1.665016 0.01833,2.455538 -0.06538,0.745551 -0.155409,1.484527 -0.09983,2.151189 0.06165,0.642864 0.21879,1.280458 0.581743,1.707411 0.277826,0.366378 0.83233,0.719372 1.34571,1.367718 0.258102,0.320568 0.459994,0.738358 0.534452,1.236003 0.03266,0.24854 0.01666,0.51161 -0.05487,0.776405 -0.07177,0.265081 -0.209662,0.517209 -0.411747,0.73648 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.250689,0.249425 -0.516886,0.408538 -0.764137,0.494988 0,0 -4e-6,10e-7 -4e-6,10e-7 -0.24104,0.09141 -0.443246,0.143607 -0.598233,0.191058 -0.418736,0.127628 -0.886223,0.358121 -1.458092,0.545491 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.609265,0.194023 -1.212197,0.294915 -1.791382,0.366915 -0.537429,0.06943 -1.069268,0.121807 -1.561899,0.202303 -0.573131,0.09295 -1.155404,0.23234 -1.763789,0.379064 -1.028745,0.248104 -2.078371,0.502706 -3.210338,0.575746 -0.92143,0.05912 -1.875113,-0.04058 -2.780664,-0.376993 -0.933605,-0.345258 -1.76378,-0.984641 -2.303469,-1.85964 -0.585536,-1.016317 -0.714945,-2.153815 -0.590286,-3.167743 0.117574,-1.03323 0.421986,-1.984649 0.678598,-2.833464 0.261945,-0.904298 0.488199,-1.725491 0.484535,-2.520118 -0.01182,-0.817356 -0.215876,-1.60498 -0.693009,-2.095096 -0.472653,-0.554501 -1.299552,-0.81292 -2.087515,-0.914729 -0.840739,-0.0975 -1.806978,0.01884 -2.690595,0.07927 -1.0235444,0.08235 -2.0175903,0.07874 -2.9850986,-0.20313 C 5.9666761,11.906978 5.4848161,11.661503 5.0751188,11.333333 4.6304277,10.977433 4.2960296,10.522587 4.1010534,10.025005 3.8178173,9.256705 3.8701484,8.4869876 4.004949,7.8800365 4.1424,7.236576 4.4441205,6.4119418 4.5722824,5.9967745 c 0,0 2e-7,-1.1e-6 2e-7,-1.1e-6 0.481894,-1.5634294 0.5095406,-2.5038739 0.6134389,-2.5028198 0.058677,5.953e-4 0.2875023,0.9338865 -0.042419,2.6445691 -1e-7,0 -2e-7,1.1e-6 -2e-7,1.1e-6 C 5.0339802,6.706662 4.8449657,7.3338881 4.7595231,8.0101312 4.6969074,8.5477139 4.6887602,9.1791156 4.9331472,9.6785767 5.082976,10.009165 5.343426,10.312281 5.6750364,10.553761 c 0.3079714,0.224097 0.6827203,0.385674 1.0969245,0.490825 0.7724495,0.201861 1.613892,0.147373 2.5949331,0.04668 0.846206,-0.09749 1.868438,-0.250318 2.912105,-0.178843 0.999343,0.05852 2.11078,0.409626 2.961401,1.253094 0.766254,0.823571 1.132961,1.926191 1.131801,3.022452 0.0065,1.035503 -0.221067,2.005484 -0.488747,2.938245 -0.241669,0.879555 -0.515628,1.752484 -0.586054,2.576629 -0.05849,0.795653 0.01586,1.617637 0.404582,2.208208 0.312755,0.530903 0.885402,0.942662 1.529285,1.191832 0.637255,0.244939 1.3727,0.305975 2.131645,0.265877 0.938988,-0.04924 1.892801,-0.292815 2.928994,-0.54334 0.612939,-0.148192 1.236538,-0.293874 1.885862,-0.397649 0.559208,-0.08877 1.108039,-0.141893 1.615063,-0.204979 0.545515,-0.0707 1.052867,-0.147316 1.508266,-0.295421 0,0 3e-6,-1e-6 3e-6,-1e-6 0.429831,-0.134524 0.908168,-0.36471 1.481292,-0.541339 0.2113,-0.06491 0.379218,-0.103551 0.49351,-0.149761 0,0 1e-6,-1e-6 1e-6,-1e-6 0.109537,-0.05175 0.186273,-0.08102 0.196947,-0.108009 0,0 0,0 0,0 0.01704,-0.01245 0.03454,-0.04863 0.0491,-0.0889 0.01523,-0.04211 0.01735,-0.103047 0.01221,-0.169558 -0.0017,-0.136994 -0.0991,-0.308664 -0.222851,-0.492079 -0.263914,-0.377568 -0.816585,-0.740246 -1.31271,-1.365714 -0.583634,-0.786191 -0.827539,-1.69856 -0.862312,-2.542172 -0.04336,-0.858718 0.06353,-1.671665 0.148234,-2.392538 0.08075,-0.764801 0.146699,-1.452934 0.04482,-2.086913 -0.111411,-0.649587 -0.352193,-1.248398 -0.768706,-1.599714 -0.401267,-0.386349 -1.036631,-0.554972 -1.65332,-0.612118 -0.656966,-0.05323 -1.38678,0.05883 -2.084698,0.150558 -0.783498,0.111504 -1.54929,0.195859 -2.347346,0.112112 -0.88312,-0.08624 -1.704133,-0.445017 -2.291305,-1.0470046 C 17.810345,9.5941405 17.575298,9.1266931 17.44485,8.6732183 17.301004,8.1749783 17.264173,7.6853919 17.277815,7.2473905 17.3078,6.319845 17.598861,5.1106266 17.69356,4.6029191 17.928524,3.3360159 17.952308,2.6172689 18.043569,2.6145571 Z"
+           id="path7356-0-0"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 5.1857215,3.4939536 c 0,0 -1.8709561,1.9863698 -0.3279291,2.5736955 1.45782,0.5548931 -1.3412779,2.5874914 -0.3406921,3.7841418 1.1109297,1.3286151 9.2617767,0.7459941 10.2292047,2.7813721 0.736185,1.551525 -1.273899,9.973379 0.290872,10.680977 1.054823,0.476997 8.326078,0.224885 9.267023,0.899272 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -0.173836,-1.414715 -1.443893,-3.116428 C 27.589708,18.200253 27.141791,12.56664 26.991662,10.892485 26.84392,9.2449452 19.380972,10.997859 18.521112,9.6596839 17.836359,8.5940297 19.113124,5.1412646 17.95239,4.6341128 17.085504,4.25535 18.04357,2.614583 18.04357,2.614583"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-47-3-9"
+           y="1.2166455"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2166455"
+             x="-1.8505859"
+             id="tspan4680-5-0-0"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-5-3-2"
+             y="4.9004302"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-8-4-2"
+             y="8.5842142"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-0-2-4"
+             y="12.267999"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">4</tspan><tspan
+             id="tspan4720-8-0-9"
+             y="15.951783"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.799181"
+         inkscape:tile-cy="144.02637"
+         inkscape:tile-cx="55.10041"
+         transform="translate(3.2788765e-8,128.03369)"
+         id="use5040-2-2"
+         inkscape:tile-x0="38.200819"
+         inkscape:tile-y0="128.02118"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 17.462594,3.0553957 c 0.07017,-0.00253 0.225899,0.6166014 0.200601,1.7937455 -0.0084,0.4112823 -0.08629,1.4318951 -0.03965,2.0223658 0.04925,0.5572562 0.190057,1.2284369 0.589137,1.6755346 0,10e-8 0,5e-7 1e-6,9e-7 0.194473,0.2316926 0.460652,0.4241737 0.770175,0.5668211 0.288863,0.1328914 0.617058,0.213792 0.971107,0.2534692 0.665291,0.078226 1.354052,-0.026889 2.170131,-0.1597986 0.709629,-0.1239133 1.552054,-0.2793833 2.435959,-0.2499526 0.842012,0.020491 1.781607,0.2780325 2.545226,0.9394421 0.662022,0.6195333 1.051389,1.4564613 1.178799,2.3221733 0.126899,0.819349 0.08142,1.611138 0.0031,2.377203 -0.06573,0.72114 -0.154785,1.43737 -0.106859,2.084376 0.05378,0.624044 0.196537,1.242657 0.536766,1.667595 0.332623,0.480264 1.054347,0.871604 1.718167,1.629254 0.334183,0.369698 0.60639,0.861984 0.712307,1.457333 0.04738,0.297116 0.03249,0.613427 -0.05494,0.929904 -0.08774,0.316613 -0.260788,0.614474 -0.515006,0.863584 -0.244729,0.222628 -0.498815,0.368942 -0.734841,0.45588 -0.231474,0.09064 -0.430019,0.146904 -0.588376,0.198244 -0.429119,0.139417 -0.903775,0.36632 -1.473892,0.55006 -0.6075,0.190051 -1.207586,0.290444 -1.784286,0.364776 0,0 -3e-6,0 -3e-6,0 -0.53953,0.07185 -1.066634,0.127821 -1.575484,0.203758 -0.371335,0.05627 -0.747778,0.124848 -1.133099,0.197298 -1.290895,0.242718 -2.596403,0.509982 -4.001174,0.492725 -0.935323,-0.01341 -1.884466,-0.186939 -2.768303,-0.581305 -0.91163,-0.405512 -1.706907,-1.077581 -2.225741,-1.956225 -0.562151,-1.008702 -0.70885,-2.122374 -0.631641,-3.127604 0.07053,-1.027358 0.312282,-1.994968 0.505687,-2.855968 0.197802,-0.923331 0.359175,-1.762785 0.302655,-2.563469 -0.06558,-0.830237 -0.318648,-1.610864 -0.821015,-2.101514 -0.48367,-0.526263 -1.268023,-0.789083 -2.023125,-0.916487 -0.805954,-0.126938 -1.7406889,-0.0765 -2.5773435,-0.07022 C 8.0625962,11.535473 7.129303,11.480224 6.2290116,11.189418 5.7384756,11.028592 5.2892493,10.793204 4.9039291,10.490214 4.4809223,10.157899 4.156058,9.744034 3.9486234,9.2944089 3.6419946,8.6027922 3.6209955,7.8949871 3.6857645,7.3318428 3.7607413,6.6525081 3.9692607,5.9454759 4.0862891,5.528775 4.3738618,4.499797 4.5243644,3.9377155 4.61218,3.9512863 c 0.076632,0.011842 0.085254,0.5989135 -0.057503,1.6733223 -0.054439,0.4137249 -0.1832009,1.175446 -0.1889171,1.7501617 -0.00214,0.4953508 0.058481,1.0825941 0.3258303,1.5523466 0.1689704,0.3117437 0.4322036,0.5959458 0.7627667,0.8274272 0.3028983,0.2119187 0.6638279,0.3703979 1.0648825,0.4807719 0.7404609,0.208195 1.5430155,0.199544 2.4922954,0.1547 0.8062243,-0.04627 1.7886393,-0.133373 2.7734113,-0.02668 0.936777,0.09341 1.971251,0.43322 2.79455,1.201609 0.782495,0.782217 1.206865,1.847034 1.284152,2.937973 0.0793,1.025944 -0.07024,2.010174 -0.269471,2.968423 -0.177333,0.896015 -0.393347,1.799049 -0.42843,2.639766 -0.02557,0.812895 0.07043,1.643142 0.460009,2.263606 0.320878,0.558708 0.886786,1.008676 1.535526,1.304669 0.638782,0.290164 1.381195,0.410653 2.153418,0.42767 1.167727,0.02859 2.361855,-0.234176 3.678888,-0.479601 0.393246,-0.07328 0.790235,-0.14339 1.194068,-0.201802 0.553361,-0.08121 1.088642,-0.13703 1.601479,-0.203524 0,0 3e-6,-1e-6 3e-6,-1e-6 0.547145,-0.07341 1.056439,-0.150992 1.515356,-0.297559 0.433112,-0.132932 0.907662,-0.356343 1.465498,-0.536772 0.204919,-0.06639 0.372727,-0.109999 0.494238,-0.159602 0.118454,-0.05391 0.205653,-0.09096 0.235381,-0.130096 0.03904,-0.03057 0.07382,-0.0957 0.09802,-0.165875 0.02523,-0.07283 0.02776,-0.169695 0.01634,-0.270901 -0.01278,-0.208653 -0.162878,-0.447034 -0.348348,-0.687357 -0.399966,-0.491165 -1.14982,-0.933516 -1.759568,-1.735687 -0.542559,-0.776474 -0.762583,-1.661134 -0.788235,-2.476793 -0.03363,-0.831459 0.07332,-1.618113 0.158466,-2.315186 0.08203,-0.741078 0.149287,-1.406653 0.05871,-2.022701 -0.09965,-0.632883 -0.320582,-1.215879 -0.712988,-1.571958 -0.409562,-0.42398 -1.084618,-0.610554 -1.731576,-0.67504 -0.693548,-0.06055 -1.47338,0.05785 -2.202427,0.145504 -0.836724,0.110166 -1.645498,0.176898 -2.472813,0.04882 -0.443734,-0.07063 -0.868232,-0.206211 -1.254168,-0.4089351 -0.416186,-0.2182853 -0.770462,-0.5197109 -1.036449,-0.8770414 0,-5e-7 0,-1.1e-6 0,-1.6e-6 -0.513616,-0.7208044 -0.632299,-1.5462283 -0.61654,-2.1934635 0.0125,-0.7443159 0.192908,-1.6504278 0.262119,-2.0857886 0.177297,-1.1225196 0.191077,-1.7466345 0.292437,-1.7502941 z"
+           id="path7446-3-5"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 4.61218,3.9512863 c 0,0 -1.8347237,1.0380798 -0.291697,1.6254055 1.45782,0.5548931 -1.0009624,2.3374221 -3.763e-4,3.5340711 1.11093,1.3286151 8.9006903,3.3200031 9.7936973,2.9242621 0.893007,-0.395741 1.630143,11.126052 0.845287,10.729161 -0.784855,-0.39689 8.750339,1.022956 9.345109,1.449222 0.59477,0.426279 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -0.656992,-2.168231 -1.927045,-3.869948 C 27.106556,17.446741 26.846149,12.045268 26.663647,10.374332 26.490945,8.793122 14.39955,7.9506969 17.868631,8.815993 19.097666,9.122551 18.57741,5.3345673 17.416676,4.8274155 c -0.866886,-0.3787628 0.04592,-1.771951 0.04592,-1.771951"
+           sodipodi:nodetypes="csszzzsssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-6-0-4"
+           y="1.168416"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.168416"
+             x="-1.8505859"
+             id="tspan4680-2-7-5"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-0-9-9"
+             y="4.8522005"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-4-2-6"
+             y="8.535985"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-8-8-5"
+             y="12.219769"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-22-6-7"
+             y="15.903554"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">5</tspan><tspan
+             id="tspan4720-74-2-2"
+             y="19.587339"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.789389"
+         inkscape:tile-cy="175.94438"
+         inkscape:tile-cx="55.105305"
+         transform="translate(3.2788765e-8,159.9517)"
+         id="use5042-0-1"
+         inkscape:tile-x0="38.210611"
+         inkscape:tile-y0="159.93919"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 16.802236,3.6531513 c 0.06459,-0.00725 0.222576,0.4507556 0.298249,1.3484267 0.03983,0.468695 0.03162,1.0501381 0.13125,1.6790634 0.07645,0.459197 0.22277,1.0060015 0.552836,1.387731 0.19232,0.2343458 0.45943,0.4303106 0.774259,0.5737859 0.289337,0.1316451 0.619253,0.2099995 0.977035,0.2447186 0.665222,0.068239 1.345852,-0.051099 2.167809,-0.2032636 0.701113,-0.1384234 1.544227,-0.3121732 2.431644,-0.2908231 0.840127,0.012517 1.786193,0.2727933 2.539534,0.9562625 0.624744,0.6143282 0.980191,1.4340073 1.077448,2.2760413 0.09798,0.794827 0.02909,1.557726 -0.07261,2.294703 -0.08752,0.691791 -0.198584,1.379286 -0.175456,2.002247 0.02979,0.600326 0.143841,1.198537 0.454118,1.615645 0.201918,0.309552 0.543304,0.575907 0.935355,0.87228 0.386557,0.278986 0.848881,0.586332 1.290953,0.999883 0.448348,0.406107 0.838451,0.971005 1.013902,1.681959 0.08063,0.35474 0.08088,0.738729 -0.01606,1.123438 -0.09741,0.384635 -0.308716,0.744901 -0.626456,1.033975 -0.489793,0.385989 -0.960183,0.539527 -1.29271,0.631065 -0.436921,0.148404 -0.916899,0.372602 -1.485378,0.553678 -0.605708,0.187258 -1.203967,0.287872 -1.779881,0.363538 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.53889,0.07292 -1.067767,0.130845 -1.581677,0.204439 -0.299808,0.04396 -0.602958,0.09406 -0.911254,0.146574 -1.485915,0.253131 -2.979373,0.5391 -4.579204,0.457233 -0.992707,-0.05344 -1.988829,-0.282952 -2.899337,-0.744459 -0.941874,-0.476287 -1.741395,-1.229026 -2.234089,-2.179579 -0.514601,-1.052087 -0.613793,-2.185532 -0.505102,-3.200961 0.103016,-1.039868 0.370548,-2.026422 0.575695,-2.897255 0.212948,-0.943505 0.378851,-1.802471 0.317029,-2.622716 -0.07115,-0.857357 -0.345454,-1.658903 -0.872244,-2.157799 -0.50773,-0.532909 -1.317274,-0.788241 -2.08501,-0.911839 C 10.405559,10.76888 9.4205295,10.814022 8.5923194,10.802964 7.5716095,10.799214 6.6284908,10.695302 5.7540789,10.345065 5.2639498,10.146052 4.8335912,9.8686036 4.4838013,9.5318709 c 0,0 -1.1e-6,-1.1e-6 -1.1e-6,-1.1e-6 C 4.0855308,9.1487234 3.8161059,8.6938597 3.6760866,8.2332388 3.4450162,7.4130207 3.5904038,6.5455299 3.6583341,6.0831972 3.7956536,5.0959339 3.8676814,4.55884 3.9534546,4.5603804 c 0.075618,0.00136 0.1599341,0.5416135 0.1683885,1.5527126 0.00755,0.4672305 -0.030777,1.3278218 0.2128707,1.8937268 0.132778,0.3328289 0.3688463,0.6544364 0.6924653,0.9255561 0,0 9e-7,8e-7 9e-7,8e-7 0.2858281,0.2393597 0.6398504,0.4289755 1.0450833,0.566695 0.727435,0.2520795 1.5335386,0.2759088 2.5060754,0.2457867 0.7890771,-0.032399 1.8037883,-0.1217476 2.7868293,-0.025655 0.933255,0.082854 1.980971,0.3999171 2.826272,1.1575781 0.808212,0.774616 1.261311,1.853727 1.349921,2.974043 0.08888,1.045468 -0.06273,2.055442 -0.277266,3.042842 -0.190008,0.914082 -0.429882,1.848576 -0.49225,2.715785 -0.05214,0.839399 0.01316,1.701906 0.383589,2.371712 0.315035,0.620881 0.897711,1.13761 1.579953,1.488539 0.669147,0.343063 1.45691,0.507929 2.279937,0.557287 1.335593,0.08433 2.704804,-0.200857 4.223858,-0.454751 0.31527,-0.05269 0.63241,-0.103068 0.952818,-0.147359 0.549121,-0.07766 1.082122,-0.135001 1.595285,-0.202843 0,0 3e-6,0 3e-6,0 0.547479,-0.07464 1.05793,-0.153289 1.519761,-0.298797 0.435861,-0.13199 0.907803,-0.350191 1.454012,-0.533154 0.392762,-0.152882 0.682638,-0.197578 0.760126,-0.312757 0.06762,-0.05123 0.123692,-0.153891 0.157325,-0.262036 0.03521,-0.112224 0.03244,-0.255029 0.0062,-0.39881 -0.04097,-0.29801 -0.279273,-0.607936 -0.560849,-0.904177 -0.296931,-0.297524 -0.707414,-0.570893 -1.128521,-0.890874 -0.442751,-0.322706 -0.896229,-0.719568 -1.264701,-1.251944 -0.495835,-0.772796 -0.674429,-1.635938 -0.668092,-2.423049 -9.69e-4,-0.803495 0.131446,-1.557974 0.238044,-2.223837 0.10528,-0.710566 0.19268,-1.346564 0.125262,-1.939391 -0.07586,-0.610273 -0.270442,-1.175218 -0.636051,-1.524831 -0.394405,-0.4335458 -1.072117,-0.6232977 -1.713224,-0.6844123 -0.693001,-0.05715 -1.474607,0.075268 -2.19486,0.1744512 -0.842201,0.126059 -1.644239,0.2050315 -2.465576,0.085375 C 18.970339,9.766898 18.547326,9.6323947 18.166574,9.4307406 17.749589,9.2102195 17.402194,8.9048164 17.148575,8.5485929 16.735895,7.9463212 16.611297,7.2766674 16.587916,6.7456204 c -0.03112,-0.6159519 0.05036,-1.3879121 0.0764,-1.7410286 0.06342,-0.8680806 0.05293,-1.3419058 0.137919,-1.3514405 z"
+           id="path7536-1-7"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 3.9534546,4.5603804 c 0,0 -1.6063933,0.950439 -0.063366,1.5377647 1.45782,0.5548931 -0.8852744,0.8252337 0.1153116,2.0218842 1.1109306,1.3286153 8.7768398,1.1844743 9.7442678,3.2198537 0.736185,1.551525 -0.840464,10.283958 0.724307,10.991556 1.054823,0.476997 8.88928,1.207584 9.830225,1.881973 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -1.424086,-3.007979 -2.694139,-4.709688 C 26.339462,16.606993 26.414812,11.474653 26.23231,9.8037165 26.059608,8.2225068 18.326433,9.6466505 17.466573,8.3084828 16.78182,7.2428282 18.043135,5.5102368 16.882401,5.003085 16.015515,4.6243222 16.802243,3.6532108 16.802243,3.6532108"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-7-5-1"
+           y="1.2257644"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2257644"
+             x="-1.8505859"
+             id="tspan4680-1-7-8"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-51-8-2"
+             y="4.9095488"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-3-9-5"
+             y="8.5933332"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-3-0-1"
+             y="12.277118"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-9-1-4"
+             y="15.960902"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-4-1-8"
+             y="19.644688"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">6</tspan><tspan
+             id="tspan4720-81-1-2"
+             y="23.328472"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.778782"
+         inkscape:tile-cy="207.95774"
+         inkscape:tile-cx="55.110609"
+         transform="translate(3.2788765e-8,191.96506)"
+         id="use5044-6-4"
+         inkscape:tile-x0="38.221218"
+         inkscape:tile-y0="191.95255"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 16.056984,4.1295791 c 0.06796,-0.00341 0.15042,0.3662564 0.252946,1.0634286 0.06431,0.413936 0.156714,1.3071363 0.522987,1.8333823 0.179104,0.2738467 0.447873,0.5202448 0.787678,0.7094306 0,0 10e-7,6e-7 10e-7,6e-7 0.298544,0.166066 0.649017,0.277631 1.039444,0.3382402 0.70355,0.1131484 1.427964,0.017756 2.328238,-0.1237154 0.734368,-0.1240613 1.646201,-0.2956702 2.586349,-0.2539633 0.448315,0.021365 0.921232,0.1017521 1.389011,0.2739873 0.449871,0.1651947 0.88986,0.4289129 1.262817,0.8045568 0.59561,0.6284401 0.929086,1.4479932 1.016043,2.2888152 0.08773,0.791772 0.0154,1.551284 -0.08697,2.291019 -0.08826,0.6911 -0.198504,1.382611 -0.175892,2.011108 0.02877,0.604793 0.142259,1.209121 0.451967,1.638245 0.228799,0.361146 0.627543,0.659731 1.084987,0.981184 0.446835,0.299405 0.989656,0.620944 1.507233,1.059161 0.524129,0.429162 0.992863,1.040409 1.212851,1.826795 0.101949,0.392016 0.111678,0.82004 0.0076,1.24866 -0.104604,0.428187 -0.341758,0.828243 -0.701252,1.141111 -0.48029,0.366823 -0.940432,0.520101 -1.274386,0.617854 0,0 -2e-6,10e-7 -2e-6,10e-7 -0.441336,0.153735 -0.924535,0.376576 -1.492517,0.555969 -0.605198,0.185429 -1.201824,0.28535 -1.775642,0.362526 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.536938,0.07424 -1.068556,0.135969 -1.591489,0.205661 -0.259115,0.03591 -0.520102,0.07389 -0.784985,0.112407 -1.814419,0.263836 -3.632853,0.520985 -5.525695,0.255201 -1.121623,-0.161839 -2.217284,-0.542315 -3.170146,-1.181102 -0.99227,-0.664445 -1.767741,-1.628338 -2.153625,-2.756245 -0.33519,-1.046639 -0.322932,-2.108236 -0.162165,-3.053972 0.157247,-0.966189 0.443498,-1.904053 0.651191,-2.717995 0.22024,-0.892639 0.383368,-1.710863 0.336471,-2.494998 -0.05459,-0.825402 -0.3005,-1.595586 -0.783312,-2.103642 C 12.387027,10.572043 11.721429,10.276087 11.06933,10.102236 10.358667,9.9177717 9.5575837,9.885568 8.8320853,9.8559759 7.9574157,9.825571 7.1941012,9.7989019 6.3979264,9.6390914 5.4594705,9.4550711 4.6740729,9.0746962 4.092702,8.5482396 3.5283812,8.0299103 3.2255451,7.4161232 3.0895497,6.8998972 2.7534202,5.6193516 3.2683449,5.0683891 3.2531295,5.0647307 c 0.084935,0.020422 -0.098139,0.6937474 0.3111938,1.6778575 0.1746339,0.4211131 0.4863017,0.8986913 0.9785479,1.2726768 0.5046191,0.390579 1.1745362,0.6343882 2.0041917,0.753119 0.7140508,0.098644 1.4083713,0.074444 2.2956329,0.062218 0.7356316,-0.014491 1.6030352,-0.016424 2.4793742,0.1597347 0.814111,0.159377 1.688928,0.5260499 2.388737,1.2197086 0.731258,0.765007 1.138665,1.795299 1.212467,2.866719 0.07361,0.996386 -0.07561,1.96423 -0.298008,2.912059 -0.196618,0.867233 -0.455611,1.776916 -0.568396,2.607544 -0.103219,0.811085 -0.116114,1.644455 0.145593,2.350651 0.2602,0.769258 0.850391,1.459331 1.588865,1.956822 0.718586,0.483339 1.600474,0.769275 2.534722,0.907738 1.587176,0.242557 3.245298,-0.02367 5.071807,-0.279785 0.266533,-0.03737 0.533385,-0.07393 0.801544,-0.108006 0.541452,-0.07157 1.070787,-0.131915 1.585474,-0.201621 0,0 3e-6,0 3e-6,0 0.549137,-0.07653 1.060776,-0.155169 1.524,-0.299809 0.437152,-0.131123 0.907408,-0.346386 1.446873,-0.530863 0,0 3e-6,-1e-6 3e-6,-1e-6 0.388895,-0.151477 0.68088,-0.204994 0.778445,-0.325966 0.09006,-0.0665 0.16255,-0.196757 0.202967,-0.332914 0.04237,-0.141232 0.03542,-0.31705 -0.0023,-0.490658 -0.06318,-0.360592 -0.364278,-0.717333 -0.712217,-1.046997 -0.365397,-0.330087 -0.8605,-0.626225 -1.35558,-0.974801 -0.524387,-0.353969 -1.051413,-0.800339 -1.461211,-1.408499 -0.484576,-0.776528 -0.656921,-1.63832 -0.64943,-2.423985 7e-4,-0.804345 0.133706,-1.561471 0.242569,-2.229639 0.108817,-0.716428 0.200169,-1.356 0.141702,-1.957711 C 25.874108,10.577308 25.689792,10.001587 25.330917,9.6278012 25.12089,9.3913084 24.834553,9.2084702 24.529074,9.0770754 24.208853,8.9399009 23.851897,8.8663233 23.493567,8.8300156 22.745106,8.7511782 21.883918,8.8758665 21.125472,8.9555396 20.19792,9.0635761 19.345003,9.1028954 18.498449,8.9201995 18.023985,8.8156576 17.591057,8.6351376 17.219302,8.3901353 c 0,0 -10e-7,-8e-7 -10e-7,-8e-7 C 16.793679,8.1099293 16.472534,7.745714 16.265941,7.3558268 15.864735,6.5569459 15.902313,5.6461339 15.919296,5.2153259 15.94165,4.5091925 15.990117,4.1329308 16.056984,4.1295791 Z"
+           id="path7626-8-1"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 3.2531295,5.0647307 c 0,0 -1.4692195,1.1691863 0.073807,1.756512 1.45782,0.5548931 -0.00974,0.2638616 0.9908501,1.4605096 1.11093,1.3286151 7.9785544,0.3192392 8.9459834,2.3546167 0.736185,1.551525 -1.340036,9.846191 0.224735,10.553789 1.054823,0.476997 9.87475,2.348867 10.815695,3.023254 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -1.949813,-3.553681 -3.219866,-5.25539 C 25.813735,16.061291 25.961188,10.8723 25.778686,9.201364 25.605984,7.620154 17.409289,8.5292757 16.549429,7.1911084 15.864676,6.1254543 19.634147,8.955956 16.114613,5.2041668 15.467373,4.5142153 16.056985,4.1295916 16.056985,4.1295916"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-9-7-6"
+           y="1.2258592"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2258592"
+             x="-1.8505859"
+             id="tspan4680-6-9-1"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-9-0-3"
+             y="4.9096437"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-9-0-1"
+             y="8.5934286"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-87-4-6"
+             y="12.277213"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-73-2-7"
+             y="15.960998"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-6-1-0"
+             y="19.644781"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-52-6-0"
+             y="23.328566"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">7</tspan><tspan
+             id="tspan4720-5-0-0"
+             y="27.01235"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.797549"
+         inkscape:tile-cy="239.97111"
+         inkscape:tile-cx="55.101226"
+         transform="translate(3.2788765e-8,223.97843)"
+         id="use5046-6-7"
+         inkscape:tile-x0="38.202451"
+         inkscape:tile-y0="223.96592"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 15.460836,3.5371483 c 0.09829,-0.0026 0.07417,0.9277425 0.982207,1.94232 0.387211,0.4336058 0.988235,0.8683422 1.755708,1.0406729 0.518245,0.1210793 1.085497,0.1095407 1.742115,0.028072 0,-2e-7 1e-6,-2e-7 1e-6,-2e-7 0.566093,-0.073393 1.178093,-0.2121962 1.864903,-0.3151918 0.615608,-0.095928 1.323289,-0.1521252 2.060437,-0.032992 0.690928,0.1087584 1.421724,0.4203604 1.993279,1.0143432 0.577782,0.6421587 0.875754,1.4787468 0.909926,2.3253409 0.03825,0.7932464 -0.0881,1.5425324 -0.243548,2.2704924 -0.136412,0.67734 -0.295031,1.354791 -0.307237,1.975738 -0.0041,0.595151 0.08147,1.198875 0.379243,1.620541 0.179349,0.286468 0.470857,0.533623 0.810125,0.760156 0.336682,0.220896 0.731741,0.40056 1.165773,0.598593 0.42283,0.189063 0.888247,0.396253 1.352556,0.67243 0.460813,0.270161 0.914626,0.63378 1.288233,1.118681 0.529663,0.703319 0.783479,1.606864 0.661409,2.51902 -0.125386,0.894855 -0.623952,1.721248 -1.405147,2.245657 -0.423771,0.268839 -0.83026,0.422947 -1.172136,0.550987 0,0 -2e-6,1e-6 -2e-6,1e-6 -0.459721,0.181647 -0.967824,0.402656 -1.537318,0.569952 -0.612193,0.17305 -1.190395,0.255459 -1.726956,0.351354 -0.398938,0.0766 -0.85037,0.169937 -1.350981,0.203697 -0.127572,0.0086 -0.25827,0.01334 -0.392173,0.01301 -1.03981,-0.03679 -1.957749,-0.39144 -2.730844,-0.794769 -0.802785,-0.398462 -1.475803,-0.811117 -2.165641,-1.036891 -0.967314,-0.343282 -2.121087,-0.365926 -3.321228,-0.578058 0,0 -3e-6,0 -3e-6,0 -0.620084,-0.10421 -1.25136,-0.267561 -1.863265,-0.542935 -0.628693,-0.280605 -1.210088,-0.704034 -1.660999,-1.270719 -0.743188,-0.994515 -0.960955,-2.19403 -0.862243,-3.259273 0.09271,-1.098956 0.425131,-2.10537 0.726237,-2.985636 0.317857,-0.964914 0.604736,-1.806417 0.666109,-2.654245 C 13.135519,10.99279 12.98191,10.137871 12.517092,9.5594849 12.169058,9.086546 11.610686,8.7588265 11.047408,8.546852 10.430704,8.3179979 9.7364829,8.2300691 9.0913987,8.1731678 7.2870323,8.0385865 6.0663489,8.0380958 4.768806,7.3878704 2.1799778,6.0507547 2.8734871,4.3330743 2.5977371,4.4180091 2.7170559,4.3812573 3.0876859,5.9602825 5.0616026,6.7560455 6.2453208,7.2538871 7.2412302,7.1092371 9.146447,7.1802703 c 0.6847394,0.016803 1.466919,0.081654 2.250764,0.3215209 0.725294,0.2192961 1.475687,0.6331169 2.050613,1.3118177 0.700168,0.8753229 0.997301,2.0176771 0.923999,3.1561731 -0.0597,1.053433 -0.341837,2.022529 -0.646607,2.993839 -0.268303,0.890474 -0.557419,1.799948 -0.59634,2.660567 -0.02758,0.815056 0.114496,1.678226 0.59588,2.233736 0.264645,0.338991 0.662198,0.605503 1.110933,0.809801 0.443187,0.199476 0.949634,0.316918 1.494178,0.408596 0,0 2e-6,0 2e-6,0 1.030493,0.163336 2.310528,0.206448 3.565229,0.607408 0.899917,0.306387 1.64589,0.744597 2.374379,1.10989 0.708516,0.335658 1.401766,0.632545 2.04767,0.623182 0.08317,0.0032 0.169131,0.0011 0.257992,-0.0051 0.347992,-0.0242 0.742475,-0.11155 1.175815,-0.185491 0.580894,-0.106228 1.106487,-0.174847 1.572693,-0.310982 0.435475,-0.120839 0.899699,-0.324463 1.402072,-0.51688 0,0 3e-6,-1e-6 3e-6,-1e-6 0.36717,-0.147638 0.674974,-0.248018 0.880695,-0.392833 0.382049,-0.239948 0.659966,-0.698778 0.728374,-1.151761 0.07631,-0.467541 -0.0684,-0.993535 -0.350952,-1.38114 -0.19757,-0.282266 -0.504701,-0.522182 -0.846208,-0.74107 -0.349761,-0.22003 -0.762442,-0.407622 -1.18901,-0.610082 -0.441228,-0.20541 -0.90002,-0.430239 -1.350659,-0.730048 -0.463348,-0.304292 -0.890738,-0.705467 -1.215636,-1.212396 -0.473525,-0.792001 -0.609292,-1.66778 -0.55444,-2.452453 0.0487,-0.804789 0.236355,-1.550275 0.393949,-2.204343 0.16109,-0.705434 0.299541,-1.330973 0.279184,-1.9290821 C 25.47336,8.9723071 25.319139,8.3908322 24.975238,8.0148107 24.669187,7.639361 24.161826,7.4110635 23.658797,7.2933732 c -0.547619,-0.1245245 -1.154652,-0.099448 -1.72764,-0.048121 -0.640553,0.061427 -1.277024,0.1662624 -1.902098,0.208836 0,0 -2e-6,-1e-7 -2e-6,-1e-7 -0.724868,0.05307 -1.404849,0.00659 -2.034402,-0.1850203 C 17.05673,6.9767379 16.395393,6.3833766 16.003451,5.8245856 15.012388,4.4087877 15.524184,3.5354747 15.460836,3.5371483 Z"
+           id="path7716-7-5"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 2.5977371,4.4180091 c 0,0 0.774441,2.0666234 2.3174682,2.6539493 1.45782,0.5548931 7.0666657,0.9179375 8.0672517,2.1145871 1.11093,1.3286155 -0.812871,9.1003635 0.154557,11.1357415 0.736185,1.551525 4.943148,1.401161 6.507919,2.108759 1.054823,0.476997 3.718322,1.107979 4.659267,1.782366 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.830633,-1.94708 0.56058,-3.648789 C 29.594181,17.667892 26.1726,17.463695 25.990098,15.792759 25.817396,14.211549 26.277222,8.9527593 25.417362,7.6145917 24.732609,6.5489377 19.257437,7.4017561 18.096703,6.8946043 17.229817,6.5158415 15.460837,3.5371828 15.460837,3.5371828"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,0.7460309)" />
+        <text
+           id="text4678-64-7-6"
+           y="1.1527568"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1527568"
+             x="-1.8505859"
+             id="tspan4680-7-1-3"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-02-6-2"
+             y="4.8365412"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-91-6-6"
+             y="8.5203257"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-6-5-5"
+             y="12.20411"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-3-8-3"
+             y="15.887895"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-8-2-7"
+             y="19.57168"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-28-8-4"
+             y="23.255465"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-5-3-4"
+             y="26.939249"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">8</tspan><tspan
+             id="tspan4720-05-1-5"
+             y="30.623034"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.792653"
+         inkscape:tile-cy="272.01199"
+         inkscape:tile-cx="55.103673"
+         transform="translate(3.2788765e-8,256.01931)"
+         id="use5048-6-6"
+         inkscape:tile-x0="38.207347"
+         inkscape:tile-y0="256.0068"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 14.921155,4.9058464 c 0.09209,-0.020234 0.2356,0.7878103 1.17189,1.6126642 0.399594,0.3525372 0.976178,0.6945197 1.685481,0.8220728 1.01051,0.199515 1.815088,-0.079019 3.280351,-0.2744369 0.55678,-0.082146 1.193358,-0.1326162 1.85901,-0.042116 0.622355,0.082262 1.286737,0.3244777 1.847002,0.8043387 0.378227,0.3363183 0.671316,0.7602242 0.861933,1.2308769 0.182729,0.4501621 0.281621,0.9273827 0.308388,1.4076662 0.04689,0.921005 -0.11804,1.784683 -0.307537,2.637629 -0.162126,0.782061 -0.344287,1.574104 -0.309074,2.293912 0.01492,0.350387 0.06802,0.693865 0.184002,0.999734 0,0 1e-6,2e-6 1e-6,2e-6 0.113269,0.297273 0.275871,0.573274 0.488966,0.773934 0.223063,0.226993 0.548666,0.39359 0.917308,0.538928 0.366768,0.140016 0.781282,0.23392 1.241897,0.352394 0.449068,0.110855 0.941154,0.249711 1.438773,0.479603 0,0 3e-6,2e-6 3e-6,2e-6 0.495128,0.224277 0.979559,0.574154 1.361886,1.074076 0.393794,0.528416 0.597063,1.195977 0.539046,1.890362 0,0 0,4e-6 0,4e-6 -0.06207,0.688939 -0.404572,1.337893 -0.981222,1.783429 -0.455522,0.31931 -0.889479,0.471567 -1.224861,0.584366 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.443614,0.165716 -0.948006,0.394343 -1.521687,0.564946 -0.620396,0.176444 -1.195454,0.251103 -1.720158,0.350957 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.487145,0.102737 -1.084396,0.243226 -1.785892,0.217525 -0.118255,-0.0098 -0.234191,-0.02437 -0.347795,-0.04321 -0.667133,-0.11065 -1.248377,-0.367199 -1.738867,-0.650809 -0.591282,-0.322592 -1.075525,-0.648689 -1.556798,-0.834788 -1.156675,-0.507907 -2.7079,-0.329555 -4.235168,-0.385657 -0.809924,-0.01472 -1.646678,-0.103212 -2.471249,-0.370164 -0.855327,-0.272707 -1.650673,-0.786413 -2.221252,-1.533934 0,0 -2e-6,-3e-6 -2e-6,-3e-6 -0.37097,-0.506577 -0.60348,-1.075467 -0.71592,-1.645922 0,0 0,-3e-6 0,-3e-6 -0.115239,-0.582146 -0.122836,-1.158618 -0.06041,-1.702159 0.132534,-1.115692 0.506596,-2.13229 0.83096,-3.016143 0.345253,-0.97698 0.646215,-1.83104 0.697915,-2.690865 0.02938,-0.44725 0.0016,-0.877104 -0.104808,-1.269069 C 12.22182,10.456741 12.037069,10.084555 11.782854,9.7976814 11.457296,9.4134222 10.976518,9.148815 10.489329,8.9772102 9.9586198,8.7924327 9.3706243,8.7239544 8.8158046,8.6891113 7.2585319,8.6041629 6.3398483,8.7211394 5.0703237,8.3600606 2.2658241,7.5388245 2.2851588,5.7461298 2.1143491,5.8585257 c 0.1078393,-0.07096 0.9083349,1.3673882 3.1286812,1.8049036 1.1755012,0.2429904 1.9108442,0.040553 3.600712,0.048278 0.6022347,-0.00179 1.2795077,0.045681 1.9646037,0.2385273 0.635762,0.1771947 1.292865,0.5120691 1.827472,1.0626881 0.400351,0.424589 0.695766,0.9455906 0.867625,1.5139469 0.163822,0.540515 0.226975,1.107271 0.204377,1.673313 -0.04778,1.079147 -0.344522,2.076166 -0.680549,3.070548 -0.293825,0.904978 -0.621712,1.834154 -0.691038,2.715524 -0.0358,0.42865 -0.02502,0.857582 0.06651,1.255662 0,0 1e-6,2e-6 1e-6,2e-6 0.08954,0.387061 0.243889,0.758176 0.474722,1.051729 0,0 10e-7,2e-6 10e-7,2e-6 0.330732,0.450818 0.885369,0.772973 1.501732,0.979419 0.607533,0.19931 1.293611,0.252353 2.029792,0.268465 1.392775,0.0022 3.114476,-0.156578 4.791605,0.465053 0.675005,0.274887 1.220601,0.627656 1.735776,0.912786 0.433776,0.224047 0.84497,0.424309 1.22427,0.482122 0.06467,0.0099 0.128375,0.01558 0.191114,0.01661 0.369094,0.03827 0.836599,-0.09274 1.39107,-0.189757 0,0 3e-6,-10e-7 3e-6,-10e-7 0.593305,-0.114558 1.120216,-0.175669 1.579484,-0.311377 0.431413,-0.119941 0.892483,-0.331319 1.417703,-0.521886 0,0 2e-6,-10e-7 2e-6,-10e-7 0.380379,-0.150427 0.679772,-0.225999 0.82797,-0.359454 0.200026,-0.136848 0.343736,-0.415661 0.373539,-0.677779 0,0 0,-2e-6 0,-2e-6 0.0354,-0.272625 -0.06259,-0.588431 -0.233051,-0.830666 -0.163046,-0.24493 -0.45273,-0.442935 -0.776292,-0.610418 0,0 -2e-6,-10e-7 -2e-6,-10e-7 -0.333752,-0.167933 -0.735649,-0.281308 -1.162145,-0.399801 -0.440688,-0.117617 -0.908271,-0.236792 -1.393893,-0.425804 -0.497487,-0.188998 -0.9888,-0.475264 -1.409583,-0.888949 -0.38144,-0.39095 -0.648454,-0.851688 -0.808961,-1.328025 0,0 -10e-7,-3e-6 -10e-7,-3e-6 -0.163963,-0.48518 -0.233188,-0.976022 -0.236252,-1.445057 -0.0016,-0.961944 0.215076,-1.851835 0.409732,-2.622516 0.200301,-0.843458 0.38123,-1.574842 0.355634,-2.284168 C 24.675803,10.155596 24.621635,9.808086 24.506414,9.4988359 24.386611,9.1782895 24.212635,8.8920494 23.989279,8.6813431 23.673708,8.3648562 23.206654,8.1802768 22.743544,8.0840481 22.240901,7.9824546 21.690773,8.0020052 21.170818,8.0432355 19.795447,8.1731744 18.793281,8.3709531 17.611578,8.0690678 16.756059,7.8380794 16.120457,7.3602073 15.711347,6.8967949 14.694731,5.7438239 14.946906,4.9001885 14.921155,4.9058464 Z"
+           id="path7806-1-9"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 2.1143491,5.8585257 c 0,0 1.4993024,1.5658938 3.042329,2.1532195 1.45782,0.5548931 6.0520709,0.1969066 7.0526569,1.3935561 1.110931,1.3286147 -0.895272,9.3012217 0.07216,11.3365997 0.736185,1.551525 7.060628,1.293748 8.625399,2.001346 1.054823,0.476997 2.456365,0.795778 3.39731,1.470165 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.561387,-0.889412 0.291332,-2.591121 C 29.324932,18.72556 25.661565,19.358103 25.479063,17.687167 25.306364,16.105957 23.1845,9.3073736 24.377084,8.254856 25.107287,7.6104139 18.421277,7.2300863 17.695052,7.7048256 16.984369,8.1694048 14.921169,4.9059114 14.921169,4.9059114"
+           sodipodi:nodetypes="csssssssssssszs"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-99-7-0"
+           y="1.2070411"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2070411"
+             x="-1.8505859"
+             id="tspan4680-61-6-0"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-7-4-1"
+             y="4.8908257"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-1-6-7"
+             y="8.5746098"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-4-1-4"
+             y="12.258394"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-0-2-4"
+             y="15.942179"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-25-3-3"
+             y="19.625963"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-80-0-5"
+             y="23.309748"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-1-2-8"
+             y="26.993532"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-6-5-4"
+             y="30.677317"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">9</tspan><tspan
+             id="tspan4720-06-6-3"
+             y="34.361103"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="303.99144"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,287.99876)"
+         id="use5050-7-5"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="287.98625"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 14.614078,5.1599334 c 0.08865,-0.024893 0.27248,0.7551726 1.248874,1.3927054 0.475844,0.3162153 1.096328,0.5172563 1.922329,0.5880912 0.673371,0.054497 1.280552,0.00128 2.138576,-0.040535 0.673441,-0.03692 1.484632,-0.058372 2.309282,0.1061852 0.753127,0.1463501 1.570402,0.5030106 2.200155,1.1862547 0.354391,0.4002218 0.61275,0.8801591 0.7646,1.3973271 0.14525,0.4928908 0.205036,1.0046238 0.196855,1.5150918 -0.01876,0.983078 -0.233127,1.869324 -0.429691,2.783407 -0.165246,0.828642 -0.321901,1.678026 -0.19821,2.432888 0.0562,0.365288 0.161938,0.719436 0.338092,1.015872 0.170999,0.287058 0.400557,0.540608 0.668798,0.690837 0.251221,0.156215 0.588372,0.233411 0.964867,0.288217 0.375721,0.04942 0.78637,0.04993 1.254595,0.07541 0.455723,0.01939 0.96083,0.07402 1.484919,0.235296 0.523528,0.156452 1.042928,0.467172 1.451609,0.956939 0.406233,0.510456 0.602488,1.162634 0.532048,1.829939 -0.0748,0.65868 -0.410646,1.263551 -0.951033,1.677375 -0.45624,0.320384 -0.890945,0.472777 -1.226602,0.585159 -0.443911,0.165264 -0.947997,0.393047 -1.519763,0.564051 -0.617743,0.177004 -1.196166,0.255395 -1.727446,0.352158 -0.474581,0.09411 -1.035774,0.217652 -1.679283,0.217747 -0.02647,4e-6 -0.05307,-2e-4 -0.07982,-6.23e-4 -0.977007,-0.05363 -1.824578,-0.407634 -2.526507,-0.80487 -0.72793,-0.389526 -1.330614,-0.787727 -1.945709,-1.002312 -1.167119,-0.457297 -2.69799,-0.323757 -4.18684,-0.42593 -0.793705,-0.04284 -1.607346,-0.162512 -2.40063,-0.450693 -0.82353,-0.295539 -1.580618,-0.814363 -2.124158,-1.545054 -0.687649,-0.988106 -0.88038,-2.148301 -0.790117,-3.177091 0.08477,-1.066205 0.389276,-2.052397 0.654325,-2.911154 0.28239,-0.951029 0.528521,-1.779968 0.554412,-2.607153 0.01986,-0.882151 -0.170223,-1.709478 -0.646279,-2.2587393 C 10.528921,9.4058184 10.019885,9.113808 9.5087845,8.9213568 8.9454488,8.7116963 8.3170797,8.6238155 7.7372459,8.5674953 6.0268973,8.4185952 5.0356357,8.4514452 3.8221631,7.9440572 c -4e-7,-2e-7 -7e-7,-5e-7 -1e-6,-7e-7 C 1.9936077,7.161874 1.8342311,6.0196564 1.7931266,6.0498658 c 0.087432,-0.064258 0.6811309,0.8453269 2.2409795,1.319594 5e-7,-10e-8 7e-7,1e-7 1e-6,3e-7 1.1606877,0.3651261 1.9242183,0.2080964 3.7591723,0.2737078 0.6197103,0.016369 1.3289927,0.078717 2.0429472,0.2939003 0.6544944,0.1952678 1.3364934,0.5550966 1.8822284,1.1457551 0.712836,0.8126045 1.059313,1.9071837 1.038888,3.0276777 -0.01142,1.025904 -0.245221,1.985216 -0.513954,2.951532 -0.233676,0.876324 -0.496708,1.780658 -0.530188,2.628746 -0.02286,0.802796 0.108345,1.649521 0.566141,2.217452 0.323703,0.447346 0.856968,0.777516 1.4548,0.998924 0.58747,0.213994 1.253634,0.2923 1.968542,0.331784 1.343139,0.05246 3.00924,-0.07029 4.637336,0.477045 0.833718,0.306237 1.512759,0.734561 2.165639,1.089224 0.638258,0.325061 1.254794,0.614252 1.824911,0.611894 0.01558,9.78e-4 0.03128,0.0017 0.0471,0.0023 0.383978,0.01301 0.843893,-0.102002 1.370755,-0.192425 0.586787,-0.109261 1.112145,-0.173286 1.572202,-0.310178 0.432592,-0.121456 0.894427,-0.332514 1.419627,-0.522781 0.380266,-0.150272 0.679297,-0.225481 0.826234,-0.358663 0.181886,-0.129211 0.318971,-0.372895 0.345563,-0.599046 0.0325,-0.231045 -0.04754,-0.505065 -0.194088,-0.692319 -0.138707,-0.201118 -0.412549,-0.350026 -0.713774,-0.462251 -0.313158,-0.111472 -0.69247,-0.149037 -1.101031,-0.181223 -0.422497,-0.02768 -0.872099,-0.03898 -1.36483,-0.107325 -0.501548,-0.06426 -1.025827,-0.216912 -1.519227,-0.50753 -0.510992,-0.317371 -0.90435,-0.755918 -1.168652,-1.242961 -0.269558,-0.496177 -0.420701,-1.023354 -0.48025,-1.537485 -0.115048,-1.059579 0.07551,-2.055129 0.290389,-2.911065 0.222922,-0.945028 0.453341,-1.728554 0.484576,-2.524152 0.01766,-0.409468 -0.0088,-0.799172 -0.102117,-1.155602 C 23.945358,9.7431542 23.78782,9.4049196 23.567846,9.1401788 23.200842,8.6695649 22.590249,8.381813 21.999851,8.2185754 21.343678,8.0419774 20.599385,8.0232734 19.941055,8.0115192 19.105245,8.0018206 18.428923,8.003691 17.693798,7.8856917 16.775358,7.7425013 16.057223,7.405026 15.545016,6.9711226 14.400259,5.9885359 14.665655,5.1454502 14.614078,5.1599334 Z"
+           id="path7896-4-4"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 1.7931266,6.0498658 c 0,0 0.5919811,1.0195668 2.1350084,1.6068928 1.45782,0.554893 6.36367,0.6013689 7.364256,1.7980159 1.11093,1.3286145 -0.573152,8.8543945 0.394273,10.8897725 0.736185,1.551525 6.821382,1.407117 8.386153,2.114715 1.054823,0.476997 3.290438,1.079762 4.231383,1.75415 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.555283,-0.697631 0.28523,-2.39934 -1.005017,-1.346595 -4.744924,0.263843 -4.927426,-1.407093 C 25.22372,17.275633 24.860429,10.104574 24.000569,8.7664062 23.315816,7.7007527 16.864718,7.2690326 15.703984,6.7618807 14.837098,6.3831179 14.614089,5.1599739 14.614089,5.1599739"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-17-7-7"
+           y="1.1448002"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1448002"
+             x="-1.8505859"
+             id="tspan4680-55-6-4"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-6-3-1"
+             y="4.8285847"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-30-6-4"
+             y="8.5123692"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-2-6-2"
+             y="12.196154"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-5-4-4"
+             y="15.879938"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-9-4-6"
+             y="19.563723"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-82-2-0"
+             y="23.247507"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-38-1-1"
+             y="26.931292"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-61-3-9"
+             y="30.615076"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-66-4-7"
+             y="34.298862"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">10</tspan><tspan
+             id="tspan4720-050-9-5"
+             y="37.982647"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="336.0048"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,320.01212)"
+         id="use5052-6-5"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="319.99961"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 14.32473,5.1680653 c 0.103221,-0.041272 0.500431,1.1532061 2.089711,1.6714146 1e-6,-3e-7 1e-6,3e-7 1e-6,3e-7 0.488706,0.1634738 1.040168,0.2149018 1.71525,0.1935381 0.549372,-0.019787 1.155274,-0.1021906 1.83791,-0.1550449 0,0 2e-6,-2e-7 2e-6,-2e-7 0.592311,-0.048766 1.280802,-0.066493 1.989859,0.072661 0.653475,0.1256102 1.35057,0.4258144 1.911997,0.9849033 0.380651,0.3937242 0.658508,0.8813085 0.815736,1.4129399 0.149814,0.5048619 0.203545,1.0319545 0.178315,1.5559355 -0.05234,1.002883 -0.325716,1.904661 -0.598449,2.82207 -0.232474,0.831123 -0.469707,1.684415 -0.411388,2.46216 0.02459,0.375922 0.100545,0.745066 0.254692,1.060181 0.149497,0.304678 0.362495,0.58014 0.623423,0.750041 0.293618,0.214674 0.715593,0.30871 1.178654,0.357787 0.461115,0.04151 0.962918,-4.4e-5 1.536013,-0.01787 0,0 3e-6,0 3e-6,0 0.555011,-0.0251 1.176932,-0.01479 1.827727,0.140838 0.650209,0.149202 1.301547,0.512226 1.784719,1.122936 0,0 3e-6,4e-6 3e-6,4e-6 0.416545,0.558206 0.600036,1.260844 0.497949,1.964229 -0.105746,0.692474 -0.481204,1.318115 -1.058313,1.737641 0,0 -4e-6,3e-6 -4e-6,3e-6 -0.445976,0.30216 -0.870939,0.454762 -1.208236,0.57251 -0.449692,0.170972 -0.954761,0.396472 -1.527625,0.565721 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.618047,0.174921 -1.194558,0.251704 -1.722365,0.349947 -0.182827,0.03736 -0.379767,0.07942 -0.589262,0.116441 -0.358011,0.06326 -0.751836,0.111659 -1.184058,0.09992 -1.12799,-0.086 -2.067441,-0.587813 -2.804877,-1.128695 -0.774188,-0.529534 -1.391851,-1.058166 -2.059818,-1.32159 -1.079252,-0.494138 -2.544664,-0.345713 -3.978091,-0.395752 -0.764174,-0.012 -1.551742,-0.08514 -2.334084,-0.316394 -0.812853,-0.236274 -1.578385,-0.687474 -2.154888,-1.35758 C 10.224674,19.60916 9.9512408,18.541107 9.9508643,17.5687 c -0.00771,-1.00933 0.1978587,-1.956948 0.3926257,-2.786127 0.206031,-0.916543 0.397537,-1.704746 0.410934,-2.492045 0.0072,-0.838113 -0.151984,-1.61309 -0.56569,-2.170087 C 9.8721999,9.66382 9.379903,9.3236607 8.8791384,9.0836355 8.3242039,8.819881 7.6971404,8.6725325 7.1202349,8.5641318 5.3352862,8.243325 4.4340156,8.2264503 3.2307973,7.650636 1.760203,6.9358078 1.4712741,6.0650269 1.4766026,6.0602799 1.5508781,5.9941106 2.11565,6.6664361 3.4490567,7.1295118 4.661625,7.5601212 5.3043126,7.4364576 7.2535725,7.6738403 c 0.6211239,0.070995 1.3293885,0.1976996 2.0293144,0.4770541 0.6375658,0.2526773 1.2906541,0.6679323 1.7948091,1.2985784 0.609208,0.7982782 0.899487,1.8095642 0.90027,2.8452342 0.0074,0.954916 -0.164988,1.847219 -0.349704,2.761996 -0.159115,0.829365 -0.329255,1.684761 -0.289937,2.475708 0.04455,0.746708 0.235893,1.51859 0.699585,2.017024 0.34246,0.408438 0.879506,0.68992 1.473672,0.868839 0.583302,0.171727 1.234213,0.212052 1.935824,0.222398 1.32057,-0.008 2.959095,-0.140938 4.553277,0.467479 0.945207,0.402019 1.669413,0.981959 2.363533,1.468469 0.679764,0.439798 1.348222,0.844981 1.977194,0.841228 0.239728,0.0197 0.512811,-0.02239 0.822946,-0.08097 0.181783,-0.03433 0.375321,-0.07411 0.580696,-0.10995 0.588987,-0.112361 1.116095,-0.176315 1.577283,-0.312389 0,0 2e-6,-1e-6 2e-6,-1e-6 0.429408,-0.119571 0.896802,-0.330413 1.411759,-0.521109 0.375798,-0.149603 0.677752,-0.233829 0.8446,-0.371312 0,0 10e-7,-1e-6 10e-7,-1e-6 0.220385,-0.152542 0.388645,-0.427477 0.428378,-0.691133 0.04565,-0.267582 -0.03286,-0.582662 -0.194115,-0.799193 0,0 0,-1e-6 0,-1e-6 -0.170022,-0.265068 -0.534114,-0.446602 -0.921779,-0.564601 -0.4058,-0.116395 -0.889353,-0.119194 -1.403013,-0.114845 0,0 -2e-6,0 -2e-6,0 -0.532609,0.01264 -1.097155,0.04358 -1.713482,-0.0136 -0.63257,-0.05129 -1.29052,-0.244864 -1.876769,-0.643433 -0.497235,-0.358511 -0.86228,-0.834845 -1.089049,-1.350246 -0.231485,-0.525374 -0.337755,-1.07218 -0.351774,-1.596527 -0.02127,-1.080238 0.261762,-2.06824 0.542925,-2.910381 0.295495,-0.933725 0.577869,-1.712763 0.633514,-2.507598 0.03092,-0.411009 0.01115,-0.803967 -0.08302,-1.1608076 C 23.451781,9.2973551 23.285795,8.9593971 23.054478,8.70465 22.731513,8.3266721 22.227088,8.0905949 21.729416,7.9548339 21.181562,7.8086345 20.57226,7.7940668 20.011035,7.7996819 c 0,0 -2e-6,0 -2e-6,0 -0.71554,0.010883 -1.216023,0.052322 -1.883855,0.026272 -0.737576,-0.02575 -1.382552,-0.1559016 -1.941584,-0.4035047 -10e-7,-3e-7 -10e-7,-6e-7 -10e-7,-9e-7 -2.10653,-0.947907 -1.668284,-2.3313829 -1.860863,-2.2543828 z"
+           id="path7986-6-1"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 1.4766026,6.0602799 c 0,0 0.3202976,0.742468 1.8633244,1.329794 1.45782,0.5548933 6.2927015,1.1982325 7.293288,2.3948828 1.110929,1.3286143 -0.114072,8.1988653 0.853356,10.2342433 0.736185,1.551525 6.650147,1.106623 8.214918,1.814221 1.054823,0.476997 3.661766,1.705604 4.602711,2.379991 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.667369,-0.894391 0.397316,-2.5961 -1.005017,-1.346595 -5.93858,0.200849 -6.121082,-1.470087 -0.172702,-1.58121 0.007,-8.9388284 -0.852883,-10.2769952 C 22.777216,7.2544398 17.460752,7.6381164 16.300018,7.1309646 15.433132,6.7522018 14.324735,5.168079 14.324735,5.168079"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-19-1-7"
+           y="1.1865013"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1865013"
+             x="-1.8505859"
+             id="tspan4680-90-8-4"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-93-5-4"
+             y="4.870286"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-47-8-9"
+             y="8.5540705"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-31-2-7"
+             y="12.237855"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-78-1-1"
+             y="15.921639"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-253-1-3"
+             y="19.605423"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-1-7-2"
+             y="23.289207"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-21-6-6"
+             y="26.972992"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-29-1-0"
+             y="30.656776"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-26-1-2"
+             y="34.340561"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-4-4-1"
+             y="38.024345"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">11</tspan><tspan
+             id="tspan4720-2-0-4"
+             y="41.70813"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="368.04569"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,352.05301)"
+         id="use5054-8-7"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="352.0405"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 14.506088,4.8083052 c 0.09027,-0.081937 0.989678,1.0666613 3.062369,1.2911428 0,-4e-7 1e-6,1e-7 1e-6,1e-7 0.779335,0.089577 1.719068,-0.05484 2.874835,-0.052505 0.483035,-0.0015 1.021894,0.039014 1.570176,0.1892148 0.509656,0.1383959 1.036794,0.3949155 1.483997,0.8140102 0.408882,0.3948749 0.710546,0.899541 0.877598,1.4581656 0.157797,0.5261768 0.209126,1.0801818 0.169834,1.6317469 -0.07935,1.04653 -0.408011,1.985732 -0.754901,2.941284 -0.295678,0.857336 -0.610721,1.746188 -0.609626,2.576199 -0.0029,0.400221 0.04905,0.798541 0.189324,1.146317 0.135836,0.335573 0.342843,0.645474 0.610508,0.845742 0.331791,0.278384 0.834428,0.40113 1.379592,0.457299 0.542035,0.04685 1.126622,-0.01762 1.795843,-0.05434 0.644407,-0.04518 1.369414,-0.04868 2.123463,0.134983 0,0 3e-6,10e-7 3e-6,10e-7 0.753331,0.176121 1.499557,0.625693 1.999323,1.374915 0.37634,0.605256 0.506696,1.333859 0.355853,2.039025 -0.15263,0.692545 -0.559809,1.30429 -1.148167,1.71228 -0.435946,0.286131 -0.852128,0.439161 -1.191119,0.561743 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.454341,0.176084 -0.960893,0.399936 -1.53399,0.567777 -0.617746,0.173387 -1.19267,0.24947 -1.718581,0.348931 -0.160073,0.0334 -0.331555,0.07057 -0.513168,0.104539 -0.378878,0.07087 -0.800861,0.127654 -1.268951,0.111823 -0.60568,-0.04024 -1.162264,-0.218331 -1.644616,-0.471569 0,0 -3e-6,-2e-6 -3e-6,-2e-6 -0.486034,-0.252647 -0.908415,-0.556277 -1.285645,-0.860743 -0.784132,-0.613674 -1.395857,-1.219985 -2.086881,-1.509281 -0.564196,-0.264172 -1.244773,-0.348789 -1.938617,-0.372114 0,0 -3e-6,0 -3e-6,0 -0.70239,-0.01794 -1.48108,0.05377 -2.249425,0.08289 -0.809729,0.03654 -1.647941,0.01369 -2.490927,-0.184869 C 11.685532,21.490674 10.848548,21.043354 10.221509,20.343257 9.4603344,19.434438 9.1798151,18.308456 9.2009854,17.291994 9.2155236,16.232891 9.4679497,15.246084 9.7088317,14.388361 9.9679197,13.430228 10.207979,12.618887 10.261088,11.7914 10.310597,10.90335 10.174802,10.079669 9.7587185,9.4779483 9.506384,9.0906547 9.1369071,8.7758387 8.7478423,8.5323904 8.3216229,8.2667216 7.8402196,8.0819802 7.3790778,7.9404341 6.236841,7.5912582 5.1285425,7.4486579 4.2439549,7.172411 c 0,0 -1.1e-6,-5e-7 -1.1e-6,-5e-7 C 2.3470344,6.5778938 1.6162512,5.7445219 1.6387415,5.7087521 1.6980987,5.6143469 2.6097592,6.19818 4.4019969,6.5645344 c 0,-2e-7 10e-7,2e-7 10e-7,2e-7 0.8502013,0.1747845 1.9249502,0.2206583 3.2059425,0.5177136 0.518721,0.1197451 1.0833948,0.3010878 1.6314227,0.5960542 0.5034357,0.270156 1.0003839,0.6568481 1.3928939,1.1829831 0.602789,0.8416063 0.865464,1.9040915 0.817532,2.9888185 -0.03683,0.992586 -0.259694,1.907569 -0.493275,2.859992 -0.200773,0.854989 -0.41156,1.744691 -0.386464,2.574194 0.03122,0.778535 0.228629,1.595274 0.725771,2.107861 0.372003,0.428366 0.961871,0.704465 1.607103,0.86069 0.632675,0.148553 1.330231,0.145229 2.083237,0.110618 0.71422,-0.03838 1.520889,-0.120621 2.343979,-0.113291 0,0 3e-6,0 3e-6,0 0.816503,0.0017 1.697551,0.121431 2.548011,0.484328 1.001833,0.461052 1.737,1.134441 2.437965,1.701385 0.34397,0.268865 0.679468,0.51429 1.022813,0.685317 0,0 2e-6,1e-6 2e-6,1e-6 0.339072,0.166371 0.684558,0.285901 1.009165,0.297023 0.251811,0.02391 0.543964,-0.02639 0.880892,-0.09233 0.162044,-0.03172 0.332774,-0.06669 0.513951,-0.09859 0.590358,-0.114155 1.118507,-0.178117 1.581067,-0.313405 0.431072,-0.119081 0.895803,-0.326945 1.4054,-0.519055 0,0 3e-6,-1e-6 3e-6,-1e-6 0.371834,-0.148929 0.676636,-0.240971 0.861711,-0.382077 0.251564,-0.169801 0.448572,-0.457738 0.51067,-0.746568 0.06722,-0.291429 0.01133,-0.63431 -0.143336,-0.880891 -0.176922,-0.336256 -0.613164,-0.571778 -1.069517,-0.713651 0,0 -3e-6,-1e-6 -3e-6,-1e-6 -0.481146,-0.141044 -1.054352,-0.131574 -1.655452,-0.112399 -0.626754,0.03024 -1.285072,0.08304 -2.002468,0.01971 -0.740485,-0.05631 -1.503977,-0.300848 -2.149958,-0.803083 -0.491461,-0.405782 -0.835138,-0.926871 -1.031325,-1.4774 -0.200816,-0.56251 -0.268562,-1.137995 -0.243133,-1.68216 0.05985,-1.123283 0.430167,-2.132107 0.772919,-2.986448 0.367225,-0.959046 0.700485,-1.760353 0.778951,-2.589582 0.04344,-0.4320507 0.02768,-0.8466164 -0.07144,-1.2218368 C 23.182395,8.4238476 22.999916,8.067881 22.747206,7.806256 22.481251,7.517725 22.106208,7.3165584 21.724242,7.1824663 21.309359,7.0383279 20.851655,6.9797065 20.415242,6.9496567 19.367634,6.883524 18.338697,6.9468367 17.46123,6.7724311 c 0,-2e-7 -1e-6,-4e-7 -1e-6,-7e-7 -2.555668,-0.522603 -2.85625,-2.0538857 -2.955141,-1.9641252 z"
+           id="path8076-4-0"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 1.6387415,5.7087521 c 0,0 1.141208,0.5723957 2.6842349,1.1597207 1.45782,0.554893 4.8719257,1.1044941 5.8725116,2.3011441 1.110929,1.3286151 -0.4042509,8.6627091 0.563177,10.6980871 0.736185,1.551525 7.237219,0.875449 8.80199,1.583047 1.054823,0.476997 3.8026,2.088274 4.743545,2.762661 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.393137,-0.5742 0.579824,-2.689382 0.08225,-0.931902 -6.318731,-0.591572 -7.087811,-1.761141 C 22.656699,16.883733 23.982196,8.7663793 23.122336,7.4282124 22.437583,6.3625588 18.675578,6.9430912 17.514844,6.4359396 16.647958,6.0571768 14.506119,4.808339 14.506119,4.808339"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-0-7-5"
+           y="1.1497917"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1497917"
+             x="-1.8505859"
+             id="tspan4680-24-1-3"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-99-7-1"
+             y="4.8335762"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-95-4-1"
+             y="8.5173607"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-03-7-6"
+             y="12.201145"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-70-3-7"
+             y="15.88493"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-49-0-8"
+             y="19.568714"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-4-9-8"
+             y="23.252499"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-89-4-8"
+             y="26.936283"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-00-3-9"
+             y="30.620068"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-8-5-6"
+             y="34.303852"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-2-4-3"
+             y="37.987637"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-25-2-5"
+             y="41.671421"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">12</tspan><tspan
+             id="tspan4720-1-2-1"
+             y="45.355206"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="399.99761"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,384.00493)"
+         id="use5056-2-6"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="383.99242"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 14.859336,3.4772709 c 0.05748,-0.114161 1.330492,0.5621526 3.719866,0.8189882 0.500449,0.053566 1.374002,0.098554 2.059733,0.2288478 0.65865,0.1196416 1.421901,0.3819428 2.058857,0.9492471 0.413192,0.3829341 0.731117,0.8767643 0.92293,1.4331502 0.179273,0.5187889 0.258682,1.0724292 0.25005,1.6332511 -0.02042,1.0558344 -0.289079,2.0233797 -0.582384,3.0300977 -0.245439,0.88807 -0.512718,1.823876 -0.474488,2.686498 0.01537,0.414892 0.08527,0.827009 0.241527,1.188608 0.151074,0.348447 0.373052,0.669589 0.657118,0.883405 0.282194,0.228617 0.669645,0.368144 1.093837,0.455472 0.418225,0.08298 0.878085,0.08881 1.37932,0.08316 0.954812,-0.03423 2.133487,-0.106836 3.323617,0.328625 0.562952,0.222084 1.081068,0.576846 1.497426,1.048821 0,0 2e-6,2e-6 2e-6,2e-6 0.409616,0.465363 0.703105,1.038714 0.832436,1.66903 0.126594,0.622156 0.07914,1.280926 -0.156078,1.89508 -0.233878,0.606436 -0.651444,1.13931 -1.210072,1.512748 -0.425492,0.27026 -0.832789,0.423803 -1.173386,0.5512 -1e-6,0 -2e-6,0 -3e-6,1e-6 -0.458361,0.181255 -0.966965,0.404173 -1.54119,0.570371 -0.619044,0.171657 -1.190263,0.244918 -1.710823,0.347307 -0.202192,0.04457 -0.425207,0.09598 -0.667328,0.138012 -0.341908,0.05935 -0.720916,0.09985 -1.138369,0.07828 -0.750547,-0.07131 -1.416699,-0.37041 -1.946046,-0.782661 -0.533266,-0.410755 -0.953661,-0.890577 -1.304498,-1.362363 -0.745219,-0.958039 -1.243619,-1.874497 -1.991945,-2.34249 -0.558292,-0.397144 -1.308894,-0.569789 -2.069791,-0.649434 -0.780025,-0.07401 -1.643585,-0.01704 -2.500653,-0.0019 -0.907601,0.02409 -1.841656,-0.0121 -2.774959,-0.261373 C 10.671788,19.35119 9.7589287,18.791795 9.1411314,17.946719 8.4878701,16.983637 8.3218454,15.862241 8.4214334,14.879633 8.5173012,13.85154 8.8266879,12.899551 9.0895829,12.082733 9.3771421,11.156522 9.6204093,10.363542 9.6518651,9.5633809 9.6791038,8.6905502 9.4884757,7.8870309 9.0264572,7.3514906 8.7156455,6.964083 8.2527035,6.6860562 7.8003368,6.4800728 7.2997439,6.2553824 6.7038805,6.0947258 6.2110742,5.9523952 3.4898505,5.1721765 2.0002152,4.5643992 2.0351219,4.4443559 2.076676,4.3014523 3.6374985,4.6607152 6.3906276,5.2168102 c 0.5010247,0.1001871 1.132118,0.2240002 1.7391656,0.4451519 0.5505496,0.1978506 1.1454844,0.5181483 1.6353083,1.0371578 0.6773675,0.7545631 1.0251375,1.7967784 1.0062365,2.8905132 -0.01035,0.9797389 -0.235961,1.8988769 -0.504254,2.8430349 -0.228432,0.836477 -0.4921635,1.718338 -0.5315341,2.542831 -0.028614,0.774055 0.090967,1.600263 0.5339271,2.157642 0.369163,0.523743 1.02837,0.875261 1.757182,1.074826 0.711414,0.188689 1.500728,0.191256 2.361264,0.166732 0.813108,-0.03075 1.727351,-0.09918 2.668497,-0.03025 0.927669,0.06061 1.922682,0.30599 2.812251,0.881068 1.101197,0.773827 1.739669,1.809589 2.383068,2.679422 0.318793,0.40964 0.639289,0.786233 1.001378,1.050865 0.355518,0.255224 0.745405,0.447147 1.113349,0.463553 0.205703,0.0273 0.446674,-0.0079 0.725244,-0.06247 0.197575,-0.03868 0.412955,-0.08679 0.646021,-0.128518 0.591203,-0.118063 1.129462,-0.182394 1.588825,-0.315029 0.431896,-0.117724 0.893956,-0.322951 1.3982,-0.516461 0,0 3e-6,-10e-7 3e-6,-10e-7 0.368032,-0.148489 0.675934,-0.248234 0.879444,-0.39262 0.272716,-0.174569 0.494495,-0.457202 0.617922,-0.765428 0.127312,-0.313878 0.154999,-0.681719 0.09103,-1.022299 -0.06425,-0.34769 -0.234979,-0.685984 -0.468742,-0.96089 0,0 -1e-6,-1e-6 -1e-6,-1e-6 -0.238104,-0.281046 -0.557531,-0.503661 -0.903641,-0.647821 -0.721436,-0.334417 -1.722745,-0.248024 -2.74327,-0.266495 -0.538225,0.0027 -1.100094,-0.02308 -1.676794,-0.140878 -0.594265,-0.118202 -1.182183,-0.366043 -1.689656,-0.769097 -0.491613,-0.406669 -0.841391,-0.924099 -1.051455,-1.470459 -0.215831,-0.560345 -0.30367,-1.136255 -0.302078,-1.684405 0.0097,-1.136959 0.327267,-2.181847 0.619989,-3.067045 0.31817,-1.008111 0.604142,-1.8443455 0.642782,-2.7035064 C 22.762856,8.0541939 22.726098,7.6252568 22.60925,7.2381461 22.484518,6.8261485 22.282425,6.4598571 22.01311,6.1876804 21.61756,5.764135 21.008265,5.5247827 20.448439,5.3696558 19.775673,5.1902145 19.09325,5.1216302 18.471732,4.9994099 15.926736,4.5001187 14.84224,3.5112259 14.859336,3.4772709 Z"
+           id="path8166-0-7"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 2.0351219,4.4443559 c 0,0 2.722703,0.552921 4.2657299,1.140247 1.45782,0.5548931 2.0943415,0.2440523 3.0949275,1.4407023 1.1109297,1.328615 -0.6579032,8.4792468 0.3095248,10.5146248 0.7361849,1.551525 8.1639829,1.625207 9.7287539,2.332805 1.054823,0.476997 3.929197,3.66629 4.870142,4.340677 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.456483,-3.059351 -0.813573,-4.76106 C 28.220028,16.555621 23.4543,18.551291 23.271798,16.880355 23.099096,15.299144 23.215311,7.1691842 22.355451,5.8310172 21.670698,4.7653637 19.686202,5.1549865 18.525468,4.6478347 17.658582,4.2690719 14.859364,3.4772849 14.859364,3.4772849"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,0.74685828)" />
+        <text
+           id="text4678-93-7-0"
+           y="1.1677153"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1677153"
+             x="-1.8505859"
+             id="tspan4680-4-3-3"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-70-4-4"
+             y="4.8515"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-11-1-3"
+             y="8.535284"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-01-6-6"
+             y="12.219069"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-8-1-8"
+             y="15.902853"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-7-7-2"
+             y="19.586637"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-53-0-6"
+             y="23.270422"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-0-5-0"
+             y="26.954206"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-66-3-5"
+             y="30.637991"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-1-0-2"
+             y="34.321777"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-82-3-8"
+             y="38.005562"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-8-8-4"
+             y="41.689346"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-54-4-4"
+             y="45.373131"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">13</tspan><tspan
+             id="tspan4720-07-3-5"
+             y="49.056915"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="431.97706"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,415.98438)"
+         id="use5058-9-8"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="415.97187"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 15.383997,4.2576713 c 0.003,-0.07153 1.291345,-0.296311 3.573041,0.1837639 0.45839,0.095387 1.002687,0.2328336 1.540121,0.4723264 0.474277,0.2101434 0.974244,0.5279128 1.386625,0.9994689 0.645282,0.7700363 0.966739,1.8227549 0.921969,2.9378314 -0.03252,0.9857399 -0.270074,1.8947371 -0.535835,2.8602601 -0.221815,0.840889 -0.466633,1.737111 -0.457893,2.571 0.002,0.40036 0.0499,0.800481 0.173063,1.164878 0.119164,0.351213 0.299714,0.68338 0.54583,0.93499 0.239525,0.255981 0.56782,0.454871 0.934452,0.601465 0.359227,0.142656 0.763442,0.220471 1.19442,0.26422 0.831891,0.08483 1.762731,-0.01007 2.795697,0.01614 0.994363,0.0062 2.120867,0.195884 3.123966,0.844172 0.4888,0.325885 0.913477,0.784756 1.196046,1.357462 0.280062,0.569338 0.373867,1.240471 0.220983,1.908237 -0.112694,0.447781 -0.325776,0.848451 -0.6083,1.178855 -0.278302,0.326099 -0.603128,0.58886 -0.948762,0.790677 0,0 -3e-6,2e-6 -3e-6,2e-6 -0.39678,0.230474 -0.781949,0.386757 -1.12893,0.525937 -0.470643,0.194168 -0.98385,0.411047 -1.552246,0.574722 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.609859,0.169457 -1.185932,0.252224 -1.721825,0.34929 -0.159387,0.03106 -0.327496,0.06479 -0.50317,0.09605 -0.379831,0.0676 -0.794022,0.123509 -1.24624,0.12019 -0.927924,-0.03185 -1.779523,-0.343956 -2.488373,-0.791179 -0.718503,-0.448714 -1.318397,-0.995674 -1.847903,-1.533002 -0.551588,-0.553134 -1.025451,-1.07628 -1.540531,-1.533587 -0.522913,-0.458345 -1.053941,-0.84593 -1.62045,-1.061321 -1.084798,-0.46691 -2.560643,-0.308306 -3.969517,-0.365682 -0.76313,-0.0175 -1.544212,-0.104632 -2.310934,-0.354412 C 9.706116,19.112609 8.9664975,18.63324 8.4345234,17.94581 7.7467806,16.993503 7.5674769,15.863267 7.6648893,14.879927 7.7587697,13.845257 8.0770321,12.887775 8.3436997,12.076614 8.6403832,11.140306 8.8863949,10.351786 8.9147602,9.551004 8.9318894,9.124575 8.8948967,8.7212069 8.7889672,8.3545627 8.6747145,7.960051 8.4918901,7.6092287 8.2493845,7.3370428 7.7851697,6.780787 6.9601671,6.4725765 6.319834,6.2415669 3.9471057,5.4202755 2.492722,5.2680196 2.5046557,5.1368738 2.5117059,5.0593954 3.985224,4.898432 6.528518,5.5413017 c 0.6927705,0.1661785 1.6386643,0.4550518 2.3814101,1.1679989 0.3634403,0.3654382 0.647657,0.8250963 0.82479,1.3433215 0.1640036,0.4788858 0.2433884,0.9915315 0.2445725,1.5162187 -0.0015,0.9766242 -0.2257861,1.8947652 -0.4997706,2.8503702 -0.2289438,0.831972 -0.4980844,1.721464 -0.5323497,2.548882 -0.023288,0.771167 0.1077826,1.602782 0.5699905,2.14413 0.3200962,0.419217 0.8430192,0.717441 1.4281212,0.907857 0.570469,0.181956 1.211264,0.229344 1.904707,0.241465 1.282031,-0.0025 2.906833,-0.160024 4.489975,0.399836 0.801793,0.311403 1.49629,0.787075 2.10035,1.323806 0.597702,0.525247 1.100776,1.067544 1.622672,1.585487 0.505926,0.495786 1.013484,0.964334 1.56555,1.295263 0.541268,0.319871 1.129393,0.5509 1.692862,0.551275 0.27622,0.01242 0.583959,-0.03668 0.9281,-0.09975 0.159792,-0.02929 0.325456,-0.0612 0.499452,-0.09128 0.580654,-0.107735 1.107715,-0.178134 1.577823,-0.313046 0,0 2e-6,0 2e-6,0 0.439839,-0.120479 0.899042,-0.316749 1.387138,-0.512109 0.356664,-0.146706 0.67253,-0.266405 0.923906,-0.417885 0,0 2e-6,-1e-6 2e-6,-1e-6 0.217814,-0.130217 0.409664,-0.277588 0.550149,-0.446269 0.140085,-0.168889 0.247163,-0.354411 0.288876,-0.535876 0.07511,-0.261355 0.02387,-0.586759 -0.101525,-0.867631 -0.129439,-0.291262 -0.375863,-0.552627 -0.663659,-0.75898 -0.585527,-0.440384 -1.44655,-0.562718 -2.305019,-0.617123 -0.907007,-0.03725 -1.885563,0.03679 -2.900769,-0.07684 -0.527349,-0.05922 -1.058338,-0.180508 -1.569884,-0.390833 -0.527455,-0.215838 -1.015697,-0.542015 -1.413157,-0.973964 -0.393935,-0.439642 -0.660417,-0.950475 -0.812892,-1.471121 -0.157346,-0.535942 -0.209409,-1.07472 -0.190983,-1.585428 0.04296,-1.063185 0.337692,-2.046219 0.603893,-2.881678 0.295718,-0.963153 0.554806,-1.7569563 0.610953,-2.5788499 C 21.788281,7.8887651 21.619733,7.0641055 21.171289,6.49533 20.903241,6.1341014 20.518978,5.8560145 20.137565,5.6459461 19.703502,5.4084317 19.212476,5.2419997 18.78484,5.1088519 16.664298,4.4540168 15.378794,4.38101 15.383997,4.2576713 Z"
+           id="path8256-9-8"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 2.5046557,5.1368738 c 0,0 2.3764943,0.167235 3.9195211,0.7545607 1.45782,0.5548931 1.1548937,-0.064913 2.1554795,1.1317372 1.1109296,1.328615 -0.5712429,8.4704663 0.3961851,10.5058443 0.736185,1.551525 6.5242416,1.139338 8.0890126,1.846936 1.054823,0.476997 6.298401,4.163073 7.239346,4.83746 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.802334,-0.268803 1.026418,-0.471911 0.35302,-0.319976 2.468099,0.225869 1.198046,-1.47584 C 30.231647,19.840841 22.209378,18.51984 22.026876,16.848904 21.854174,15.267694 22.387399,7.5424471 21.527537,6.2042811 20.842784,5.1386271 19.203772,6.0498006 18.87094,4.7751438 18.631933,3.8598141 15.384062,4.257674 15.384062,4.257674"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-176-6-6"
+           y="1.2398182"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2398182"
+             x="-1.8505859"
+             id="tspan4680-8-9-4"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-2-9-6"
+             y="4.9236026"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-477-5-4"
+             y="8.6073875"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-33-4-2"
+             y="12.291172"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-37-5-6"
+             y="15.974957"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-78-2-2"
+             y="19.658741"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-9-0-7"
+             y="23.342525"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-6-7-3"
+             y="27.02631"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-46-4-5"
+             y="30.710094"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-45-2-4"
+             y="34.393879"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-42-4-9"
+             y="38.077663"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-09-6-2"
+             y="41.761448"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-775-9-6"
+             y="45.445232"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-4-0-2"
+             y="49.129017"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">14</tspan><tspan
+             id="tspan4720-52-0-7"
+             y="52.812801"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="463.99042"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,447.99774)"
+         id="use5060-2-0"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="447.98523"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 16.056385,3.7604874 c 0.08697,0.2913822 1.131266,-1.2773959 3.692943,0.1803543 0.948078,0.5424144 1.949862,1.6195153 2.244939,3.1689458 0.139395,0.762581 0.104881,1.5524213 -0.03783,2.358817 -0.124408,0.7222025 -0.319329,1.4400875 -0.471698,2.1613475 0,0 -1e-6,2e-6 -1e-6,2e-6 -0.135897,0.661201 -0.247828,1.353349 -0.196772,2.005817 0.05113,0.61043 0.220099,1.235499 0.584986,1.682008 0.370943,0.498135 1.005642,0.831771 1.714221,1.032842 0.6871,0.188765 1.445129,0.212242 2.283214,0.225699 0.787878,0.0052 1.673326,-0.0048 2.581539,0.136529 0.890675,0.131557 1.83099,0.466787 2.624905,1.126167 0.55689,0.469686 0.991062,1.117619 1.186309,1.88085 0,0 10e-7,3e-6 10e-7,3e-6 0.191249,0.756675 0.09196,1.591544 -0.337865,2.311492 -0.408307,0.624033 -0.961493,1.048749 -1.514028,1.327877 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.371339,0.198797 -0.739177,0.358655 -1.092899,0.506857 -0.482442,0.204668 -0.998508,0.413868 -1.555897,0.576768 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.59502,0.170066 -1.182532,0.271707 -1.752999,0.354969 -0.17579,0.0261 -0.352106,0.05114 -0.528926,0.07507 -0.364128,0.04927 -0.727815,0.09345 -1.091063,0.132333 -1.060092,0.122439 -2.181508,0.179957 -3.32361,-0.06223 -0.580455,-0.126619 -1.150766,-0.347016 -1.673396,-0.67465 -0.532077,-0.333146 -0.994001,-0.788258 -1.329916,-1.342374 0,0 -2e-6,-3e-6 -2e-6,-3e-6 C 17.705222,22.302301 17.535415,21.675764 17.402784,21.139319 17.248969,20.594882 17.130501,20.121796 16.897396,19.789433 16.5806,19.258748 15.930262,18.903169 15.258559,18.684103 14.552268,18.463419 13.731682,18.423682 12.910827,18.373056 12.032223,18.329635 11.139319,18.270988 10.233266,18.012254 9.2711942,17.746346 8.3823222,17.18558 7.7987933,16.343444 7.3574098,15.663381 7.1754845,14.901924 7.1626661,14.195833 7.146554,13.454758 7.2752336,12.758821 7.4348962,12.140964 7.7999198,10.647979 8.2275984,9.6890167 8.149967,8.5548332 8.0867961,7.2584569 7.3588991,6.1989542 6.6058523,5.6126331 c -3e-7,-1e-7 -7e-7,-2e-7 -10e-7,-2e-7 C 4.8584916,4.2437371 3.2243292,4.7933986 3.1916385,4.6696491 c 0.088237,0.3340177 1.2216932,-1.3181554 3.8249834,0.3611606 -10e-8,6e-7 1.2e-6,8e-7 1.2e-6,8e-7 0.9540539,0.6188347 1.9273998,1.8096718 2.1078847,3.4429145 0.1319548,1.387788 -0.2506863,2.5321 -0.556407,3.930186 -0.1175105,0.576606 -0.2103201,1.174092 -0.1694535,1.737919 0.041176,0.530275 0.177575,1.068317 0.4741348,1.466664 0.3504142,0.522659 1.0023776,0.870625 1.7327149,1.080966 0.709359,0.195829 1.489717,0.215424 2.369339,0.250537 0.824862,0.02288 1.753935,0.06248 2.696162,0.318771 0.925005,0.242927 1.860218,0.782951 2.495946,1.689075 0.387547,0.603852 0.582751,1.227827 0.726929,1.789919 0.157051,0.539201 0.277872,1.034422 0.505993,1.382354 0,0 1e-6,2e-6 1e-6,2e-6 0.190564,0.319581 0.486465,0.597864 0.830865,0.816382 0.341477,0.216244 0.745494,0.364458 1.175792,0.460581 0.849691,0.196756 1.796673,0.125572 2.812421,0.02451 0.348404,-0.03774 0.697697,-0.08041 1.047912,-0.127799 0.170062,-0.02301 0.339757,-0.04706 0.509061,-0.07208 0.548853,-0.08258 1.066897,-0.168136 1.546649,-0.307367 0,0 2e-6,-1e-6 2e-6,-1e-6 0.450705,-0.127209 0.910033,-0.31435 1.383488,-0.510062 0.345878,-0.144827 0.6689,-0.281121 0.959937,-0.436965 0,0 2e-6,-2e-6 2e-6,-2e-6 0.411733,-0.237157 0.767877,-0.469569 0.926733,-0.76129 0.200966,-0.298489 0.246597,-0.737418 0.162601,-1.122759 0,0 0,-2e-6 0,-2e-6 -0.0857,-0.402445 -0.348814,-0.788595 -0.679712,-1.086958 -0.472815,-0.436474 -1.16508,-0.6726 -1.871918,-0.810181 -0.731409,-0.134871 -1.550106,-0.134557 -2.362456,-0.161525 -0.865452,-0.02082 -1.746751,-0.08207 -2.629413,-0.33251 -0.933272,-0.258318 -1.798456,-0.786607 -2.397926,-1.576259 -0.537048,-0.750453 -0.760487,-1.616531 -0.780359,-2.416895 -0.02421,-0.843338 0.126739,-1.636479 0.307979,-2.335506 0,0 0,-1e-6 0,-2e-6 0.193543,-0.762451 0.414954,-1.4501564 0.557812,-2.1006397 0.155786,-0.726587 0.230225,-1.383843 0.146478,-1.9993898 C 20.889612,6.0253972 20.131638,5.0576259 19.378004,4.5329965 17.627825,3.3075021 16.09224,3.8806114 16.056385,3.7604874 Z"
+           id="path8346-4-7"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 3.1916385,4.6696491 c 0,0 3.902572,3.2573043 5.4455989,3.84463 1.4578196,0.5548931 -1.3020357,6.2650399 -0.3014497,7.4616899 1.1109303,1.328615 8.2289543,1.357291 9.1963823,3.392669 0.736185,1.551525 -0.365741,2.446812 1.19903,3.15441 1.054823,0.476997 4.632055,1.015977 5.573,1.690364 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 2.490436,0.657124 1.220383,-1.044585 C 30.253984,20.272096 30.758725,20.088595 30.576223,18.417659 30.403521,16.836449 22.203287,17.05497 21.343427,15.716803 20.658674,14.651149 22.680775,7.6937428 21.520041,7.186591 20.653155,6.8078282 16.056393,3.7604851 16.056393,3.7604851"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-2-2-2"
+           y="1.1258703"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1258703"
+             x="-1.8505859"
+             id="tspan4680-3-6-8"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-98-9-8"
+             y="4.8096547"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-0-5-7"
+             y="8.4934397"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-315-6-1"
+             y="12.177224"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-777-4-8"
+             y="15.861009"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-0-3-3"
+             y="19.544792"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-98-3-5"
+             y="23.228577"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-03-9-3"
+             y="26.912361"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-1-2-1"
+             y="30.596146"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-48-9-3"
+             y="34.27993"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-90-8-3"
+             y="37.963715"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-5-0-9"
+             y="41.647499"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-13-8-9"
+             y="45.331284"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-01-8-0"
+             y="49.015068"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4712-99-7-6"
+             y="52.698853"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">15</tspan><tspan
+             id="tspan4720-9-2-2"
+             y="56.382637"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="496.03131"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,480.03863)"
+         id="use5062-5-8"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="480.02612"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 16.780603,3.1576893 c 0.0138,0.142394 1.000736,-0.7210016 2.787686,0.4860938 0,4e-7 1e-6,6e-7 1e-6,6e-7 0.685662,0.4646934 1.402266,1.2938268 1.662793,2.4611815 0.16599,0.7724315 0.12736,1.5981463 -0.06434,2.4496941 -0.173552,0.7898504 -0.402494,1.4221871 -0.636314,2.2188017 -0.191801,0.669318 -0.369284,1.384705 -0.358847,2.066867 0.01367,0.630384 0.158046,1.294937 0.533989,1.757201 0.310506,0.41812 0.822461,0.719362 1.398828,0.904894 0.556887,0.176299 1.182808,0.214645 1.858116,0.204555 1.210964,-0.03519 2.796179,-0.300729 4.359887,0.03482 1.201299,0.271329 2.359639,0.982137 3.106886,2.102046 0.357646,0.544885 0.598023,1.177898 0.678768,1.852198 0,0 0,4e-6 0,4e-6 0.07886,0.663706 -0.0091,1.353636 -0.277539,1.994457 -0.274934,0.65553 -0.744631,1.234643 -1.368298,1.63829 0,0 -3e-6,2e-6 -3e-6,2e-6 -0.414866,0.256753 -0.815438,0.412594 -1.161665,0.544028 -0.467459,0.185103 -0.974471,0.398402 -1.530257,0.567445 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.594725,0.176943 -1.190034,0.284223 -1.774441,0.359375 -0.256404,0.03368 -0.505825,0.06147 -0.750417,0.09 -0.280923,0.03278 -0.55103,0.06605 -0.810743,0.109533 -0.827048,0.137019 -1.71562,0.399333 -2.703429,0.498329 0,0 -3e-6,0 -3e-6,0 -0.502872,0.05029 -1.029584,0.04375 -1.5626,-0.05286 -0.541611,-0.09708 -1.076413,-0.30909 -1.552235,-0.647914 -0.65574,-0.492594 -1.097288,-1.146349 -1.361585,-1.812565 -0.271952,-0.670568 -0.414418,-1.337683 -0.5292,-1.946204 -0.124777,-0.62715 -0.224926,-1.195916 -0.409159,-1.701373 -0.191824,-0.509585 -0.435498,-0.963904 -0.778487,-1.254902 -0.390419,-0.370966 -0.988333,-0.561753 -1.595723,-0.660163 -0.632938,-0.09523 -1.340839,-0.05449 -2.049602,-0.02941 -0.756935,0.03468 -1.529415,0.04752 -2.3262514,-0.09749 C 8.7230019,17.147633 7.9130137,16.764421 7.3034344,16.129218 6.6919223,15.451644 6.4048428,14.615029 6.3413561,13.836252 6.2706004,13.007412 6.39461,12.223336 6.5578154,11.541824 6.7347026,10.785248 6.9479459,10.112065 7.0862802,9.4820515 7.2417039,8.7562905 7.3133673,8.1189161 7.2322158,7.5208732 7.113966,6.593001 6.6539669,5.8371199 6.1720373,5.3420924 c 0,0 -9e-7,-4e-7 -9e-7,-4e-7 C 5.0491394,4.185997 3.9335582,4.1664466 3.9420533,4.0599258 c -0.0073,0.091508 1.065247,-0.4649389 2.6378479,0.8368881 -1e-7,3e-7 1e-6,7e-7 1e-6,7e-7 0.6193811,0.5137755 1.2476032,1.3536081 1.4768618,2.4848678 0.1418928,0.7237955 0.1175787,1.4838427 -0.016067,2.2814517 -0.1127135,0.6931629 -0.2936194,1.3919509 -0.423803,2.1006379 -0.1132784,0.6377 -0.1976466,1.315365 -0.1075372,1.94347 0.086476,0.579329 0.3008663,1.173302 0.7013564,1.555755 0.3690846,0.389855 0.948763,0.614306 1.5852645,0.727901 0.6162581,0.103802 1.2796751,0.06391 2.0243401,0.01995 0.697611,-0.04858 1.484039,-0.104154 2.305915,-0.0112 0.803821,0.08415 1.660642,0.370498 2.382235,0.969466 0.584334,0.517879 0.98112,1.172388 1.223406,1.849884 0.241095,0.657625 0.37144,1.301555 0.496458,1.916854 0.126874,0.593448 0.247354,1.163688 0.459386,1.647617 0.211501,0.468749 0.484791,0.898631 0.846732,1.139545 0.249105,0.183664 0.573126,0.30145 0.921161,0.368767 0.346475,0.06591 0.726135,0.06349 1.123553,0.02705 0,0 3e-6,0 3e-6,0 0.783425,-0.07165 1.631493,-0.330936 2.594546,-0.491185 0.302565,-0.04989 0.597942,-0.08696 0.886336,-0.12086 0.251176,-0.02952 0.49334,-0.05624 0.729466,-0.08688 0.537215,-0.07134 1.04889,-0.1596 1.525207,-0.302961 0,0 2e-6,-1e-6 2e-6,-1e-6 0.446478,-0.130695 0.914065,-0.328231 1.409128,-0.519385 0.361731,-0.145311 0.670865,-0.252259 0.891171,-0.399794 0,0 2e-6,-1e-6 2e-6,-1e-6 0.336886,-0.207733 0.610887,-0.54675 0.775551,-0.921589 0.162726,-0.369792 0.219011,-0.797086 0.177006,-1.206638 0,0 -1e-6,-3e-6 -1e-6,-3e-6 -0.04231,-0.418428 -0.196456,-0.833069 -0.424497,-1.194521 -0.460393,-0.748878 -1.301687,-1.267121 -2.166585,-1.491501 -1.137421,-0.312139 -2.628916,-0.07007 -4.000515,-0.08056 -0.760572,0.0038 -1.534276,-0.07729 -2.284953,-0.324597 -0.79315,-0.258151 -1.510194,-0.741891 -2.01201,-1.420443 -0.553631,-0.792781 -0.740381,-1.711467 -0.703974,-2.536234 0.03482,-0.877699 0.263147,-1.686306 0.50622,-2.382359 0.265846,-0.7762485 0.547824,-1.4654269 0.727432,-2.1198129 0.20276,-0.7553426 0.290716,-1.4324521 0.19199,-2.0571469 -0.138127,-0.9366005 -0.664552,-1.6800234 -1.198723,-2.1300603 0,-10e-8 0,-2e-7 -10e-7,-3e-7 C 17.954732,3.0776441 16.791038,3.2653383 16.780603,3.1576893 Z"
+           id="path8436-4-9"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 3.9420533,4.0599258 c 0,0 2.1594097,2.8040262 3.7024366,3.391352 1.45782,0.5548931 -0.8880016,7.0481802 0.1125844,8.2448302 1.11093,1.328615 7.2987257,-0.206084 8.2661537,1.829294 0.736185,1.551525 1.487436,5.926874 3.052207,6.634472 1.054823,0.476997 4.28782,-0.620849 5.228765,0.05354 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 2.34198,0.421768 1.071927,-1.279941 C 30.105528,20.03674 28.33195,18.133589 28.149448,16.462653 27.976746,14.881443 21.052155,16.315886 20.192295,14.977719 19.507542,13.912065 21.97662,6.690812 20.815886,6.1836602 19.949,5.8048974 16.780607,3.1576889 16.780607,3.1576889"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-471-4-3"
+           y="1.2139806"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2139806"
+             x="-1.8505859"
+             id="tspan4680-39-3-4"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-8-6-5"
+             y="4.8977652"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-17-8-2"
+             y="8.5815496"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-42-9-8"
+             y="12.265334"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-98-8-2"
+             y="15.949119"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-5-8-6"
+             y="19.632902"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-522-2-5"
+             y="23.316687"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-07-0-4"
+             y="27.000471"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-15-5-6"
+             y="30.684256"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-63-8-3"
+             y="34.368042"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-21-4-8"
+             y="38.051826"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-08-3-4"
+             y="41.735611"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-8-9-3"
+             y="45.419395"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-5-0-7"
+             y="49.10318"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4712-64-0-7"
+             y="52.786964"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4714-92-3-1"
+             y="56.470749"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">16</tspan><tspan
+             id="tspan4720-82-5-0"
+             y="60.154533"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="528.04467"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,512.05199)"
+         id="use5064-5-5"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="512.03948"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 17.428225,3.6829417 c -0.01548,0.058672 0.987423,-0.232895 2.195483,1.086372 0.479237,0.524244 0.934915,1.3251637 1.034469,2.3398535 0.110623,1.3301826 -0.315864,2.4098801 -0.761537,3.8469238 -0.162161,0.554166 -0.310101,1.144995 -0.31748,1.712955 -0.004,0.525614 0.08722,1.07624 0.358613,1.49418 0.170182,0.279069 0.425149,0.524581 0.726514,0.721833 0.291423,0.190451 0.634421,0.327836 1.005298,0.422939 0.714933,0.188543 1.505622,0.167986 2.389521,0.11968 0.811237,-0.05353 1.746702,-0.144962 2.710361,-0.0643 0.940161,0.06998 1.959379,0.372361 2.810583,1.066583 0.683678,0.592227 1.146839,1.375092 1.391729,2.207357 0.239798,0.803537 0.315629,1.616516 0.319615,2.405764 0.0079,0.302513 -0.0037,0.655772 -0.08704,1.045728 -0.07876,0.394634 -0.283387,0.801562 -0.637279,1.149477 0,0 -4e-6,3e-6 -4e-6,3e-6 -0.241641,0.212934 -0.491014,0.354885 -0.723218,0.442163 -0.228172,0.09047 -0.426014,0.1484 -0.58659,0.201152 -0.502119,0.16562 -0.969535,0.383744 -1.471654,0.549364 -0.595969,0.192799 -1.206063,0.309426 -1.814801,0.369342 0,0 -3e-6,0 -3e-6,0 -0.567653,0.0614 -1.071175,0.06521 -1.457124,0.181373 -0.2943,0.0664 -0.5841,0.210113 -0.886154,0.396695 -0.429952,0.265586 -0.879161,0.613754 -1.389667,0.93844 -0.43491,0.291447 -0.927355,0.56203 -1.492386,0.743944 -0.575677,0.18908 -1.226492,0.232154 -1.876102,0.06504 -0.51494,-0.146952 -0.963511,-0.41992 -1.317537,-0.770861 -0.356133,-0.352787 -0.623418,-0.761133 -0.807816,-1.186941 -0.364997,-0.864758 -0.458926,-1.746484 -0.46284,-2.538247 0,0 0,-3e-6 0,-3e-6 -0.01653,-0.826003 0.02995,-1.539521 -0.05042,-2.216243 -0.09189,-0.678116 -0.263658,-1.303502 -0.631152,-1.71485 -0.3853,-0.497336 -1.077617,-0.780494 -1.772013,-0.928272 -0.732273,-0.146628 -1.561942,-0.107436 -2.378831,-0.08485 -0.88723,0.03485 -1.7783683,0.04621 -2.6911222,-0.1452 C 7.7757318,17.342495 6.8643362,16.836685 6.2516796,16.044556 5.7575195,15.364856 5.5504711,14.581933 5.5248016,13.864513 5.4946134,13.094231 5.6286067,12.370985 5.7907744,11.744012 6.2057709,10.052366 6.6270576,9.1952567 6.5298112,7.9883121 6.4806103,7.2419155 6.2228913,6.6039567 5.9345068,6.1328028 5.2610566,5.0314697 4.5090292,4.6973752 4.550545,4.6121637 c -0.00349,0.00716 0.8666494,0.00427 1.8252537,1.2093087 0.3910364,0.4919479 0.7670656,1.1979232 0.9003233,2.0833709 0.1911641,1.3826837 -0.1681673,2.4645777 -0.4975873,4.0626997 -0.1136368,0.591682 -0.2047024,1.226473 -0.1453929,1.824425 0.057222,0.549574 0.2225301,1.117978 0.5646113,1.523586 0.3857543,0.50358 1.0623197,0.811932 1.8150849,0.965682 0.7203998,0.139572 1.49319,0.0932 2.372692,0.0458 0.810674,-0.05317 1.734188,-0.108817 2.68947,0.04254 0.930096,0.13909 1.91078,0.558126 2.645326,1.371922 0.610855,0.734161 0.916666,1.623093 1.011063,2.491218 0.102991,0.845304 0.07019,1.611651 0.09093,2.360564 0,0 1e-6,3e-6 1e-6,3e-6 0.03162,0.710494 0.09112,1.396749 0.351448,1.939436 0.123797,0.26782 0.28094,0.511946 0.474999,0.694182 0.190331,0.178409 0.413372,0.31858 0.638402,0.374424 0.278336,0.0872 0.630566,0.04586 0.984553,-0.05574 0.35467,-0.105653 0.712192,-0.314157 1.090933,-0.55832 0.429462,-0.293984 0.904718,-0.658126 1.450282,-0.974503 0.385809,-0.223734 0.807783,-0.424536 1.281781,-0.567627 0.645921,-0.165177 1.235463,-0.183329 1.719838,-0.225909 0,0 3e-6,0 3e-6,0 0.518149,-0.05145 1.017814,-0.142313 1.484841,-0.292994 0.440783,-0.139216 0.917666,-0.357528 1.467736,-0.537468 0.202345,-0.0664 0.368594,-0.111238 0.493004,-0.162317 0.121429,-0.05469 0.212678,-0.09471 0.25002,-0.138186 0,0 0,-1e-6 0,-1e-6 0.07427,-0.04561 0.128771,-0.18783 0.181527,-0.354143 0.04925,-0.175761 0.05063,-0.409147 0.05527,-0.682212 -0.0046,-0.713677 -0.04848,-1.381568 -0.227887,-1.980314 -0.185967,-0.608988 -0.48034,-1.160756 -0.903133,-1.517455 -0.492355,-0.457971 -1.242011,-0.670652 -1.987674,-0.767953 -0.777068,-0.09205 -1.652666,-0.0214 -2.501892,0.0068 -0.925583,0.04083 -1.863243,0.01823 -2.794232,-0.238945 -0.484923,-0.136652 -0.949258,-0.347141 -1.366428,-0.635756 -0.434677,-0.30037 -0.800544,-0.69152 -1.062148,-1.148013 -0.387004,-0.703738 -0.49599,-1.468435 -0.4439,-2.153098 0.0528,-0.730825 0.249024,-1.401492 0.458614,-1.981734 C 19.437251,9.1285141 19.909881,8.2758051 19.868027,7.1586394 19.852519,6.3343009 19.539914,5.6251584 19.182931,5.1313954 18.34939,3.9760749 17.402589,3.7801204 17.428225,3.6829417 Z"
+           id="path8526-0-2"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 4.550545,4.6121637 c 0,0 0.8093951,2.7470883 2.3524216,3.334414 1.4578199,0.5548931 -1.1788365,6.5368263 -0.1782509,7.7334763 1.11093,1.328615 8.4678253,0.504647 9.4352533,2.540025 0.736185,1.551525 1.353531,7.435889 2.918302,8.143487 1.054823,0.476997 4.284984,-2.824541 5.225929,-2.150154 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.750607,0.08593 0.480554,-1.61578 C 29.514155,19.700901 29.280492,18.662987 29.09799,16.992051 28.925288,15.410841 20.280524,15.80494 19.420664,14.466773 18.735911,13.401119 21.423832,7.6410551 20.263102,7.1339033 19.396216,6.7551405 17.428273,3.6829544 17.428273,3.6829544"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-1.3716649)" />
+        <text
+           id="text4678-13-4-0"
+           y="1.2103162"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2103162"
+             x="-1.8505859"
+             id="tspan4680-0-3-9"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-71-0-3"
+             y="4.8941007"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-78-4-9"
+             y="8.5778856"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-61-3-1"
+             y="12.26167"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-08-8-9"
+             y="15.945455"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-30-9-1"
+             y="19.629238"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-0-8-9"
+             y="23.313023"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-29-7-0"
+             y="26.996807"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-65-3-3"
+             y="30.680592"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-43-2-4"
+             y="34.364376"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-70-3-6"
+             y="38.048161"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-50-0-8"
+             y="41.731945"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-72-3-6"
+             y="45.41573"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-84-4-4"
+             y="49.099514"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4712-2-0-2"
+             y="52.783298"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4714-57-1-2"
+             y="56.467083"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4716-38-6-2"
+             y="60.150867"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">17</tspan><tspan
+             id="tspan4718-91-2-6"
+             y="63.834652"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4720-19-8-0"
+             y="67.51844"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="560.02411"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,544.03143)"
+         id="use5066-6-7"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="544.01892"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 17.969747,2.3064096 c -0.111366,0.2225572 1.419325,-0.1562281 2.175294,2.2037524 0,3e-7 1e-6,1.2e-6 1e-6,1.2e-6 0.211981,0.6769164 0.258835,1.4530735 0.13777,2.3208233 -0.102416,0.7577899 -0.270482,1.3663173 -0.447979,2.1745005 -0.138055,0.6456817 -0.269115,1.357259 -0.225851,2.027258 0.04283,0.608428 0.208026,1.253212 0.591239,1.70441 0.386608,0.501122 1.052612,0.813989 1.80008,0.983358 0.714161,0.154286 1.47944,0.133764 2.355921,0.123142 0.806335,-0.01895 1.723525,-0.02715 2.661402,0.178147 0.912059,0.191696 1.855821,0.670099 2.524975,1.52649 0.577072,0.813182 0.802461,1.740417 0.876946,2.60374 0.09367,0.811259 0.105937,1.59979 0.302966,2.229401 0.08617,0.283057 0.239366,0.658983 0.322945,1.144804 0.04076,0.243987 0.04289,0.517436 -0.01129,0.809301 -0.05353,0.294125 -0.191626,0.588168 -0.419508,0.850988 -0.252356,0.25999 -0.523096,0.424351 -0.774962,0.510692 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.244908,0.09176 -0.448893,0.142467 -0.603127,0.188405 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.41615,0.123069 -0.880122,0.352587 -1.447575,0.542317 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.603868,0.19789 -1.214148,0.30817 -1.812842,0.370586 -0.557383,0.06267 -1.067906,0.08204 -1.487349,0.188871 -0.501618,0.105419 -0.998523,0.360093 -1.539823,0.66099 -0.415171,0.230784 -0.844944,0.481909 -1.31835,0.710076 -0.547233,0.274488 -1.158015,0.50042 -1.830544,0.597129 -0.687371,0.102069 -1.426086,0.01047 -2.102906,-0.326483 -0.48399,-0.255952 -0.87903,-0.619825 -1.169179,-1.039741 -0.292314,-0.422583 -0.489424,-0.882569 -0.60537,-1.344751 -0.227387,-0.937518 -0.192931,-1.849491 -0.09803,-2.661303 0.08683,-0.847772 0.212945,-1.586514 0.191423,-2.293887 -0.03248,-0.713688 -0.166542,-1.384714 -0.527267,-1.84169 -0.378959,-0.555754 -1.108751,-0.889541 -1.839854,-1.071135 -0.773996,-0.18222 -1.660157,-0.163816 -2.523682,-0.166002 -0.945934,0.0088 -1.889611,-0.0133 -2.8412202,-0.262812 C 7.7876735,15.815394 7.3109036,15.611805 6.8792015,15.329924 6.4274915,15.035427 6.0430791,14.648784 5.7624812,14.19392 5.3407994,13.483886 5.2066865,12.701118 5.2384429,11.999867 5.2700954,11.242718 5.4552187,10.543221 5.6546931,9.9429432 6.1811435,8.286187 6.6286916,7.47051 6.5789805,6.2904977 6.5242097,4.1674679 5.0736827,3.3263827 5.142559,3.2229683 4.9324121,3.5384937 6.9076659,3.2169996 7.2702706,6.237207 7.4136252,7.5802612 7.0207409,8.6372489 6.5842087,10.219311 c -0.1499306,0.574807 -0.2857955,1.198377 -0.2741462,1.796323 0.013344,0.547537 0.1285792,1.124168 0.4313659,1.558499 0.1888744,0.286657 0.4644487,0.535294 0.7878344,0.73382 0.3113593,0.190765 0.6737639,0.32613 1.0654524,0.419911 0.7547713,0.185087 1.5734878,0.163843 2.5081188,0.141318 0.854785,-0.03085 1.834553,-0.06498 2.837382,0.127977 0.974372,0.178534 1.994553,0.663698 2.717986,1.567151 0.590531,0.802238 0.844464,1.757463 0.863068,2.678078 0.02845,0.891778 -0.08942,1.702775 -0.166103,2.493666 -0.06142,0.754606 -0.100119,1.489041 0.07968,2.114607 0.08468,0.307945 0.206849,0.597568 0.378285,0.833043 0.168488,0.230888 0.377699,0.428276 0.608866,0.54157 0.310707,0.172926 0.735594,0.205935 1.165222,0.156892 0.430654,-0.05254 0.877069,-0.230415 1.341349,-0.452831 0.395479,-0.198654 0.806212,-0.442775 1.251329,-0.683678 0.583175,-0.315622 1.214305,-0.619009 1.939707,-0.806233 0.620199,-0.141111 1.196771,-0.169942 1.689613,-0.218411 0.528261,-0.05684 1.029037,-0.140429 1.486806,-0.29175 0,0 3e-6,-10e-7 3e-6,-10e-7 0.432125,-0.139067 0.914022,-0.370412 1.491809,-0.544513 0,0 3e-6,-1e-6 3e-6,-1e-6 0.213363,-0.06397 0.380999,-0.100583 0.492325,-0.145532 0,0 2e-6,-10e-7 2e-6,-10e-7 0.105841,-0.05094 0.17868,-0.07721 0.182411,-0.09919 0.01667,-0.0064 0.03307,-0.05534 0.05205,-0.115486 0.01875,-0.06446 0.01384,-0.159736 0.002,-0.273472 -0.02207,-0.233144 -0.15613,-0.54076 -0.267487,-0.947764 -0.241331,-0.901605 -0.257288,-1.772898 -0.320895,-2.498703 -0.09138,-0.757918 -0.202587,-1.438897 -0.558723,-1.891497 -0.34235,-0.515595 -1.005376,-0.839768 -1.677378,-1.025556 -0.711196,-0.187663 -1.527991,-0.191228 -2.331033,-0.204329 -0.874918,-0.0042 -1.74708,-0.02178 -2.639675,-0.231378 -0.96029,-0.217415 -1.846882,-0.722385 -2.447441,-1.499184 -0.541794,-0.746342 -0.740447,-1.612659 -0.739396,-2.387417 -0.0024,-0.841687 0.178905,-1.6275845 0.368107,-2.292492 0.234335,-0.8403012 0.427734,-1.3807682 0.571233,-2.0781235 0.156974,-0.7809527 0.18477,-1.4337316 0.05685,-2.0189165 0,-3e-7 0,-5e-7 0,-8e-7 C 19.165999,2.9377577 17.919144,2.4075351 17.969747,2.3064096 Z"
+           id="path8616-2-5"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 5.142559,3.2229683 c 0,0 0.2390397,2.4535592 1.7820666,3.0408849 1.45782,0.5548931 -1.6732579,6.4235218 -0.6726717,7.6201718 1.11093,1.328615 8.8540921,1.086621 9.8215201,3.121999 0.736185,1.551525 0.42134,8.213571 1.986111,8.921169 1.054823,0.476997 5.30367,-2.388168 6.244615,-1.713781 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.217256,-0.369199 -0.0528,-2.070908 -1.005017,-1.346595 -0.847263,-2.940734 -1.029765,-4.61167 C 28.783354,14.399488 20.59696,14.433072 19.7371,13.094905 19.052347,12.029251 20.998641,5.1000874 19.837907,4.5929356 18.971021,4.2141728 17.969765,2.3064187 17.969765,2.3064187"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-90-5-0"
+           y="1.147082"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.147082"
+             x="-1.8505859"
+             id="tspan4680-70-9-1"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-06-4-4"
+             y="4.8308663"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-784-1-1"
+             y="8.5146513"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-40-4-2"
+             y="12.198436"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-1-9-9"
+             y="15.88222"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-91-6-9"
+             y="19.566004"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-81-6-6"
+             y="23.249788"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-49-5-9"
+             y="26.933573"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-17-9-8"
+             y="30.617357"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-97-7-9"
+             y="34.301144"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-14-9-1"
+             y="37.984928"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-42-5-0"
+             y="41.668713"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-84-7-1"
+             y="45.352497"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-93-8-2"
+             y="49.036282"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4712-98-3-1"
+             y="52.720066"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4714-36-6-3"
+             y="56.403851"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4716-05-2-7"
+             y="60.087635"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4718-40-8-6"
+             y="63.77142"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">18</tspan><tspan
+             id="tspan4720-4-9-9"
+             y="67.4552"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="592.00356"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,576.01088)"
+         id="use5068-4-8"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="575.99837"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 18.419696,2.0165691 c -0.100409,0.1201352 1.336993,0.2550452 1.786183,2.5921462 0,5e-7 0,9e-7 0,1.2e-6 0.253803,1.4045421 -0.08731,2.4598708 -0.423233,4.2547091 -0.1071,0.6171722 -0.190921,1.2932854 -0.107322,1.9268124 0.07855,0.574346 0.279537,1.173435 0.670904,1.582435 0.407589,0.4669 1.075125,0.733533 1.818286,0.865813 0.711198,0.118453 1.457177,0.07073 2.326182,0.04599 0.797356,-0.03241 1.705215,-0.03594 2.630525,0.197847 0.449755,0.116245 0.902536,0.302919 1.325376,0.578722 0.415212,0.270422 0.78857,0.637679 1.068328,1.095172 0.489409,0.873882 0.587863,1.808404 0.578161,2.641198 0.02755,0.783307 -0.0046,1.523017 0.235486,2.058791 0.120426,0.312863 0.388094,0.702492 0.59225,1.268599 0,0 10e-7,3e-6 10e-7,3e-6 0.102699,0.281414 0.160174,0.612019 0.139646,0.977901 0,0 0,5e-6 0,5e-6 -0.01921,0.37066 -0.165537,0.750422 -0.449542,1.082008 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.251487,0.258582 -0.521328,0.422296 -0.772495,0.508671 -0.244285,0.09171 -0.44807,0.142594 -0.602608,0.188769 -0.416848,0.123716 -0.880822,0.353061 -1.447451,0.542963 -0.602714,0.198154 -1.213325,0.309647 -1.813943,0.371474 -0.558937,0.06237 -1.068075,0.07884 -1.480439,0.188202 0,0 -3e-6,0 -3e-6,0 -0.512991,0.118629 -1.023672,0.400472 -1.554181,0.732737 -0.243693,0.156176 -0.489303,0.326534 -0.745951,0.503094 -0.294257,0.202433 -0.59807,0.409546 -0.923452,0.608224 -0.613979,0.382424 -1.315838,0.705209 -2.106158,0.85116 -0.812424,0.154186 -1.698267,0.03456 -2.470116,-0.423282 0,0 -3e-6,-2e-6 -3e-6,-2e-6 -0.479626,-0.303546 -0.854671,-0.71626 -1.111123,-1.179483 -0.258315,-0.466155 -0.409984,-0.963228 -0.473334,-1.453686 -0.119886,-0.99416 0.04167,-1.92983 0.261281,-2.750787 0.217079,-0.860988 0.464138,-1.596503 0.559273,-2.329323 0.08462,-0.740235 0.05965,-1.452982 -0.23573,-1.985203 C 15.521381,17.210967 15.233594,16.905047 14.902134,16.659694 14.559937,16.407098 14.151063,16.22446 13.724447,16.09062 12.846389,15.810108 11.814263,15.77953 10.82982,15.723838 9.7306804,15.67569 8.6527019,15.584783 7.5986186,15.205103 7.0432476,15.002158 6.5260142,14.710683 6.0818789,14.329961 5.6112628,13.927031 5.2476843,13.420561 5.0314672,12.85801 4.7877432,12.195105 4.761209,11.519553 4.8475124,10.921276 4.9388441,10.274949 5.1390918,9.684365 5.3438779,9.174306 5.8890972,7.7765358 6.3060907,7.0938299 6.4019704,6.057107 c 0,0 -4e-7,-1e-6 -4e-7,-1e-6 C 6.6129894,4.0430711 5.4875466,3.0207433 5.5735751,2.9386003 5.3906164,3.1132957 7.0941045,3.3548392 7.0673838,6.0925005 c -5e-7,1e-7 0,1.3e-6 0,1.3e-6 -0.023181,1.1753695 -0.410193,2.0547063 -0.8619424,3.395438 -0.1600345,0.4920583 -0.3117496,1.0247062 -0.3526849,1.5470612 -0.03576,0.480432 0.00195,0.988795 0.1942423,1.417257 0.1559706,0.368962 0.4311045,0.70848 0.7777798,0.987895 0.3299592,0.265562 0.7330395,0.467253 1.1779826,0.616234 0.8488329,0.289767 1.7896974,0.319179 2.8751758,0.350868 0.975705,0.01595 2.108893,0.0331 3.240061,0.34198 0.548706,0.152307 1.101448,0.390645 1.611825,0.741941 0.499342,0.343118 0.943111,0.808231 1.257631,1.384147 0.466759,0.910669 0.564956,1.921828 0.434074,2.859656 -0.11609,0.91186 -0.364374,1.712733 -0.559513,2.508741 -0.173381,0.758715 -0.314851,1.504445 -0.205473,2.165565 0.04957,0.324717 0.142281,0.63552 0.294058,0.894029 0.149035,0.253305 0.346284,0.47592 0.574542,0.61039 0,0 2e-6,1e-6 2e-6,1e-6 0.34609,0.233904 0.86253,0.276263 1.366975,0.201459 0.507919,-0.07981 1.022598,-0.33451 1.550024,-0.646908 0.277909,-0.168571 0.556455,-0.359705 0.847992,-0.560502 0.254288,-0.175142 0.514783,-0.355054 0.79023,-0.531516 0.59475,-0.388743 1.267081,-0.737942 2.034051,-0.934216 0,0 3e-6,-1e-6 3e-6,-1e-6 0.62569,-0.146019 1.205232,-0.172332 1.696517,-0.219079 0.526775,-0.0553 1.027145,-0.13949 1.485705,-0.290862 0.433011,-0.139325 0.915141,-0.37012 1.491939,-0.543869 0.213029,-0.06386 0.380724,-0.100566 0.492593,-0.145644 0.106497,-0.051 0.180148,-0.07779 0.18514,-0.100738 0,0 0,0 0,0 0.0239,-0.0064 0.04121,-0.07922 0.05783,-0.160852 0,0 0,-1e-6 0,-1e-6 0.01558,-0.08989 -0.01357,-0.2173 -0.05599,-0.365734 0,0 0,-2e-6 0,-2e-6 -0.08972,-0.304357 -0.347064,-0.681695 -0.552986,-1.211935 -0.330256,-0.937994 -0.315802,-1.845585 -0.301407,-2.593206 -0.02352,-0.777929 -0.03253,-1.460616 -0.334004,-1.922863 -0.140842,-0.25317 -0.363935,-0.476432 -0.619388,-0.656997 -0.262761,-0.18523 -0.57591,-0.319479 -0.904629,-0.417011 -0.6757,-0.205811 -1.463643,-0.211533 -2.240389,-0.214417 -0.84922,0.0075 -1.688465,0.0219 -2.567541,-0.142631 -0.943457,-0.167884 -1.832633,-0.608938 -2.463448,-1.330381 -0.559692,-0.679449 -0.807166,-1.491712 -0.855845,-2.234396 -0.05562,-0.807808 0.07374,-1.5699207 0.232573,-2.2211656 0.438398,-1.8984171 0.851232,-2.6887798 0.718021,-3.9706842 0,0 -10e-7,-1e-6 -10e-7,-1e-6 C 19.413923,2.8729565 18.347533,2.1029091 18.419696,2.0165691 Z"
+           id="path8706-6-5"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 5.5735751,2.9386003 c 0,0 -0.3819209,2.5488784 1.161102,3.1362041 1.45782,0.5548931 -2.19603,5.3836796 -1.195444,6.5803296 1.11093,1.328615 9.8343109,2.526275 10.8017389,4.561653 0.736185,1.551525 -0.796108,8.660835 0.768663,9.368433 1.054823,0.476997 6.25362,-3.046195 7.194565,-2.371808 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.853306,-0.831813 -0.416751,-2.533522 -1.005013,-1.346595 -0.542027,-2.937093 -0.724529,-4.608029 -0.172702,-1.58121 -8.122186,-1.434322 -8.982046,-2.772489 -0.684753,-1.065654 1.137935,-7.5879494 -0.0228,-8.0951012 C 19.025607,4.275372 18.41974,2.0166059 18.41974,2.0166059"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-92-6-0"
+           y="1.1226861"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1226861"
+             x="-1.8505859"
+             id="tspan4680-67-2-7"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-56-4-7"
+             y="4.8064709"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-31-8-7"
+             y="8.4902554"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-7-3-7"
+             y="12.17404"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-95-1-6"
+             y="15.857824"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-28-7-1"
+             y="19.541609"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-92-5-4"
+             y="23.225393"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-82-6-6"
+             y="26.909178"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-05-6-3"
+             y="30.592962"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-41-9-1"
+             y="34.276745"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-00-9-9"
+             y="37.960529"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-253-3-7"
+             y="41.644314"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-623-8-0"
+             y="45.328098"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-97-5-8"
+             y="49.011883"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4712-51-9-3"
+             y="52.695667"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4714-4-5-2"
+             y="56.379452"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4716-28-7-9"
+             y="60.063236"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4718-28-8-4"
+             y="63.747021"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4720-29-4-3"
+             y="67.430809"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">19</tspan></text>
+      </g>
+    </g>
+  </g>
+  <g
+     style="display:none"
+     inkscape:label="laminaria"
+     id="g9277"
+     inkscape:groupmode="layer"
+     sodipodi:insensitive="true">
+    <g
+       id="g9952"
+       transform="translate(-2.469665,-1.095885)"
+       clip-path="url(#clipPath11338)">
+      <g
+         transform="translate(3.2788765e-8,0.01251397)"
+         inkscape:tile-y0="-0.012513974"
+         inkscape:tile-x0="-1.4532307e-15"
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="15.992678"
+         inkscape:tile-cx="16"
+         id="g5028-3"
+         style="display:inline">
+        <path
+           transform="translate(4.322867e-8,-0.3124032)"
+           clip-path="none"
+           sodipodi:nodetypes="cssssssssssssss"
+           inkscape:original-d="m 5.8911215,2.781365 c 0,0 -0.8348177,0.8317157 0.7082092,1.4190414 1.45782,0.5548931 -2.0507092,6.3805656 -1.0501232,7.5772156 1.11093,1.328615 8.9376865,1.947494 9.9051145,3.982872 0.736185,1.551525 -0.537674,8.973847 1.027097,9.681445 1.054823,0.476997 6.881836,-1.902914 7.822781,-1.22853 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.375071,-1.163553 -0.894982,-2.865262 C 28.138619,18.451419 28.740954,16.47 28.558452,14.799064 28.38575,13.217854 20.411122,12.668966 19.551262,11.330799 18.866509,10.265145 20.652473,3.597478 19.491742,3.0903262 18.624856,2.7115634 18.769092,1.9159685 18.769092,1.9159685"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           id="path4713-8"
+           d="m 18.769071,1.9159464 c 0.01479,-0.014132 0.527396,0.1854024 0.928078,1.1015917 0.240848,0.5573876 0.375243,1.2879783 0.297022,2.2041333 -0.05823,0.7136836 -0.197095,1.3138235 -0.357741,2.1236792 0,-10e-8 0,1.4e-6 0,1.4e-6 -0.118944,0.6163592 -0.243895,1.3227928 -0.204542,1.9832916 0.03853,0.5898304 0.189503,1.2257224 0.557918,1.6815764 0.380963,0.516971 1.048566,0.847284 1.812216,1.036367 0.723166,0.1709 1.487931,0.169079 2.387049,0.197604 0.814949,0.01605 1.747345,0.06672 2.680072,0.366003 0.451557,0.147572 0.902155,0.368202 1.315298,0.67965 0,0 3e-6,2e-6 3e-6,2e-6 0.404662,0.304631 0.759577,0.70674 1.009963,1.195636 0.238243,0.486977 0.355143,0.998111 0.388626,1.491469 0.03582,0.482503 0.01583,0.93535 -0.0063,1.36504 -0.01826,0.417506 -0.03873,0.814667 -0.005,1.173543 0.03619,0.351507 0.102974,0.68225 0.245367,0.939471 0.15999,0.333498 0.556673,0.708256 0.905405,1.318051 0.177259,0.301129 0.306689,0.674675 0.336694,1.10652 0.03238,0.440283 -0.11028,0.906089 -0.446463,1.305475 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.251948,0.259507 -0.522315,0.423619 -0.773857,0.509919 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.244591,0.09171 -0.448307,0.142431 -0.602438,0.188506 -0.415682,0.123359 -0.879899,0.353943 -1.449359,0.543404 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.605987,0.196983 -1.213578,0.303722 -1.80488,0.369867 -0.549738,0.06509 -1.067623,0.09725 -1.515365,0.194927 -0.673992,0.129747 -1.342919,0.435463 -2.073625,0.775876 -0.533038,0.248326 -1.083581,0.507378 -1.681045,0.723103 -0.715133,0.266354 -1.500445,0.442062 -2.327838,0.425389 -0.850113,-0.01423 -1.712487,-0.297732 -2.411357,-0.874233 -0.423505,-0.365892 -0.741182,-0.813596 -0.951507,-1.291945 -0.212552,-0.482534 -0.329545,-0.982631 -0.372448,-1.470746 -0.08105,-0.990863 0.07769,-1.920782 0.262279,-2.74743 0.182257,-0.868441 0.378584,-1.63214 0.406179,-2.37579 0.01836,-0.756561 -0.08971,-1.47968 -0.453167,-1.989253 -0.377417,-0.608535 -1.131617,-0.99542 -1.887641,-1.223716 C 12.17277,14.710688 11.23587,14.675165 10.345334,14.612212 9.3502893,14.553301 8.3746475,14.447633 7.4248602,14.095466 6.924042,13.907204 6.4568393,13.643636 6.0511318,13.304028 5.6215991,12.94491 5.2815711,12.497471 5.0637243,11.998176 4.7490325,11.242376 4.7323096,10.461069 4.8491275,9.7940786 4.9748189,9.0580351 5.236902,8.3870736 5.4709451,7.8348584 c 0,0 6e-7,-1.4e-6 6e-7,-1.4e-6 C 5.7704926,7.1184238 5.9953912,6.6377533 6.1721073,6.0530496 6.3874068,5.3305738 6.4397155,4.7541695 6.3706277,4.2484012 6.2454493,3.2908178 5.8299326,2.8349194 5.8911215,2.781365 c -0.00107,9.384e-4 0.6189999,0.2350177 0.9369122,1.3710466 0.1549137,0.5639684 0.18224,1.2562767 0.00865,2.0689015 -0.1356033,0.6464412 -0.3369164,1.2009982 -0.579824,1.9120538 -10e-8,4e-7 -3e-7,9e-7 -4e-7,1.4e-6 -0.1861327,0.5539157 -0.3915665,1.185201 -0.4529722,1.7934991 -0.052154,0.5475656 -0.017136,1.1473906 0.230803,1.6302006 0.1569344,0.325663 0.4127014,0.622852 0.7291095,0.869741 0.3011018,0.234609 0.6638135,0.415158 1.0636688,0.551475 0.7616895,0.264571 1.608172,0.309251 2.582564,0.349543 0.874663,0.02598 1.893151,0.04467 2.914868,0.293456 0.986875,0.231002 2.016087,0.77132 2.71953,1.733054 0.579434,0.860343 0.796958,1.878312 0.753494,2.854403 -0.03246,0.939184 -0.226606,1.794996 -0.397727,2.631562 -0.151995,0.797299 -0.291469,1.579987 -0.207606,2.289037 0.03825,0.3483 0.116355,0.684666 0.253642,0.978325 0.13517,0.288206 0.317976,0.549886 0.543727,0.734399 0.350512,0.313109 0.887535,0.46479 1.438558,0.489731 0.550939,0.02186 1.138397,-0.124878 1.73979,-0.337071 0.501767,-0.183841 1.008457,-0.427512 1.55282,-0.678156 0.746267,-0.343609 1.532183,-0.684887 2.420529,-0.881429 0.597703,-0.120654 1.163182,-0.158339 1.661598,-0.212355 0.53521,-0.06186 1.038383,-0.14235 1.494767,-0.292469 0,0 2e-6,-10e-7 2e-6,-10e-7 0.430991,-0.13741 0.912143,-0.369166 1.490025,-0.543426 0.21346,-0.06404 0.381275,-0.100679 0.492913,-0.145655 0,0 2e-6,-1e-6 2e-6,-1e-6 0.106195,-0.05097 0.179412,-0.0774 0.183619,-0.09973 0,0 0,-1e-6 0,-1e-6 0.02934,-0.0028 0.04343,-0.09935 0.05312,-0.196975 0.0071,-0.111202 -0.05564,-0.261176 -0.138195,-0.431645 -0.178912,-0.34798 -0.582642,-0.750077 -0.909252,-1.371858 -0.245757,-0.504804 -0.357733,-1.024608 -0.385965,-1.511133 -0.0317,-0.491742 -0.0043,-0.952849 0.02506,-1.371481 0.02684,-0.430816 0.05549,-0.819703 0.03203,-1.180052 -0.02685,-0.364478 -0.08511,-0.698231 -0.218879,-0.965705 -0.125632,-0.273674 -0.339803,-0.52173 -0.590398,-0.726572 0,0 -1e-6,-1e-6 -1e-6,-1e-6 -0.258482,-0.210752 -0.572888,-0.371144 -0.904967,-0.49372 -0.684561,-0.258183 -1.499288,-0.314369 -2.293027,-0.367352 -0.87971,-0.04782 -1.737738,-0.0893 -2.621987,-0.320945 -0.960651,-0.242787 -1.829645,-0.769104 -2.399399,-1.552678 -0.501242,-0.733923 -0.668861,-1.568664 -0.65937,-2.3012051 0.0071,-0.8118047 0.186269,-1.5726924 0.357416,-2.1977339 0,0 0,-1.5e-6 0,-1.5e-6 0.22331,-0.8318347 0.394837,-1.3520298 0.508069,-2.0144888 C 19.45744,4.307361 19.427309,3.685268 19.286335,3.1631143 19.069805,2.3443685 18.714445,1.9681494 18.769071,1.9159464 Z"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           inkscape:tile-cx="17.2007"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-y0="2.4163" />
+        <text
+           id="text4678-06"
+           y="1.1371666"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             id="tspan4720-295"
+             y="1.1371666"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">1</tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.792653"
+         inkscape:tile-cy="47.992678"
+         inkscape:tile-cx="55.103673"
+         transform="translate(3.2788765e-8,32)"
+         id="use5034-7"
+         inkscape:tile-x0="38.207347"
+         inkscape:tile-y0="31.987486"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 18.747444,2.0810775 c 0.01444,-0.00512 0.613947,0.675124 0.587115,2.3003394 -0.01657,0.8258603 -0.27789,1.8136649 -0.43059,2.8940796 -0.05857,0.427501 -0.09579,0.8906249 -0.04364,1.3341035 0.04848,0.4030329 0.161829,0.8186673 0.383384,1.1558624 0.336,0.5530356 0.987528,0.9409236 1.754506,1.1635876 0.712082,0.199727 1.480818,0.211215 2.379756,0.227344 0.801618,0.0053 1.734088,0.01407 2.675816,0.240841 0.905157,0.209833 1.849453,0.708543 2.496923,1.596294 0.425337,0.628469 0.640381,1.346547 0.698786,2.053707 0.06169,0.683131 0.01929,1.327062 -0.0245,1.947998 -0.03605,0.594738 -0.07445,1.171708 -0.0048,1.691023 0.07287,0.502727 0.213977,0.987863 0.491507,1.32012 0,0 10e-7,2e-6 10e-7,2e-6 0.18398,0.239626 0.544206,0.524219 0.890676,1.019718 0.1739,0.247533 0.30659,0.563523 0.358804,0.93766 0.05457,0.38245 -0.04161,0.795526 -0.306163,1.170654 -0.257331,0.306652 -0.547108,0.493867 -0.818763,0.578449 -0.260851,0.09238 -0.470502,0.136111 -0.618664,0.176103 0,0 -3e-6,0 -3e-6,0 -0.3974,0.104389 -0.850739,0.34219 -1.426262,0.536603 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.612605,0.202062 -1.221567,0.304226 -1.806614,0.370967 -0.543427,0.06559 -1.065285,0.106549 -1.532019,0.19801 -0.689595,0.125706 -1.382876,0.382743 -2.129809,0.660666 -0.699619,0.260318 -1.420735,0.528583 -2.204794,0.714102 -0.823619,0.199374 -1.710613,0.269074 -2.602163,0.10689 -0.918964,-0.164836 -1.793216,-0.638802 -2.415561,-1.398623 -0.653379,-0.859761 -0.88887,-1.888754 -0.844038,-2.830149 0.03742,-0.953874 0.273126,-1.828777 0.508176,-2.608494 0.236567,-0.82011 0.468231,-1.548273 0.530787,-2.263392 0.05525,-0.729743 -0.0185,-1.434667 -0.345505,-1.947009 -0.185655,-0.318239 -0.47094,-0.592988 -0.793057,-0.812339 C 13.82345,14.389904 13.433204,14.228333 13.028721,14.110844 12.193354,13.863858 11.21888,13.841686 10.299838,13.798649 9.2596315,13.761897 8.2557157,13.689628 7.2647937,13.364635 6.7388212,13.189771 6.2473535,12.937358 5.8178649,12.606037 5.3588835,12.252416 4.9924533,11.805705 4.7513664,11.304768 4.4934008,10.753016 4.4014336,10.178306 4.4081618,9.6540517 4.4146711,9.0800336 4.5217808,8.5452982 4.6547086,8.0790822 4.9874655,6.9030941 5.4120697,6.0220891 5.6120613,5.2746968 5.9932709,3.861954 5.886602,3.0037585 5.9850166,2.9918282 6.0223996,2.9872964 6.4018225,3.7936492 6.1636079,5.388602 6.0385655,6.2150735 5.6820227,7.1857783 5.4584515,8.2763604 5.3709674,8.7080431 5.3064737,9.1775067 5.3333266,9.6357852 c 0.025277,0.4163558 0.1163861,0.8495698 0.3199551,1.2152098 0.180428,0.336848 0.463597,0.639811 0.8112216,0.88716 0.3275829,0.232746 0.7170115,0.406501 1.1453476,0.532684 0.8114885,0.243547 1.6913443,0.25681 2.7210821,0.271275 0.912193,0.0023 1.977804,0.0047 3.046635,0.268475 0.51642,0.129577 1.040428,0.335434 1.532172,0.643926 0.479484,0.300277 0.916825,0.71109 1.247215,1.228752 0.522815,0.864201 0.691084,1.866087 0.601802,2.818064 -0.07749,0.91421 -0.314016,1.745589 -0.542743,2.552675 -0.2082,0.77038 -0.413723,1.525429 -0.41829,2.232368 0.0039,0.679332 0.139839,1.371974 0.526159,1.813773 0.321916,0.422217 0.886136,0.699205 1.486365,0.82217 0.598851,0.120159 1.264744,0.05114 1.945088,-0.101718 0.650609,-0.15048 1.306269,-0.401287 2.011756,-0.662546 0.753474,-0.27903 1.534158,-0.558027 2.38866,-0.725765 0.582278,-0.107894 1.140817,-0.152387 1.644943,-0.209272 0.541611,-0.06499 1.044733,-0.140094 1.493034,-0.291369 0,0 2e-6,-1e-6 2e-6,-1e-6 0.423264,-0.138235 0.909605,-0.38194 1.513122,-0.550227 0,0 3e-6,-1e-6 3e-6,-1e-6 0.224517,-0.06153 0.39258,-0.09016 0.492217,-0.130241 0.09021,-0.04839 0.147806,-0.06124 0.123186,-0.05903 -8.03e-4,0.03008 -0.0036,-0.01249 0.0035,-0.0586 0.0045,-0.05759 -0.044,-0.149348 -0.10726,-0.261865 -0.133528,-0.233249 -0.472449,-0.496748 -0.812309,-0.938292 0,0 -2e-6,-3e-6 -2e-6,-3e-6 -0.475582,-0.647081 -0.7051,-1.382386 -0.769594,-2.076905 -0.0708,-0.704402 -0.0228,-1.370849 0.0316,-1.971477 0.05063,-0.626902 0.106125,-1.188482 0.06319,-1.715135 -0.04912,-0.536081 -0.165686,-1.031528 -0.42011,-1.397487 -0.334133,-0.548133 -1.011877,-0.90125 -1.691032,-1.108531 -0.7266,-0.212429 -1.57317,-0.239639 -2.379062,-0.282585 -0.906091,-0.03804 -1.786002,-0.102391 -2.663109,-0.374757 -0.973753,-0.294494 -1.80774,-0.900966 -2.294078,-1.729279 -0.29154,-0.5247645 -0.415524,-1.0838184 -0.437908,-1.5968958 -0.02553,-0.5610693 0.04978,-1.0890427 0.150536,-1.5496511 0.249631,-1.1626188 0.583967,-2.0473697 0.680185,-2.7893944 0.18897,-1.4125853 -0.12212,-2.2273588 -0.02939,-2.2602172 z"
+           id="path7176-9"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 5.9850166,2.9918282 c 0,0 -1.6402086,1.7524955 -0.097182,2.3398212 1.4578197,0.5548931 -1.6860955,4.5495828 -0.6855104,5.7462326 1.11093,1.328615 9.3835958,1.942641 10.3510238,3.978019 0.736185,1.551525 -1.406017,8.825364 0.158754,9.532962 1.054823,0.476997 7.651153,-1.049838 8.592098,-0.375447 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.340379,-0.491684 -0.929676,-2.193393 -1.005017,-1.346595 -0.94543,-5.415993 -1.127932,-7.086929 -0.172702,-1.58121 -8.307281,-2.023443 -9.167141,-3.361609 C 18.129116,8.9556905 20.216432,4.8685076 19.055698,4.3613558 18.188812,3.982593 18.747453,2.0811033 18.747453,2.0811033"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-1-9"
+           y="1.1291616"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1291616"
+             x="-1.8505859"
+             id="tspan4680-9-4"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4720-7-9"
+             y="4.8129463"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">2</tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.812236"
+         inkscape:tile-cy="79.910683"
+         inkscape:tile-cx="55.093882"
+         transform="translate(3.2788765e-8,63.918005)"
+         id="use5036-4"
+         inkscape:tile-x0="38.187764"
+         inkscape:tile-y0="63.905491"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 18.542437,1.242604 c 0.04246,-0.00624 0.40291,0.7409424 0.263842,2.2445919 -0.06738,0.7198947 -0.301308,1.5669402 -0.393769,2.500027 -0.0365,0.3731583 -0.04828,0.7741027 0.01542,1.1574726 0.05866,0.3486845 0.173496,0.7043878 0.374312,0.9947815 0.176069,0.2636862 0.431127,0.4935419 0.734414,0.6757642 0.286082,0.171634 0.618791,0.2926898 0.980851,0.3729974 0.684595,0.1559108 1.419961,0.1203846 2.273993,0.063544 0.753847,-0.058473 1.642614,-0.1433867 2.554646,-0.044938 0.874678,0.086633 1.828953,0.4126852 2.587119,1.1300662 0.643073,0.652458 1.017767,1.501481 1.147204,2.373959 0.128978,0.830874 0.09177,1.636334 0.02154,2.416888 -0.05944,0.738593 -0.142667,1.47247 -0.09867,2.140898 0.04939,0.648116 0.183707,1.288252 0.514015,1.756262 0,0 1e-6,2e-6 1e-6,2e-6 0.254792,0.394302 0.75774,0.808151 1.191908,1.492273 0.21775,0.339021 0.375136,0.762252 0.409419,1.249124 0.03607,0.496188 -0.133157,1.016676 -0.524137,1.444341 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.248749,0.23894 -0.510361,0.392961 -0.753185,0.479585 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.237323,0.0911 -0.43808,0.144857 -0.59424,0.193773 -0.422583,0.132153 -0.893064,0.361629 -1.465138,0.547324 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.609849,0.192032 -1.210563,0.290938 -1.785189,0.365371 -0.537587,0.07208 -1.065886,0.130745 -1.580238,0.204723 -0.522198,0.07764 -1.059032,0.173565 -1.610869,0.263887 -1.216219,0.199063 -2.458542,0.361482 -3.759462,0.25153 -0.971279,-0.08567 -1.94221,-0.361815 -2.808226,-0.879184 -0.893584,-0.532912 -1.616098,-1.350541 -1.993155,-2.345458 -0.329477,-0.938845 -0.331732,-1.899933 -0.17165,-2.756116 0.155756,-0.87108 0.433865,-1.674939 0.666067,-2.399641 0.237033,-0.764839 0.440396,-1.466644 0.469913,-2.147932 0.02418,-0.697886 -0.08977,-1.371811 -0.430133,-1.852875 0,0 -10e-7,-10e-7 -10e-7,-10e-7 -0.203962,-0.312056 -0.507634,-0.573724 -0.84498,-0.776275 C 13.584293,12.150003 13.180504,12.010419 12.765919,11.916481 11.908131,11.717994 10.918686,11.75494 9.9957996,11.76244 8.9397578,11.783269 7.9256228,11.756807 6.9211259,11.466473 6.3838568,11.308696 5.8825242,11.067977 5.4458295,10.744993 4.9752883,10.397386 4.6030821,9.951501 4.361846,9.4521915 3.9023407,8.4441382 3.9939738,7.3903421 4.1956393,6.6061193 4.4550954,5.5573247 4.8319328,4.769304 5.0557415,4.1113278 5.4973548,2.8129585 5.5781561,2.040853 5.6718781,2.0469894 5.7328666,2.0509826 5.8731615,2.8316856 5.5722415,4.2524952 5.4209429,4.9669525 5.1138772,5.808236 4.9586868,6.7639602 4.8519885,7.4697527 4.8210948,8.3588747 5.2092042,9.0223561 c 0.1838963,0.3387584 0.4746824,0.6420926 0.8331846,0.884694 0.335091,0.2264639 0.7331816,0.3898899 1.1706502,0.5009169 0.8231394,0.213617 1.706018,0.183351 2.7451744,0.139363 0.9092316,-0.04916 1.9821386,-0.114073 3.0699036,0.08437 0.524718,0.09775 1.062716,0.271757 1.574342,0.552181 0.49778,0.272316 0.960092,0.659397 1.319212,1.161638 0,0 2e-6,3e-6 2e-6,3e-6 0.549223,0.805408 0.772007,1.76799 0.728021,2.703137 -0.03625,0.894037 -0.246737,1.727983 -0.490724,2.525031 -0.224632,0.758671 -0.476495,1.505589 -0.585557,2.213925 -0.09928,0.690726 -0.109437,1.391768 0.123434,1.964316 0.222656,0.616831 0.733424,1.160716 1.352517,1.539499 0.611029,0.372848 1.358745,0.569 2.143076,0.645859 1.058696,0.108497 2.162711,-0.05394 3.353096,-0.251277 0.542479,-0.08993 1.086892,-0.184087 1.646322,-0.260633 0.548579,-0.07755 1.081975,-0.135438 1.596724,-0.20256 0.549114,-0.07422 1.058367,-0.149895 1.514459,-0.296964 0,0 2e-6,-1e-6 2e-6,-1e-6 0.43032,-0.133189 0.906715,-0.361058 1.474246,-0.539506 0.20887,-0.06559 0.376796,-0.106223 0.493888,-0.153749 0,0 2e-6,-10e-7 2e-6,-10e-7 0.113015,-0.05257 0.19368,-0.08488 0.211514,-0.116709 0,0 0,0 0,0 0.05118,-0.02143 0.07728,-0.154464 0.08595,-0.281486 0.0066,-0.1429 -0.0731,-0.324368 -0.178349,-0.519177 -0.222699,-0.401522 -0.716231,-0.813536 -1.142518,-1.457493 0,0 -2e-6,-3e-6 -2e-6,-3e-6 -0.502765,-0.802006 -0.70299,-1.691716 -0.726999,-2.515119 -0.03114,-0.838396 0.06783,-1.636241 0.144238,-2.349342 0.07339,-0.754059 0.131135,-1.437917 0.037,-2.072541 C 27.599502,12.269707 27.379142,11.668764 26.9858,11.279931 26.564531,10.812423 25.866535,10.5743 25.184063,10.459501 24.458435,10.34615 23.631166,10.40188 22.85472,10.4258 21.97508,10.462327 21.116756,10.449952 20.262502,10.228807 19.808084,10.109033 19.378143,9.9228018 18.994284,9.6686992 18.584667,9.397885 18.244772,9.0458028 18.001928,8.6409518 17.736322,8.1869372 17.607943,7.7019713 17.567954,7.2507768 c -0.0444,-0.4932459 1.37e-4,-0.9606001 0.07519,-1.3728157 0.186078,-1.0282265 0.488858,-1.8127681 0.628459,-2.4710628 0.288452,-1.3521265 0.176937,-2.1504976 0.27083,-2.1642943 z"
+           id="path7266-3"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 5.6718781,2.0469894 c 0,0 -1.9009137,1.5475965 -0.3578866,2.1349221 1.45782,0.5548934 -0.5953024,4.1297616 -0.5284664,5.0553623 0.124731,1.7273752 11.9665539,4.0724502 10.5648249,3.5033152 -1.591168,-0.646052 -1.944283,8.573888 -0.379512,9.281486 1.054823,0.476997 8.392417,1.51695 9.333362,2.191337 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.114,-1.520238 -1.156053,-3.221947 -1.005016,-1.346595 -1.240532,-6.961972 -1.423034,-8.632908 -0.172702,-1.5812087 -10.074535,-3.6411467 -9.057447,-2.4182066 1.024994,1.232445 1.297593,-4.4360155 0.136859,-4.9431673 -0.866886,-0.3787628 0.0035,-2.2044016 0.0035,-2.2044016"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,0.86372632)" />
+        <text
+           id="text4678-4-3"
+           y="1.2175927"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2175927"
+             x="-1.8505859"
+             id="tspan4680-98-2"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-4-1"
+             y="4.9013772"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4720-0-3"
+             y="8.5851622"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">3</tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.825291"
+         inkscape:tile-cy="111.98549"
+         inkscape:tile-cx="55.087354"
+         transform="translate(3.2788765e-8,95.99281)"
+         id="use5038-3"
+         inkscape:tile-x0="38.174709"
+         inkscape:tile-y0="95.980296"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 18.043569,2.6145571 c 0.069,-0.00205 0.246816,0.7081969 0.167651,2.0507494 -0.04182,0.7214097 -0.211755,1.6061476 -0.158833,2.5757042 0.02038,0.3819325 0.07853,0.7887615 0.218458,1.1637511 0.127063,0.3389121 0.319002,0.6734161 0.587403,0.9203886 0.401189,0.394028 1.021045,0.597551 1.71309,0.6537176 0.640996,0.046311 1.29939,-0.067566 2.070949,-0.1998983 0.686021,-0.1252618 1.485203,-0.2706923 2.330042,-0.2456114 0.809206,0.017243 1.704384,0.2548184 2.450352,0.8609427 0.705977,0.619824 1.126754,1.479916 1.267923,2.37325 0.140382,0.845965 0.09678,1.665016 0.01833,2.455538 -0.06538,0.745551 -0.155409,1.484527 -0.09983,2.151189 0.06165,0.642864 0.21879,1.280458 0.581743,1.707411 0.277826,0.366378 0.83233,0.719372 1.34571,1.367718 0.258102,0.320568 0.459994,0.738358 0.534452,1.236003 0.03266,0.24854 0.01666,0.51161 -0.05487,0.776405 -0.07177,0.265081 -0.209662,0.517209 -0.411747,0.73648 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.250689,0.249425 -0.516886,0.408538 -0.764137,0.494988 0,0 -4e-6,10e-7 -4e-6,10e-7 -0.24104,0.09141 -0.443246,0.143607 -0.598233,0.191058 -0.418736,0.127628 -0.886223,0.358121 -1.458092,0.545491 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.609265,0.194023 -1.212197,0.294915 -1.791382,0.366915 -0.537429,0.06943 -1.069268,0.121807 -1.561899,0.202303 -0.573131,0.09295 -1.155404,0.23234 -1.763789,0.379064 -1.028745,0.248104 -2.078371,0.502706 -3.210338,0.575746 -0.92143,0.05912 -1.875113,-0.04058 -2.780664,-0.376993 -0.933605,-0.345258 -1.76378,-0.984641 -2.303469,-1.85964 -0.585536,-1.016317 -0.714945,-2.153815 -0.590286,-3.167743 0.117574,-1.03323 0.421986,-1.984649 0.678598,-2.833464 0.261945,-0.904298 0.488199,-1.725491 0.484535,-2.520118 -0.01182,-0.817356 -0.215876,-1.60498 -0.693009,-2.095096 -0.472653,-0.554501 -1.299552,-0.81292 -2.087515,-0.914729 -0.840739,-0.0975 -1.806978,0.01884 -2.690595,0.07927 -1.0235444,0.08235 -2.0175903,0.07874 -2.9850986,-0.20313 C 5.9666761,11.906978 5.4848161,11.661503 5.0751188,11.333333 4.6304277,10.977433 4.2960296,10.522587 4.1010534,10.025005 3.8178173,9.256705 3.8701484,8.4869876 4.004949,7.8800365 4.1424,7.236576 4.4441205,6.4119418 4.5722824,5.9967745 c 0,0 2e-7,-1.1e-6 2e-7,-1.1e-6 0.481894,-1.5634294 0.5095406,-2.5038739 0.6134389,-2.5028198 0.058677,5.953e-4 0.2875023,0.9338865 -0.042419,2.6445691 -1e-7,0 -2e-7,1.1e-6 -2e-7,1.1e-6 C 5.0339802,6.706662 4.8449657,7.3338881 4.7595231,8.0101312 4.6969074,8.5477139 4.6887602,9.1791156 4.9331472,9.6785767 5.082976,10.009165 5.343426,10.312281 5.6750364,10.553761 c 0.3079714,0.224097 0.6827203,0.385674 1.0969245,0.490825 0.7724495,0.201861 1.613892,0.147373 2.5949331,0.04668 0.846206,-0.09749 1.868438,-0.250318 2.912105,-0.178843 0.999343,0.05852 2.11078,0.409626 2.961401,1.253094 0.766254,0.823571 1.132961,1.926191 1.131801,3.022452 0.0065,1.035503 -0.221067,2.005484 -0.488747,2.938245 -0.241669,0.879555 -0.515628,1.752484 -0.586054,2.576629 -0.05849,0.795653 0.01586,1.617637 0.404582,2.208208 0.312755,0.530903 0.885402,0.942662 1.529285,1.191832 0.637255,0.244939 1.3727,0.305975 2.131645,0.265877 0.938988,-0.04924 1.892801,-0.292815 2.928994,-0.54334 0.612939,-0.148192 1.236538,-0.293874 1.885862,-0.397649 0.559208,-0.08877 1.108039,-0.141893 1.615063,-0.204979 0.545515,-0.0707 1.052867,-0.147316 1.508266,-0.295421 0,0 3e-6,-1e-6 3e-6,-1e-6 0.429831,-0.134524 0.908168,-0.36471 1.481292,-0.541339 0.2113,-0.06491 0.379218,-0.103551 0.49351,-0.149761 0,0 1e-6,-1e-6 1e-6,-1e-6 0.109537,-0.05175 0.186273,-0.08102 0.196947,-0.108009 0,0 0,0 0,0 0.01704,-0.01245 0.03454,-0.04863 0.0491,-0.0889 0.01523,-0.04211 0.01735,-0.103047 0.01221,-0.169558 -0.0017,-0.136994 -0.0991,-0.308664 -0.222851,-0.492079 -0.263914,-0.377568 -0.816585,-0.740246 -1.31271,-1.365714 -0.583634,-0.786191 -0.827539,-1.69856 -0.862312,-2.542172 -0.04336,-0.858718 0.06353,-1.671665 0.148234,-2.392538 0.08075,-0.764801 0.146699,-1.452934 0.04482,-2.086913 -0.111411,-0.649587 -0.352193,-1.248398 -0.768706,-1.599714 -0.401267,-0.386349 -1.036631,-0.554972 -1.65332,-0.612118 -0.656966,-0.05323 -1.38678,0.05883 -2.084698,0.150558 -0.783498,0.111504 -1.54929,0.195859 -2.347346,0.112112 -0.88312,-0.08624 -1.704133,-0.445017 -2.291305,-1.0470046 C 17.810345,9.5941405 17.575298,9.1266931 17.44485,8.6732183 17.301004,8.1749783 17.264173,7.6853919 17.277815,7.2473905 17.3078,6.319845 17.598861,5.1106266 17.69356,4.6029191 17.928524,3.3360159 17.952308,2.6172689 18.043569,2.6145571 Z"
+           id="path7356-0"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 5.1857215,3.4939536 c 0,0 -1.8709561,1.9863698 -0.3279291,2.5736955 1.45782,0.5548931 -1.3412779,2.5874914 -0.3406921,3.7841418 1.1109297,1.3286151 9.2617767,0.7459941 10.2292047,2.7813721 0.736185,1.551525 -1.273899,9.973379 0.290872,10.680977 1.054823,0.476997 8.326078,0.224885 9.267023,0.899272 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -0.173836,-1.414715 -1.443893,-3.116428 C 27.589708,18.200253 27.141791,12.56664 26.991662,10.892485 26.84392,9.2449452 19.380972,10.997859 18.521112,9.6596839 17.836359,8.5940297 19.113124,5.1412646 17.95239,4.6341128 17.085504,4.25535 18.04357,2.614583 18.04357,2.614583"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-47-3"
+           y="1.2166455"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2166455"
+             x="-1.8505859"
+             id="tspan4680-5-0"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-5-3"
+             y="4.9004302"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-8-4"
+             y="8.5842142"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-0-2"
+             y="12.267999"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">4</tspan><tspan
+             id="tspan4720-8-0"
+             y="15.951783"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.799181"
+         inkscape:tile-cy="144.02637"
+         inkscape:tile-cx="55.10041"
+         transform="translate(3.2788765e-8,128.03369)"
+         id="use5040-2"
+         inkscape:tile-x0="38.200819"
+         inkscape:tile-y0="128.02118"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 17.462594,3.0553957 c 0.07017,-0.00253 0.225899,0.6166014 0.200601,1.7937455 -0.0084,0.4112823 -0.08629,1.4318951 -0.03965,2.0223658 0.04925,0.5572562 0.190057,1.2284369 0.589137,1.6755346 0,10e-8 0,5e-7 1e-6,9e-7 0.194473,0.2316926 0.460652,0.4241737 0.770175,0.5668211 0.288863,0.1328914 0.617058,0.213792 0.971107,0.2534692 0.665291,0.078226 1.354052,-0.026889 2.170131,-0.1597986 0.709629,-0.1239133 1.552054,-0.2793833 2.435959,-0.2499526 0.842012,0.020491 1.781607,0.2780325 2.545226,0.9394421 0.662022,0.6195333 1.051389,1.4564613 1.178799,2.3221733 0.126899,0.819349 0.08142,1.611138 0.0031,2.377203 -0.06573,0.72114 -0.154785,1.43737 -0.106859,2.084376 0.05378,0.624044 0.196537,1.242657 0.536766,1.667595 0.332623,0.480264 1.054347,0.871604 1.718167,1.629254 0.334183,0.369698 0.60639,0.861984 0.712307,1.457333 0.04738,0.297116 0.03249,0.613427 -0.05494,0.929904 -0.08774,0.316613 -0.260788,0.614474 -0.515006,0.863584 -0.244729,0.222628 -0.498815,0.368942 -0.734841,0.45588 -0.231474,0.09064 -0.430019,0.146904 -0.588376,0.198244 -0.429119,0.139417 -0.903775,0.36632 -1.473892,0.55006 -0.6075,0.190051 -1.207586,0.290444 -1.784286,0.364776 0,0 -3e-6,0 -3e-6,0 -0.53953,0.07185 -1.066634,0.127821 -1.575484,0.203758 -0.371335,0.05627 -0.747778,0.124848 -1.133099,0.197298 -1.290895,0.242718 -2.596403,0.509982 -4.001174,0.492725 -0.935323,-0.01341 -1.884466,-0.186939 -2.768303,-0.581305 -0.91163,-0.405512 -1.706907,-1.077581 -2.225741,-1.956225 -0.562151,-1.008702 -0.70885,-2.122374 -0.631641,-3.127604 0.07053,-1.027358 0.312282,-1.994968 0.505687,-2.855968 0.197802,-0.923331 0.359175,-1.762785 0.302655,-2.563469 -0.06558,-0.830237 -0.318648,-1.610864 -0.821015,-2.101514 -0.48367,-0.526263 -1.268023,-0.789083 -2.023125,-0.916487 -0.805954,-0.126938 -1.7406889,-0.0765 -2.5773435,-0.07022 C 8.0625962,11.535473 7.129303,11.480224 6.2290116,11.189418 5.7384756,11.028592 5.2892493,10.793204 4.9039291,10.490214 4.4809223,10.157899 4.156058,9.744034 3.9486234,9.2944089 3.6419946,8.6027922 3.6209955,7.8949871 3.6857645,7.3318428 3.7607413,6.6525081 3.9692607,5.9454759 4.0862891,5.528775 4.3738618,4.499797 4.5243644,3.9377155 4.61218,3.9512863 c 0.076632,0.011842 0.085254,0.5989135 -0.057503,1.6733223 -0.054439,0.4137249 -0.1832009,1.175446 -0.1889171,1.7501617 -0.00214,0.4953508 0.058481,1.0825941 0.3258303,1.5523466 0.1689704,0.3117437 0.4322036,0.5959458 0.7627667,0.8274272 0.3028983,0.2119187 0.6638279,0.3703979 1.0648825,0.4807719 0.7404609,0.208195 1.5430155,0.199544 2.4922954,0.1547 0.8062243,-0.04627 1.7886393,-0.133373 2.7734113,-0.02668 0.936777,0.09341 1.971251,0.43322 2.79455,1.201609 0.782495,0.782217 1.206865,1.847034 1.284152,2.937973 0.0793,1.025944 -0.07024,2.010174 -0.269471,2.968423 -0.177333,0.896015 -0.393347,1.799049 -0.42843,2.639766 -0.02557,0.812895 0.07043,1.643142 0.460009,2.263606 0.320878,0.558708 0.886786,1.008676 1.535526,1.304669 0.638782,0.290164 1.381195,0.410653 2.153418,0.42767 1.167727,0.02859 2.361855,-0.234176 3.678888,-0.479601 0.393246,-0.07328 0.790235,-0.14339 1.194068,-0.201802 0.553361,-0.08121 1.088642,-0.13703 1.601479,-0.203524 0,0 3e-6,-1e-6 3e-6,-1e-6 0.547145,-0.07341 1.056439,-0.150992 1.515356,-0.297559 0.433112,-0.132932 0.907662,-0.356343 1.465498,-0.536772 0.204919,-0.06639 0.372727,-0.109999 0.494238,-0.159602 0.118454,-0.05391 0.205653,-0.09096 0.235381,-0.130096 0.03904,-0.03057 0.07382,-0.0957 0.09802,-0.165875 0.02523,-0.07283 0.02776,-0.169695 0.01634,-0.270901 -0.01278,-0.208653 -0.162878,-0.447034 -0.348348,-0.687357 -0.399966,-0.491165 -1.14982,-0.933516 -1.759568,-1.735687 -0.542559,-0.776474 -0.762583,-1.661134 -0.788235,-2.476793 -0.03363,-0.831459 0.07332,-1.618113 0.158466,-2.315186 0.08203,-0.741078 0.149287,-1.406653 0.05871,-2.022701 -0.09965,-0.632883 -0.320582,-1.215879 -0.712988,-1.571958 -0.409562,-0.42398 -1.084618,-0.610554 -1.731576,-0.67504 -0.693548,-0.06055 -1.47338,0.05785 -2.202427,0.145504 -0.836724,0.110166 -1.645498,0.176898 -2.472813,0.04882 -0.443734,-0.07063 -0.868232,-0.206211 -1.254168,-0.4089351 -0.416186,-0.2182853 -0.770462,-0.5197109 -1.036449,-0.8770414 0,-5e-7 0,-1.1e-6 0,-1.6e-6 -0.513616,-0.7208044 -0.632299,-1.5462283 -0.61654,-2.1934635 0.0125,-0.7443159 0.192908,-1.6504278 0.262119,-2.0857886 0.177297,-1.1225196 0.191077,-1.7466345 0.292437,-1.7502941 z"
+           id="path7446-3"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 4.61218,3.9512863 c 0,0 -1.8347237,1.0380798 -0.291697,1.6254055 1.45782,0.5548931 -1.0009624,2.3374221 -3.763e-4,3.5340711 1.11093,1.3286151 8.9006903,3.3200031 9.7936973,2.9242621 0.893007,-0.395741 1.630143,11.126052 0.845287,10.729161 -0.784855,-0.39689 8.750339,1.022956 9.345109,1.449222 0.59477,0.426279 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -0.656992,-2.168231 -1.927045,-3.869948 C 27.106556,17.446741 26.846149,12.045268 26.663647,10.374332 26.490945,8.793122 14.39955,7.9506969 17.868631,8.815993 19.097666,9.122551 18.57741,5.3345673 17.416676,4.8274155 c -0.866886,-0.3787628 0.04592,-1.771951 0.04592,-1.771951"
+           sodipodi:nodetypes="csszzzsssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-6-0"
+           y="1.168416"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.168416"
+             x="-1.8505859"
+             id="tspan4680-2-7"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-0-9"
+             y="4.8522005"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-4-2"
+             y="8.535985"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-8-8"
+             y="12.219769"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-22-6"
+             y="15.903554"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">5</tspan><tspan
+             id="tspan4720-74-2"
+             y="19.587339"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.789389"
+         inkscape:tile-cy="175.94438"
+         inkscape:tile-cx="55.105305"
+         transform="translate(3.2788765e-8,159.9517)"
+         id="use5042-0"
+         inkscape:tile-x0="38.210611"
+         inkscape:tile-y0="159.93919"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 16.802236,3.6531513 c 0.06459,-0.00725 0.222576,0.4507556 0.298249,1.3484267 0.03983,0.468695 0.03162,1.0501381 0.13125,1.6790634 0.07645,0.459197 0.22277,1.0060015 0.552836,1.387731 0.19232,0.2343458 0.45943,0.4303106 0.774259,0.5737859 0.289337,0.1316451 0.619253,0.2099995 0.977035,0.2447186 0.665222,0.068239 1.345852,-0.051099 2.167809,-0.2032636 0.701113,-0.1384234 1.544227,-0.3121732 2.431644,-0.2908231 0.840127,0.012517 1.786193,0.2727933 2.539534,0.9562625 0.624744,0.6143282 0.980191,1.4340073 1.077448,2.2760413 0.09798,0.794827 0.02909,1.557726 -0.07261,2.294703 -0.08752,0.691791 -0.198584,1.379286 -0.175456,2.002247 0.02979,0.600326 0.143841,1.198537 0.454118,1.615645 0.201918,0.309552 0.543304,0.575907 0.935355,0.87228 0.386557,0.278986 0.848881,0.586332 1.290953,0.999883 0.448348,0.406107 0.838451,0.971005 1.013902,1.681959 0.08063,0.35474 0.08088,0.738729 -0.01606,1.123438 -0.09741,0.384635 -0.308716,0.744901 -0.626456,1.033975 -0.489793,0.385989 -0.960183,0.539527 -1.29271,0.631065 -0.436921,0.148404 -0.916899,0.372602 -1.485378,0.553678 -0.605708,0.187258 -1.203967,0.287872 -1.779881,0.363538 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.53889,0.07292 -1.067767,0.130845 -1.581677,0.204439 -0.299808,0.04396 -0.602958,0.09406 -0.911254,0.146574 -1.485915,0.253131 -2.979373,0.5391 -4.579204,0.457233 -0.992707,-0.05344 -1.988829,-0.282952 -2.899337,-0.744459 -0.941874,-0.476287 -1.741395,-1.229026 -2.234089,-2.179579 -0.514601,-1.052087 -0.613793,-2.185532 -0.505102,-3.200961 0.103016,-1.039868 0.370548,-2.026422 0.575695,-2.897255 0.212948,-0.943505 0.378851,-1.802471 0.317029,-2.622716 -0.07115,-0.857357 -0.345454,-1.658903 -0.872244,-2.157799 -0.50773,-0.532909 -1.317274,-0.788241 -2.08501,-0.911839 C 10.405559,10.76888 9.4205295,10.814022 8.5923194,10.802964 7.5716095,10.799214 6.6284908,10.695302 5.7540789,10.345065 5.2639498,10.146052 4.8335912,9.8686036 4.4838013,9.5318709 c 0,0 -1.1e-6,-1.1e-6 -1.1e-6,-1.1e-6 C 4.0855308,9.1487234 3.8161059,8.6938597 3.6760866,8.2332388 3.4450162,7.4130207 3.5904038,6.5455299 3.6583341,6.0831972 3.7956536,5.0959339 3.8676814,4.55884 3.9534546,4.5603804 c 0.075618,0.00136 0.1599341,0.5416135 0.1683885,1.5527126 0.00755,0.4672305 -0.030777,1.3278218 0.2128707,1.8937268 0.132778,0.3328289 0.3688463,0.6544364 0.6924653,0.9255561 0,0 9e-7,8e-7 9e-7,8e-7 0.2858281,0.2393597 0.6398504,0.4289755 1.0450833,0.566695 0.727435,0.2520795 1.5335386,0.2759088 2.5060754,0.2457867 0.7890771,-0.032399 1.8037883,-0.1217476 2.7868293,-0.025655 0.933255,0.082854 1.980971,0.3999171 2.826272,1.1575781 0.808212,0.774616 1.261311,1.853727 1.349921,2.974043 0.08888,1.045468 -0.06273,2.055442 -0.277266,3.042842 -0.190008,0.914082 -0.429882,1.848576 -0.49225,2.715785 -0.05214,0.839399 0.01316,1.701906 0.383589,2.371712 0.315035,0.620881 0.897711,1.13761 1.579953,1.488539 0.669147,0.343063 1.45691,0.507929 2.279937,0.557287 1.335593,0.08433 2.704804,-0.200857 4.223858,-0.454751 0.31527,-0.05269 0.63241,-0.103068 0.952818,-0.147359 0.549121,-0.07766 1.082122,-0.135001 1.595285,-0.202843 0,0 3e-6,0 3e-6,0 0.547479,-0.07464 1.05793,-0.153289 1.519761,-0.298797 0.435861,-0.13199 0.907803,-0.350191 1.454012,-0.533154 0.392762,-0.152882 0.682638,-0.197578 0.760126,-0.312757 0.06762,-0.05123 0.123692,-0.153891 0.157325,-0.262036 0.03521,-0.112224 0.03244,-0.255029 0.0062,-0.39881 -0.04097,-0.29801 -0.279273,-0.607936 -0.560849,-0.904177 -0.296931,-0.297524 -0.707414,-0.570893 -1.128521,-0.890874 -0.442751,-0.322706 -0.896229,-0.719568 -1.264701,-1.251944 -0.495835,-0.772796 -0.674429,-1.635938 -0.668092,-2.423049 -9.69e-4,-0.803495 0.131446,-1.557974 0.238044,-2.223837 0.10528,-0.710566 0.19268,-1.346564 0.125262,-1.939391 -0.07586,-0.610273 -0.270442,-1.175218 -0.636051,-1.524831 -0.394405,-0.4335458 -1.072117,-0.6232977 -1.713224,-0.6844123 -0.693001,-0.05715 -1.474607,0.075268 -2.19486,0.1744512 -0.842201,0.126059 -1.644239,0.2050315 -2.465576,0.085375 C 18.970339,9.766898 18.547326,9.6323947 18.166574,9.4307406 17.749589,9.2102195 17.402194,8.9048164 17.148575,8.5485929 16.735895,7.9463212 16.611297,7.2766674 16.587916,6.7456204 c -0.03112,-0.6159519 0.05036,-1.3879121 0.0764,-1.7410286 0.06342,-0.8680806 0.05293,-1.3419058 0.137919,-1.3514405 z"
+           id="path7536-1"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 3.9534546,4.5603804 c 0,0 -1.6063933,0.950439 -0.063366,1.5377647 1.45782,0.5548931 -0.8852744,0.8252337 0.1153116,2.0218842 1.1109306,1.3286153 8.7768398,1.1844743 9.7442678,3.2198537 0.736185,1.551525 -0.840464,10.283958 0.724307,10.991556 1.054823,0.476997 8.88928,1.207584 9.830225,1.881973 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -1.424086,-3.007979 -2.694139,-4.709688 C 26.339462,16.606993 26.414812,11.474653 26.23231,9.8037165 26.059608,8.2225068 18.326433,9.6466505 17.466573,8.3084828 16.78182,7.2428282 18.043135,5.5102368 16.882401,5.003085 16.015515,4.6243222 16.802243,3.6532108 16.802243,3.6532108"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-7-5"
+           y="1.2257644"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2257644"
+             x="-1.8505859"
+             id="tspan4680-1-7"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-51-8"
+             y="4.9095488"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-3-9"
+             y="8.5933332"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-3-0"
+             y="12.277118"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-9-1"
+             y="15.960902"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-4-1"
+             y="19.644688"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">6</tspan><tspan
+             id="tspan4720-81-1"
+             y="23.328472"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.778782"
+         inkscape:tile-cy="207.95774"
+         inkscape:tile-cx="55.110609"
+         transform="translate(3.2788765e-8,191.96506)"
+         id="use5044-6"
+         inkscape:tile-x0="38.221218"
+         inkscape:tile-y0="191.95255"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 16.056984,4.1295791 c 0.06796,-0.00341 0.15042,0.3662564 0.252946,1.0634286 0.06431,0.413936 0.156714,1.3071363 0.522987,1.8333823 0.179104,0.2738467 0.447873,0.5202448 0.787678,0.7094306 0,0 10e-7,6e-7 10e-7,6e-7 0.298544,0.166066 0.649017,0.277631 1.039444,0.3382402 0.70355,0.1131484 1.427964,0.017756 2.328238,-0.1237154 0.734368,-0.1240613 1.646201,-0.2956702 2.586349,-0.2539633 0.448315,0.021365 0.921232,0.1017521 1.389011,0.2739873 0.449871,0.1651947 0.88986,0.4289129 1.262817,0.8045568 0.59561,0.6284401 0.929086,1.4479932 1.016043,2.2888152 0.08773,0.791772 0.0154,1.551284 -0.08697,2.291019 -0.08826,0.6911 -0.198504,1.382611 -0.175892,2.011108 0.02877,0.604793 0.142259,1.209121 0.451967,1.638245 0.228799,0.361146 0.627543,0.659731 1.084987,0.981184 0.446835,0.299405 0.989656,0.620944 1.507233,1.059161 0.524129,0.429162 0.992863,1.040409 1.212851,1.826795 0.101949,0.392016 0.111678,0.82004 0.0076,1.24866 -0.104604,0.428187 -0.341758,0.828243 -0.701252,1.141111 -0.48029,0.366823 -0.940432,0.520101 -1.274386,0.617854 0,0 -2e-6,10e-7 -2e-6,10e-7 -0.441336,0.153735 -0.924535,0.376576 -1.492517,0.555969 -0.605198,0.185429 -1.201824,0.28535 -1.775642,0.362526 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.536938,0.07424 -1.068556,0.135969 -1.591489,0.205661 -0.259115,0.03591 -0.520102,0.07389 -0.784985,0.112407 -1.814419,0.263836 -3.632853,0.520985 -5.525695,0.255201 -1.121623,-0.161839 -2.217284,-0.542315 -3.170146,-1.181102 -0.99227,-0.664445 -1.767741,-1.628338 -2.153625,-2.756245 -0.33519,-1.046639 -0.322932,-2.108236 -0.162165,-3.053972 0.157247,-0.966189 0.443498,-1.904053 0.651191,-2.717995 0.22024,-0.892639 0.383368,-1.710863 0.336471,-2.494998 -0.05459,-0.825402 -0.3005,-1.595586 -0.783312,-2.103642 C 12.387027,10.572043 11.721429,10.276087 11.06933,10.102236 10.358667,9.9177717 9.5575837,9.885568 8.8320853,9.8559759 7.9574157,9.825571 7.1941012,9.7989019 6.3979264,9.6390914 5.4594705,9.4550711 4.6740729,9.0746962 4.092702,8.5482396 3.5283812,8.0299103 3.2255451,7.4161232 3.0895497,6.8998972 2.7534202,5.6193516 3.2683449,5.0683891 3.2531295,5.0647307 c 0.084935,0.020422 -0.098139,0.6937474 0.3111938,1.6778575 0.1746339,0.4211131 0.4863017,0.8986913 0.9785479,1.2726768 0.5046191,0.390579 1.1745362,0.6343882 2.0041917,0.753119 0.7140508,0.098644 1.4083713,0.074444 2.2956329,0.062218 0.7356316,-0.014491 1.6030352,-0.016424 2.4793742,0.1597347 0.814111,0.159377 1.688928,0.5260499 2.388737,1.2197086 0.731258,0.765007 1.138665,1.795299 1.212467,2.866719 0.07361,0.996386 -0.07561,1.96423 -0.298008,2.912059 -0.196618,0.867233 -0.455611,1.776916 -0.568396,2.607544 -0.103219,0.811085 -0.116114,1.644455 0.145593,2.350651 0.2602,0.769258 0.850391,1.459331 1.588865,1.956822 0.718586,0.483339 1.600474,0.769275 2.534722,0.907738 1.587176,0.242557 3.245298,-0.02367 5.071807,-0.279785 0.266533,-0.03737 0.533385,-0.07393 0.801544,-0.108006 0.541452,-0.07157 1.070787,-0.131915 1.585474,-0.201621 0,0 3e-6,0 3e-6,0 0.549137,-0.07653 1.060776,-0.155169 1.524,-0.299809 0.437152,-0.131123 0.907408,-0.346386 1.446873,-0.530863 0,0 3e-6,-1e-6 3e-6,-1e-6 0.388895,-0.151477 0.68088,-0.204994 0.778445,-0.325966 0.09006,-0.0665 0.16255,-0.196757 0.202967,-0.332914 0.04237,-0.141232 0.03542,-0.31705 -0.0023,-0.490658 -0.06318,-0.360592 -0.364278,-0.717333 -0.712217,-1.046997 -0.365397,-0.330087 -0.8605,-0.626225 -1.35558,-0.974801 -0.524387,-0.353969 -1.051413,-0.800339 -1.461211,-1.408499 -0.484576,-0.776528 -0.656921,-1.63832 -0.64943,-2.423985 7e-4,-0.804345 0.133706,-1.561471 0.242569,-2.229639 0.108817,-0.716428 0.200169,-1.356 0.141702,-1.957711 C 25.874108,10.577308 25.689792,10.001587 25.330917,9.6278012 25.12089,9.3913084 24.834553,9.2084702 24.529074,9.0770754 24.208853,8.9399009 23.851897,8.8663233 23.493567,8.8300156 22.745106,8.7511782 21.883918,8.8758665 21.125472,8.9555396 20.19792,9.0635761 19.345003,9.1028954 18.498449,8.9201995 18.023985,8.8156576 17.591057,8.6351376 17.219302,8.3901353 c 0,0 -10e-7,-8e-7 -10e-7,-8e-7 C 16.793679,8.1099293 16.472534,7.745714 16.265941,7.3558268 15.864735,6.5569459 15.902313,5.6461339 15.919296,5.2153259 15.94165,4.5091925 15.990117,4.1329308 16.056984,4.1295791 Z"
+           id="path7626-8"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 3.2531295,5.0647307 c 0,0 -1.4692195,1.1691863 0.073807,1.756512 1.45782,0.5548931 -0.00974,0.2638616 0.9908501,1.4605096 1.11093,1.3286151 7.9785544,0.3192392 8.9459834,2.3546167 0.736185,1.551525 -1.340036,9.846191 0.224735,10.553789 1.054823,0.476997 9.87475,2.348867 10.815695,3.023254 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 -1.949813,-3.553681 -3.219866,-5.25539 C 25.813735,16.061291 25.961188,10.8723 25.778686,9.201364 25.605984,7.620154 17.409289,8.5292757 16.549429,7.1911084 15.864676,6.1254543 19.634147,8.955956 16.114613,5.2041668 15.467373,4.5142153 16.056985,4.1295916 16.056985,4.1295916"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-9-7"
+           y="1.2258592"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2258592"
+             x="-1.8505859"
+             id="tspan4680-6-9"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-9-0"
+             y="4.9096437"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-9-0"
+             y="8.5934286"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-87-4"
+             y="12.277213"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-73-2"
+             y="15.960998"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-6-1"
+             y="19.644781"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-52-6"
+             y="23.328566"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">7</tspan><tspan
+             id="tspan4720-5-0"
+             y="27.01235"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.797549"
+         inkscape:tile-cy="239.97111"
+         inkscape:tile-cx="55.101226"
+         transform="translate(3.2788765e-8,223.97843)"
+         id="use5046-6"
+         inkscape:tile-x0="38.202451"
+         inkscape:tile-y0="223.96592"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 15.460836,3.5371483 c 0.09829,-0.0026 0.07417,0.9277425 0.982207,1.94232 0.387211,0.4336058 0.988235,0.8683422 1.755708,1.0406729 0.518245,0.1210793 1.085497,0.1095407 1.742115,0.028072 0,-2e-7 1e-6,-2e-7 1e-6,-2e-7 0.566093,-0.073393 1.178093,-0.2121962 1.864903,-0.3151918 0.615608,-0.095928 1.323289,-0.1521252 2.060437,-0.032992 0.690928,0.1087584 1.421724,0.4203604 1.993279,1.0143432 0.577782,0.6421587 0.875754,1.4787468 0.909926,2.3253409 0.03825,0.7932464 -0.0881,1.5425324 -0.243548,2.2704924 -0.136412,0.67734 -0.295031,1.354791 -0.307237,1.975738 -0.0041,0.595151 0.08147,1.198875 0.379243,1.620541 0.179349,0.286468 0.470857,0.533623 0.810125,0.760156 0.336682,0.220896 0.731741,0.40056 1.165773,0.598593 0.42283,0.189063 0.888247,0.396253 1.352556,0.67243 0.460813,0.270161 0.914626,0.63378 1.288233,1.118681 0.529663,0.703319 0.783479,1.606864 0.661409,2.51902 -0.125386,0.894855 -0.623952,1.721248 -1.405147,2.245657 -0.423771,0.268839 -0.83026,0.422947 -1.172136,0.550987 0,0 -2e-6,1e-6 -2e-6,1e-6 -0.459721,0.181647 -0.967824,0.402656 -1.537318,0.569952 -0.612193,0.17305 -1.190395,0.255459 -1.726956,0.351354 -0.398938,0.0766 -0.85037,0.169937 -1.350981,0.203697 -0.127572,0.0086 -0.25827,0.01334 -0.392173,0.01301 -1.03981,-0.03679 -1.957749,-0.39144 -2.730844,-0.794769 -0.802785,-0.398462 -1.475803,-0.811117 -2.165641,-1.036891 -0.967314,-0.343282 -2.121087,-0.365926 -3.321228,-0.578058 0,0 -3e-6,0 -3e-6,0 -0.620084,-0.10421 -1.25136,-0.267561 -1.863265,-0.542935 -0.628693,-0.280605 -1.210088,-0.704034 -1.660999,-1.270719 -0.743188,-0.994515 -0.960955,-2.19403 -0.862243,-3.259273 0.09271,-1.098956 0.425131,-2.10537 0.726237,-2.985636 0.317857,-0.964914 0.604736,-1.806417 0.666109,-2.654245 C 13.135519,10.99279 12.98191,10.137871 12.517092,9.5594849 12.169058,9.086546 11.610686,8.7588265 11.047408,8.546852 10.430704,8.3179979 9.7364829,8.2300691 9.0913987,8.1731678 7.2870323,8.0385865 6.0663489,8.0380958 4.768806,7.3878704 2.1799778,6.0507547 2.8734871,4.3330743 2.5977371,4.4180091 2.7170559,4.3812573 3.0876859,5.9602825 5.0616026,6.7560455 6.2453208,7.2538871 7.2412302,7.1092371 9.146447,7.1802703 c 0.6847394,0.016803 1.466919,0.081654 2.250764,0.3215209 0.725294,0.2192961 1.475687,0.6331169 2.050613,1.3118177 0.700168,0.8753229 0.997301,2.0176771 0.923999,3.1561731 -0.0597,1.053433 -0.341837,2.022529 -0.646607,2.993839 -0.268303,0.890474 -0.557419,1.799948 -0.59634,2.660567 -0.02758,0.815056 0.114496,1.678226 0.59588,2.233736 0.264645,0.338991 0.662198,0.605503 1.110933,0.809801 0.443187,0.199476 0.949634,0.316918 1.494178,0.408596 0,0 2e-6,0 2e-6,0 1.030493,0.163336 2.310528,0.206448 3.565229,0.607408 0.899917,0.306387 1.64589,0.744597 2.374379,1.10989 0.708516,0.335658 1.401766,0.632545 2.04767,0.623182 0.08317,0.0032 0.169131,0.0011 0.257992,-0.0051 0.347992,-0.0242 0.742475,-0.11155 1.175815,-0.185491 0.580894,-0.106228 1.106487,-0.174847 1.572693,-0.310982 0.435475,-0.120839 0.899699,-0.324463 1.402072,-0.51688 0,0 3e-6,-1e-6 3e-6,-1e-6 0.36717,-0.147638 0.674974,-0.248018 0.880695,-0.392833 0.382049,-0.239948 0.659966,-0.698778 0.728374,-1.151761 0.07631,-0.467541 -0.0684,-0.993535 -0.350952,-1.38114 -0.19757,-0.282266 -0.504701,-0.522182 -0.846208,-0.74107 -0.349761,-0.22003 -0.762442,-0.407622 -1.18901,-0.610082 -0.441228,-0.20541 -0.90002,-0.430239 -1.350659,-0.730048 -0.463348,-0.304292 -0.890738,-0.705467 -1.215636,-1.212396 -0.473525,-0.792001 -0.609292,-1.66778 -0.55444,-2.452453 0.0487,-0.804789 0.236355,-1.550275 0.393949,-2.204343 0.16109,-0.705434 0.299541,-1.330973 0.279184,-1.9290821 C 25.47336,8.9723071 25.319139,8.3908322 24.975238,8.0148107 24.669187,7.639361 24.161826,7.4110635 23.658797,7.2933732 c -0.547619,-0.1245245 -1.154652,-0.099448 -1.72764,-0.048121 -0.640553,0.061427 -1.277024,0.1662624 -1.902098,0.208836 0,0 -2e-6,-1e-7 -2e-6,-1e-7 -0.724868,0.05307 -1.404849,0.00659 -2.034402,-0.1850203 C 17.05673,6.9767379 16.395393,6.3833766 16.003451,5.8245856 15.012388,4.4087877 15.524184,3.5354747 15.460836,3.5371483 Z"
+           id="path7716-7"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 2.5977371,4.4180091 c 0,0 0.774441,2.0666234 2.3174682,2.6539493 1.45782,0.5548931 7.0666657,0.9179375 8.0672517,2.1145871 1.11093,1.3286155 -0.812871,9.1003635 0.154557,11.1357415 0.736185,1.551525 4.943148,1.401161 6.507919,2.108759 1.054823,0.476997 3.718322,1.107979 4.659267,1.782366 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.830633,-1.94708 0.56058,-3.648789 C 29.594181,17.667892 26.1726,17.463695 25.990098,15.792759 25.817396,14.211549 26.277222,8.9527593 25.417362,7.6145917 24.732609,6.5489377 19.257437,7.4017561 18.096703,6.8946043 17.229817,6.5158415 15.460837,3.5371828 15.460837,3.5371828"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,0.7460309)" />
+        <text
+           id="text4678-64-7"
+           y="1.1527568"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1527568"
+             x="-1.8505859"
+             id="tspan4680-7-1"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-02-6"
+             y="4.8365412"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-91-6"
+             y="8.5203257"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-6-5"
+             y="12.20411"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-3-8"
+             y="15.887895"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-8-2"
+             y="19.57168"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-28-8"
+             y="23.255465"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-5-3"
+             y="26.939249"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">8</tspan><tspan
+             id="tspan4720-05-1"
+             y="30.623034"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.792653"
+         inkscape:tile-cy="272.01199"
+         inkscape:tile-cx="55.103673"
+         transform="translate(3.2788765e-8,256.01931)"
+         id="use5048-6"
+         inkscape:tile-x0="38.207347"
+         inkscape:tile-y0="256.0068"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 14.921155,4.9058464 c 0.09209,-0.020234 0.2356,0.7878103 1.17189,1.6126642 0.399594,0.3525372 0.976178,0.6945197 1.685481,0.8220728 1.01051,0.199515 1.815088,-0.079019 3.280351,-0.2744369 0.55678,-0.082146 1.193358,-0.1326162 1.85901,-0.042116 0.622355,0.082262 1.286737,0.3244777 1.847002,0.8043387 0.378227,0.3363183 0.671316,0.7602242 0.861933,1.2308769 0.182729,0.4501621 0.281621,0.9273827 0.308388,1.4076662 0.04689,0.921005 -0.11804,1.784683 -0.307537,2.637629 -0.162126,0.782061 -0.344287,1.574104 -0.309074,2.293912 0.01492,0.350387 0.06802,0.693865 0.184002,0.999734 0,0 1e-6,2e-6 1e-6,2e-6 0.113269,0.297273 0.275871,0.573274 0.488966,0.773934 0.223063,0.226993 0.548666,0.39359 0.917308,0.538928 0.366768,0.140016 0.781282,0.23392 1.241897,0.352394 0.449068,0.110855 0.941154,0.249711 1.438773,0.479603 0,0 3e-6,2e-6 3e-6,2e-6 0.495128,0.224277 0.979559,0.574154 1.361886,1.074076 0.393794,0.528416 0.597063,1.195977 0.539046,1.890362 0,0 0,4e-6 0,4e-6 -0.06207,0.688939 -0.404572,1.337893 -0.981222,1.783429 -0.455522,0.31931 -0.889479,0.471567 -1.224861,0.584366 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.443614,0.165716 -0.948006,0.394343 -1.521687,0.564946 -0.620396,0.176444 -1.195454,0.251103 -1.720158,0.350957 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.487145,0.102737 -1.084396,0.243226 -1.785892,0.217525 -0.118255,-0.0098 -0.234191,-0.02437 -0.347795,-0.04321 -0.667133,-0.11065 -1.248377,-0.367199 -1.738867,-0.650809 -0.591282,-0.322592 -1.075525,-0.648689 -1.556798,-0.834788 -1.156675,-0.507907 -2.7079,-0.329555 -4.235168,-0.385657 -0.809924,-0.01472 -1.646678,-0.103212 -2.471249,-0.370164 -0.855327,-0.272707 -1.650673,-0.786413 -2.221252,-1.533934 0,0 -2e-6,-3e-6 -2e-6,-3e-6 -0.37097,-0.506577 -0.60348,-1.075467 -0.71592,-1.645922 0,0 0,-3e-6 0,-3e-6 -0.115239,-0.582146 -0.122836,-1.158618 -0.06041,-1.702159 0.132534,-1.115692 0.506596,-2.13229 0.83096,-3.016143 0.345253,-0.97698 0.646215,-1.83104 0.697915,-2.690865 0.02938,-0.44725 0.0016,-0.877104 -0.104808,-1.269069 C 12.22182,10.456741 12.037069,10.084555 11.782854,9.7976814 11.457296,9.4134222 10.976518,9.148815 10.489329,8.9772102 9.9586198,8.7924327 9.3706243,8.7239544 8.8158046,8.6891113 7.2585319,8.6041629 6.3398483,8.7211394 5.0703237,8.3600606 2.2658241,7.5388245 2.2851588,5.7461298 2.1143491,5.8585257 c 0.1078393,-0.07096 0.9083349,1.3673882 3.1286812,1.8049036 1.1755012,0.2429904 1.9108442,0.040553 3.600712,0.048278 0.6022347,-0.00179 1.2795077,0.045681 1.9646037,0.2385273 0.635762,0.1771947 1.292865,0.5120691 1.827472,1.0626881 0.400351,0.424589 0.695766,0.9455906 0.867625,1.5139469 0.163822,0.540515 0.226975,1.107271 0.204377,1.673313 -0.04778,1.079147 -0.344522,2.076166 -0.680549,3.070548 -0.293825,0.904978 -0.621712,1.834154 -0.691038,2.715524 -0.0358,0.42865 -0.02502,0.857582 0.06651,1.255662 0,0 1e-6,2e-6 1e-6,2e-6 0.08954,0.387061 0.243889,0.758176 0.474722,1.051729 0,0 10e-7,2e-6 10e-7,2e-6 0.330732,0.450818 0.885369,0.772973 1.501732,0.979419 0.607533,0.19931 1.293611,0.252353 2.029792,0.268465 1.392775,0.0022 3.114476,-0.156578 4.791605,0.465053 0.675005,0.274887 1.220601,0.627656 1.735776,0.912786 0.433776,0.224047 0.84497,0.424309 1.22427,0.482122 0.06467,0.0099 0.128375,0.01558 0.191114,0.01661 0.369094,0.03827 0.836599,-0.09274 1.39107,-0.189757 0,0 3e-6,-10e-7 3e-6,-10e-7 0.593305,-0.114558 1.120216,-0.175669 1.579484,-0.311377 0.431413,-0.119941 0.892483,-0.331319 1.417703,-0.521886 0,0 2e-6,-10e-7 2e-6,-10e-7 0.380379,-0.150427 0.679772,-0.225999 0.82797,-0.359454 0.200026,-0.136848 0.343736,-0.415661 0.373539,-0.677779 0,0 0,-2e-6 0,-2e-6 0.0354,-0.272625 -0.06259,-0.588431 -0.233051,-0.830666 -0.163046,-0.24493 -0.45273,-0.442935 -0.776292,-0.610418 0,0 -2e-6,-10e-7 -2e-6,-10e-7 -0.333752,-0.167933 -0.735649,-0.281308 -1.162145,-0.399801 -0.440688,-0.117617 -0.908271,-0.236792 -1.393893,-0.425804 -0.497487,-0.188998 -0.9888,-0.475264 -1.409583,-0.888949 -0.38144,-0.39095 -0.648454,-0.851688 -0.808961,-1.328025 0,0 -10e-7,-3e-6 -10e-7,-3e-6 -0.163963,-0.48518 -0.233188,-0.976022 -0.236252,-1.445057 -0.0016,-0.961944 0.215076,-1.851835 0.409732,-2.622516 0.200301,-0.843458 0.38123,-1.574842 0.355634,-2.284168 C 24.675803,10.155596 24.621635,9.808086 24.506414,9.4988359 24.386611,9.1782895 24.212635,8.8920494 23.989279,8.6813431 23.673708,8.3648562 23.206654,8.1802768 22.743544,8.0840481 22.240901,7.9824546 21.690773,8.0020052 21.170818,8.0432355 19.795447,8.1731744 18.793281,8.3709531 17.611578,8.0690678 16.756059,7.8380794 16.120457,7.3602073 15.711347,6.8967949 14.694731,5.7438239 14.946906,4.9001885 14.921155,4.9058464 Z"
+           id="path7806-1"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 2.1143491,5.8585257 c 0,0 1.4993024,1.5658938 3.042329,2.1532195 1.45782,0.5548931 6.0520709,0.1969066 7.0526569,1.3935561 1.110931,1.3286147 -0.895272,9.3012217 0.07216,11.3365997 0.736185,1.551525 7.060628,1.293748 8.625399,2.001346 1.054823,0.476997 2.456365,0.795778 3.39731,1.470165 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.561387,-0.889412 0.291332,-2.591121 C 29.324932,18.72556 25.661565,19.358103 25.479063,17.687167 25.306364,16.105957 23.1845,9.3073736 24.377084,8.254856 25.107287,7.6104139 18.421277,7.2300863 17.695052,7.7048256 16.984369,8.1694048 14.921169,4.9059114 14.921169,4.9059114"
+           sodipodi:nodetypes="csssssssssssszs"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-99-7"
+           y="1.2070411"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2070411"
+             x="-1.8505859"
+             id="tspan4680-61-6"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-7-4"
+             y="4.8908257"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-1-6"
+             y="8.5746098"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-4-1"
+             y="12.258394"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-0-2"
+             y="15.942179"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-25-3"
+             y="19.625963"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-80-0"
+             y="23.309748"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-1-2"
+             y="26.993532"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-6-5"
+             y="30.677317"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">9</tspan><tspan
+             id="tspan4720-06-6"
+             y="34.361103"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="303.99144"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,287.99876)"
+         id="use5050-7"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="287.98625"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 14.614078,5.1599334 c 0.08865,-0.024893 0.27248,0.7551726 1.248874,1.3927054 0.475844,0.3162153 1.096328,0.5172563 1.922329,0.5880912 0.673371,0.054497 1.280552,0.00128 2.138576,-0.040535 0.673441,-0.03692 1.484632,-0.058372 2.309282,0.1061852 0.753127,0.1463501 1.570402,0.5030106 2.200155,1.1862547 0.354391,0.4002218 0.61275,0.8801591 0.7646,1.3973271 0.14525,0.4928908 0.205036,1.0046238 0.196855,1.5150918 -0.01876,0.983078 -0.233127,1.869324 -0.429691,2.783407 -0.165246,0.828642 -0.321901,1.678026 -0.19821,2.432888 0.0562,0.365288 0.161938,0.719436 0.338092,1.015872 0.170999,0.287058 0.400557,0.540608 0.668798,0.690837 0.251221,0.156215 0.588372,0.233411 0.964867,0.288217 0.375721,0.04942 0.78637,0.04993 1.254595,0.07541 0.455723,0.01939 0.96083,0.07402 1.484919,0.235296 0.523528,0.156452 1.042928,0.467172 1.451609,0.956939 0.406233,0.510456 0.602488,1.162634 0.532048,1.829939 -0.0748,0.65868 -0.410646,1.263551 -0.951033,1.677375 -0.45624,0.320384 -0.890945,0.472777 -1.226602,0.585159 -0.443911,0.165264 -0.947997,0.393047 -1.519763,0.564051 -0.617743,0.177004 -1.196166,0.255395 -1.727446,0.352158 -0.474581,0.09411 -1.035774,0.217652 -1.679283,0.217747 -0.02647,4e-6 -0.05307,-2e-4 -0.07982,-6.23e-4 -0.977007,-0.05363 -1.824578,-0.407634 -2.526507,-0.80487 -0.72793,-0.389526 -1.330614,-0.787727 -1.945709,-1.002312 -1.167119,-0.457297 -2.69799,-0.323757 -4.18684,-0.42593 -0.793705,-0.04284 -1.607346,-0.162512 -2.40063,-0.450693 -0.82353,-0.295539 -1.580618,-0.814363 -2.124158,-1.545054 -0.687649,-0.988106 -0.88038,-2.148301 -0.790117,-3.177091 0.08477,-1.066205 0.389276,-2.052397 0.654325,-2.911154 0.28239,-0.951029 0.528521,-1.779968 0.554412,-2.607153 0.01986,-0.882151 -0.170223,-1.709478 -0.646279,-2.2587393 C 10.528921,9.4058184 10.019885,9.113808 9.5087845,8.9213568 8.9454488,8.7116963 8.3170797,8.6238155 7.7372459,8.5674953 6.0268973,8.4185952 5.0356357,8.4514452 3.8221631,7.9440572 c -4e-7,-2e-7 -7e-7,-5e-7 -1e-6,-7e-7 C 1.9936077,7.161874 1.8342311,6.0196564 1.7931266,6.0498658 c 0.087432,-0.064258 0.6811309,0.8453269 2.2409795,1.319594 5e-7,-10e-8 7e-7,1e-7 1e-6,3e-7 1.1606877,0.3651261 1.9242183,0.2080964 3.7591723,0.2737078 0.6197103,0.016369 1.3289927,0.078717 2.0429472,0.2939003 0.6544944,0.1952678 1.3364934,0.5550966 1.8822284,1.1457551 0.712836,0.8126045 1.059313,1.9071837 1.038888,3.0276777 -0.01142,1.025904 -0.245221,1.985216 -0.513954,2.951532 -0.233676,0.876324 -0.496708,1.780658 -0.530188,2.628746 -0.02286,0.802796 0.108345,1.649521 0.566141,2.217452 0.323703,0.447346 0.856968,0.777516 1.4548,0.998924 0.58747,0.213994 1.253634,0.2923 1.968542,0.331784 1.343139,0.05246 3.00924,-0.07029 4.637336,0.477045 0.833718,0.306237 1.512759,0.734561 2.165639,1.089224 0.638258,0.325061 1.254794,0.614252 1.824911,0.611894 0.01558,9.78e-4 0.03128,0.0017 0.0471,0.0023 0.383978,0.01301 0.843893,-0.102002 1.370755,-0.192425 0.586787,-0.109261 1.112145,-0.173286 1.572202,-0.310178 0.432592,-0.121456 0.894427,-0.332514 1.419627,-0.522781 0.380266,-0.150272 0.679297,-0.225481 0.826234,-0.358663 0.181886,-0.129211 0.318971,-0.372895 0.345563,-0.599046 0.0325,-0.231045 -0.04754,-0.505065 -0.194088,-0.692319 -0.138707,-0.201118 -0.412549,-0.350026 -0.713774,-0.462251 -0.313158,-0.111472 -0.69247,-0.149037 -1.101031,-0.181223 -0.422497,-0.02768 -0.872099,-0.03898 -1.36483,-0.107325 -0.501548,-0.06426 -1.025827,-0.216912 -1.519227,-0.50753 -0.510992,-0.317371 -0.90435,-0.755918 -1.168652,-1.242961 -0.269558,-0.496177 -0.420701,-1.023354 -0.48025,-1.537485 -0.115048,-1.059579 0.07551,-2.055129 0.290389,-2.911065 0.222922,-0.945028 0.453341,-1.728554 0.484576,-2.524152 0.01766,-0.409468 -0.0088,-0.799172 -0.102117,-1.155602 C 23.945358,9.7431542 23.78782,9.4049196 23.567846,9.1401788 23.200842,8.6695649 22.590249,8.381813 21.999851,8.2185754 21.343678,8.0419774 20.599385,8.0232734 19.941055,8.0115192 19.105245,8.0018206 18.428923,8.003691 17.693798,7.8856917 16.775358,7.7425013 16.057223,7.405026 15.545016,6.9711226 14.400259,5.9885359 14.665655,5.1454502 14.614078,5.1599334 Z"
+           id="path7896-4"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 1.7931266,6.0498658 c 0,0 0.5919811,1.0195668 2.1350084,1.6068928 1.45782,0.554893 6.36367,0.6013689 7.364256,1.7980159 1.11093,1.3286145 -0.573152,8.8543945 0.394273,10.8897725 0.736185,1.551525 6.821382,1.407117 8.386153,2.114715 1.054823,0.476997 3.290438,1.079762 4.231383,1.75415 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.555283,-0.697631 0.28523,-2.39934 -1.005017,-1.346595 -4.744924,0.263843 -4.927426,-1.407093 C 25.22372,17.275633 24.860429,10.104574 24.000569,8.7664062 23.315816,7.7007527 16.864718,7.2690326 15.703984,6.7618807 14.837098,6.3831179 14.614089,5.1599739 14.614089,5.1599739"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-17-7"
+           y="1.1448002"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1448002"
+             x="-1.8505859"
+             id="tspan4680-55-6"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-6-3"
+             y="4.8285847"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-30-6"
+             y="8.5123692"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-2-6"
+             y="12.196154"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-5-4"
+             y="15.879938"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-9-4"
+             y="19.563723"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-82-2"
+             y="23.247507"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-38-1"
+             y="26.931292"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-61-3"
+             y="30.615076"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-66-4"
+             y="34.298862"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">10</tspan><tspan
+             id="tspan4720-050-9"
+             y="37.982647"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="336.0048"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,320.01212)"
+         id="use5052-6"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="319.99961"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 14.32473,5.1680653 c 0.103221,-0.041272 0.500431,1.1532061 2.089711,1.6714146 1e-6,-3e-7 1e-6,3e-7 1e-6,3e-7 0.488706,0.1634738 1.040168,0.2149018 1.71525,0.1935381 0.549372,-0.019787 1.155274,-0.1021906 1.83791,-0.1550449 0,0 2e-6,-2e-7 2e-6,-2e-7 0.592311,-0.048766 1.280802,-0.066493 1.989859,0.072661 0.653475,0.1256102 1.35057,0.4258144 1.911997,0.9849033 0.380651,0.3937242 0.658508,0.8813085 0.815736,1.4129399 0.149814,0.5048619 0.203545,1.0319545 0.178315,1.5559355 -0.05234,1.002883 -0.325716,1.904661 -0.598449,2.82207 -0.232474,0.831123 -0.469707,1.684415 -0.411388,2.46216 0.02459,0.375922 0.100545,0.745066 0.254692,1.060181 0.149497,0.304678 0.362495,0.58014 0.623423,0.750041 0.293618,0.214674 0.715593,0.30871 1.178654,0.357787 0.461115,0.04151 0.962918,-4.4e-5 1.536013,-0.01787 0,0 3e-6,0 3e-6,0 0.555011,-0.0251 1.176932,-0.01479 1.827727,0.140838 0.650209,0.149202 1.301547,0.512226 1.784719,1.122936 0,0 3e-6,4e-6 3e-6,4e-6 0.416545,0.558206 0.600036,1.260844 0.497949,1.964229 -0.105746,0.692474 -0.481204,1.318115 -1.058313,1.737641 0,0 -4e-6,3e-6 -4e-6,3e-6 -0.445976,0.30216 -0.870939,0.454762 -1.208236,0.57251 -0.449692,0.170972 -0.954761,0.396472 -1.527625,0.565721 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.618047,0.174921 -1.194558,0.251704 -1.722365,0.349947 -0.182827,0.03736 -0.379767,0.07942 -0.589262,0.116441 -0.358011,0.06326 -0.751836,0.111659 -1.184058,0.09992 -1.12799,-0.086 -2.067441,-0.587813 -2.804877,-1.128695 -0.774188,-0.529534 -1.391851,-1.058166 -2.059818,-1.32159 -1.079252,-0.494138 -2.544664,-0.345713 -3.978091,-0.395752 -0.764174,-0.012 -1.551742,-0.08514 -2.334084,-0.316394 -0.812853,-0.236274 -1.578385,-0.687474 -2.154888,-1.35758 C 10.224674,19.60916 9.9512408,18.541107 9.9508643,17.5687 c -0.00771,-1.00933 0.1978587,-1.956948 0.3926257,-2.786127 0.206031,-0.916543 0.397537,-1.704746 0.410934,-2.492045 0.0072,-0.838113 -0.151984,-1.61309 -0.56569,-2.170087 C 9.8721999,9.66382 9.379903,9.3236607 8.8791384,9.0836355 8.3242039,8.819881 7.6971404,8.6725325 7.1202349,8.5641318 5.3352862,8.243325 4.4340156,8.2264503 3.2307973,7.650636 1.760203,6.9358078 1.4712741,6.0650269 1.4766026,6.0602799 1.5508781,5.9941106 2.11565,6.6664361 3.4490567,7.1295118 4.661625,7.5601212 5.3043126,7.4364576 7.2535725,7.6738403 c 0.6211239,0.070995 1.3293885,0.1976996 2.0293144,0.4770541 0.6375658,0.2526773 1.2906541,0.6679323 1.7948091,1.2985784 0.609208,0.7982782 0.899487,1.8095642 0.90027,2.8452342 0.0074,0.954916 -0.164988,1.847219 -0.349704,2.761996 -0.159115,0.829365 -0.329255,1.684761 -0.289937,2.475708 0.04455,0.746708 0.235893,1.51859 0.699585,2.017024 0.34246,0.408438 0.879506,0.68992 1.473672,0.868839 0.583302,0.171727 1.234213,0.212052 1.935824,0.222398 1.32057,-0.008 2.959095,-0.140938 4.553277,0.467479 0.945207,0.402019 1.669413,0.981959 2.363533,1.468469 0.679764,0.439798 1.348222,0.844981 1.977194,0.841228 0.239728,0.0197 0.512811,-0.02239 0.822946,-0.08097 0.181783,-0.03433 0.375321,-0.07411 0.580696,-0.10995 0.588987,-0.112361 1.116095,-0.176315 1.577283,-0.312389 0,0 2e-6,-1e-6 2e-6,-1e-6 0.429408,-0.119571 0.896802,-0.330413 1.411759,-0.521109 0.375798,-0.149603 0.677752,-0.233829 0.8446,-0.371312 0,0 10e-7,-1e-6 10e-7,-1e-6 0.220385,-0.152542 0.388645,-0.427477 0.428378,-0.691133 0.04565,-0.267582 -0.03286,-0.582662 -0.194115,-0.799193 0,0 0,-1e-6 0,-1e-6 -0.170022,-0.265068 -0.534114,-0.446602 -0.921779,-0.564601 -0.4058,-0.116395 -0.889353,-0.119194 -1.403013,-0.114845 0,0 -2e-6,0 -2e-6,0 -0.532609,0.01264 -1.097155,0.04358 -1.713482,-0.0136 -0.63257,-0.05129 -1.29052,-0.244864 -1.876769,-0.643433 -0.497235,-0.358511 -0.86228,-0.834845 -1.089049,-1.350246 -0.231485,-0.525374 -0.337755,-1.07218 -0.351774,-1.596527 -0.02127,-1.080238 0.261762,-2.06824 0.542925,-2.910381 0.295495,-0.933725 0.577869,-1.712763 0.633514,-2.507598 0.03092,-0.411009 0.01115,-0.803967 -0.08302,-1.1608076 C 23.451781,9.2973551 23.285795,8.9593971 23.054478,8.70465 22.731513,8.3266721 22.227088,8.0905949 21.729416,7.9548339 21.181562,7.8086345 20.57226,7.7940668 20.011035,7.7996819 c 0,0 -2e-6,0 -2e-6,0 -0.71554,0.010883 -1.216023,0.052322 -1.883855,0.026272 -0.737576,-0.02575 -1.382552,-0.1559016 -1.941584,-0.4035047 -10e-7,-3e-7 -10e-7,-6e-7 -10e-7,-9e-7 -2.10653,-0.947907 -1.668284,-2.3313829 -1.860863,-2.2543828 z"
+           id="path7986-6"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 1.4766026,6.0602799 c 0,0 0.3202976,0.742468 1.8633244,1.329794 1.45782,0.5548933 6.2927015,1.1982325 7.293288,2.3948828 1.110929,1.3286143 -0.114072,8.1988653 0.853356,10.2342433 0.736185,1.551525 6.650147,1.106623 8.214918,1.814221 1.054823,0.476997 3.661766,1.705604 4.602711,2.379991 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.667369,-0.894391 0.397316,-2.5961 -1.005017,-1.346595 -5.93858,0.200849 -6.121082,-1.470087 -0.172702,-1.58121 0.007,-8.9388284 -0.852883,-10.2769952 C 22.777216,7.2544398 17.460752,7.6381164 16.300018,7.1309646 15.433132,6.7522018 14.324735,5.168079 14.324735,5.168079"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-19-1"
+           y="1.1865013"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1865013"
+             x="-1.8505859"
+             id="tspan4680-90-8"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-93-5"
+             y="4.870286"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-47-8"
+             y="8.5540705"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-31-2"
+             y="12.237855"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-78-1"
+             y="15.921639"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-253-1"
+             y="19.605423"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-1-7"
+             y="23.289207"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-21-6"
+             y="26.972992"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-29-1"
+             y="30.656776"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-26-1"
+             y="34.340561"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-4-4"
+             y="38.024345"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">11</tspan><tspan
+             id="tspan4720-2-0"
+             y="41.70813"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="368.04569"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,352.05301)"
+         id="use5054-8"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="352.0405"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 14.506088,4.8083052 c 0.09027,-0.081937 0.989678,1.0666613 3.062369,1.2911428 0,-4e-7 1e-6,1e-7 1e-6,1e-7 0.779335,0.089577 1.719068,-0.05484 2.874835,-0.052505 0.483035,-0.0015 1.021894,0.039014 1.570176,0.1892148 0.509656,0.1383959 1.036794,0.3949155 1.483997,0.8140102 0.408882,0.3948749 0.710546,0.899541 0.877598,1.4581656 0.157797,0.5261768 0.209126,1.0801818 0.169834,1.6317469 -0.07935,1.04653 -0.408011,1.985732 -0.754901,2.941284 -0.295678,0.857336 -0.610721,1.746188 -0.609626,2.576199 -0.0029,0.400221 0.04905,0.798541 0.189324,1.146317 0.135836,0.335573 0.342843,0.645474 0.610508,0.845742 0.331791,0.278384 0.834428,0.40113 1.379592,0.457299 0.542035,0.04685 1.126622,-0.01762 1.795843,-0.05434 0.644407,-0.04518 1.369414,-0.04868 2.123463,0.134983 0,0 3e-6,10e-7 3e-6,10e-7 0.753331,0.176121 1.499557,0.625693 1.999323,1.374915 0.37634,0.605256 0.506696,1.333859 0.355853,2.039025 -0.15263,0.692545 -0.559809,1.30429 -1.148167,1.71228 -0.435946,0.286131 -0.852128,0.439161 -1.191119,0.561743 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.454341,0.176084 -0.960893,0.399936 -1.53399,0.567777 -0.617746,0.173387 -1.19267,0.24947 -1.718581,0.348931 -0.160073,0.0334 -0.331555,0.07057 -0.513168,0.104539 -0.378878,0.07087 -0.800861,0.127654 -1.268951,0.111823 -0.60568,-0.04024 -1.162264,-0.218331 -1.644616,-0.471569 0,0 -3e-6,-2e-6 -3e-6,-2e-6 -0.486034,-0.252647 -0.908415,-0.556277 -1.285645,-0.860743 -0.784132,-0.613674 -1.395857,-1.219985 -2.086881,-1.509281 -0.564196,-0.264172 -1.244773,-0.348789 -1.938617,-0.372114 0,0 -3e-6,0 -3e-6,0 -0.70239,-0.01794 -1.48108,0.05377 -2.249425,0.08289 -0.809729,0.03654 -1.647941,0.01369 -2.490927,-0.184869 C 11.685532,21.490674 10.848548,21.043354 10.221509,20.343257 9.4603344,19.434438 9.1798151,18.308456 9.2009854,17.291994 9.2155236,16.232891 9.4679497,15.246084 9.7088317,14.388361 9.9679197,13.430228 10.207979,12.618887 10.261088,11.7914 10.310597,10.90335 10.174802,10.079669 9.7587185,9.4779483 9.506384,9.0906547 9.1369071,8.7758387 8.7478423,8.5323904 8.3216229,8.2667216 7.8402196,8.0819802 7.3790778,7.9404341 6.236841,7.5912582 5.1285425,7.4486579 4.2439549,7.172411 c 0,0 -1.1e-6,-5e-7 -1.1e-6,-5e-7 C 2.3470344,6.5778938 1.6162512,5.7445219 1.6387415,5.7087521 1.6980987,5.6143469 2.6097592,6.19818 4.4019969,6.5645344 c 0,-2e-7 10e-7,2e-7 10e-7,2e-7 0.8502013,0.1747845 1.9249502,0.2206583 3.2059425,0.5177136 0.518721,0.1197451 1.0833948,0.3010878 1.6314227,0.5960542 0.5034357,0.270156 1.0003839,0.6568481 1.3928939,1.1829831 0.602789,0.8416063 0.865464,1.9040915 0.817532,2.9888185 -0.03683,0.992586 -0.259694,1.907569 -0.493275,2.859992 -0.200773,0.854989 -0.41156,1.744691 -0.386464,2.574194 0.03122,0.778535 0.228629,1.595274 0.725771,2.107861 0.372003,0.428366 0.961871,0.704465 1.607103,0.86069 0.632675,0.148553 1.330231,0.145229 2.083237,0.110618 0.71422,-0.03838 1.520889,-0.120621 2.343979,-0.113291 0,0 3e-6,0 3e-6,0 0.816503,0.0017 1.697551,0.121431 2.548011,0.484328 1.001833,0.461052 1.737,1.134441 2.437965,1.701385 0.34397,0.268865 0.679468,0.51429 1.022813,0.685317 0,0 2e-6,1e-6 2e-6,1e-6 0.339072,0.166371 0.684558,0.285901 1.009165,0.297023 0.251811,0.02391 0.543964,-0.02639 0.880892,-0.09233 0.162044,-0.03172 0.332774,-0.06669 0.513951,-0.09859 0.590358,-0.114155 1.118507,-0.178117 1.581067,-0.313405 0.431072,-0.119081 0.895803,-0.326945 1.4054,-0.519055 0,0 3e-6,-1e-6 3e-6,-1e-6 0.371834,-0.148929 0.676636,-0.240971 0.861711,-0.382077 0.251564,-0.169801 0.448572,-0.457738 0.51067,-0.746568 0.06722,-0.291429 0.01133,-0.63431 -0.143336,-0.880891 -0.176922,-0.336256 -0.613164,-0.571778 -1.069517,-0.713651 0,0 -3e-6,-1e-6 -3e-6,-1e-6 -0.481146,-0.141044 -1.054352,-0.131574 -1.655452,-0.112399 -0.626754,0.03024 -1.285072,0.08304 -2.002468,0.01971 -0.740485,-0.05631 -1.503977,-0.300848 -2.149958,-0.803083 -0.491461,-0.405782 -0.835138,-0.926871 -1.031325,-1.4774 -0.200816,-0.56251 -0.268562,-1.137995 -0.243133,-1.68216 0.05985,-1.123283 0.430167,-2.132107 0.772919,-2.986448 0.367225,-0.959046 0.700485,-1.760353 0.778951,-2.589582 0.04344,-0.4320507 0.02768,-0.8466164 -0.07144,-1.2218368 C 23.182395,8.4238476 22.999916,8.067881 22.747206,7.806256 22.481251,7.517725 22.106208,7.3165584 21.724242,7.1824663 21.309359,7.0383279 20.851655,6.9797065 20.415242,6.9496567 19.367634,6.883524 18.338697,6.9468367 17.46123,6.7724311 c 0,-2e-7 -1e-6,-4e-7 -1e-6,-7e-7 -2.555668,-0.522603 -2.85625,-2.0538857 -2.955141,-1.9641252 z"
+           id="path8076-4"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 1.6387415,5.7087521 c 0,0 1.141208,0.5723957 2.6842349,1.1597207 1.45782,0.554893 4.8719257,1.1044941 5.8725116,2.3011441 1.110929,1.3286151 -0.4042509,8.6627091 0.563177,10.6980871 0.736185,1.551525 7.237219,0.875449 8.80199,1.583047 1.054823,0.476997 3.8026,2.088274 4.743545,2.762661 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.393137,-0.5742 0.579824,-2.689382 0.08225,-0.931902 -6.318731,-0.591572 -7.087811,-1.761141 C 22.656699,16.883733 23.982196,8.7663793 23.122336,7.4282124 22.437583,6.3625588 18.675578,6.9430912 17.514844,6.4359396 16.647958,6.0571768 14.506119,4.808339 14.506119,4.808339"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-0-7"
+           y="1.1497917"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1497917"
+             x="-1.8505859"
+             id="tspan4680-24-1"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-99-7"
+             y="4.8335762"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-95-4"
+             y="8.5173607"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-03-7"
+             y="12.201145"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-70-3"
+             y="15.88493"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-49-0"
+             y="19.568714"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-4-9"
+             y="23.252499"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-89-4"
+             y="26.936283"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-00-3"
+             y="30.620068"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-8-5"
+             y="34.303852"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-2-4"
+             y="37.987637"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-25-2"
+             y="41.671421"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">12</tspan><tspan
+             id="tspan4720-1-2"
+             y="45.355206"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="399.99761"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,384.00493)"
+         id="use5056-2"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="383.99242"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 14.859336,3.4772709 c 0.05748,-0.114161 1.330492,0.5621526 3.719866,0.8189882 0.500449,0.053566 1.374002,0.098554 2.059733,0.2288478 0.65865,0.1196416 1.421901,0.3819428 2.058857,0.9492471 0.413192,0.3829341 0.731117,0.8767643 0.92293,1.4331502 0.179273,0.5187889 0.258682,1.0724292 0.25005,1.6332511 -0.02042,1.0558344 -0.289079,2.0233797 -0.582384,3.0300977 -0.245439,0.88807 -0.512718,1.823876 -0.474488,2.686498 0.01537,0.414892 0.08527,0.827009 0.241527,1.188608 0.151074,0.348447 0.373052,0.669589 0.657118,0.883405 0.282194,0.228617 0.669645,0.368144 1.093837,0.455472 0.418225,0.08298 0.878085,0.08881 1.37932,0.08316 0.954812,-0.03423 2.133487,-0.106836 3.323617,0.328625 0.562952,0.222084 1.081068,0.576846 1.497426,1.048821 0,0 2e-6,2e-6 2e-6,2e-6 0.409616,0.465363 0.703105,1.038714 0.832436,1.66903 0.126594,0.622156 0.07914,1.280926 -0.156078,1.89508 -0.233878,0.606436 -0.651444,1.13931 -1.210072,1.512748 -0.425492,0.27026 -0.832789,0.423803 -1.173386,0.5512 -1e-6,0 -2e-6,0 -3e-6,1e-6 -0.458361,0.181255 -0.966965,0.404173 -1.54119,0.570371 -0.619044,0.171657 -1.190263,0.244918 -1.710823,0.347307 -0.202192,0.04457 -0.425207,0.09598 -0.667328,0.138012 -0.341908,0.05935 -0.720916,0.09985 -1.138369,0.07828 -0.750547,-0.07131 -1.416699,-0.37041 -1.946046,-0.782661 -0.533266,-0.410755 -0.953661,-0.890577 -1.304498,-1.362363 -0.745219,-0.958039 -1.243619,-1.874497 -1.991945,-2.34249 -0.558292,-0.397144 -1.308894,-0.569789 -2.069791,-0.649434 -0.780025,-0.07401 -1.643585,-0.01704 -2.500653,-0.0019 -0.907601,0.02409 -1.841656,-0.0121 -2.774959,-0.261373 C 10.671788,19.35119 9.7589287,18.791795 9.1411314,17.946719 8.4878701,16.983637 8.3218454,15.862241 8.4214334,14.879633 8.5173012,13.85154 8.8266879,12.899551 9.0895829,12.082733 9.3771421,11.156522 9.6204093,10.363542 9.6518651,9.5633809 9.6791038,8.6905502 9.4884757,7.8870309 9.0264572,7.3514906 8.7156455,6.964083 8.2527035,6.6860562 7.8003368,6.4800728 7.2997439,6.2553824 6.7038805,6.0947258 6.2110742,5.9523952 3.4898505,5.1721765 2.0002152,4.5643992 2.0351219,4.4443559 2.076676,4.3014523 3.6374985,4.6607152 6.3906276,5.2168102 c 0.5010247,0.1001871 1.132118,0.2240002 1.7391656,0.4451519 0.5505496,0.1978506 1.1454844,0.5181483 1.6353083,1.0371578 0.6773675,0.7545631 1.0251375,1.7967784 1.0062365,2.8905132 -0.01035,0.9797389 -0.235961,1.8988769 -0.504254,2.8430349 -0.228432,0.836477 -0.4921635,1.718338 -0.5315341,2.542831 -0.028614,0.774055 0.090967,1.600263 0.5339271,2.157642 0.369163,0.523743 1.02837,0.875261 1.757182,1.074826 0.711414,0.188689 1.500728,0.191256 2.361264,0.166732 0.813108,-0.03075 1.727351,-0.09918 2.668497,-0.03025 0.927669,0.06061 1.922682,0.30599 2.812251,0.881068 1.101197,0.773827 1.739669,1.809589 2.383068,2.679422 0.318793,0.40964 0.639289,0.786233 1.001378,1.050865 0.355518,0.255224 0.745405,0.447147 1.113349,0.463553 0.205703,0.0273 0.446674,-0.0079 0.725244,-0.06247 0.197575,-0.03868 0.412955,-0.08679 0.646021,-0.128518 0.591203,-0.118063 1.129462,-0.182394 1.588825,-0.315029 0.431896,-0.117724 0.893956,-0.322951 1.3982,-0.516461 0,0 3e-6,-10e-7 3e-6,-10e-7 0.368032,-0.148489 0.675934,-0.248234 0.879444,-0.39262 0.272716,-0.174569 0.494495,-0.457202 0.617922,-0.765428 0.127312,-0.313878 0.154999,-0.681719 0.09103,-1.022299 -0.06425,-0.34769 -0.234979,-0.685984 -0.468742,-0.96089 0,0 -1e-6,-1e-6 -1e-6,-1e-6 -0.238104,-0.281046 -0.557531,-0.503661 -0.903641,-0.647821 -0.721436,-0.334417 -1.722745,-0.248024 -2.74327,-0.266495 -0.538225,0.0027 -1.100094,-0.02308 -1.676794,-0.140878 -0.594265,-0.118202 -1.182183,-0.366043 -1.689656,-0.769097 -0.491613,-0.406669 -0.841391,-0.924099 -1.051455,-1.470459 -0.215831,-0.560345 -0.30367,-1.136255 -0.302078,-1.684405 0.0097,-1.136959 0.327267,-2.181847 0.619989,-3.067045 0.31817,-1.008111 0.604142,-1.8443455 0.642782,-2.7035064 C 22.762856,8.0541939 22.726098,7.6252568 22.60925,7.2381461 22.484518,6.8261485 22.282425,6.4598571 22.01311,6.1876804 21.61756,5.764135 21.008265,5.5247827 20.448439,5.3696558 19.775673,5.1902145 19.09325,5.1216302 18.471732,4.9994099 15.926736,4.5001187 14.84224,3.5112259 14.859336,3.4772709 Z"
+           id="path8166-0"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 2.0351219,4.4443559 c 0,0 2.722703,0.552921 4.2657299,1.140247 1.45782,0.5548931 2.0943415,0.2440523 3.0949275,1.4407023 1.1109297,1.328615 -0.6579032,8.4792468 0.3095248,10.5146248 0.7361849,1.551525 8.1639829,1.625207 9.7287539,2.332805 1.054823,0.476997 3.929197,3.66629 4.870142,4.340677 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.456483,-3.059351 -0.813573,-4.76106 C 28.220028,16.555621 23.4543,18.551291 23.271798,16.880355 23.099096,15.299144 23.215311,7.1691842 22.355451,5.8310172 21.670698,4.7653637 19.686202,5.1549865 18.525468,4.6478347 17.658582,4.2690719 14.859364,3.4772849 14.859364,3.4772849"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,0.74685828)" />
+        <text
+           id="text4678-93-7"
+           y="1.1677153"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1677153"
+             x="-1.8505859"
+             id="tspan4680-4-3"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-70-4"
+             y="4.8515"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-11-1"
+             y="8.535284"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-01-6"
+             y="12.219069"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-8-1"
+             y="15.902853"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-7-7"
+             y="19.586637"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-53-0"
+             y="23.270422"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-0-5"
+             y="26.954206"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-66-3"
+             y="30.637991"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-1-0"
+             y="34.321777"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-82-3"
+             y="38.005562"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-8-8"
+             y="41.689346"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-54-4"
+             y="45.373131"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">13</tspan><tspan
+             id="tspan4720-07-3"
+             y="49.056915"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="431.97706"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,415.98438)"
+         id="use5058-9"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="415.97187"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 15.383997,4.2576713 c 0.003,-0.07153 1.291345,-0.296311 3.573041,0.1837639 0.45839,0.095387 1.002687,0.2328336 1.540121,0.4723264 0.474277,0.2101434 0.974244,0.5279128 1.386625,0.9994689 0.645282,0.7700363 0.966739,1.8227549 0.921969,2.9378314 -0.03252,0.9857399 -0.270074,1.8947371 -0.535835,2.8602601 -0.221815,0.840889 -0.466633,1.737111 -0.457893,2.571 0.002,0.40036 0.0499,0.800481 0.173063,1.164878 0.119164,0.351213 0.299714,0.68338 0.54583,0.93499 0.239525,0.255981 0.56782,0.454871 0.934452,0.601465 0.359227,0.142656 0.763442,0.220471 1.19442,0.26422 0.831891,0.08483 1.762731,-0.01007 2.795697,0.01614 0.994363,0.0062 2.120867,0.195884 3.123966,0.844172 0.4888,0.325885 0.913477,0.784756 1.196046,1.357462 0.280062,0.569338 0.373867,1.240471 0.220983,1.908237 -0.112694,0.447781 -0.325776,0.848451 -0.6083,1.178855 -0.278302,0.326099 -0.603128,0.58886 -0.948762,0.790677 0,0 -3e-6,2e-6 -3e-6,2e-6 -0.39678,0.230474 -0.781949,0.386757 -1.12893,0.525937 -0.470643,0.194168 -0.98385,0.411047 -1.552246,0.574722 0,0 -4e-6,1e-6 -4e-6,1e-6 -0.609859,0.169457 -1.185932,0.252224 -1.721825,0.34929 -0.159387,0.03106 -0.327496,0.06479 -0.50317,0.09605 -0.379831,0.0676 -0.794022,0.123509 -1.24624,0.12019 -0.927924,-0.03185 -1.779523,-0.343956 -2.488373,-0.791179 -0.718503,-0.448714 -1.318397,-0.995674 -1.847903,-1.533002 -0.551588,-0.553134 -1.025451,-1.07628 -1.540531,-1.533587 -0.522913,-0.458345 -1.053941,-0.84593 -1.62045,-1.061321 -1.084798,-0.46691 -2.560643,-0.308306 -3.969517,-0.365682 -0.76313,-0.0175 -1.544212,-0.104632 -2.310934,-0.354412 C 9.706116,19.112609 8.9664975,18.63324 8.4345234,17.94581 7.7467806,16.993503 7.5674769,15.863267 7.6648893,14.879927 7.7587697,13.845257 8.0770321,12.887775 8.3436997,12.076614 8.6403832,11.140306 8.8863949,10.351786 8.9147602,9.551004 8.9318894,9.124575 8.8948967,8.7212069 8.7889672,8.3545627 8.6747145,7.960051 8.4918901,7.6092287 8.2493845,7.3370428 7.7851697,6.780787 6.9601671,6.4725765 6.319834,6.2415669 3.9471057,5.4202755 2.492722,5.2680196 2.5046557,5.1368738 2.5117059,5.0593954 3.985224,4.898432 6.528518,5.5413017 c 0.6927705,0.1661785 1.6386643,0.4550518 2.3814101,1.1679989 0.3634403,0.3654382 0.647657,0.8250963 0.82479,1.3433215 0.1640036,0.4788858 0.2433884,0.9915315 0.2445725,1.5162187 -0.0015,0.9766242 -0.2257861,1.8947652 -0.4997706,2.8503702 -0.2289438,0.831972 -0.4980844,1.721464 -0.5323497,2.548882 -0.023288,0.771167 0.1077826,1.602782 0.5699905,2.14413 0.3200962,0.419217 0.8430192,0.717441 1.4281212,0.907857 0.570469,0.181956 1.211264,0.229344 1.904707,0.241465 1.282031,-0.0025 2.906833,-0.160024 4.489975,0.399836 0.801793,0.311403 1.49629,0.787075 2.10035,1.323806 0.597702,0.525247 1.100776,1.067544 1.622672,1.585487 0.505926,0.495786 1.013484,0.964334 1.56555,1.295263 0.541268,0.319871 1.129393,0.5509 1.692862,0.551275 0.27622,0.01242 0.583959,-0.03668 0.9281,-0.09975 0.159792,-0.02929 0.325456,-0.0612 0.499452,-0.09128 0.580654,-0.107735 1.107715,-0.178134 1.577823,-0.313046 0,0 2e-6,0 2e-6,0 0.439839,-0.120479 0.899042,-0.316749 1.387138,-0.512109 0.356664,-0.146706 0.67253,-0.266405 0.923906,-0.417885 0,0 2e-6,-1e-6 2e-6,-1e-6 0.217814,-0.130217 0.409664,-0.277588 0.550149,-0.446269 0.140085,-0.168889 0.247163,-0.354411 0.288876,-0.535876 0.07511,-0.261355 0.02387,-0.586759 -0.101525,-0.867631 -0.129439,-0.291262 -0.375863,-0.552627 -0.663659,-0.75898 -0.585527,-0.440384 -1.44655,-0.562718 -2.305019,-0.617123 -0.907007,-0.03725 -1.885563,0.03679 -2.900769,-0.07684 -0.527349,-0.05922 -1.058338,-0.180508 -1.569884,-0.390833 -0.527455,-0.215838 -1.015697,-0.542015 -1.413157,-0.973964 -0.393935,-0.439642 -0.660417,-0.950475 -0.812892,-1.471121 -0.157346,-0.535942 -0.209409,-1.07472 -0.190983,-1.585428 0.04296,-1.063185 0.337692,-2.046219 0.603893,-2.881678 0.295718,-0.963153 0.554806,-1.7569563 0.610953,-2.5788499 C 21.788281,7.8887651 21.619733,7.0641055 21.171289,6.49533 20.903241,6.1341014 20.518978,5.8560145 20.137565,5.6459461 19.703502,5.4084317 19.212476,5.2419997 18.78484,5.1088519 16.664298,4.4540168 15.378794,4.38101 15.383997,4.2576713 Z"
+           id="path8256-9"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 2.5046557,5.1368738 c 0,0 2.3764943,0.167235 3.9195211,0.7545607 1.45782,0.5548931 1.1548937,-0.064913 2.1554795,1.1317372 1.1109296,1.328615 -0.5712429,8.4704663 0.3961851,10.5058443 0.736185,1.551525 6.5242416,1.139338 8.0890126,1.846936 1.054823,0.476997 6.298401,4.163073 7.239346,4.83746 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.802334,-0.268803 1.026418,-0.471911 0.35302,-0.319976 2.468099,0.225869 1.198046,-1.47584 C 30.231647,19.840841 22.209378,18.51984 22.026876,16.848904 21.854174,15.267694 22.387399,7.5424471 21.527537,6.2042811 20.842784,5.1386271 19.203772,6.0498006 18.87094,4.7751438 18.631933,3.8598141 15.384062,4.257674 15.384062,4.257674"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-176-6"
+           y="1.2398182"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2398182"
+             x="-1.8505859"
+             id="tspan4680-8-9"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-2-9"
+             y="4.9236026"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-477-5"
+             y="8.6073875"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-33-4"
+             y="12.291172"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-37-5"
+             y="15.974957"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-78-2"
+             y="19.658741"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-9-0"
+             y="23.342525"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-6-7"
+             y="27.02631"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-46-4"
+             y="30.710094"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-45-2"
+             y="34.393879"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-42-4"
+             y="38.077663"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-09-6"
+             y="41.761448"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-775-9"
+             y="45.445232"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-4-0"
+             y="49.129017"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">14</tspan><tspan
+             id="tspan4720-52-0"
+             y="52.812801"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="463.99042"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,447.99774)"
+         id="use5060-2"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="447.98523"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 16.056385,3.7604874 c 0.08697,0.2913822 1.131266,-1.2773959 3.692943,0.1803543 0.948078,0.5424144 1.949862,1.6195153 2.244939,3.1689458 0.139395,0.762581 0.104881,1.5524213 -0.03783,2.358817 -0.124408,0.7222025 -0.319329,1.4400875 -0.471698,2.1613475 0,0 -1e-6,2e-6 -1e-6,2e-6 -0.135897,0.661201 -0.247828,1.353349 -0.196772,2.005817 0.05113,0.61043 0.220099,1.235499 0.584986,1.682008 0.370943,0.498135 1.005642,0.831771 1.714221,1.032842 0.6871,0.188765 1.445129,0.212242 2.283214,0.225699 0.787878,0.0052 1.673326,-0.0048 2.581539,0.136529 0.890675,0.131557 1.83099,0.466787 2.624905,1.126167 0.55689,0.469686 0.991062,1.117619 1.186309,1.88085 0,0 10e-7,3e-6 10e-7,3e-6 0.191249,0.756675 0.09196,1.591544 -0.337865,2.311492 -0.408307,0.624033 -0.961493,1.048749 -1.514028,1.327877 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.371339,0.198797 -0.739177,0.358655 -1.092899,0.506857 -0.482442,0.204668 -0.998508,0.413868 -1.555897,0.576768 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.59502,0.170066 -1.182532,0.271707 -1.752999,0.354969 -0.17579,0.0261 -0.352106,0.05114 -0.528926,0.07507 -0.364128,0.04927 -0.727815,0.09345 -1.091063,0.132333 -1.060092,0.122439 -2.181508,0.179957 -3.32361,-0.06223 -0.580455,-0.126619 -1.150766,-0.347016 -1.673396,-0.67465 -0.532077,-0.333146 -0.994001,-0.788258 -1.329916,-1.342374 0,0 -2e-6,-3e-6 -2e-6,-3e-6 C 17.705222,22.302301 17.535415,21.675764 17.402784,21.139319 17.248969,20.594882 17.130501,20.121796 16.897396,19.789433 16.5806,19.258748 15.930262,18.903169 15.258559,18.684103 14.552268,18.463419 13.731682,18.423682 12.910827,18.373056 12.032223,18.329635 11.139319,18.270988 10.233266,18.012254 9.2711942,17.746346 8.3823222,17.18558 7.7987933,16.343444 7.3574098,15.663381 7.1754845,14.901924 7.1626661,14.195833 7.146554,13.454758 7.2752336,12.758821 7.4348962,12.140964 7.7999198,10.647979 8.2275984,9.6890167 8.149967,8.5548332 8.0867961,7.2584569 7.3588991,6.1989542 6.6058523,5.6126331 c -3e-7,-1e-7 -7e-7,-2e-7 -10e-7,-2e-7 C 4.8584916,4.2437371 3.2243292,4.7933986 3.1916385,4.6696491 c 0.088237,0.3340177 1.2216932,-1.3181554 3.8249834,0.3611606 -10e-8,6e-7 1.2e-6,8e-7 1.2e-6,8e-7 0.9540539,0.6188347 1.9273998,1.8096718 2.1078847,3.4429145 0.1319548,1.387788 -0.2506863,2.5321 -0.556407,3.930186 -0.1175105,0.576606 -0.2103201,1.174092 -0.1694535,1.737919 0.041176,0.530275 0.177575,1.068317 0.4741348,1.466664 0.3504142,0.522659 1.0023776,0.870625 1.7327149,1.080966 0.709359,0.195829 1.489717,0.215424 2.369339,0.250537 0.824862,0.02288 1.753935,0.06248 2.696162,0.318771 0.925005,0.242927 1.860218,0.782951 2.495946,1.689075 0.387547,0.603852 0.582751,1.227827 0.726929,1.789919 0.157051,0.539201 0.277872,1.034422 0.505993,1.382354 0,0 1e-6,2e-6 1e-6,2e-6 0.190564,0.319581 0.486465,0.597864 0.830865,0.816382 0.341477,0.216244 0.745494,0.364458 1.175792,0.460581 0.849691,0.196756 1.796673,0.125572 2.812421,0.02451 0.348404,-0.03774 0.697697,-0.08041 1.047912,-0.127799 0.170062,-0.02301 0.339757,-0.04706 0.509061,-0.07208 0.548853,-0.08258 1.066897,-0.168136 1.546649,-0.307367 0,0 2e-6,-1e-6 2e-6,-1e-6 0.450705,-0.127209 0.910033,-0.31435 1.383488,-0.510062 0.345878,-0.144827 0.6689,-0.281121 0.959937,-0.436965 0,0 2e-6,-2e-6 2e-6,-2e-6 0.411733,-0.237157 0.767877,-0.469569 0.926733,-0.76129 0.200966,-0.298489 0.246597,-0.737418 0.162601,-1.122759 0,0 0,-2e-6 0,-2e-6 -0.0857,-0.402445 -0.348814,-0.788595 -0.679712,-1.086958 -0.472815,-0.436474 -1.16508,-0.6726 -1.871918,-0.810181 -0.731409,-0.134871 -1.550106,-0.134557 -2.362456,-0.161525 -0.865452,-0.02082 -1.746751,-0.08207 -2.629413,-0.33251 -0.933272,-0.258318 -1.798456,-0.786607 -2.397926,-1.576259 -0.537048,-0.750453 -0.760487,-1.616531 -0.780359,-2.416895 -0.02421,-0.843338 0.126739,-1.636479 0.307979,-2.335506 0,0 0,-1e-6 0,-2e-6 0.193543,-0.762451 0.414954,-1.4501564 0.557812,-2.1006397 0.155786,-0.726587 0.230225,-1.383843 0.146478,-1.9993898 C 20.889612,6.0253972 20.131638,5.0576259 19.378004,4.5329965 17.627825,3.3075021 16.09224,3.8806114 16.056385,3.7604874 Z"
+           id="path8346-4"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 3.1916385,4.6696491 c 0,0 3.902572,3.2573043 5.4455989,3.84463 1.4578196,0.5548931 -1.3020357,6.2650399 -0.3014497,7.4616899 1.1109303,1.328615 8.2289543,1.357291 9.1963823,3.392669 0.736185,1.551525 -0.365741,2.446812 1.19903,3.15441 1.054823,0.476997 4.632055,1.015977 5.573,1.690364 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 2.490436,0.657124 1.220383,-1.044585 C 30.253984,20.272096 30.758725,20.088595 30.576223,18.417659 30.403521,16.836449 22.203287,17.05497 21.343427,15.716803 20.658674,14.651149 22.680775,7.6937428 21.520041,7.186591 20.653155,6.8078282 16.056393,3.7604851 16.056393,3.7604851"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-2-2"
+           y="1.1258703"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1258703"
+             x="-1.8505859"
+             id="tspan4680-3-6"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-98-9"
+             y="4.8096547"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-0-5"
+             y="8.4934397"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-315-6"
+             y="12.177224"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-777-4"
+             y="15.861009"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-0-3"
+             y="19.544792"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-98-3"
+             y="23.228577"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-03-9"
+             y="26.912361"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-1-2"
+             y="30.596146"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-48-9"
+             y="34.27993"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-90-8"
+             y="37.963715"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-5-0"
+             y="41.647499"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-13-8"
+             y="45.331284"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-01-8"
+             y="49.015068"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4712-99-7"
+             y="52.698853"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">15</tspan><tspan
+             id="tspan4720-9-2"
+             y="56.382637"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="496.03131"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,480.03863)"
+         id="use5062-5"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="480.02612"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 16.780603,3.1576893 c 0.0138,0.142394 1.000736,-0.7210016 2.787686,0.4860938 0,4e-7 1e-6,6e-7 1e-6,6e-7 0.685662,0.4646934 1.402266,1.2938268 1.662793,2.4611815 0.16599,0.7724315 0.12736,1.5981463 -0.06434,2.4496941 -0.173552,0.7898504 -0.402494,1.4221871 -0.636314,2.2188017 -0.191801,0.669318 -0.369284,1.384705 -0.358847,2.066867 0.01367,0.630384 0.158046,1.294937 0.533989,1.757201 0.310506,0.41812 0.822461,0.719362 1.398828,0.904894 0.556887,0.176299 1.182808,0.214645 1.858116,0.204555 1.210964,-0.03519 2.796179,-0.300729 4.359887,0.03482 1.201299,0.271329 2.359639,0.982137 3.106886,2.102046 0.357646,0.544885 0.598023,1.177898 0.678768,1.852198 0,0 0,4e-6 0,4e-6 0.07886,0.663706 -0.0091,1.353636 -0.277539,1.994457 -0.274934,0.65553 -0.744631,1.234643 -1.368298,1.63829 0,0 -3e-6,2e-6 -3e-6,2e-6 -0.414866,0.256753 -0.815438,0.412594 -1.161665,0.544028 -0.467459,0.185103 -0.974471,0.398402 -1.530257,0.567445 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.594725,0.176943 -1.190034,0.284223 -1.774441,0.359375 -0.256404,0.03368 -0.505825,0.06147 -0.750417,0.09 -0.280923,0.03278 -0.55103,0.06605 -0.810743,0.109533 -0.827048,0.137019 -1.71562,0.399333 -2.703429,0.498329 0,0 -3e-6,0 -3e-6,0 -0.502872,0.05029 -1.029584,0.04375 -1.5626,-0.05286 -0.541611,-0.09708 -1.076413,-0.30909 -1.552235,-0.647914 -0.65574,-0.492594 -1.097288,-1.146349 -1.361585,-1.812565 -0.271952,-0.670568 -0.414418,-1.337683 -0.5292,-1.946204 -0.124777,-0.62715 -0.224926,-1.195916 -0.409159,-1.701373 -0.191824,-0.509585 -0.435498,-0.963904 -0.778487,-1.254902 -0.390419,-0.370966 -0.988333,-0.561753 -1.595723,-0.660163 -0.632938,-0.09523 -1.340839,-0.05449 -2.049602,-0.02941 -0.756935,0.03468 -1.529415,0.04752 -2.3262514,-0.09749 C 8.7230019,17.147633 7.9130137,16.764421 7.3034344,16.129218 6.6919223,15.451644 6.4048428,14.615029 6.3413561,13.836252 6.2706004,13.007412 6.39461,12.223336 6.5578154,11.541824 6.7347026,10.785248 6.9479459,10.112065 7.0862802,9.4820515 7.2417039,8.7562905 7.3133673,8.1189161 7.2322158,7.5208732 7.113966,6.593001 6.6539669,5.8371199 6.1720373,5.3420924 c 0,0 -9e-7,-4e-7 -9e-7,-4e-7 C 5.0491394,4.185997 3.9335582,4.1664466 3.9420533,4.0599258 c -0.0073,0.091508 1.065247,-0.4649389 2.6378479,0.8368881 -1e-7,3e-7 1e-6,7e-7 1e-6,7e-7 0.6193811,0.5137755 1.2476032,1.3536081 1.4768618,2.4848678 0.1418928,0.7237955 0.1175787,1.4838427 -0.016067,2.2814517 -0.1127135,0.6931629 -0.2936194,1.3919509 -0.423803,2.1006379 -0.1132784,0.6377 -0.1976466,1.315365 -0.1075372,1.94347 0.086476,0.579329 0.3008663,1.173302 0.7013564,1.555755 0.3690846,0.389855 0.948763,0.614306 1.5852645,0.727901 0.6162581,0.103802 1.2796751,0.06391 2.0243401,0.01995 0.697611,-0.04858 1.484039,-0.104154 2.305915,-0.0112 0.803821,0.08415 1.660642,0.370498 2.382235,0.969466 0.584334,0.517879 0.98112,1.172388 1.223406,1.849884 0.241095,0.657625 0.37144,1.301555 0.496458,1.916854 0.126874,0.593448 0.247354,1.163688 0.459386,1.647617 0.211501,0.468749 0.484791,0.898631 0.846732,1.139545 0.249105,0.183664 0.573126,0.30145 0.921161,0.368767 0.346475,0.06591 0.726135,0.06349 1.123553,0.02705 0,0 3e-6,0 3e-6,0 0.783425,-0.07165 1.631493,-0.330936 2.594546,-0.491185 0.302565,-0.04989 0.597942,-0.08696 0.886336,-0.12086 0.251176,-0.02952 0.49334,-0.05624 0.729466,-0.08688 0.537215,-0.07134 1.04889,-0.1596 1.525207,-0.302961 0,0 2e-6,-1e-6 2e-6,-1e-6 0.446478,-0.130695 0.914065,-0.328231 1.409128,-0.519385 0.361731,-0.145311 0.670865,-0.252259 0.891171,-0.399794 0,0 2e-6,-1e-6 2e-6,-1e-6 0.336886,-0.207733 0.610887,-0.54675 0.775551,-0.921589 0.162726,-0.369792 0.219011,-0.797086 0.177006,-1.206638 0,0 -1e-6,-3e-6 -1e-6,-3e-6 -0.04231,-0.418428 -0.196456,-0.833069 -0.424497,-1.194521 -0.460393,-0.748878 -1.301687,-1.267121 -2.166585,-1.491501 -1.137421,-0.312139 -2.628916,-0.07007 -4.000515,-0.08056 -0.760572,0.0038 -1.534276,-0.07729 -2.284953,-0.324597 -0.79315,-0.258151 -1.510194,-0.741891 -2.01201,-1.420443 -0.553631,-0.792781 -0.740381,-1.711467 -0.703974,-2.536234 0.03482,-0.877699 0.263147,-1.686306 0.50622,-2.382359 0.265846,-0.7762485 0.547824,-1.4654269 0.727432,-2.1198129 0.20276,-0.7553426 0.290716,-1.4324521 0.19199,-2.0571469 -0.138127,-0.9366005 -0.664552,-1.6800234 -1.198723,-2.1300603 0,-10e-8 0,-2e-7 -10e-7,-3e-7 C 17.954732,3.0776441 16.791038,3.2653383 16.780603,3.1576893 Z"
+           id="path8436-4"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 3.9420533,4.0599258 c 0,0 2.1594097,2.8040262 3.7024366,3.391352 1.45782,0.5548931 -0.8880016,7.0481802 0.1125844,8.2448302 1.11093,1.328615 7.2987257,-0.206084 8.2661537,1.829294 0.736185,1.551525 1.487436,5.926874 3.052207,6.634472 1.054823,0.476997 4.28782,-0.620849 5.228765,0.05354 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 2.34198,0.421768 1.071927,-1.279941 C 30.105528,20.03674 28.33195,18.133589 28.149448,16.462653 27.976746,14.881443 21.052155,16.315886 20.192295,14.977719 19.507542,13.912065 21.97662,6.690812 20.815886,6.1836602 19.949,5.8048974 16.780607,3.1576889 16.780607,3.1576889"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-471-4"
+           y="1.2139806"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2139806"
+             x="-1.8505859"
+             id="tspan4680-39-3"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-8-6"
+             y="4.8977652"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-17-8"
+             y="8.5815496"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-42-9"
+             y="12.265334"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-98-8"
+             y="15.949119"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-5-8"
+             y="19.632902"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-522-2"
+             y="23.316687"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-07-0"
+             y="27.000471"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-15-5"
+             y="30.684256"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-63-8"
+             y="34.368042"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-21-4"
+             y="38.051826"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-08-3"
+             y="41.735611"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-8-9"
+             y="45.419395"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-5-0"
+             y="49.10318"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4712-64-0"
+             y="52.786964"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4714-92-3"
+             y="56.470749"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">16</tspan><tspan
+             id="tspan4720-82-5"
+             y="60.154533"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="528.04467"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,512.05199)"
+         id="use5064-5"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="512.03948"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 17.428225,3.6829417 c -0.01548,0.058672 0.987423,-0.232895 2.195483,1.086372 0.479237,0.524244 0.934915,1.3251637 1.034469,2.3398535 0.110623,1.3301826 -0.315864,2.4098801 -0.761537,3.8469238 -0.162161,0.554166 -0.310101,1.144995 -0.31748,1.712955 -0.004,0.525614 0.08722,1.07624 0.358613,1.49418 0.170182,0.279069 0.425149,0.524581 0.726514,0.721833 0.291423,0.190451 0.634421,0.327836 1.005298,0.422939 0.714933,0.188543 1.505622,0.167986 2.389521,0.11968 0.811237,-0.05353 1.746702,-0.144962 2.710361,-0.0643 0.940161,0.06998 1.959379,0.372361 2.810583,1.066583 0.683678,0.592227 1.146839,1.375092 1.391729,2.207357 0.239798,0.803537 0.315629,1.616516 0.319615,2.405764 0.0079,0.302513 -0.0037,0.655772 -0.08704,1.045728 -0.07876,0.394634 -0.283387,0.801562 -0.637279,1.149477 0,0 -4e-6,3e-6 -4e-6,3e-6 -0.241641,0.212934 -0.491014,0.354885 -0.723218,0.442163 -0.228172,0.09047 -0.426014,0.1484 -0.58659,0.201152 -0.502119,0.16562 -0.969535,0.383744 -1.471654,0.549364 -0.595969,0.192799 -1.206063,0.309426 -1.814801,0.369342 0,0 -3e-6,0 -3e-6,0 -0.567653,0.0614 -1.071175,0.06521 -1.457124,0.181373 -0.2943,0.0664 -0.5841,0.210113 -0.886154,0.396695 -0.429952,0.265586 -0.879161,0.613754 -1.389667,0.93844 -0.43491,0.291447 -0.927355,0.56203 -1.492386,0.743944 -0.575677,0.18908 -1.226492,0.232154 -1.876102,0.06504 -0.51494,-0.146952 -0.963511,-0.41992 -1.317537,-0.770861 -0.356133,-0.352787 -0.623418,-0.761133 -0.807816,-1.186941 -0.364997,-0.864758 -0.458926,-1.746484 -0.46284,-2.538247 0,0 0,-3e-6 0,-3e-6 -0.01653,-0.826003 0.02995,-1.539521 -0.05042,-2.216243 -0.09189,-0.678116 -0.263658,-1.303502 -0.631152,-1.71485 -0.3853,-0.497336 -1.077617,-0.780494 -1.772013,-0.928272 -0.732273,-0.146628 -1.561942,-0.107436 -2.378831,-0.08485 -0.88723,0.03485 -1.7783683,0.04621 -2.6911222,-0.1452 C 7.7757318,17.342495 6.8643362,16.836685 6.2516796,16.044556 5.7575195,15.364856 5.5504711,14.581933 5.5248016,13.864513 5.4946134,13.094231 5.6286067,12.370985 5.7907744,11.744012 6.2057709,10.052366 6.6270576,9.1952567 6.5298112,7.9883121 6.4806103,7.2419155 6.2228913,6.6039567 5.9345068,6.1328028 5.2610566,5.0314697 4.5090292,4.6973752 4.550545,4.6121637 c -0.00349,0.00716 0.8666494,0.00427 1.8252537,1.2093087 0.3910364,0.4919479 0.7670656,1.1979232 0.9003233,2.0833709 0.1911641,1.3826837 -0.1681673,2.4645777 -0.4975873,4.0626997 -0.1136368,0.591682 -0.2047024,1.226473 -0.1453929,1.824425 0.057222,0.549574 0.2225301,1.117978 0.5646113,1.523586 0.3857543,0.50358 1.0623197,0.811932 1.8150849,0.965682 0.7203998,0.139572 1.49319,0.0932 2.372692,0.0458 0.810674,-0.05317 1.734188,-0.108817 2.68947,0.04254 0.930096,0.13909 1.91078,0.558126 2.645326,1.371922 0.610855,0.734161 0.916666,1.623093 1.011063,2.491218 0.102991,0.845304 0.07019,1.611651 0.09093,2.360564 0,0 1e-6,3e-6 1e-6,3e-6 0.03162,0.710494 0.09112,1.396749 0.351448,1.939436 0.123797,0.26782 0.28094,0.511946 0.474999,0.694182 0.190331,0.178409 0.413372,0.31858 0.638402,0.374424 0.278336,0.0872 0.630566,0.04586 0.984553,-0.05574 0.35467,-0.105653 0.712192,-0.314157 1.090933,-0.55832 0.429462,-0.293984 0.904718,-0.658126 1.450282,-0.974503 0.385809,-0.223734 0.807783,-0.424536 1.281781,-0.567627 0.645921,-0.165177 1.235463,-0.183329 1.719838,-0.225909 0,0 3e-6,0 3e-6,0 0.518149,-0.05145 1.017814,-0.142313 1.484841,-0.292994 0.440783,-0.139216 0.917666,-0.357528 1.467736,-0.537468 0.202345,-0.0664 0.368594,-0.111238 0.493004,-0.162317 0.121429,-0.05469 0.212678,-0.09471 0.25002,-0.138186 0,0 0,-1e-6 0,-1e-6 0.07427,-0.04561 0.128771,-0.18783 0.181527,-0.354143 0.04925,-0.175761 0.05063,-0.409147 0.05527,-0.682212 -0.0046,-0.713677 -0.04848,-1.381568 -0.227887,-1.980314 -0.185967,-0.608988 -0.48034,-1.160756 -0.903133,-1.517455 -0.492355,-0.457971 -1.242011,-0.670652 -1.987674,-0.767953 -0.777068,-0.09205 -1.652666,-0.0214 -2.501892,0.0068 -0.925583,0.04083 -1.863243,0.01823 -2.794232,-0.238945 -0.484923,-0.136652 -0.949258,-0.347141 -1.366428,-0.635756 -0.434677,-0.30037 -0.800544,-0.69152 -1.062148,-1.148013 -0.387004,-0.703738 -0.49599,-1.468435 -0.4439,-2.153098 0.0528,-0.730825 0.249024,-1.401492 0.458614,-1.981734 C 19.437251,9.1285141 19.909881,8.2758051 19.868027,7.1586394 19.852519,6.3343009 19.539914,5.6251584 19.182931,5.1313954 18.34939,3.9760749 17.402589,3.7801204 17.428225,3.6829417 Z"
+           id="path8526-0"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 4.550545,4.6121637 c 0,0 0.8093951,2.7470883 2.3524216,3.334414 1.4578199,0.5548931 -1.1788365,6.5368263 -0.1782509,7.7334763 1.11093,1.328615 8.4678253,0.504647 9.4352533,2.540025 0.736185,1.551525 1.353531,7.435889 2.918302,8.143487 1.054823,0.476997 4.284984,-2.824541 5.225929,-2.150154 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.750607,0.08593 0.480554,-1.61578 C 29.514155,19.700901 29.280492,18.662987 29.09799,16.992051 28.925288,15.410841 20.280524,15.80494 19.420664,14.466773 18.735911,13.401119 21.423832,7.6410551 20.263102,7.1339033 19.396216,6.7551405 17.428273,3.6829544 17.428273,3.6829544"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-1.3716649)" />
+        <text
+           id="text4678-13-4"
+           y="1.2103162"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.2103162"
+             x="-1.8505859"
+             id="tspan4680-0-3"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-71-0"
+             y="4.8941007"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-78-4"
+             y="8.5778856"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-61-3"
+             y="12.26167"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-08-8"
+             y="15.945455"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-30-9"
+             y="19.629238"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-0-8"
+             y="23.313023"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-29-7"
+             y="26.996807"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-65-3"
+             y="30.680592"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-43-2"
+             y="34.364376"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-70-3"
+             y="38.048161"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-50-0"
+             y="41.731945"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-72-3"
+             y="45.41573"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-84-4"
+             y="49.099514"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4712-2-0"
+             y="52.783298"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4714-57-1"
+             y="56.467083"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4716-38-6"
+             y="60.150867"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">17</tspan><tspan
+             id="tspan4718-91-2"
+             y="63.834652"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4720-19-8"
+             y="67.51844"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="560.02411"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,544.03143)"
+         id="use5066-6"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="544.01892"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 17.969747,2.3064096 c -0.111366,0.2225572 1.419325,-0.1562281 2.175294,2.2037524 0,3e-7 1e-6,1.2e-6 1e-6,1.2e-6 0.211981,0.6769164 0.258835,1.4530735 0.13777,2.3208233 -0.102416,0.7577899 -0.270482,1.3663173 -0.447979,2.1745005 -0.138055,0.6456817 -0.269115,1.357259 -0.225851,2.027258 0.04283,0.608428 0.208026,1.253212 0.591239,1.70441 0.386608,0.501122 1.052612,0.813989 1.80008,0.983358 0.714161,0.154286 1.47944,0.133764 2.355921,0.123142 0.806335,-0.01895 1.723525,-0.02715 2.661402,0.178147 0.912059,0.191696 1.855821,0.670099 2.524975,1.52649 0.577072,0.813182 0.802461,1.740417 0.876946,2.60374 0.09367,0.811259 0.105937,1.59979 0.302966,2.229401 0.08617,0.283057 0.239366,0.658983 0.322945,1.144804 0.04076,0.243987 0.04289,0.517436 -0.01129,0.809301 -0.05353,0.294125 -0.191626,0.588168 -0.419508,0.850988 -0.252356,0.25999 -0.523096,0.424351 -0.774962,0.510692 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.244908,0.09176 -0.448893,0.142467 -0.603127,0.188405 0,0 -3e-6,1e-6 -3e-6,1e-6 -0.41615,0.123069 -0.880122,0.352587 -1.447575,0.542317 0,0 -3e-6,10e-7 -3e-6,10e-7 -0.603868,0.19789 -1.214148,0.30817 -1.812842,0.370586 -0.557383,0.06267 -1.067906,0.08204 -1.487349,0.188871 -0.501618,0.105419 -0.998523,0.360093 -1.539823,0.66099 -0.415171,0.230784 -0.844944,0.481909 -1.31835,0.710076 -0.547233,0.274488 -1.158015,0.50042 -1.830544,0.597129 -0.687371,0.102069 -1.426086,0.01047 -2.102906,-0.326483 -0.48399,-0.255952 -0.87903,-0.619825 -1.169179,-1.039741 -0.292314,-0.422583 -0.489424,-0.882569 -0.60537,-1.344751 -0.227387,-0.937518 -0.192931,-1.849491 -0.09803,-2.661303 0.08683,-0.847772 0.212945,-1.586514 0.191423,-2.293887 -0.03248,-0.713688 -0.166542,-1.384714 -0.527267,-1.84169 -0.378959,-0.555754 -1.108751,-0.889541 -1.839854,-1.071135 -0.773996,-0.18222 -1.660157,-0.163816 -2.523682,-0.166002 -0.945934,0.0088 -1.889611,-0.0133 -2.8412202,-0.262812 C 7.7876735,15.815394 7.3109036,15.611805 6.8792015,15.329924 6.4274915,15.035427 6.0430791,14.648784 5.7624812,14.19392 5.3407994,13.483886 5.2066865,12.701118 5.2384429,11.999867 5.2700954,11.242718 5.4552187,10.543221 5.6546931,9.9429432 6.1811435,8.286187 6.6286916,7.47051 6.5789805,6.2904977 6.5242097,4.1674679 5.0736827,3.3263827 5.142559,3.2229683 4.9324121,3.5384937 6.9076659,3.2169996 7.2702706,6.237207 7.4136252,7.5802612 7.0207409,8.6372489 6.5842087,10.219311 c -0.1499306,0.574807 -0.2857955,1.198377 -0.2741462,1.796323 0.013344,0.547537 0.1285792,1.124168 0.4313659,1.558499 0.1888744,0.286657 0.4644487,0.535294 0.7878344,0.73382 0.3113593,0.190765 0.6737639,0.32613 1.0654524,0.419911 0.7547713,0.185087 1.5734878,0.163843 2.5081188,0.141318 0.854785,-0.03085 1.834553,-0.06498 2.837382,0.127977 0.974372,0.178534 1.994553,0.663698 2.717986,1.567151 0.590531,0.802238 0.844464,1.757463 0.863068,2.678078 0.02845,0.891778 -0.08942,1.702775 -0.166103,2.493666 -0.06142,0.754606 -0.100119,1.489041 0.07968,2.114607 0.08468,0.307945 0.206849,0.597568 0.378285,0.833043 0.168488,0.230888 0.377699,0.428276 0.608866,0.54157 0.310707,0.172926 0.735594,0.205935 1.165222,0.156892 0.430654,-0.05254 0.877069,-0.230415 1.341349,-0.452831 0.395479,-0.198654 0.806212,-0.442775 1.251329,-0.683678 0.583175,-0.315622 1.214305,-0.619009 1.939707,-0.806233 0.620199,-0.141111 1.196771,-0.169942 1.689613,-0.218411 0.528261,-0.05684 1.029037,-0.140429 1.486806,-0.29175 0,0 3e-6,-10e-7 3e-6,-10e-7 0.432125,-0.139067 0.914022,-0.370412 1.491809,-0.544513 0,0 3e-6,-1e-6 3e-6,-1e-6 0.213363,-0.06397 0.380999,-0.100583 0.492325,-0.145532 0,0 2e-6,-10e-7 2e-6,-10e-7 0.105841,-0.05094 0.17868,-0.07721 0.182411,-0.09919 0.01667,-0.0064 0.03307,-0.05534 0.05205,-0.115486 0.01875,-0.06446 0.01384,-0.159736 0.002,-0.273472 -0.02207,-0.233144 -0.15613,-0.54076 -0.267487,-0.947764 -0.241331,-0.901605 -0.257288,-1.772898 -0.320895,-2.498703 -0.09138,-0.757918 -0.202587,-1.438897 -0.558723,-1.891497 -0.34235,-0.515595 -1.005376,-0.839768 -1.677378,-1.025556 -0.711196,-0.187663 -1.527991,-0.191228 -2.331033,-0.204329 -0.874918,-0.0042 -1.74708,-0.02178 -2.639675,-0.231378 -0.96029,-0.217415 -1.846882,-0.722385 -2.447441,-1.499184 -0.541794,-0.746342 -0.740447,-1.612659 -0.739396,-2.387417 -0.0024,-0.841687 0.178905,-1.6275845 0.368107,-2.292492 0.234335,-0.8403012 0.427734,-1.3807682 0.571233,-2.0781235 0.156974,-0.7809527 0.18477,-1.4337316 0.05685,-2.0189165 0,-3e-7 0,-5e-7 0,-8e-7 C 19.165999,2.9377577 17.919144,2.4075351 17.969747,2.3064096 Z"
+           id="path8616-2"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 5.142559,3.2229683 c 0,0 0.2390397,2.4535592 1.7820666,3.0408849 1.45782,0.5548931 -1.6732579,6.4235218 -0.6726717,7.6201718 1.11093,1.328615 8.8540921,1.086621 9.8215201,3.121999 0.736185,1.551525 0.42134,8.213571 1.986111,8.921169 1.054823,0.476997 5.30367,-2.388168 6.244615,-1.713781 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 1.217256,-0.369199 -0.0528,-2.070908 -1.005017,-1.346595 -0.847263,-2.940734 -1.029765,-4.61167 C 28.783354,14.399488 20.59696,14.433072 19.7371,13.094905 19.052347,12.029251 20.998641,5.1000874 19.837907,4.5929356 18.971021,4.2141728 17.969765,2.3064187 17.969765,2.3064187"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-90-5"
+           y="1.147082"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.147082"
+             x="-1.8505859"
+             id="tspan4680-70-9"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-06-4"
+             y="4.8308663"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-784-1"
+             y="8.5146513"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-40-4"
+             y="12.198436"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-1-9"
+             y="15.88222"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-91-6"
+             y="19.566004"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-81-6"
+             y="23.249788"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-49-5"
+             y="26.933573"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-17-9"
+             y="30.617357"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-97-7"
+             y="34.301144"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-14-9"
+             y="37.984928"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-42-5"
+             y="41.668713"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-84-7"
+             y="45.352497"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-93-8"
+             y="49.036282"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4712-98-3"
+             y="52.720066"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4714-36-6"
+             y="56.403851"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4716-05-2"
+             y="60.087635"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4718-40-8"
+             y="63.77142"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">18</tspan><tspan
+             id="tspan4720-4-9"
+             y="67.4552"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan></text>
+      </g>
+      <g
+         inkscape:tile-h="32.010384"
+         inkscape:tile-w="33.745328"
+         inkscape:tile-cy="592.00356"
+         inkscape:tile-cx="55.127336"
+         transform="translate(3.2788765e-8,576.01088)"
+         id="use5068-4"
+         inkscape:tile-x0="38.254672"
+         inkscape:tile-y0="575.99837"
+         style="display:inline">
+        <path
+           inkscape:tile-y0="2.4163"
+           inkscape:tile-x0="2.6154919"
+           inkscape:tile-h="22.894687"
+           inkscape:tile-w="29.170415"
+           inkscape:tile-cy="13.863643"
+           inkscape:tile-cx="17.2007"
+           style="fill:#00f811;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           d="m 18.419696,2.0165691 c -0.100409,0.1201352 1.336993,0.2550452 1.786183,2.5921462 0,5e-7 0,9e-7 0,1.2e-6 0.253803,1.4045421 -0.08731,2.4598708 -0.423233,4.2547091 -0.1071,0.6171722 -0.190921,1.2932854 -0.107322,1.9268124 0.07855,0.574346 0.279537,1.173435 0.670904,1.582435 0.407589,0.4669 1.075125,0.733533 1.818286,0.865813 0.711198,0.118453 1.457177,0.07073 2.326182,0.04599 0.797356,-0.03241 1.705215,-0.03594 2.630525,0.197847 0.449755,0.116245 0.902536,0.302919 1.325376,0.578722 0.415212,0.270422 0.78857,0.637679 1.068328,1.095172 0.489409,0.873882 0.587863,1.808404 0.578161,2.641198 0.02755,0.783307 -0.0046,1.523017 0.235486,2.058791 0.120426,0.312863 0.388094,0.702492 0.59225,1.268599 0,0 10e-7,3e-6 10e-7,3e-6 0.102699,0.281414 0.160174,0.612019 0.139646,0.977901 0,0 0,5e-6 0,5e-6 -0.01921,0.37066 -0.165537,0.750422 -0.449542,1.082008 0,0 -4e-6,4e-6 -4e-6,4e-6 -0.251487,0.258582 -0.521328,0.422296 -0.772495,0.508671 -0.244285,0.09171 -0.44807,0.142594 -0.602608,0.188769 -0.416848,0.123716 -0.880822,0.353061 -1.447451,0.542963 -0.602714,0.198154 -1.213325,0.309647 -1.813943,0.371474 -0.558937,0.06237 -1.068075,0.07884 -1.480439,0.188202 0,0 -3e-6,0 -3e-6,0 -0.512991,0.118629 -1.023672,0.400472 -1.554181,0.732737 -0.243693,0.156176 -0.489303,0.326534 -0.745951,0.503094 -0.294257,0.202433 -0.59807,0.409546 -0.923452,0.608224 -0.613979,0.382424 -1.315838,0.705209 -2.106158,0.85116 -0.812424,0.154186 -1.698267,0.03456 -2.470116,-0.423282 0,0 -3e-6,-2e-6 -3e-6,-2e-6 -0.479626,-0.303546 -0.854671,-0.71626 -1.111123,-1.179483 -0.258315,-0.466155 -0.409984,-0.963228 -0.473334,-1.453686 -0.119886,-0.99416 0.04167,-1.92983 0.261281,-2.750787 0.217079,-0.860988 0.464138,-1.596503 0.559273,-2.329323 0.08462,-0.740235 0.05965,-1.452982 -0.23573,-1.985203 C 15.521381,17.210967 15.233594,16.905047 14.902134,16.659694 14.559937,16.407098 14.151063,16.22446 13.724447,16.09062 12.846389,15.810108 11.814263,15.77953 10.82982,15.723838 9.7306804,15.67569 8.6527019,15.584783 7.5986186,15.205103 7.0432476,15.002158 6.5260142,14.710683 6.0818789,14.329961 5.6112628,13.927031 5.2476843,13.420561 5.0314672,12.85801 4.7877432,12.195105 4.761209,11.519553 4.8475124,10.921276 4.9388441,10.274949 5.1390918,9.684365 5.3438779,9.174306 5.8890972,7.7765358 6.3060907,7.0938299 6.4019704,6.057107 c 0,0 -4e-7,-1e-6 -4e-7,-1e-6 C 6.6129894,4.0430711 5.4875466,3.0207433 5.5735751,2.9386003 5.3906164,3.1132957 7.0941045,3.3548392 7.0673838,6.0925005 c -5e-7,1e-7 0,1.3e-6 0,1.3e-6 -0.023181,1.1753695 -0.410193,2.0547063 -0.8619424,3.395438 -0.1600345,0.4920583 -0.3117496,1.0247062 -0.3526849,1.5470612 -0.03576,0.480432 0.00195,0.988795 0.1942423,1.417257 0.1559706,0.368962 0.4311045,0.70848 0.7777798,0.987895 0.3299592,0.265562 0.7330395,0.467253 1.1779826,0.616234 0.8488329,0.289767 1.7896974,0.319179 2.8751758,0.350868 0.975705,0.01595 2.108893,0.0331 3.240061,0.34198 0.548706,0.152307 1.101448,0.390645 1.611825,0.741941 0.499342,0.343118 0.943111,0.808231 1.257631,1.384147 0.466759,0.910669 0.564956,1.921828 0.434074,2.859656 -0.11609,0.91186 -0.364374,1.712733 -0.559513,2.508741 -0.173381,0.758715 -0.314851,1.504445 -0.205473,2.165565 0.04957,0.324717 0.142281,0.63552 0.294058,0.894029 0.149035,0.253305 0.346284,0.47592 0.574542,0.61039 0,0 2e-6,1e-6 2e-6,1e-6 0.34609,0.233904 0.86253,0.276263 1.366975,0.201459 0.507919,-0.07981 1.022598,-0.33451 1.550024,-0.646908 0.277909,-0.168571 0.556455,-0.359705 0.847992,-0.560502 0.254288,-0.175142 0.514783,-0.355054 0.79023,-0.531516 0.59475,-0.388743 1.267081,-0.737942 2.034051,-0.934216 0,0 3e-6,-1e-6 3e-6,-1e-6 0.62569,-0.146019 1.205232,-0.172332 1.696517,-0.219079 0.526775,-0.0553 1.027145,-0.13949 1.485705,-0.290862 0.433011,-0.139325 0.915141,-0.37012 1.491939,-0.543869 0.213029,-0.06386 0.380724,-0.100566 0.492593,-0.145644 0.106497,-0.051 0.180148,-0.07779 0.18514,-0.100738 0,0 0,0 0,0 0.0239,-0.0064 0.04121,-0.07922 0.05783,-0.160852 0,0 0,-1e-6 0,-1e-6 0.01558,-0.08989 -0.01357,-0.2173 -0.05599,-0.365734 0,0 0,-2e-6 0,-2e-6 -0.08972,-0.304357 -0.347064,-0.681695 -0.552986,-1.211935 -0.330256,-0.937994 -0.315802,-1.845585 -0.301407,-2.593206 -0.02352,-0.777929 -0.03253,-1.460616 -0.334004,-1.922863 -0.140842,-0.25317 -0.363935,-0.476432 -0.619388,-0.656997 -0.262761,-0.18523 -0.57591,-0.319479 -0.904629,-0.417011 -0.6757,-0.205811 -1.463643,-0.211533 -2.240389,-0.214417 -0.84922,0.0075 -1.688465,0.0219 -2.567541,-0.142631 -0.943457,-0.167884 -1.832633,-0.608938 -2.463448,-1.330381 -0.559692,-0.679449 -0.807166,-1.491712 -0.855845,-2.234396 -0.05562,-0.807808 0.07374,-1.5699207 0.232573,-2.2211656 0.438398,-1.8984171 0.851232,-2.6887798 0.718021,-3.9706842 0,0 -10e-7,-1e-6 -10e-7,-1e-6 C 19.413923,2.8729565 18.347533,2.1029091 18.419696,2.0165691 Z"
+           id="path8706-6"
+           inkscape:path-effect="#path-effect4715;#path-effect4733"
+           inkscape:original-d="m 5.5735751,2.9386003 c 0,0 -0.3819209,2.5488784 1.161102,3.1362041 1.45782,0.5548931 -2.19603,5.3836796 -1.195444,6.5803296 1.11093,1.328615 9.8343109,2.526275 10.8017389,4.561653 0.736185,1.551525 -0.796108,8.660835 0.768663,9.368433 1.054823,0.476997 6.25362,-3.046195 7.194565,-2.371808 0.248595,0.178171 1.054314,-0.171896 1.588481,-0.203641 0.534167,-0.03175 1.035208,-0.156996 1.649824,-0.331168 0.614617,-0.174172 0.979752,-0.294309 1.469695,-0.543416 0.489944,-0.249108 0.86627,-0.215359 1.026418,-0.471911 0.672334,-1.077058 0.853306,-0.831813 -0.416751,-2.533522 -1.005013,-1.346595 -0.542027,-2.937093 -0.724529,-4.608029 -0.172702,-1.58121 -8.122186,-1.434322 -8.982046,-2.772489 -0.684753,-1.065654 1.137935,-7.5879494 -0.0228,-8.0951012 C 19.025607,4.275372 18.41974,2.0166059 18.41974,2.0166059"
+           sodipodi:nodetypes="cssssssssssssss"
+           clip-path="none"
+           transform="translate(4.322867e-8,-0.3124032)" />
+        <text
+           id="text4678-92-6"
+           y="1.1226861"
+           x="-1.8505859"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="1.1226861"
+             x="-1.8505859"
+             id="tspan4680-67-2"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4682-56-4"
+             y="4.8064709"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4684-31-8"
+             y="8.4902554"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4686-7-3"
+             y="12.17404"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4688-95-1"
+             y="15.857824"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4690-28-7"
+             y="19.541609"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4692-92-5"
+             y="23.225393"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4694-82-6"
+             y="26.909178"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4696-05-6"
+             y="30.592962"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4700-41-9"
+             y="34.276745"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4704-00-9"
+             y="37.960529"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4706-253-3"
+             y="41.644314"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4708-623-8"
+             y="45.328098"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4710-97-5"
+             y="49.011883"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4712-51-9"
+             y="52.695667"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4714-4-5"
+             y="56.379452"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4716-28-7"
+             y="60.063236"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4718-28-8"
+             y="63.747021"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1"> </tspan><tspan
+             id="tspan4720-29-4"
+             y="67.430809"
+             x="-1.8505859"
+             sodipodi:role="line"
+             style="font-size:1.67107606px;line-height:1">19</tspan></text>
+      </g>
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/Pantsu.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,367 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="Pantsu.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="Pantsu.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title33472">pantsu hat</title>
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient4218">
+      <stop
+         style="stop-color:#808080;stop-opacity:0.43636364;"
+         offset="0"
+         id="stop4220" />
+      <stop
+         style="stop-color:#808080;stop-opacity:1;"
+         offset="1"
+         id="stop4222" />
+    </linearGradient>
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect4216"
+       effect="spiro" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4218"
+       id="radialGradient3066"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.4014537,-0.20210538,0.12047613,0.83541474,-155.47734,82.571736)"
+       cx="376.88129"
+       cy="38.819054"
+       fx="376.88129"
+       fy="38.819054"
+       r="9.0784025" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="11.313708"
+     inkscape:cx="17.09526"
+     inkscape:cy="1002.9417"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer3"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="false"
+     inkscape:object-paths="false" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>pantsu hat</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat pantsu hat</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="pantsu-template"
+     style="display:none"
+     transform="translate(0,-28.362168)"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.51027401;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a0a0a0;stroke-width:0.84897554;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:0.42448777, 0.42448777;stroke-dashoffset:0"
+       id="path3090"
+       sodipodi:cx="378.30066"
+       sodipodi:cy="45.316837"
+       sodipodi:rx="8.8599787"
+       sodipodi:ry="8.5595875"
+       d="m 387.16064,45.316837 c 0,4.72733 -3.96675,8.559588 -8.85998,8.559588 -4.89323,0 -8.85998,-3.832258 -8.85998,-8.559588 0,-4.727329 3.96675,-8.559587 8.85998,-8.559587 4.89323,0 8.85998,3.832258 8.85998,8.559587 z"
+       transform="matrix(1.1777237,0,0,1.1780568,-426.94052,-2.764095)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.51027401;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a0a0a0;stroke-width:0.67896944;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:0.33948473, 0.33948473;stroke-dashoffset:0"
+       id="path3864"
+       sodipodi:cx="370.86993"
+       sodipodi:cy="41.386448"
+       sodipodi:rx="3.9335525"
+       sodipodi:ry="3.9335525"
+       d="m 374.80349,41.386448 c 0,2.172441 -1.76111,3.933552 -3.93356,3.933552 -2.17244,0 -3.93355,-1.761111 -3.93355,-3.933552 0,-2.172441 1.76111,-3.933553 3.93355,-3.933553 2.17245,0 3.93356,1.761112 3.93356,3.933553 z"
+       transform="matrix(1.7537539,-0.43699778,-0.08895043,1.2590539,-638.39679,155.4798)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.51027401;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a0a0a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:0.5, 0.5;stroke-dashoffset:0"
+       id="path3866"
+       sodipodi:cx="381.30142"
+       sodipodi:cy="31.941494"
+       sodipodi:rx="4.069519"
+       sodipodi:ry="2.735147"
+       d="m 385.37094,31.941494 c 0,1.51058 -1.82198,2.735147 -4.06952,2.735147 -2.24753,0 -4.06952,-1.224567 -4.06952,-2.735147 0,-1.51058 1.82199,-2.735147 4.06952,-2.735147 2.24754,0 4.06952,1.224567 4.06952,2.735147 z"
+       transform="translate(-361.05683,7.5246171)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.51027401;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a0a0a0;stroke-width:2.12369013;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:1.06184514, 1.06184514;stroke-dashoffset:0"
+       id="path3868"
+       sodipodi:cx="378.61371"
+       sodipodi:cy="49.658291"
+       sodipodi:rx="11.291572"
+       sodipodi:ry="9.7263727"
+       d="m 389.90528,49.658291 c 0,5.371727 -5.05541,9.726373 -11.29157,9.726373 -6.23616,0 -11.29157,-4.354646 -11.29157,-9.726373 0,-5.371727 5.05541,-9.726373 11.29157,-9.726373 6.23616,0 11.29157,4.354646 11.29157,9.726373 z"
+       transform="matrix(0.79917766,-0.55914615,0.07275937,0.22653713,-288.54727,249.45759)" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hat"
+     style="display:inline"
+     transform="translate(0,-28.362168)">
+    <g
+       id="g3945"
+       inkscape:tile-cx="375.69277"
+       inkscape:tile-cy="39.983419"
+       inkscape:tile-w="17.010993"
+       inkscape:tile-h="14.530078"
+       inkscape:tile-x0="367.18728"
+       inkscape:tile-y0="32.71838"
+       transform="translate(-359.00152,7.99892)">
+      <path
+         sodipodi:nodetypes="cczccscczc"
+         id="path3090-4"
+         d="m 373.49699,30.302229 c -0.98737,-0.0151 -2.0616,0.513636 -2.91005,1.438915 0.29321,1.693564 -0.0412,4.01765 -0.35794,4.902019 -0.31678,0.88437 -1.89541,3.70915 -4.19198,4.920842 -1.3031,2.341934 -0.37059,6.208599 1.83297,7.13028 -0.71218,-1.940118 3.45062,-6.358834 7.37112,-9.197037 3.11765,-2.256985 7.20066,-3.778702 10.51387,-3.417621 -0.32767,-0.768183 -2.54565,-2.665116 -3.1849,-2.954016 -1.48454,0.22901 -3.42934,0.302132 -4.23691,-0.02474 -0.80758,-0.326877 -3.82084,-1.891491 -4.83618,-2.798637 z"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient3066);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+      <path
+         sodipodi:nodetypes="czz"
+         id="path3917"
+         d="m 378.57136,35.965467 c -3.67413,-5.810994 -1.59878,9.065545 -5.25767,2.967423 -3.6589,-6.098122 8.93179,2.843571 5.25767,-2.967423 z"
+         style="fill:#ff3939;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         d="m 372.11182,34.065246 2.48815,-1.434626"
+         id="path4075"
+         inkscape:path-effect="#path-effect4216"
+         inkscape:original-d="m 372.11182,34.065246 2.48815,-1.434626"
+         sodipodi:nodetypes="cc" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.04572709,32.008509)"
+       id="use4035"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(-0.00389291,65.043468)"
+       id="use4037"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.05219709,96.007414)"
+       id="use4039"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.03599709,128.05986)"
+       id="use4041"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.03210709,160.0054)"
+       id="use4043"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(-9.8290791e-4,191.99763)"
+       id="use4045"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.01238709,225.00863)"
+       id="use4047"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.04761709,256.05852)"
+       id="use4049"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.03533709,288.10334)"
+       id="use4051"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.04682709,320.03847)"
+       id="use4053"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.01324709,352.04858)"
+       id="use4055"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.03594709,385.03526)"
+       id="use4057"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.00245709,416.02792)"
+       id="use4059"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.06795709,448.01048)"
+       id="use4061"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.08574709,480.06468)"
+       id="use4063"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.01287709,511.0327)"
+       id="use4065"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.01973709,544.02867)"
+       id="use4067"
+       width="744.09448"
+       height="1052.3622" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3945"
+       xlink:href="#g3945"
+       transform="translate(0.10504709,576.06587)"
+       id="use4069"
+       width="744.09448"
+       height="1052.3622" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/Plunger.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,400 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="Plunger.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="Plunger.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title35112">plunger</title>
+  <defs
+     id="defs4" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="14.91128"
+     inkscape:cx="14.633911"
+     inkscape:cy="1008.9797"
+     inkscape:document-units="px"
+     inkscape:current-layer="g4637"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>plunger</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat plunger</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="hat"
+     style="display:inline"
+     transform="translate(0,-28.362183)">
+    <g
+       id="g4637"
+       transform="translate(0.56303159,0.4428848)"
+       inkscape:tile-cx="13.81216"
+       inkscape:tile-cy="12.97386"
+       inkscape:tile-w="21.663898"
+       inkscape:tile-h="23.476829"
+       inkscape:tile-x0="2.9802104"
+       inkscape:tile-y0="1.2354455">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         transform="matrix(0.78749624,-0.61631945,0.61631945,0.78749624,0,0)"
+         y="27.795992"
+         x="-16.475124"
+         height="7.8612404"
+         width="2.3361232"
+         id="rect4635"
+         style="fill:#ff5301;fill-opacity:1;fill-rule:nonzero;stroke:#e19c06;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+      <path
+         id="path4633"
+         style="fill:#ff5301;fill-opacity:1;stroke:#ca3014;stroke-width:1.51114857;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0"
+         d="m 6.7485879,25.249617 c 3.7188481,-2.834269 11.3230471,-3.622638 16.9844531,-1.760872 0.232675,0.07652 0.460011,0.156954 0.681624,0.241166 0.221612,0.08421 -3.913105,-1.55072 -7.238639,-1.206482 M 31.467254,5.0133986 C 29.376292,5.3469671 27.605506,4.5539313 27.512093,3.2421024 m 9.231659,3.66919 C 36.426381,6.4056081 35.703788,5.3454809 35.087289,4.696036 37.187317,1.6710307 35.958953,0.93434716 35.130222,0.63816668 34.301491,0.34198619 32.412858,-0.01726428 31.387802,0.09507685 30.362745,0.20741817 29.21815,-0.46817891 26.873845,3.7106493 25.798228,3.9754933 24.662651,4.5147849 23.403187,5.429114 22.143723,6.3434434 22.068959,6.0562234 19.549486,8.8772722 17.030012,11.698322 12.589675,17.973682 10.420729,20.897108 c -2.1689469,2.923425 -5.1505314,5.381607 -6.0965706,7.978327 -0.9460392,2.59672 2.7867091,0.482931 6.3609886,-0.334284 3.57428,-0.817215 11.215443,-0.617503 14.084488,0.391289 2.869045,1.008792 2.967552,4.209874 5.182573,1.393212 2.215022,-2.816661 1.367015,-4.360439 2.03029,-6.155402 0.663274,-1.794964 1.432415,-3.338216 2.364468,-5.294594 0.932052,-1.956379 1.638963,-3.892219 2.09327,-5.607039 0.454307,-1.714822 0.751721,-3.8224442 0.719368,-4.6594279 -0.03235,-0.8369838 -0.04306,-0.671712 -0.115033,-0.9528132 -0.07197,-0.2811002 0.01655,-0.2393981 -0.300819,-0.7450835 z"
+         sodipodi:nodetypes="cssccsccsscssszzzzsssssc"
+         transform="matrix(0.77658355,-0.46991952,0.65910854,0.16506001,-18.068063,50.470892)" />
+      <path
+         sodipodi:type="arc"
+         style="opacity:0.62671234;fill:#ffffff;fill-opacity:1;stroke:none"
+         id="path2870"
+         sodipodi:cx="17.053944"
+         sodipodi:cy="8.9022522"
+         sodipodi:rx="2.2787807"
+         sodipodi:ry="1.1869249"
+         d="m 19.332724,8.9022522 a 2.2787807,1.1869249 0 1 1 -4.557561,0 2.2787807,1.1869249 0 1 1 4.557561,0 z"
+         transform="matrix(1.4364673,0.49802342,-0.35131565,1.6840493,-4.574061,14.29349)" />
+      <path
+         style="opacity:0.33219174;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 5.2492809,35.929056 c 0.1650704,-0.380834 0.9582016,-0.313959 0.538693,-0.964777 -0.4195086,-0.650817 -2.6041738,-2.476957 -1.7259379,-3.38452 0.8782358,-0.907562 2.6404508,3.265378 3.1865791,3.496558 0.5461282,0.231182 0.013903,2.095575 0.5877007,2.411301 0.5737977,0.315726 -0.5350447,1.875431 -0.5992243,4.021717 -0.06418,2.146286 2.4650022,4.217142 1.2618281,5.537063 -1.2031741,1.319921 2.3203074,2.354766 1.7458164,2.849195 C 9.6535959,50.404352 6.9011529,52.56627 6.4131588,53.122183 5.9251646,53.678095 3.5017118,51.366416 4.8978129,49.892709 6.2939141,48.419002 3.772187,45.348619 4.1084502,42.727947 4.4468952,40.090271 6.9302139,38.232225 6.3267323,38.046507 5.7232507,37.860789 5.0842105,36.30989 5.2492809,35.929056 z"
+         id="rect3647"
+         sodipodi:nodetypes="czzzzzzzzzzzz" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       id="use2888"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,64.984681)"
+       id="use2890"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,95.969358)"
+       id="use2892"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,127.9582)"
+       id="use2894"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,159.99447)"
+       id="use2896"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,191.98332)"
+       id="use2898"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,225.01541)"
+       id="use2900"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,255.95267)"
+       id="use2902"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,287.98894)"
+       id="use2904"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,319.97779)"
+       id="use2906"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,352.0057)"
+       id="use2908"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,384.99874)"
+       id="use2910"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,415.98341)"
+       id="use2912"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,447.97226)"
+       id="use2914"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,480.00017)"
+       id="use2916"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,509.98902)"
+       id="use2918"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,542.95578)"
+       id="use2920"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4637"
+       xlink:href="#g4637"
+       transform="translate(0,575.95837)"
+       id="use2922"
+       width="32"
+       height="1024" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/ShaggyYeti.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,13216 @@
+<?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"
+   version="1.1"
+   inkscape:export-ydpi="90"
+   inkscape:export-xdpi="90"
+   inkscape:export-filename="ShaggyYeti.png"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   sodipodi:docname="ShaggyYeti.svg"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:version="0.32"
+   id="svg2"
+   height="1024"
+   width="32"
+   enable-background="new">
+  <title
+     id="title49742">shaggy yeti</title>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="64.61577"
+     inkscape:cx="24.97559"
+     inkscape:cy="519.54086"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer9"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true" />
+  <defs
+     id="defs4">
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5942">
+      <rect
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         id="rect5944"
+         width="32"
+         height="31"
+         x="0"
+         y="28.367535"
+         rx="0.092999995"
+         ry="0.03128048"
+         inkscape:tile-cx="16"
+         inkscape:tile-cy="15.998028"
+         inkscape:tile-w="32"
+         inkscape:tile-h="31.996061"
+         inkscape:tile-x0="0"
+         inkscape:tile-y0="-2.2901611e-06" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5946">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="60.367569"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5948"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5950">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="92.363564"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5952"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5954">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="124.3596"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5956"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5958">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="156.3558"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5960"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5962">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="188.35188"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5964"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5966">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="220.34793"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5968"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5970">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="252.34399"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5972"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5974">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="284.34042"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5976"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5978">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="316.33646"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5980"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5982">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="348.33252"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5984"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5986">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="284.27319"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5988"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5990">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="252.26933"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5992"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5994">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="220.26901"
+         x="0"
+         height="31"
+         width="32"
+         id="rect5996"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5998">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="188.26508"
+         x="0"
+         height="31"
+         width="32"
+         id="rect6000"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6002">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="156.31645"
+         x="0"
+         height="31"
+         width="32"
+         id="rect6004"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6006">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="125.36897"
+         x="0"
+         height="31"
+         width="32"
+         id="rect6008"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6010">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="93.302452"
+         x="0"
+         height="31"
+         width="32"
+         id="rect6012"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6014">
+      <rect
+         inkscape:tile-y0="-2.2901611e-06"
+         inkscape:tile-x0="0"
+         ry="0.03128048"
+         rx="0.092999995"
+         y="60.300354"
+         x="0"
+         height="31"
+         width="32"
+         id="rect6016"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter25876">
+      <feBlend
+         inkscape:collect="always"
+         mode="multiply"
+         in2="BackgroundImage"
+         id="feBlend25878" />
+    </filter>
+    <filter
+       style="color-interpolation-filters:sRGB"
+       id="filter25882"
+       inkscape:label="Yellow">
+      <feColorMatrix
+         id="feColorMatrix25884"
+         values="1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 "
+         in="BackgroundImage" />
+    </filter>
+  </defs>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>shaggy yeti</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat shaggy yeti and chicken</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     sodipodi:insensitive="true"
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="Слой"
+     style="display:none">
+    <rect
+       ry="0.03128048"
+       rx="0.093000002"
+       y="-5.038435"
+       x="-4.4759398"
+       height="636.76691"
+       width="41.464645"
+       id="rect10890"
+       style="fill:#757575;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <rect
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="rect25272"
+       width="32"
+       height="626.51013"
+       x="1.4634561e-15"
+       y="5.0451397e-14"
+       rx="0.093000002"
+       ry="0.03128048" />
+  </g>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z" />
+  </g>
+  <g
+     sodipodi:insensitive="true"
+     style="display:none"
+     inkscape:label="1"
+     id="layer4"
+     inkscape:groupmode="layer">
+    <path
+       id="path16888"
+       d="m 20.247797,23.472268 0.210878,1.107108"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16890"
+       d="m 21.919757,22.463067 0.745604,1.137234"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16892"
+       d="m 24.209287,21.747589 0.775729,0.805854"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16894"
+       d="m 25.768277,20.678137 0.956481,0.775729"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16896"
+       d="m 26.197563,19.63128 1.521333,0.105439"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16898"
+       d="M 25.971623,18.042165 29.52642,16.965182"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16900"
+       d="m 25.888778,15.730041 3.999147,-3.102916"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16902"
+       d="M 24.179162,14.690714 28.012619,9.7350866"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16904"
+       d="M 22.522265,13.914986 24.051129,8.1610346"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16906"
+       d="M 20.089639,13.628794 20.405956,7.6714969"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16908"
+       d="M 18.53065,15.406193 16.278776,7.8070612"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16910"
+       d="M 16.07543,14.208708 11.579214,7.6714969"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16912"
+       d="M 13.891339,16.498238 6.9624971,11.022947"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16914"
+       d="M 11.149927,18.140073 4.544934,13.530887"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16916"
+       d="M 10.72064,20.550104 3.9047693,16.807024"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16918"
+       d="M 11.202647,22.139219 3.4378256,22.598631"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16920"
+       d="M 15.186731,19.593623 6.5106162,15.78276"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16922"
+       d="M 15.713925,21.732526 8.1298563,26.288993"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16924"
+       d="M 8.5139551,24.278122 2.9256939,26.462214"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16926"
+       d="m 15.932334,24.180215 -4.277806,3.298731"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16928"
+       d="m 17.717264,26.017864 -0.828448,4.413371"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16930"
+       d="m 19.931481,26.138366 -0.03766,5.708762"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16932"
+       d="m 21.859506,27.381038 2.425095,3.321325"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16934"
+       d="m 25.361584,26.49987 1.702085,4.029272"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16936"
+       d="m 27.003418,25.249666 3.788269,2.199154"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16938"
+       d="m 28.306341,22.81704 3.276137,1.717148"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16940"
+       d="m 28.916381,21.830434 3.18576,-0.504601"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16942"
+       d="m 28.750691,19.563498 2.266936,-1.461082"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16944"
+       d="m 28.02015,16.106608 2.116309,-1.461082"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16946"
+       d="M 21.445282,12.43131 22.062853,7.2572727"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16948"
+       d="M 15.246981,10.36772 11.842812,5.0204619"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16950"
+       d="M 12.091346,13.154319 8.7549583,9.3434564"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16952"
+       d="M 7.0980614,20.467259 1.8110542,20.263913"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16954"
+       d="M 8.9357107,27.50154 5.8629201,30.340859"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16956"
+       d="m 15.977522,26.921626 -1.558989,1.762336"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16958"
+       d="M 14.275437,20.738388 7.693038,21.325833"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16960"
+       d="M 10.88633,23.125826 5.8327947,27.215349"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16962"
+       d="M 12.053689,25.678953 7.2637511,28.962622"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16964"
+       d="M 14.478784,14.991968 11.360805,10.036341"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16966"
+       d="M 16.798439,16.392799 11.888,11.813739"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16968"
+       d="M 23.682093,13.862266 25.369115,9.7124925"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16970"
+       d="M 18.598432,11.000353 17.566637,3.6120996"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16972"
+       d="M 16.647812,12.002023 14.599285,8.9367636"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16974"
+       d="m 25.708026,14.299084 2.161497,-2.801662"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16976"
+       d="m 26.830197,21.024579 2.809193,2.764006"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16978"
+       d="m 27.154045,23.93168 3.313794,3.577391"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16980"
+       d="m 23.94569,27.441289 1.3933,2.944758"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16982"
+       d="m 20.895494,28.2848 0.399161,2.748943"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16984"
+       d="m 19.208471,28.638774 -1.167359,2.432625"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path16986"
+       d="M 14.117279,28.744212 13.7859,29.422034"
+       style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+  </g>
+  <g
+     sodipodi:insensitive="true"
+     style="display:none"
+     inkscape:label="2"
+     id="layer5"
+     inkscape:groupmode="layer">
+    <path
+       id="path17062"
+       d="m 18.929811,24.059689 -0.979075,5.618387"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17064"
+       d="m 16.595093,22.914924 -3.539734,1.958151"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17066"
+       d="m 18.214333,24.225379 -2.944757,3.878645"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17068"
+       d="m 14.644474,25.535834 -3.743081,2.28953"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17070"
+       d="M 11.127333,24.413663 6.9624971,25.957589"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17072"
+       d="M 13.349081,21.544218 4.2135546,20.27142"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17074"
+       d="M 13.281299,17.966827 8.9281793,14.984413"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17076"
+       d="m 16.572499,15.172697 -1.8979,-3.788269"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17078"
+       d="m 20.910556,14.29906 0.06025,-3.502077"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17080"
+       d="M 23.71975,14.148433 25.994217,10.27732"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17082"
+       d="m 26.220158,16.422901 4.164836,-0.994138"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17084"
+       d="m 26.619319,18.200299 3.539734,-0.0075"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17086"
+       d="m 27.131451,19.683975 2.553127,0.504601"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17088"
+       d="m 26.114719,20.896522 1.882837,2.907101"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17090"
+       d="m 24.992548,21.370997 0.489537,0.564852"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17092"
+       d="M 23.395901,22.05635 23.267869,23.0053"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17094"
+       d="m 21.445282,22.832079 -0.27866,1.521333"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17096"
+       d="m 19.472068,23.201115 0.323848,2.281999"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17098"
+       d="m 21.76913,26.642942 0.459412,3.208355"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17100"
+       d="m 23.433558,26.138342 1.55899,2.771536"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17102"
+       d="M 25.210957,25.716586 27.643583,28.1944"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17104"
+       d="m 26.295471,24.549227 3.878645,1.385768"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17106"
+       d="m 24.374977,26.545034 2.560659,3.40417"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17108"
+       d="m 23.290463,27.659674 0.308785,2.651035"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17110"
+       d="M 20.895494,25.889807 20.692147,29.03038"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17112"
+       d="m 19.14822,26.258843 -0.459412,4.014209"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17114"
+       d="m 17.182538,24.263036 -2.334718,2.9071"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17116"
+       d="M 14.298031,23.389399 9.1089317,26.642942"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17118"
+       d="M 8.2352952,24.353412 4.8989074,27.275575"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17120"
+       d="M 8.5440805,22.327479 2.9784133,23.95425"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17122"
+       d="M 6.6763059,21.288153 1.5625196,21.039618"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17124"
+       d="M 10.426918,19.540879 5.5541348,18.012016"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17126"
+       d="M 8.8001464,17.462227 3.4302943,15.014539"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17128"
+       d="M 11.775029,15.232948 5.5466035,12.755134"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17130"
+       d="M 12.821887,14.622908 9.071275,10.751795"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17132"
+       d="M 14.026903,11.625431 10.728172,7.6488788"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17134"
+       d="M 18.349897,10.043848 16.037773,5.8790117"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17136"
+       d="M 20.677084,11.045517 21.475407,6.3459554"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17138"
+       d="M 22.770799,12.822916 24.269538,8.5225153"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17140"
+       d="m 26.107187,14.713285 2.221748,-2.39497"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17142"
+       d="m 27.530612,14.637971 2.861913,-0.549788"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17144"
+       d="m 27.824335,17.379382 3.208355,0.338911"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17146"
+       d="m 27.078731,20.527486 3.645173,2.123841"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17148"
+       d="m 28.502156,23.193584 1.965683,2.62091"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17150"
+       d="m 26.453629,25.603616 2.153966,2.703754"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17152"
+       d="M 12.821887,19.563474 4.7633431,18.155111"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17154"
+       d="M 14.614348,15.496545 8.7624896,11.354303"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17156"
+       d="M 14.501378,17.575197 7.6101932,15.210354"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17158"
+       d="M 16.007648,11.971873 14.893008,4.440524"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17160"
+       d="M 14.117279,13.380236 7.2486884,7.6338161"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17162"
+       d="M 7.3993154,18.81787 3.5884526,18.441302"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17164"
+       d="M 8.3557968,23.555089 3.272136,25.174329"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17166"
+       d="m 12.106409,25.211986 c -0.361505,0.06025 -6.3263337,2.628441 -6.3263337,2.628441"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17168"
+       d="M 17.348228,13.967681 15.224387,8.0781657"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17170"
+       d="M 19.133158,13.184421 18.974999,7.9200074"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17172"
+       d="M 21.980008,14.283998 22.800925,8.2739808"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17174"
+       d="M 26.431035,13.35011 30.42265,8.5225153"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17176"
+       d="M 24.344852,10.992798 26.483755,6.2103911"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17178"
+       d="m 22.123103,9.4714654 0.94895,-4.7146247"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17180"
+       d="m 28.18584,14.344248 c 0.39163,-0.203346 2.756474,-1.988276 2.756474,-1.988276"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17182"
+       d="m 28.637721,16.807 c 0.421755,-0.112971 2.967351,-0.323848 2.967351,-0.323848"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17184"
+       d="m 28.592533,19.119124 c 0.466943,0.0075 2.417563,1.762336 2.417563,1.762336"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17186"
+       d="m 25.308864,21.55175 1.174891,1.122171"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17188"
+       d="m 25.203425,17.612854 c 0,0 3.298731,-0.911293 3.645173,-1.06192"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17190"
+       d="M 24.887109,16.437964 28.336467,15.02207"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17192"
+       d="M 24.118911,15.323324 25.828527,13.23714"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17194"
+       d="m 24.653637,16.099053 2.500408,-1.822587"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17196"
+       d="m 23.343182,15.029601 0.519663,-3.313794"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17198"
+       d="M 20.752398,14.178559 19.381692,10.465603"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17200"
+       d="m 15.676268,17.160973 -2.666097,-2.73388"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17202"
+       d="M 15.134011,18.727494 10.765829,18.576867"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17204"
+       d="M 14.930665,20.670582 11.518964,20.128325"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17206"
+       d="m 14.727318,21.55175 -4.157304,1.536395"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17208"
+       d="m 17.227726,22.61367 -2.786599,2.266936"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17210"
+       d="m 17.995924,23.781029 -3.163167,3.923833"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17212"
+       d="m 18.974999,25.279768 -3.306262,4.262743"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17214"
+       d="m 14.426064,23.065551 -3.494546,2.523002"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17216"
+       d="m 11.692185,22.583545 -3.3439196,1.34058"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17218"
+       d="M 12.159128,20.693176 6.9850912,19.736695"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17220"
+       d="M 8.792615,23.050488 3.3549808,22.38773"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17222"
+       d="M 10.261228,13.109107 7.5424111,10.548448"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17224"
+       d="M 13.010171,11.015392 9.7942845,7.9802582"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17226"
+       d="M 14.870414,10.254726 13.025233,6.4965824"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17228"
+       d="M 16.888816,10.036317 15.698862,5.1334081"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17230"
+       d="m 11.707247,17.763481 -4.6995618,-0.5046"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17232"
+       d="M 14.727318,15.097383 8.5139551,10.94761"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17234"
+       d="M 17.46873,11.881497 17.739858,6.3459554"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17236"
+       d="M 19.374161,8.7333931 C 19.36663,8.1233538 19.803448,3.1376005 19.803448,3.1376005"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17238"
+       d="M 27.131451,9.0346471 28.29881,6.338424"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17240"
+       d="M 23.365776,7.3777502 24.39004,4.8773422"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17242"
+       d="M 12.061221,9.0195844 C 11.677122,8.816238 8.943242,5.690728 8.943242,5.690728"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17244"
+       d="M 8.6344567,12.099906 3.3474494,10.345102"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17246"
+       d="M 6.3825832,19.036279 1.8788363,18.863058"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17248"
+       d="m 6.8570583,26.642942 c 0,0 -2.8393188,1.491207 -3.253543,1.73221"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17250"
+       d="M 9.4854992,27.810301 8.1599817,30.273052"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17252"
+       d="m 26.973292,26.673067 4.044335,3.313794"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17254"
+       d="m 27.387517,14.314123 c 0.39163,-0.436818 3.102916,-3.230949 3.102916,-3.230949"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17256"
+       d="M 18.432742,10.774389 17.099693,6.0221074"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17258"
+       d="m 19.118095,14.171027 0.429287,-4.029272"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17260"
+       d="m 17.423541,15.519139 -3.027602,-5.07613"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <path
+       id="path17264"
+       d="M 14.192593,16.626247 7.8587277,13.96015"
+       style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+  </g>
+  <g
+     sodipodi:insensitive="true"
+     style="display:none"
+     inkscape:label="3"
+     id="layer6"
+     inkscape:groupmode="layer">
+    <path
+       id="path18729-2"
+       d="M 23.989466,14.517512 28.613714,7.995364"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18731-1"
+       d="m 25.322515,15.353492 5.196631,-3.07279"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18733-0"
+       d="m 25.578581,16.799511 5.407509,-1.8979"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18735-0"
+       d="m 26.203683,18.102435 4.405839,-0.843511"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18737-4"
+       d="m 25.955148,18.704943 3.7958,0.971544"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18739-6"
+       d="m 25.872303,20.105774 1.400831,1.34058"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18741-3"
+       d="m 24.614568,21.220413 1.385768,1.28033"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18743-9"
+       d="m 23.838839,21.845515 0.338911,1.16736"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18745-1"
+       d="m 22.67148,22.033799 0.444349,1.235141"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18747-4"
+       d="m 21.504121,22.922498 0.04519,1.205016"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18749-6"
+       d="m 20.148478,23.073125 0.02259,1.528864"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18751-8"
+       d="m 18.777772,23.577726 -0.527194,6.725495"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18753-4"
+       d="m 20.77358,25.001151 -0.858574,5.083661"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18755-2"
+       d="m 22.445539,26.530015 -0.210877,4.3004"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18757-8"
+       d="m 23.597836,26.755955 1.408362,3.23848"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18759-2"
+       d="m 25.013729,25.279811 2.462752,4.57906"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18761-5"
+       d="m 26.489874,25.61119 2.967352,3.087853"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18763-9"
+       d="m 27.348448,24.458894 c 0.06025,0.444349 3.155635,1.50627 3.637642,1.61924"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18765-7"
+       d="m 28.207022,23.080657 c 0.512131,0.158158 2.764005,1.129702 3.276137,1.295392"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18767-8"
+       d="m 26.35431,21.318321 1.792461,3.313794"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18769-8"
+       d="m 27.310791,19.947615 c 0.135564,0.369036 3.163167,3.276137 3.163167,3.276137"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18771-3"
+       d="m 27.800329,19.736738 c 0.61757,0.241003 2.816724,1.611708 2.816724,1.611708"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18773-6"
+       d="m 27.679827,18.117497 3.675299,0.150627"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18775-9"
+       d="m 27.431293,17.424613 c 0.512131,-0.165689 4.112116,-1.167359 4.112116,-1.167359"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18777-6"
+       d="M 26.422092,15.308304 31.023746,13.77944"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18779-9"
+       d="m 25.676488,14.434668 3.660236,-3.750612"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18781-7"
+       d="M 24.366033,12.634675 25.947617,7.340137"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18783-9"
+       d="m 17.798697,23.607851 -0.971544,5.74642"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18785-0"
+       d="m 16.390334,23.223752 -2.688691,5.174037"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18787-4"
+       d="m 16.638869,24.77521 -1.197485,4.051866"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18789-2"
+       d="m 15.509167,22.071456 -5.482823,6.122987"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18791-2"
+       d="M 14.771094,25.317467 12.29328,28.352601"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18793-5"
+       d="m 10.696634,24.752616 -4.0744597,3.51714"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18795-3"
+       d="M 10.207097,27.260556 7.412966,29.904059"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18797-5"
+       d="M 13.453108,21.853047 5.2062806,23.735884"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18799-2"
+       d="M 11.961901,23.577726 5.2514687,25.204497"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18801-1"
+       d="M 14.281557,19.217074 C 13.889926,19.19448 5.4397524,19.08151 5.4397524,19.08151"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18803-8"
+       d="M 16.104143,17.386957 C 15.704982,17.198673 7.6539692,13.485718 7.6539692,13.485718"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18805-1"
+       d="M 16.864809,16.407881 9.5518692,9.825482"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18807-4"
+       d="M 18.115013,15.737591 13.264824,7.535952"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18809-4"
+       d="M 19.568564,15.142614 18.26564,7.889925"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18811-9"
+       d="m 20.713329,14.690733 0.22594,-5.061066"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18813-5"
+       d="M 21.684873,14.276509 25.224607,6.428843"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18815-0"
+       d="m 22.181942,8.266493 c 0,0 0.579914,-2.545597 0.625102,-2.884507"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18817-1"
+       d="M 17.520037,10.533429 15.961048,4.922573"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18819-3"
+       d="m 13.272356,11.858946 c 0,0 -1.905432,-5.422571 -2.01087,-5.791608"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18821-2"
+       d="M 11.269017,14.012912 C 11.035545,13.636345 8.1058501,9.448914 8.1058501,9.448914"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18823-9"
+       d="M 10.493288,16.62629 4.5435219,14.638014"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18825-2"
+       d="M 8.9493613,21.09238 3.3761627,22.847185"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18827-1"
+       d="M 10.930106,20.512467 3.1803476,19.759332"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18829-9"
+       d="M 12.534284,18.328375 C 12.165247,18.24553 3.5870405,16.076502 3.5870405,16.076502"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18831-3"
+       d="M 13.716705,15.782779 6.335983,10.066485"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18833-7"
+       d="M 14.951847,12.627144 9.2355525,5.668177"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18835-7"
+       d="M 15.200381,16.084033 C 14.763563,15.827967 9.137645,12.107481 9.137645,12.107481"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18837-2"
+       d="M 14.552685,18.170217 C 14.198712,17.846369 7.7895335,17.996996 7.7895335,17.996996"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18839-3"
+       d="M 15.456447,20.248869 9.2280212,22.997812"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18841-7"
+       d="M 15.275695,22.297396 9.3711168,26.936708"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18843-1"
+       d="m 8.7008267,25.227091 c -0.3615047,0.06778 -4.548935,2.598316 -4.548935,2.598316"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18845-4"
+       d="M 8.211289,22.063925 2.5401829,23.276472"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18847-7"
+       d="M 7.4732168,17.650554 C 7.1041807,17.447207 2.4648694,17.447207 2.4648694,17.447207"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18849-5"
+       d="M 9.3259287,13.907473 4.1217663,11.422128"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18851-7"
+       d="M 12.579472,12.152669 8.3543847,7.24976"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18853-2"
+       d="M 17.625476,11.113343 14.733438,5.065669"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18855-2"
+       d="m 20.60789,9.042221 c 0,0 -0.421755,-5.30207 -0.497069,-5.708762"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18857-0"
+       d="M 25.879835,8.266493 27.69489,4.628851"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18859-7"
+       d="m 17.941792,7.882394 0.33138,-4.699562"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18861-4"
+       d="M 13.96524,8.861469 C 13.88993,8.454776 11.683241,4.621319 11.683241,4.621319"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18863-3"
+       d="m 11.238891,25.874787 c -0.406692,0.0075 -4.8426572,4.35312 -5.4225711,4.157305"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18865-7"
+       d="M 5.861508,23.284003 C 5.5000032,23.5476 1.6891405,26.590266 1.6891405,26.590266"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18867-7"
+       d="M 9.4464303,24.752616 2.3820246,27.027084"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18869-7"
+       d="M 8.4673549,19.796988 C 7.9627545,19.774394 0.39374836,20.098242 0.39374836,20.098242"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18871-3"
+       d="m 14.19118,19.759332 c -0.384098,-0.03013 -5.8142013,2.982414 -5.8142013,2.982414"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18873-7"
+       d="m 16.443054,22.832122 -4.481153,3.56986"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18875-4"
+       d="m 17.678195,24.466425 -0.610039,6.122987"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18877-4"
+       d="m 19.485719,27.358463 -0.640165,4.036803"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18879-0"
+       d="m 21.60956,27.893189 -0.933888,3.35145"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18881-8"
+       d="m 23.62043,27.945908 0.67029,3.283669"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18883-6"
+       d="m 25.819584,27.84047 1.385768,3.291199"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18885-1"
+       d="m 27.770203,28.17938 c 0,0 1.152297,1.762336 1.604178,2.010871"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18887-2"
+       d="m 29.125846,26.108259 c 0.466944,0.06025 1.912963,2.161497 1.912963,2.161497"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18889-0"
+       d="m 29.095721,24.421237 c 0.587445,-0.06778 2.523002,0.798323 2.523002,0.798323"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18891-2"
+       d="m 28.704091,21.740077 c 1.182422,0.271128 3.012539,1.114639 3.012539,1.114639"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18893-5"
+       d="m 29.246348,19.563517 2.673629,0.11297"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18895-7"
+       d="m 26.150963,13.470655 3.73555,-5.091192"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18897-0"
+       d="M 20.645547,11.542629 C 20.698267,11.143468 23.34177,4.975293 23.34177,4.606257"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18899-9"
+       d="M 17.226314,13.003711 14.575279,6.330936"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18901-0"
+       d="M 18.996181,14.811235 18.468987,7.844737"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18903-7"
+       d="m 15.930922,15.037176 c -0.04519,-0.512132 -4.036803,-4.443497 -4.036803,-4.443497"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18905-0"
+       d="M 22.106629,13.711658 22.769387,7.453107"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18907-7"
+       d="M 23.966872,14.487387 C 24.012062,14.103288 28.214553,5.40458 28.214553,5.40458"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18909-6"
+       d="M 20.359356,9.780294 C 20.336766,9.366069 19.094089,3.717557 19.094089,3.717557"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18911-5"
+       d="M 22.799513,7.129259 24.01206,2.6707"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18913-4"
+       d="M 10.493288,13.636345 C 10.297473,13.207058 5.7334751,11.557692 5.7334751,11.557692"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18915-8"
+       d="M 9.438899,16.181941 C 9.0096121,15.956 2.110896,15.278179 2.110896,15.278179"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18917-0"
+       d="M 7.2698703,20.776064 C 6.7502072,20.6405 2.0732393,21.619575 2.0732393,21.619575"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18919-6"
+       d="M 14.454778,20.294057 9.2430839,21.53673"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18921-7"
+       d="M 13.874864,17.484864 C 13.513359,17.326706 6.2456068,13.982787 6.2456068,13.982787"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18923-4"
+       d="M 8.9493613,11.60288 3.7376675,8.447245"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18925-9"
+       d="M 13.121729,11.007904 7.8949723,5.479893"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    <path
+       id="path18927-6"
+       d="M 9.0397374,14.156008 C 8.6330446,13.975255 2.4648694,12.122543 2.4648694,12.122543"
+       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer9"
+     inkscape:label="mouth"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <path
+       style="opacity:0.48699999;fill:#000007;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       d="m 24.960938,23.004576 v 1.0625 h -0.8125 -2.265626 v 1.148437 0.75 h 2.265626 v -0.75 h 2.09375 v -1.148437 -1.0625 z"
+       id="rect3979"
+       inkscape:tile-cx="24.0625"
+       inkscape:tile-cy="24.472656"
+       inkscape:tile-w="4.459376"
+       inkscape:tile-h="3.060937"
+       inkscape:tile-x0="21.832812"
+       inkscape:tile-y0="22.942188"
+       inkscape:connector-curvature="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,31.986179)"
+       id="use4311"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,65.012351)"
+       id="use4313"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,95.948981)"
+       id="use4315"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,127.97842)"
+       id="use4317"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,159.97695)"
+       id="use4319"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,191.9847)"
+       id="use4321"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,224.96458)"
+       id="use4323"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,255.97551)"
+       id="use4325"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,287.98324)"
+       id="use4327"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,319.97551)"
+       id="use4329"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,352.03901)"
+       id="use4331"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,385.01892)"
+       id="use4333"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,416.03286)"
+       id="use4335"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,448.03757)"
+       id="use4337"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,479.98652)"
+       id="use4339"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,510.88589)"
+       id="use4341"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,544.01756)"
+       id="use4343"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect3979"
+       xlink:href="#rect3979"
+       transform="translate(0,575.99125)"
+       id="use4345"
+       width="100%"
+       height="100%" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="hat"
+     style="display:inline"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <g
+       id="g11397"
+       clip-path="url(#clipPath5942)">
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.522265,42.277169 1.528864,-5.753951"
+         id="path16904-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 20.089639,41.990977 20.405956,36.03368"
+         id="path16906-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 18.53065,43.768376 16.278776,36.169245"
+         id="path16908-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.445282,40.793493 0.617571,-5.174037"
+         id="path16946-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.682093,42.224449 1.687022,-4.149773"
+         id="path16968-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 18.598432,39.362536 17.566637,31.974283"
+         id="path16970-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 16.647812,40.364206 14.599285,37.298947"
+         id="path16972-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.572499,43.53488 -1.8979,-3.78827"
+         id="path17076-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.910556,42.661243 0.06025,-3.502078"
+         id="path17078-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.71975,42.510616 2.274467,-3.871114"
+         id="path17080-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 18.349897,38.40603 16.037773,34.241194"
+         id="path17134-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.677084,39.407699 0.798323,-4.699561"
+         id="path17136-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.770799,41.185099 1.498739,-4.300401"
+         id="path17138-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.007648,40.334054 -1.11464,-8.6936"
+         id="path17158-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 17.348228,42.329864 15.224387,36.440348"
+         id="path17168-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 19.133158,41.546603 18.974999,29.780116"
+         id="path17170-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.980008,42.646181 0.820917,-6.010018"
+         id="path17172-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.344852,39.35498 2.138903,-4.782406"
+         id="path17176-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.123103,37.833648 0.94895,-4.714625"
+         id="path17178-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.118911,43.685507 1.709616,-2.086184"
+         id="path17192-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.343182,43.391784 0.519663,-3.313795"
+         id="path17196-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 20.752398,42.540742 19.381692,32.461074"
+         id="path17198-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.870414,38.616908 13.025233,34.858765"
+         id="path17226-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 16.888816,38.398499 15.698862,30.218882"
+         id="path17228-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.46873,40.243677 0.271128,-7.738684"
+         id="path17234-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.374161,37.095576 c -0.0075,-0.80188 0.429287,-7.355507 0.429287,-7.355507"
+         id="path17236-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 23.365777,35.739933 25.67832,31.773875"
+         id="path17240-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 18.432742,39.136571 17.099693,34.38429"
+         id="path17256-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.118095,42.53321 0.429287,-4.029273"
+         id="path17258-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 17.423541,43.881322 14.395939,38.805191"
+         id="path17260-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 24.366033,40.996858 25.947617,35.70232"
+         id="path18781-7-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 15.246981,38.729903 9.4130655,31.782568"
+         id="path16948-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 18.115013,44.099775 13.37594,35.661088"
+         id="path18807-4-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 19.568564,43.504797 18.26564,36.252108"
+         id="path18809-4-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.713329,43.052916 0.22594,-10.307535"
+         id="path18811-9-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.684873,42.638692 4.323904,-10.0088"
+         id="path18813-5-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.181942,36.628676 c 0,0 0.579914,-2.545597 0.625102,-2.884507"
+         id="path18815-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 17.520037,38.895612 15.961048,33.284756"
+         id="path18817-1-2" />
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 17.625476,39.475526 13.720552,31.042669"
+         id="path18853-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.60789,37.404404 c 0,0 -0.421755,-5.30207 -0.497069,-5.708762"
+         id="path18855-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.941792,36.244577 0.33138,-4.699562"
+         id="path18859-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.645547,39.904812 c 0.05272,-0.399161 2.696223,-6.567336 2.696223,-6.936372"
+         id="path18897-0-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 17.226314,41.365894 14.575279,34.693119"
+         id="path18899-9-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 18.996181,43.173418 18.468987,36.20692"
+         id="path18901-0-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 22.106629,42.07384 22.769387,31.53503"
+         id="path18905-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 20.359356,38.142477 C 20.336766,37.610255 19.094089,30.3527 19.094089,30.3527"
+         id="path18909-6-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 22.799513,35.491442 24.01206,31.032883"
+         id="path18911-5-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.247797,51.834451 0.210878,1.107108"
+         id="path16888-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.919757,50.82525 0.745604,1.137234"
+         id="path16890-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.209287,50.109772 0.775729,0.805854"
+         id="path16892-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.768277,49.04032 0.956481,0.775729"
+         id="path16894-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.197563,47.993463 1.521333,0.105439"
+         id="path16896-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 25.971623,46.404348 29.52642,45.327365"
+         id="path16898-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.888778,44.092224 3.999147,-3.102916"
+         id="path16900-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 24.179162,43.052897 28.012619,38.09727"
+         id="path16902-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 16.07543,42.570891 11.579214,36.03368"
+         id="path16910-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.891339,44.860421 6.9624971,39.38513"
+         id="path16912-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 11.149927,46.502256 4.544934,41.89307"
+         id="path16914-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.72064,48.912287 3.9047693,45.169207"
+         id="path16916-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 11.202647,50.501402 3.4378256,50.960814"
+         id="path16918-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 15.186731,47.955806 6.5106162,44.144943"
+         id="path16920-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 15.713925,50.094709 8.1298563,54.651176"
+         id="path16922-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.5139551,52.640305 2.9256939,54.824397"
+         id="path16924-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.932334,52.542398 -4.277806,3.298731"
+         id="path16926-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.717264,54.380047 -0.828448,4.413371"
+         id="path16928-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.931481,54.500549 -0.03766,5.708762"
+         id="path16930-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.859506,55.743221 2.425095,3.321325"
+         id="path16932-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.361584,54.862053 1.702085,4.029272"
+         id="path16934-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.003418,53.611849 3.788269,2.199154"
+         id="path16936-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.306341,51.179223 3.276137,1.717148"
+         id="path16938-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.916381,50.192617 3.18576,-0.504601"
+         id="path16940-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.750691,47.925681 2.266936,-1.461082"
+         id="path16942-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.02015,44.468791 2.116309,-1.461082"
+         id="path16944-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.091346,41.516502 8.7549583,37.70564"
+         id="path16950-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 7.0980614,48.829442 1.8110542,48.626096"
+         id="path16952-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.9357107,55.863723 5.8629201,58.703042"
+         id="path16954-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.977522,55.283809 -1.558989,1.762336"
+         id="path16956-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.275437,49.100571 7.693038,49.688016"
+         id="path16958-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.88633,51.488009 5.8327947,55.577532"
+         id="path16960-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.053689,54.041136 7.2637511,57.324805"
+         id="path16962-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.478784,43.354151 11.360805,38.398524"
+         id="path16964-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 16.798439,44.754982 11.888,40.175922"
+         id="path16966-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.708026,42.661267 2.161497,-2.801662"
+         id="path16974-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.830197,49.386762 2.809193,2.764006"
+         id="path16976-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.154045,52.293863 3.313794,3.577391"
+         id="path16978-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.94569,55.803472 1.3933,2.944758"
+         id="path16980-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.895494,56.646983 0.399161,2.748943"
+         id="path16982-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.208471,57.000957 -1.167359,2.432625"
+         id="path16984-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.117279,57.106395 13.7859,57.784217"
+         id="path16986-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.929811,52.421872 -0.979075,5.618387"
+         id="path17062-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.595093,51.277107 -3.539734,1.958151"
+         id="path17064-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.214333,52.587562 -2.944757,3.878645"
+         id="path17066-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.644474,53.898017 -3.743081,2.28953"
+         id="path17068-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 11.127333,52.775846 6.9624971,54.319772"
+         id="path17070-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.349081,49.906401 4.2135546,48.633603"
+         id="path17072-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.281299,46.32901 8.9281793,43.346596"
+         id="path17074-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.220158,44.785084 4.164836,-0.994138"
+         id="path17082-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.619319,46.562482 3.539734,-0.0075"
+         id="path17084-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.131451,48.046158 2.553127,0.504601"
+         id="path17086-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.114719,49.258705 1.882837,2.907101"
+         id="path17088-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.992548,49.73318 0.489537,0.564852"
+         id="path17090-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.395901,50.418533 -0.128032,0.94895"
+         id="path17092-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.445282,51.194262 -0.27866,1.521333"
+         id="path17094-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.472068,51.563298 0.323848,2.281999"
+         id="path17096-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.76913,55.005125 0.459412,3.208355"
+         id="path17098-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.433558,54.500525 1.55899,2.771536"
+         id="path17100-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.210957,54.078769 2.432626,2.477814"
+         id="path17102-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.295471,52.91141 3.878645,1.385768"
+         id="path17104-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.374977,54.907217 2.560659,3.40417"
+         id="path17106-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.290463,56.021857 0.308785,2.651035"
+         id="path17108-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.895494,54.25199 -0.203347,3.140573"
+         id="path17110-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.14822,54.621026 -0.459412,4.014209"
+         id="path17112-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.182538,52.625219 -2.334718,2.9071"
+         id="path17114-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.298031,51.751582 9.1089317,55.005125"
+         id="path17116-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.2352952,52.715595 4.8989074,55.637758"
+         id="path17118-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.5440805,50.689662 2.9784133,52.316433"
+         id="path17120-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 6.6763059,49.650336 1.5625196,49.401801"
+         id="path17122-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.426918,47.903062 5.5541348,46.374199"
+         id="path17124-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.8001464,45.82441 3.4302943,43.376722"
+         id="path17126-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 11.775029,43.595131 5.5466035,41.117317"
+         id="path17128-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.821887,42.985091 9.071275,39.113977"
+         id="path17130-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.026903,39.987613 10.728172,36.011061"
+         id="path17132-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.107187,43.075468 2.221748,-2.394971"
+         id="path17140-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.530612,43.000154 2.861913,-0.549788"
+         id="path17142-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.824335,45.741565 3.208355,0.338911"
+         id="path17144-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.078731,48.889669 3.645173,2.123841"
+         id="path17146-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.502156,51.555767 1.965683,2.62091"
+         id="path17148-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.453629,53.965799 2.153966,2.703754"
+         id="path17150-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.821887,47.925657 4.7633431,46.517294"
+         id="path17152-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.614348,43.858728 8.7624896,39.716485"
+         id="path17154-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.501378,45.93738 7.6101932,43.572537"
+         id="path17156-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.117279,41.742418 5.3967471,34.736679"
+         id="path17160-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 7.3993154,47.180053 3.5884526,46.803485"
+         id="path17162-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.3557968,51.917272 3.272136,53.536512"
+         id="path17164-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.106409,53.574169 C 11.744904,53.634419 5.7800753,56.20261 5.7800753,56.20261"
+         id="path17166-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 26.431035,41.712293 30.42265,36.884698"
+         id="path17174-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.18584,42.706431 c 0.39163,-0.203346 2.756474,-1.988277 2.756474,-1.988277"
+         id="path17180-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.637721,45.169183 c 0.421755,-0.112971 2.967351,-0.323848 2.967351,-0.323848"
+         id="path17182-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.592533,47.481307 c 0.466943,0.0075 2.417563,1.762336 2.417563,1.762336"
+         id="path17184-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.308864,49.913933 1.174891,1.122171"
+         id="path17186-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.203425,45.975037 c 0,0 3.298731,-0.911293 3.645173,-1.06192"
+         id="path17188-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.887109,44.800147 3.449358,-1.415894"
+         id="path17190-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.653637,44.461236 2.500408,-1.822587"
+         id="path17194-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.676268,45.523156 -2.666097,-2.73388"
+         id="path17200-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 15.134011,47.089677 10.765829,46.93905"
+         id="path17202-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.930665,49.032765 11.518964,48.490508"
+         id="path17204-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.727318,49.913933 -4.157304,1.536395"
+         id="path17206-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.227726,50.975853 -2.786599,2.266936"
+         id="path17208-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.995924,52.143212 -3.163167,3.923833"
+         id="path17210-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.974999,53.641951 -3.306262,4.262743"
+         id="path17212-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.426064,51.427734 -3.494546,2.523002"
+         id="path17214-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.692185,50.945728 -3.3439196,1.34058"
+         id="path17216-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.159128,49.055359 6.9850912,48.098878"
+         id="path17218-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.792615,51.412671 3.3549808,50.749913"
+         id="path17220-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.261228,41.47129 7.5424111,38.91063"
+         id="path17222-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.010171,39.377574 9.7942845,36.342441"
+         id="path17224-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.707247,46.125664 -4.6995618,-0.5046"
+         id="path17230-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.727318,43.459566 8.5139551,39.309792"
+         id="path17232-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 27.131451,37.39683 28.29881,34.700606"
+         id="path17238-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.061221,37.381767 C 11.677122,37.17842 8.943242,34.05291 8.943242,34.05291"
+         id="path17242-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.6344567,40.462088 3.3474494,38.707284"
+         id="path17244-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 6.3825832,47.398462 1.8788363,47.225241"
+         id="path17246-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.8570583,55.005125 c 0,0 -2.8393188,1.491207 -3.253543,1.73221"
+         id="path17248-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.4854992,56.172484 8.1599817,58.635235"
+         id="path17250-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.973292,55.03525 4.044335,3.313794"
+         id="path17252-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.387517,42.676306 c 0.39163,-0.436818 3.102916,-3.23095 3.102916,-3.23095"
+         id="path17254-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.192593,44.98843 7.8587277,42.322333"
+         id="path17264-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.989466,42.879695 4.624248,-6.522148"
+         id="path18729-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.322515,43.715675 5.196631,-3.07279"
+         id="path18731-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.578581,45.161694 5.407509,-1.8979"
+         id="path18733-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.203683,46.464618 4.405839,-0.843511"
+         id="path18735-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.955148,47.067126 3.7958,0.971544"
+         id="path18737-4-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.872303,48.467957 1.400831,1.34058"
+         id="path18739-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.614568,49.582596 1.385768,1.28033"
+         id="path18741-3-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.838839,50.207698 0.338911,1.16736"
+         id="path18743-9-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.67148,50.395982 0.444349,1.235141"
+         id="path18745-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.504121,51.284681 0.04519,1.205016"
+         id="path18747-4-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.148478,51.435308 0.02259,1.528864"
+         id="path18749-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.777772,51.939909 -0.527194,6.725495"
+         id="path18751-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.77358,53.363334 -0.858574,5.083661"
+         id="path18753-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.445539,54.892198 -0.210877,4.3004"
+         id="path18755-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.597836,55.118138 1.408362,3.23848"
+         id="path18757-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.013729,53.641994 2.462752,4.57906"
+         id="path18759-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.489874,53.973373 2.967352,3.087853"
+         id="path18761-5-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.411305,53.512504 c 0.06025,0.444349 3.155635,1.50627 3.637642,1.61924"
+         id="path18763-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.207022,51.44284 c 0.512131,0.158158 2.764005,1.129702 3.276137,1.295392"
+         id="path18765-7-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.35431,49.680504 1.792461,3.313794"
+         id="path18767-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.310791,48.309798 c 0.135564,0.369036 3.163167,3.276137 3.163167,3.276137"
+         id="path18769-8-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.800329,48.098921 c 0.61757,0.241003 2.816724,1.611708 2.816724,1.611708"
+         id="path18771-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.679827,46.47968 3.675299,0.150627"
+         id="path18773-6-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.431293,45.786796 c 0.512131,-0.165689 4.112116,-1.167359 4.112116,-1.167359"
+         id="path18775-9-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.422092,43.670487 4.601654,-1.528864"
+         id="path18777-6-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.676488,42.796851 3.660236,-3.750612"
+         id="path18779-9-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.798697,51.970034 -0.971544,5.74642"
+         id="path18783-9-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.390334,51.585935 -2.688691,5.174037"
+         id="path18785-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.638869,53.137393 -1.197485,4.051866"
+         id="path18787-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.509167,50.433639 -5.482823,6.122987"
+         id="path18789-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.771094,53.67965 12.29328,56.714784"
+         id="path18791-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.696634,53.114799 -4.0744597,3.51714"
+         id="path18793-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.207097,55.622739 7.412966,58.266242"
+         id="path18795-3-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.453108,50.21523 5.2062806,52.098067"
+         id="path18797-5-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 11.961901,51.939909 5.2514687,53.56668"
+         id="path18799-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.281557,47.579257 C 13.889926,47.556663 5.4397524,47.443693 5.4397524,47.443693"
+         id="path18801-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 16.104143,45.74914 C 15.704982,45.560856 7.6539692,41.847901 7.6539692,41.847901"
+         id="path18803-8-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 16.864809,44.770064 9.5518692,38.187665"
+         id="path18805-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.272356,40.221129 c 0,0 -1.905432,-5.422571 -2.01087,-5.791608"
+         id="path18819-3-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 11.269017,42.375095 C 11.035545,41.998528 8.1058501,37.811097 8.1058501,37.811097"
+         id="path18821-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.493288,44.988473 4.5435219,43.000197"
+         id="path18823-9-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.9493613,49.454563 3.3761627,51.209368"
+         id="path18825-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.930106,48.87465 3.1803476,48.121515"
+         id="path18827-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.534284,46.690558 C 12.165247,46.607713 3.5870405,44.438685 3.5870405,44.438685"
+         id="path18829-9-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.716705,44.144962 6.335983,38.428668"
+         id="path18831-3-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.951847,40.989327 9.2355525,34.03036"
+         id="path18833-7-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 15.200381,44.446216 C 14.763563,44.19015 9.137645,40.469664 9.137645,40.469664"
+         id="path18835-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.552685,46.5324 C 14.198712,46.208552 7.7895335,46.359179 7.7895335,46.359179"
+         id="path18837-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 15.456447,48.611052 9.2280212,51.359995"
+         id="path18839-3-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 15.275695,50.659579 9.3711168,55.298891"
+         id="path18841-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.7008267,53.589274 C 8.339322,53.657054 4.1518917,56.18759 4.1518917,56.18759"
+         id="path18843-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.211289,50.426108 2.5401829,51.638655"
+         id="path18845-4-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 7.4732168,46.012737 C 7.1041807,45.80939 2.4648694,45.80939 2.4648694,45.80939"
+         id="path18847-7-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.3259287,42.269656 4.1217663,39.784311"
+         id="path18849-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.579471,40.514853 6.8283848,33.53777"
+         id="path18851-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 25.879835,36.628676 27.69489,32.991034"
+         id="path18857-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.965241,37.223652 c -0.09316,-0.55448 -2.822766,-5.780965 -2.822766,-5.780965"
+         id="path18861-4-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.238891,54.23697 c -0.406692,0.0075 -4.8426572,4.35312 -5.4225711,4.157305"
+         id="path18863-3-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 5.861508,51.646186 C 5.5000032,51.909783 1.6891405,54.952449 1.6891405,54.952449"
+         id="path18865-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.4464303,53.114799 2.3820246,55.389267"
+         id="path18867-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.4673549,48.159171 C 7.9627545,48.136577 0.39374836,48.460425 0.39374836,48.460425"
+         id="path18869-7-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.19118,48.121515 c -0.384098,-0.03013 -5.8142013,2.982414 -5.8142013,2.982414"
+         id="path18871-3-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.443054,51.194305 -4.481153,3.56986"
+         id="path18873-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.678195,52.828608 -0.610039,6.122987"
+         id="path18875-4-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.485719,55.720646 -0.640165,4.036803"
+         id="path18877-4-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.60956,56.255372 -0.933888,3.35145"
+         id="path18879-0-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.62043,56.308091 0.67029,3.283669"
+         id="path18881-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.819584,56.202653 1.385768,3.291199"
+         id="path18883-6-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.770203,56.541563 c 0,0 1.152297,1.762336 1.604178,2.010871"
+         id="path18885-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.125846,54.470442 c 0.466944,0.06025 1.912963,2.161497 1.912963,2.161497"
+         id="path18887-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.165096,52.012224 c 0.587445,0.322642 2.523002,2.475135 2.523002,2.475135"
+         id="path18889-0-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.704091,50.10226 c 1.182422,0.271128 3.012539,1.114639 3.012539,1.114639"
+         id="path18891-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.246348,47.9257 2.673629,0.11297"
+         id="path18893-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.150963,41.832838 3.73555,-5.091192"
+         id="path18895-7-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.930922,43.399359 c -0.04519,-0.512132 -4.036803,-4.443497 -4.036803,-4.443497"
+         id="path18903-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.966872,42.84957 c 0.04519,-0.384099 4.247681,-9.082807 4.247681,-9.082807"
+         id="path18907-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.493288,41.998528 C 10.297473,41.569241 5.7334751,39.919875 5.7334751,39.919875"
+         id="path18913-4-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.438899,44.544124 C 9.0096121,44.318183 2.110896,43.640362 2.110896,43.640362"
+         id="path18915-8-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.2698703,49.138247 c -0.5196631,-0.135564 -5.196631,0.843511 -5.196631,0.843511"
+         id="path18917-0-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.454778,48.65624 9.2430839,49.898913"
+         id="path18919-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.874864,45.847047 C 13.513359,45.688889 6.2456068,42.34497 6.2456068,42.34497"
+         id="path18921-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.9493613,39.965063 3.7376675,36.809428"
+         id="path18923-4-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.121729,39.370087 7.8949723,33.842076"
+         id="path18925-9-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.0397374,42.518191 C 8.6330446,42.337438 2.4648694,40.484726 2.4648694,40.484726"
+         id="path18927-6-3" />
+    </g>
+    <path
+       style="opacity:0.4817518;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       d="m 42.08559,338.71886 c 0.941163,0.13441 1.639832,-1.19405 0.994049,-1.89257 -0.414898,-1.05045 -1.044665,-2.27561 -2.268153,-2.49784 -1.823556,-0.24027 -3.672869,1.36556 -3.624802,3.2183 -0.31095,3.06545 2.766334,5.94461 5.805834,5.40393 1.919881,-0.10646 3.85913,-0.89501 5.119402,-2.38215 0.255124,-0.67599 0.656676,-1.53066 1.470677,-1.60843 0.798715,-0.0378 1.15431,0.95169 0.918152,1.60625 -0.234188,0.63895 -0.720877,1.15275 -1.152678,1.66781 -2.691179,2.89913 -7.485103,3.70782 -10.867795,1.56054 -2.859199,-1.75806 -3.985545,-5.91983 -2.174112,-8.79864 0.927074,-1.51674 2.822163,-2.21483 4.538129,-1.93837 1.692639,0.22097 3.272822,1.42025 3.716891,3.10492 0.316692,1.11158 0.14377,2.47382 -0.758877,3.26855 -0.592666,0.42439 -1.84934,0.21224 -1.716717,-0.7123 z"
+       id="path33920" />
+    <g
+       id="g18977"
+       clip-path="url(#clipPath5946)">
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.302965,74.016899 c 0,0 0.150038,-12.383438 0.150038,-12.383438"
+         id="path17170-6-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.700904,74.744182 c 0,0 1.833587,-6.09304 1.833587,-6.09304"
+         id="path16904-4-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.642694,73.766848 c 0,0 1.177922,-5.453768 1.177922,-5.453768"
+         id="path16906-3-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.30864,76.216398 c 0,0 -2.352009,-8.429529 -2.352009,-8.429529"
+         id="path16908-8-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.803934,72.445127 c 0,0 0.01396,-5.26154 0.01396,-5.26154"
+         id="path16946-6-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.564318,73.738532 c 0,0 1.357479,-3.440444 1.357479,-3.440444"
+         id="path16968-0-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.654156,71.859435 c 0,0 -0.645208,-8.118292 -0.645208,-8.118292"
+         id="path16970-2-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.561531,71.871721 c 0,0 -2.038356,-2.078587 -2.038356,-2.078587"
+         id="path16972-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.057436,75.41309 c 0,0 -2.385911,-3.166475 -2.385911,-3.166475"
+         id="path17076-0-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.384084,74.500724 c 0,0 -0.910441,-3.288358 -0.910441,-3.288358"
+         id="path17078-5-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.359442,74.163962 c 0,0 2.231838,-3.228403 2.231838,-3.228403"
+         id="path17080-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.860878,70.30183 c 0,0 -2.309044,-3.942881 -2.309044,-3.942881"
+         id="path17134-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.826589,71.884838 c 0,0 0.151848,-5.121728 0.151848,-5.121728"
+         id="path17136-8-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.344707,73.446734 c 0,0 1.50988,-4.283067 1.50988,-4.283067"
+         id="path17138-8-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.166972,71.860131 c 0,0 -1.735619,-8.411692 -1.735619,-8.411692"
+         id="path17158-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.032677,74.717728 c 0,0 -1.330548,-6.424887 -1.330548,-6.424887"
+         id="path17168-8-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.101577,74.161199 c 0,0 0.558676,-6.004825 0.558676,-6.004825"
+         id="path17172-9-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.27735,71.850416 c 0,0 1.802443,-4.983184 1.802443,-4.983184"
+         id="path17176-4-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.632938,69.932345 c 0,0 1.933811,-4.740675 1.933811,-4.740675"
+         id="path17178-0-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.410996,76.091337 c 0,0 0.93698,-2.630098 0.93698,-2.630098"
+         id="path17192-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.599933,74.962754 c 0,0 0.061,-2.427331 0.061,-2.427331"
+         id="path17196-3-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.175811,74.274822 c 0,0 -1.847971,-9.316642 -1.847971,-9.316642"
+         id="path17198-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.374035,70.676986 c 0,0 -1.075,-3.399838 -1.075,-3.399838"
+         id="path17226-7-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.06522,70.866361 c 0,0 -0.979339,-8.330895 -0.979339,-8.330895"
+         id="path17228-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.013524,72.450542 c 0,0 1.21844,-7.857037 1.21844,-7.857037"
+         id="path17234-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.596936,69.543218 c -0.0075,-0.80188 -0.28414,-7.706905 -0.28414,-7.706905"
+         id="path17236-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.867988,67.692974 c 0,0 3.131434,-3.535818 3.131434,-3.535818"
+         id="path17240-6-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.806685,70.804671 c 0,0 -1.22934,-4.272555 -1.22934,-4.272555"
+         id="path17256-9-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.319215,74.990991 c 0,0 -0.271619,-4.501667 -0.271619,-4.501667"
+         id="path17258-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.646886,75.433991 c 0,0 -2.99916,-4.19681 -2.99916,-4.19681"
+         id="path17260-7-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.879302,72.882446 c 0,0 1.56836,-5.186848 1.56836,-5.186848"
+         id="path18781-7-4-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.230894,71.229658 c 0,0 -6.314709,-7.391311 -6.314709,-7.391311"
+         id="path16948-5-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.15122,76.598476 c 0,0 -4.46934,-9.33285 -4.46934,-9.33285"
+         id="path18807-4-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.055456,75.391072 c 0,0 -2.28978,-7.132958 -2.28978,-7.132958"
+         id="path18809-4-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.219037,75.128265 c 0,0 1.064811,-10.020565 1.064811,-10.020565"
+         id="path18811-9-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.203667,74.774504 c 0,0 5.101038,-9.741576 5.101038,-9.741576"
+         id="path18813-5-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.444305,68.203054 c 0,0 -0.182152,-2.102724 -0.136964,-2.441634"
+         id="path18815-0-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.589423,71.390788 c 0,0 -1.983924,-5.754472 -1.983924,-5.754472"
+         id="path18817-1-2-3" />
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.403827,71.923727 c 0,0 -3.34805,-8.510067 -3.34805,-8.510067"
+         id="path18853-2-4-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.765817,68.930014 c 0,0 -1.069125,-4.929871 -1.144439,-5.336563"
+         id="path18855-2-9-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.433963,68.156458 c 0,0 0.02696,-4.148018 0.02696,-4.148018"
+         id="path18859-7-1-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.625022,72.404405 c 0.05272,-0.399161 2.788282,-6.572059 2.788282,-6.941095"
+         id="path18897-0-4-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.153867,72.871184 c 0,0 -2.222806,-6.529362 -2.222806,-6.529362"
+         id="path18899-9-3-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.492315,75.235486 c 0,0 -0.788512,-6.587121 -0.788512,-6.587121"
+         id="path18901-0-4-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.589094,74.205106 c 0,0 -0.09173,-11.089587 -0.09173,-11.089587"
+         id="path18905-0-2-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 20.006923,69.787821 C 19.984333,69.255599 18.67387,62.08176 18.67387,62.08176"
+         id="path18909-6-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.681248,67.005644 c 0,0 1.50436,-4.441662 1.50436,-4.441662"
+         id="path18911-5-4-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.397961,83.357547 c 0,0 -0.412717,1.423207 -0.412717,1.423207"
+         id="path16888-8-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.057545,83.305904 c 0,0 0.988545,0.980702 0.988545,0.980702"
+         id="path16890-6-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.70023,82.204522 c 0,0 0.760547,0.557328 0.760547,0.557328"
+         id="path16892-9-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.128119,80.693183 c 0,0 0.744573,1.600495 0.744573,1.600495"
+         id="path16894-9-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.312207,79.506798 c 0,0 1.451445,1.090111 1.451445,1.090111"
+         id="path16896-1-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.23936,77.982086 c 0,0 3.749869,-0.843936 3.749869,-0.843936"
+         id="path16898-6-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.12315,76.533905 c 0,0 4.254528,-3.443873 4.254528,-3.443873"
+         id="path16900-6-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.870486,74.659567 c 0,0 3.662454,-4.421188 3.662454,-4.421188"
+         id="path16902-3-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.638119,74.813307 c 0,0 -3.942481,-6.293356 -3.942481,-6.293356"
+         id="path16910-6-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.536639,77.212838 c 0,0 -6.3846727,-6.290405 -6.3846727,-6.290405"
+         id="path16912-9-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.651059,78.535901 c 0,0 -6.0576735,-5.140464 -6.0576735,-5.140464"
+         id="path16914-9-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.21851,80.866197 c 0,0 -7.7934102,-3.838104 -7.7934102,-3.838104"
+         id="path16916-5-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.149963,82.004199 c 0,0 -7.621444,1.448335 -7.621444,1.448335"
+         id="path16918-3-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.940406,80.390933 c 0,0 -8.298086,-3.763634 -8.298086,-3.763634"
+         id="path16920-4-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.211791,82.048573 c 0,0 -8.2690921,5.066268 -8.2690921,5.066268"
+         id="path16922-3-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.3907601,84.155734 c 0,0 -5.9120544,2.892734 -5.9120544,2.892734"
+         id="path16924-7-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.718861,84.090273 c 0,0 -3.579196,3.629864 -3.579196,3.629864"
+         id="path16926-5-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.403124,86.769055 c 0,0 -0.486096,4.52358 -0.486096,4.52358"
+         id="path16928-2-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.814347,86.986649 c 0,0 0.531518,5.009003 0.531518,5.009003"
+         id="path16930-1-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.805248,88.240282 c 0,0 2.948864,2.996206 2.948864,2.996206"
+         id="path16932-5-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.991248,87.198001 c 0,0 2.529389,3.896267 2.529389,3.896267"
+         id="path16934-7-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.15405,86.088633 c 0,0 3.902253,1.298145 3.902253,1.298145"
+         id="path16936-8-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.260026,82.681387 c 0,0 2.826723,2.149787 2.826723,2.149787"
+         id="path16938-8-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.767832,81.715207 c 0,0 2.9135,-0.297213 2.9135,-0.297213"
+         id="path16940-5-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.797066,80.42354 c 0,0 2.720411,-1.971171 2.720411,-1.971171"
+         id="path16942-6-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.60301,76.744476 c 0,0 3.023259,-1.83718 3.023259,-1.83718"
+         id="path16944-9-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.590907,73.537459 c 0,0 -4.3247576,-3.936999 -4.3247576,-3.936999"
+         id="path16950-7-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.605664,80.916317 c 0,0 -4.6283217,0.181331 -4.6283217,0.181331"
+         id="path16952-4-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.5136491,87.595662 c 0,0 -2.578537,3.602155 -2.578537,3.602155"
+         id="path16954-6-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.631827,86.922583 c 0,0 -0.786991,2.384853 -0.786991,2.384853"
+         id="path16956-9-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.598476,80.718949 c 0,0 -7.4050218,0.948683 -7.4050218,0.948683"
+         id="path16958-8-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.201934,83.100216 c 0,0 -4.996656,4.810881 -4.996656,4.810881"
+         id="path16960-4-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.575183,86.186174 c 0,0 -3.9370059,2.807276 -3.9370059,2.807276"
+         id="path16962-7-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.966105,75.466051 c 0,0 -3.55036,-5.564485 -3.55036,-5.564485"
+         id="path16964-1-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.316378,76.887726 c 0,0 -3.99294,-4.957542 -3.99294,-4.957542"
+         id="path16966-8-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.461111,74.226502 c 0,0 2.908067,-2.348319 2.908067,-2.348319"
+         id="path16974-1-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.33144,81.351544 c 0,0 3.739139,3.05237 3.739139,3.05237"
+         id="path16976-3-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.578711,84.557807 c 0,0 2.39012,3.344947 2.39012,3.344947"
+         id="path16978-4-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.426639,87.666783 c 0,0 1.327304,3.360413 1.327304,3.360413"
+         id="path16980-4-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.512355,88.968252 c 0,0 0.887198,1.938815 0.887198,1.938815"
+         id="path16982-7-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.776565,88.749065 c 0,0 -0.408428,3.062756 -0.408428,3.062756"
+         id="path16984-7-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.532036,88.827167 c 0,0 -1.136077,1.270028 -1.136077,1.270028"
+         id="path16986-4-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.25612,84.80073 c 0,0 -0.871666,5.488318 -0.871666,5.488318"
+         id="path17062-4-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.61653,83.776661 c 0,0 -3.129967,1.205504 -3.129967,1.205504"
+         id="path17064-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.738217,84.434889 c 0,0 -2.688065,4.480613 -2.688065,4.480613"
+         id="path17066-5-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.144071,85.877966 c 0,0 -3.933454,2.702508 -3.933454,2.702508"
+         id="path17068-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.003233,84.291506 c 0,0 -4.2474196,1.572998 -4.2474196,1.572998"
+         id="path17070-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.934279,81.627239 c 0,0 -8.2584067,-1.184049 -8.2584067,-1.184049"
+         id="path17072-3-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.01442,78.751843 c 0,0 -4.3758184,-3.812842 -4.3758184,-3.812842"
+         id="path17074-0-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.097015,76.300499 c 0,0 3.802288,-0.390776 3.802288,-0.390776"
+         id="path17082-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.894009,78.144709 c 0,0 3.65993,0.103587 3.65993,0.103587"
+         id="path17084-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.667484,80.232544 c 0,0 3.504614,0.429243 3.504614,0.429243"
+         id="path17086-2-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.10095,81.758529 c 0,0 1.85602,1.908941 1.85602,1.908941"
+         id="path17088-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.53911,81.943894 c 0,0 0.476891,0.173138 0.476891,0.173138"
+         id="path17090-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.665841,81.997676 c 0,0 -0.896302,1.410648 -0.896302,1.410648"
+         id="path17092-1-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.111197,82.822271 c 0,0 0.123031,1.39793 0.123031,1.39793"
+         id="path17094-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.717509,83.127699 c 0,0 0.378306,2.317536 0.378306,2.317536"
+         id="path17096-0-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.811544,86.506941 c 0,0 0.913516,3.765462 0.913516,3.765462"
+         id="path17098-3-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.792063,86.152007 c 0,0 1.583454,3.441525 1.583454,3.441525"
+         id="path17100-0-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.635199,86.343393 c 0,0 2.15206,1.734291 2.15206,1.734291"
+         id="path17102-4-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.708212,84.62921 c 0,0 3.318402,2.14573 3.318402,2.14573"
+         id="path17104-0-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.168697,86.451766 c 0,0 2.291831,4.015432 2.291831,4.015432"
+         id="path17106-1-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.433174,88.501072 c 0,0 0.659934,2.249952 0.659934,2.249952"
+         id="path17108-0-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.951118,85.755108 c 0,0 0.175093,3.88564 0.175093,3.88564"
+         id="path17110-7-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.370512,87.068908 c 0,0 -1.171724,3.665741 -1.171724,3.665741"
+         id="path17112-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.751041,84.87784 c 0,0 -2.312736,2.367618 -2.312736,2.367618"
+         id="path17114-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.561468,83.326625 c 0,0 -5.6937513,3.240547 -5.6937513,3.240547"
+         id="path17116-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.5839488,84.357223 c 0,0 -3.206134,3.136856 -3.206134,3.136856"
+         id="path17118-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.4211263,83.174323 c 0,0 -5.399208,1.640228 -5.399208,1.640228"
+         id="path17120-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.4814107,81.189898 c 0,0 -4.7918097,0.695498 -4.7918097,0.695498"
+         id="path17122-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.871214,80.132425 c 0,0 -4.8215692,-1.691355 -4.8215692,-1.691355"
+         id="path17124-0-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.1588882,77.476136 c 0,0 -5.4221519,-2.494486 -5.4221519,-2.494486"
+         id="path17126-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.810059,76.093916 c 0,0 -6.459343,-3.436616 -6.459343,-3.436616"
+         id="path17128-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.573611,74.551101 c 0,0 -3.4340949,-2.941789 -3.4340949,-2.941789"
+         id="path17130-8-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.861086,71.515923 c 0,0 -3.562278,-3.248631 -3.562278,-3.248631"
+         id="path17132-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.098618,74.575555 c 0,0 1.84825,-1.572515 1.84825,-1.572515"
+         id="path17140-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.990701,74.804419 c 0,0 1.934528,-0.176179 1.934528,-0.176179"
+         id="path17142-8-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.439661,78.060994 c 0,0 3.525853,-0.475971 3.525853,-0.475971"
+         id="path17144-9-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.553661,81.046019 c 0,0 3.591683,1.698455 3.591683,1.698455"
+         id="path17146-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.469486,84.054713 c 0,0 1.893102,2.610775 1.893102,2.610775"
+         id="path17148-3-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.77981,86.344767 c 0,0 2.181352,1.97126 2.181352,1.97126"
+         id="path17150-9-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.29311,80.092849 c 0,0 -8.6785859,-2.05288 -8.6785859,-2.05288"
+         id="path17152-9-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.100963,75.743824 c 0,0 -6.4381471,-3.537361 -6.4381471,-3.537361"
+         id="path17154-4-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.046538,78.145049 c 0,0 -6.4742833,-3.071057 -6.4742833,-3.071057"
+         id="path17156-4-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.218976,73.252884 c 0,0 -9.2998756,-6.664021 -9.2998756,-6.664021"
+         id="path17160-0-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.5242263,79.664213 c 0,0 -3.4360037,-0.875878 -3.4360037,-0.875878"
+         id="path17162-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.097635,84.345483 c 0,0 -4.331713,1.269627 -4.331713,1.269627"
+         id="path17164-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.604875,85.613323 c -0.361505,0.06025 -7.0056141,2.12314 -7.0056141,2.12314"
+         id="path17166-2-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.624391,74.173407 c 0,0 4.24751,-5.069211 4.24751,-5.069211"
+         id="path17174-5-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.053347,75.188571 c 0.39163,-0.203346 3.388827,-2.458568 3.388827,-2.458568"
+         id="path17180-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.13785,77.157839 c 0.421755,-0.112971 3.937575,-0.4821 3.937575,-0.4821"
+         id="path17182-8-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.213993,79.15466 c 0.466943,0.0075 2.960467,1.616785 2.960467,1.616785"
+         id="path17184-8-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.583553,81.49616 c 0,0 0.63244,1.117698 0.63244,1.117698"
+         id="path17186-2-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.73681,78.154691 c 0,0 3.273743,-1.182181 3.620185,-1.332808"
+         id="path17188-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.172077,76.389316 c 0,0 3.49742,-0.6321 3.49742,-0.6321"
+         id="path17190-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.092422,76.221527 c 0,0 1.871419,-2.045273 1.871419,-2.045273"
+         id="path17194-2-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.198175,77.669549 c 0,0 -2.071863,-2.393935 -2.071863,-2.393935"
+         id="path17200-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.619459,79.209443 c 0,0 -4.583092,-0.690866 -4.583092,-0.690866"
+         id="path17202-8-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.722543,81.487405 c 0,0 -2.931921,-0.577119 -2.931921,-0.577119"
+         id="path17204-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.516016,82.367104 c 0,0 -3.456809,0.979845 -3.456809,0.979845"
+         id="path17206-0-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.506486,83.390949 c 0,0 -2.867803,1.392537 -2.867803,1.392537"
+         id="path17208-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.542274,83.932983 c 0,0 -2.96454,4.56415 -2.96454,4.56415"
+         id="path17210-6-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.556998,85.367602 c 0,0 -3.141901,4.967997 -3.141901,4.967997"
+         id="path17212-2-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.613316,82.964135 c 0,0 -3.943827,3.412456 -3.943827,3.412456"
+         id="path17214-0-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.871589,82.479036 c 0,0 -3.8428763,1.422726 -3.8428763,1.422726"
+         id="path17216-2-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.584688,80.792888 c 0,0 -5.1825666,-0.969833 -5.1825666,-0.969833"
+         id="path17218-6-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.5413967,83.844992 c 0,0 -5.3293461,-1.574201 -5.3293461,-1.574201"
+         id="path17220-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.7976047,73.65853 c 0,0 -2.7484927,-2.666302 -2.7484927,-2.666302"
+         id="path17222-2-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.539327,71.209345 c 0,0 -2.470535,-3.284796 -2.470535,-3.284796"
+         id="path17224-3-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.209916,78.074088 c 0,0 -4.6856993,-0.325502 -4.6856993,-0.325502"
+         id="path17230-2-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.514918,75.006936 c 0,0 -5.9033455,-4.187508 -5.9033455,-4.187508"
+         id="path17232-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.504631,69.729616 c 0,0 1.19871,-2.735134 1.19871,-2.735134"
+         id="path17238-2-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 11.940332,69.866947 C 11.556233,69.6636 9.2455539,65.654668 9.2455539,65.654668"
+         id="path17242-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.5465332,71.969893 c 0,0 -5.6245711,-1.525198 -5.6245711,-1.525198"
+         id="path17244-2-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.3268465,79.89536 c 0,0 -3.9727383,-0.8254 -3.9727383,-0.8254"
+         id="path17246-6-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.1210663,86.580522 c 0,0 -2.828888,2.333775 -3.2431122,2.574778"
+         id="path17248-5-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.3085118,88.640125 c 0,0 -0.6686667,1.854657 -0.6686667,1.854657"
+         id="path17250-6-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.043432,87.53032 c 0,0 3.982503,3.318669 3.982503,3.318669"
+         id="path17252-1-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.194459,75.137545 c 0.39163,-0.436818 3.79309,-3.7458 3.79309,-3.7458"
+         id="path17254-7-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.437942,76.552779 c 0,0 -6.770174,-1.768334 -6.770174,-1.768334"
+         id="path17264-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.488967,74.857378 c 0,0 3.698878,-6.237834 3.698878,-6.237834"
+         id="path18729-2-3-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.023798,76.116648 c 0,0 5.991433,-3.536196 5.991433,-3.536196"
+         id="path18731-1-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.815979,76.72166 c 0,0 5.654465,-1.333751 5.654465,-1.333751"
+         id="path18733-0-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.756647,78.688594 c 0,0 5.089998,-0.627277 5.089998,-0.627277"
+         id="path18735-0-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.365376,78.781284 c 0,0 3.034979,1.613889 3.034979,1.613889"
+         id="path18737-4-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.727121,80.946429 c 0,0 1.157272,1.176574 1.157272,1.176574"
+         id="path18739-6-9-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.051543,81.825618 c 0,0 1.176654,0.592261 1.176654,0.592261"
+         id="path18741-3-9-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.691918,82.685639 c 0,0 0.482598,1.189423 0.482598,1.189423"
+         id="path18743-9-3-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.173704,82.443102 c 0,0 1.211509,0.766808 1.211509,0.766808"
+         id="path18745-1-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.718839,82.833146 c 0,0 -0.622842,1.867531 -0.622842,1.867531"
+         id="path18747-4-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.162134,82.935509 c 0,0 -0.138784,1.550996 -0.138784,1.550996"
+         id="path18749-6-6-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.348999,83.682719 c 0,0 -0.02683,7.477547 -0.02683,7.477547"
+         id="path18751-8-7-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.662179,84.875916 c 0,0 -0.939569,5.109591 -0.939569,5.109591"
+         id="path18753-4-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.16705,86.476949 c 0,0 -0.142769,5.169249 -0.142769,5.169249"
+         id="path18755-2-4-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.050295,86.905359 c 0,0 0.455904,3.452454 0.455904,3.452454"
+         id="path18757-8-0-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.660676,85.996062 c 0,0 3.100443,3.813933 3.100443,3.813933"
+         id="path18759-2-0-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.803847,85.584258 c 0,0 2.153468,3.467544 2.153468,3.467544"
+         id="path18761-5-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.954827,85.716547 c 0.06025,0.444349 4.041825,1.046609 4.523832,1.159579"
+         id="path18763-9-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.605235,83.140486 c 0.512131,0.158158 2.078726,1.022688 2.590858,1.188378"
+         id="path18765-7-9-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.175084,82.147292 c 0,0 2.470913,2.819207 2.470913,2.819207"
+         id="path18767-8-6-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.431914,80.794919 c 0.135564,0.369036 3.431614,2.477605 3.431614,2.477605"
+         id="path18769-8-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.152862,79.744364 c 0.61757,0.241003 2.364749,1.476267 2.364749,1.476267"
+         id="path18771-3-2-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.182119,78.431873 c 0,0 3.872964,-0.20152 3.872964,-0.20152"
+         id="path18773-6-1-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.852071,78.056894 c 0.512131,-0.165689 3.648733,-1.935625 3.648733,-1.935625"
+         id="path18775-9-4-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.516382,75.179472 c 0,0 4.926286,-1.31079 4.926286,-1.31079"
+         id="path18777-6-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.543696,74.314821 c 0,0 4.235607,-3.501214 4.235607,-3.501214"
+         id="path18779-9-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.295593,84.025671 c 0,0 -1.968254,5.677173 -1.968254,5.677173"
+         id="path18783-9-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.90017,83.684638 c 0,0 -1.902234,5.478101 -1.902234,5.478101"
+         id="path18785-0-8-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.044596,84.845198 c 0,0 -1.925185,4.72661 -1.925185,4.72661"
+         id="path18787-4-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.103053,82.725323 c 0,0 -5.4194465,6.195365 -5.4194465,6.195365"
+         id="path18789-2-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.213,85.445742 c 0,0 -2.469847,3.487264 -2.469847,3.487264"
+         id="path18791-2-4-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.871068,84.646227 c 0,0 -4.0421394,4.440976 -4.0421394,4.440976"
+         id="path18793-5-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.8295116,87.950517 c 0,0 -2.8416721,2.052552 -2.8416721,2.052552"
+         id="path18795-3-5-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.458468,82.715215 c 0,0 -7.8472061,1.089625 -7.8472061,1.089625"
+         id="path18797-5-6-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.056554,84.430882 c 0,0 -6.7563512,0.638193 -6.7563512,0.638193"
+         id="path18799-2-7-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.995357,79.169284 C 13.603726,79.14669 4.9399157,79.430931 4.9399157,79.430931"
+         id="path18801-1-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 16.597421,77.667441 C 16.19826,77.479157 7.6472979,73.34796 7.6472979,73.34796"
+         id="path18803-8-8-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.86788,76.270087 c 0,0 -7.3395441,-5.582962 -7.3395441,-5.582962"
+         id="path18805-1-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.00017,72.640565 c 0,0 -2.121339,-5.950462 -2.226777,-6.319499"
+         id="path18819-3-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.781432,74.26438 C 10.54796,73.887813 8.598944,69.728296 8.598944,69.728296"
+         id="path18821-2-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.002942,77.086264 c 0,0 -5.6496103,-2.548468 -5.6496103,-2.548468"
+         id="path18823-9-1-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.3860447,81.211046 c 0,0 -5.8812193,1.515174 -5.8812193,1.515174"
+         id="path18825-2-3-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.446059,80.999959 c 0,0 -7.7622287,-0.937342 -7.7622287,-0.937342"
+         id="path18827-1-1-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.67794,78.211653 C 12.308903,78.128808 3.6202529,76.937595 3.6202529,76.937595"
+         id="path18829-9-7-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.782965,75.649386 c 0,0 -6.9492346,-5.173296 -6.9492346,-5.173296"
+         id="path18831-3-5-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.748868,73.446287 c 0,0 -5.8624678,-7.058013 -5.8624678,-7.058013"
+         id="path18833-7-6-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.806883,76.137751 C 14.370065,75.881685 9.5112073,72.137336 9.5112073,72.137336"
+         id="path18835-7-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.087157,78.349976 C 13.733184,78.026128 8.2589042,78.531504 8.2589042,78.531504"
+         id="path18837-2-1-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.876214,80.88272 c 0,0 -6.5793879,1.982046 -6.5793879,1.982046"
+         id="path18839-3-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.504208,82.214866 c 0,0 -6.0183382,5.570693 -6.0183382,5.570693"
+         id="path18841-7-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.1579488,85.79187 C 8.7964441,85.85965 3.7981351,87.834254 3.7981351,87.834254"
+         id="path18843-1-7-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.7109681,82.408212 c 0,0 -6.5381216,0.891246 -6.5381216,0.891246"
+         id="path18845-4-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 7.9706597,77.962247 C 7.6016236,77.7589 2.8735328,77.521317 2.8735328,77.521317"
+         id="path18847-7-8-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.30538,74.769248 c 0,0 -4.6837067,-2.994565 -4.6837067,-2.994565"
+         id="path18849-5-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.663586,73.007741 c 0,0 -5.7051007,-7.952734 -5.7051007,-7.952734"
+         id="path18851-7-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.350894,68.461049 c 0,0 1.057385,-3.060301 1.057385,-3.060301"
+         id="path18857-0-6-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.643182,68.841203 c -0.09316,-0.55448 -2.858019,-5.048747 -2.858019,-5.048747"
+         id="path18861-4-6-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.544158,85.840989 c -0.406692,0.0075 -5.373453,5.195362 -5.9533669,4.999547"
+         id="path18863-3-3-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 6.2029888,84.011427 C 5.841484,84.275024 1.1986539,87.049535 1.1986539,87.049535"
+         id="path18865-7-1-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.2361638,84.661174 c 0,0 -6.4510168,3.023898 -6.4510168,3.023898"
+         id="path18867-7-7-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.5603594,79.667911 c -0.5046004,-0.02259 -8.57804445,1.076645 -8.57804445,1.076645"
+         id="path18869-7-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.643506,80.334605 c -0.384098,-0.03013 -6.2026355,3.265239 -6.2026355,3.265239"
+         id="path18871-3-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.287743,83.669586 c 0,0 -4.246295,2.600961 -4.246295,2.600961"
+         id="path18873-7-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.431126,85.263314 c 0,0 -0.30087,5.192166 -0.30087,5.192166"
+         id="path18875-4-9-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.379901,88.209334 c 0,0 -0.358455,4.01617 -0.358455,4.01617"
+         id="path18877-4-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.68637,87.761321 c 0,0 -1.510585,3.85614 -1.510585,3.85614"
+         id="path18879-0-0-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.280191,88.674489 c 0,0 1.406452,2.611924 1.406452,2.611924"
+         id="path18881-8-0-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.070516,88.63514 c 0,0 1.343744,2.40446 1.343744,2.40446"
+         id="path18883-6-4-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.058028,88.950425 c 0,0 0.409093,1.559959 0.860974,1.808494"
+         id="path18885-1-3-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.540396,86.190905 c 0.466944,0.06025 1.018641,2.581829 1.018641,2.581829"
+         id="path18887-2-5-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.374052,83.557994 c 0.587445,0.322642 2.812053,2.884778 2.812053,2.884778"
+         id="path18889-0-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.988241,82.513685 c 1.182422,0.271128 2.937903,1.157215 2.937903,1.157215"
+         id="path18891-2-1-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.159746,80.418157 c 0,0 2.281642,-0.524224 2.281642,-0.524224"
+         id="path18893-5-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.592859,74.066793 c 0,0 3.783851,-5.423657 3.783851,-5.423657"
+         id="path18895-7-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.947895,75.899085 c -0.04519,-0.512132 -3.982284,-5.438071 -3.982284,-5.438071"
+         id="path18903-7-4-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.295397,75.226508 c 0.04519,-0.384099 4.418967,-9.473461 4.418967,-9.473461"
+         id="path18907-7-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.981104,73.888835 C 10.785289,73.459548 6.1013971,72.258465 6.1013971,72.258465"
+         id="path18913-4-1-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.1925156,76.109057 C 8.7632287,75.883116 2.1439326,75.141469 2.1439326,75.141469"
+         id="path18915-8-9-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 7.7664579,81.079945 C 7.2467948,80.944381 1.7286653,82.344082 1.7286653,82.344082"
+         id="path18917-0-3-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.952089,80.708038 c 0,0 -5.409166,1.59101 -5.409166,1.59101"
+         id="path18919-6-9-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.489221,78.165306 C 13.127716,78.007148 5.7703219,74.189728 5.7703219,74.189728"
+         id="path18921-7-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.4180874,72.139134 c 0,0 -5.3544284,-3.708809 -5.3544284,-3.708809"
+         id="path18923-4-9-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.611549,71.470481 c 0,0 -6.1900371,-5.467658 -6.1900371,-5.467658"
+         id="path18925-9-4-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.3409799,74.11914 C 8.9342871,73.938387 1.9981881,72.305272 1.9981881,72.305272"
+         id="path18927-6-3-5" />
+    </g>
+    <g
+       id="g24438"
+       clip-path="url(#clipPath5950)">
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.808282,106.97322 c 0,0 0.498823,-11.832469 0.498823,-11.832469"
+         id="path17170-6-5-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.708802,107.27329 c 0,0 2.213658,-5.90851 2.213658,-5.90851"
+         id="path16904-4-2-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.428869,106.34393 c 0,0 1.840841,-4.78199 1.840841,-4.78199"
+         id="path16906-3-0-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.355008,108.7476 c 0,0 -1.923104,-8.08697 -1.923104,-8.08697"
+         id="path16908-8-3-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.305699,105.4322 c 0,0 0.05981,-5.0066 0.05981,-5.0066"
+         id="path16946-6-4-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.775692,107.2207 c 0,0 0.646889,-3.92156 0.646889,-3.92156"
+         id="path16968-0-7-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.275257,105.21473 c 0,0 -0.633278,-8.784145 -0.633278,-8.784145"
+         id="path16970-2-7-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.994563,104.6508 c 0,0 -2.420585,-2.32603 -2.420585,-2.32603"
+         id="path16972-7-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.548097,108.34595 c 0,0 -2.507446,-3.40755 -2.507446,-3.40755"
+         id="path17076-0-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.044193,107.16306 c 0,0 -0.276291,-3.32588 -0.276291,-3.32588"
+         id="path17078-5-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.14464,107.64452 c 0,0 2.03229,-3.40006 2.03229,-3.40006"
+         id="path17080-8-5-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.38021,103.46857 c 0,0 -2.328198,-4.093916 -2.328198,-4.093916"
+         id="path17134-8-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.326836,104.89819 c 0,0 1.144706,-5.02328 1.144706,-5.02328"
+         id="path17136-8-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.379731,105.97701 c 0,0 1.448037,-4.28357 1.448037,-4.28357"
+         id="path17138-8-8-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.186316,105.38881 c 0,0 -1.256356,-8.874027 -1.256356,-8.874027"
+         id="path17158-1-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.644277,107.43191 c 0,0 -0.944386,-5.61003 -0.944386,-5.61003"
+         id="path17168-8-0-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.648791,106.97815 c 0,0 1.389594,-6.11986 1.389594,-6.11986"
+         id="path17172-9-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.254904,104.37997 c 0,0 1.892826,-4.979051 1.892826,-4.979051"
+         id="path17176-4-8-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.046637,103.2422 c 0,0 1.99106,-5.189433 1.99106,-5.189433"
+         id="path17178-0-9-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.882627,109.28641 c 0,0 -0.02887,-2.72034 -0.02887,-2.72034"
+         id="path17192-0-1-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.589656,107.49191 c 0,0 -0.259532,-1.55252 -0.259532,-1.55252"
+         id="path17196-3-8-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.437443,107.72996 c 0,0 -2.045808,-10.238643 -2.045808,-10.238643"
+         id="path17198-0-1-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.793366,103.97837 c 0,0 -1.772873,-3.25694 -1.772873,-3.25694"
+         id="path17226-7-0-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.886687,104.36245 c 0,0 -0.482507,-8.412336 -0.482507,-8.412336"
+         id="path17228-4-9-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.031641,105.97926 c 0,0 0.979036,-7.908339 0.979036,-7.908339"
+         id="path17234-6-7-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.064672,102.74897 c -0.0075,-0.80188 -0.393511,-7.534932 -0.393511,-7.534932"
+         id="path17236-9-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.545226,101.10389 c 0,0 3.396616,-3.421011 3.396616,-3.421011"
+         id="path17240-6-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.805615,104.33372 c 0,0 -1.40269,-4.30396 -1.40269,-4.30396"
+         id="path17256-9-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.849848,108.19236 c 0,0 0.464179,-5.09709 0.464179,-5.09709"
+         id="path17258-4-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.815686,107.9924 c 0,0 -3.430746,-3.3008 -3.430746,-3.3008"
+         id="path17260-7-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.552938,105.5327 c 0,0 2.328587,-5.05657 2.328587,-5.05657"
+         id="path18781-7-4-2-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.725139,104.18307 c 0,0 -7.0448318,-6.874808 -7.0448318,-6.874808"
+         id="path16948-5-6-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.05104,110.11739 c 0,0 -4.129197,-9.38406 -4.129197,-9.38406"
+         id="path18807-4-8-6-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.554816,108.44542 c 0,0 -2.432439,-7.50864 -2.432439,-7.50864"
+         id="path18809-4-6-5-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.670467,107.94234 c 0,0 0.899568,-10.215586 0.899568,-10.215586"
+         id="path18811-9-8-0-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.708839,107.73182 c 0,0 6.01759,-9.401237 6.01759,-9.401237"
+         id="path18813-5-6-5-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.964009,101.37108 c 0,0 0.674598,-1.912637 0.719786,-2.251547"
+         id="path18815-0-2-4-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.130373,104.22167 c 0,0 -1.279028,-5.991688 -1.279028,-5.991688"
+         id="path18817-1-2-3-7" />
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.533806,104.46997 c 0,0 -3.687028,-7.573036 -3.687028,-7.573036"
+         id="path18853-2-4-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.997384,102.4022 c 0,0 -1.618782,-5.758777 -1.694096,-6.165469"
+         id="path18855-2-9-9-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.812085,100.85836 c 0,0 0.115288,-4.000937 0.115288,-4.000937"
+         id="path18859-7-1-8-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.217509,105.72316 c 0.05272,-0.39916 3.026496,-6.391298 3.026496,-6.760334"
+         id="path18897-0-4-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.652249,105.86004 c 0,0 -2.803369,-5.995968 -2.803369,-5.995968"
+         id="path18899-9-3-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.016116,108.41697 c 0,0 -0.785971,-6.89971 -0.785971,-6.89971"
+         id="path18901-0-4-6-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.096643,107.1476 c 0,0 -0.08286,-10.875954 -0.08286,-10.875954"
+         id="path18905-0-2-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.712314,103.22086 c -0.02259,-0.53222 -1.286808,-7.676097 -1.286808,-7.676097"
+         id="path18909-6-2-7-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.716323,99.535922 c 0,0 1.014897,-4.151533 1.014897,-4.151533"
+         id="path18911-5-4-3-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.109751,115.97802 c 0,0 -0.549454,1.5683 -0.549454,1.5683"
+         id="path16888-8-2-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.803148,115.90451 c 0,0 0.834023,1.69887 0.834023,1.69887"
+         id="path16890-6-5-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.666538,115.73243 c 0,0 0.642401,0.53486 0.642401,0.53486"
+         id="path16892-9-4-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.614044,113.60443 c 0,0 0.245344,1.21848 0.245344,1.21848"
+         id="path16894-9-3-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.827962,112.41132 c 0,0 2.05205,1.70091 2.05205,1.70091"
+         id="path16896-1-5-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.852319,110.6946 c 0,0 4.346272,-0.98146 4.346272,-0.98146"
+         id="path16898-6-7-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.472898,109.92028 c 0,0 4.370025,-3.98436 4.370025,-3.98436"
+         id="path16900-6-5-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.493432,107.36024 c 0,0 4.520963,-4.22772 4.520963,-4.22772"
+         id="path16902-3-6-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.137584,107.86548 c 0,0 -3.948743,-6.23431 -3.948743,-6.23431"
+         id="path16910-6-5-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.757707,110.69036 c 0,0 -6.1077647,-6.78382 -6.1077647,-6.78382"
+         id="path16912-9-9-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.941278,111.9721 c 0,0 -6.605641,-5.11916 -6.605641,-5.11916"
+         id="path16914-9-5-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.902387,113.50787 c 0,0 -7.9606494,-3.32282 -7.9606494,-3.32282"
+         id="path16916-5-8-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.196552,114.53543 c 0,0 -8.0317549,1.60307 -8.0317549,1.60307"
+         id="path16918-3-3-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.442752,113.46836 c 0,0 -7.4958774,-4.20855 -7.4958774,-4.20855"
+         id="path16920-4-3-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.130253,114.58431 c 0,0 -8.0559478,6.04195 -8.0559478,6.04195"
+         id="path16922-3-1-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.4157654,117.68415 c 0,0 -5.7052083,1.95037 -5.7052083,1.95037"
+         id="path16924-7-9-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.740017,116.61977 c 0,0 -3.526532,4.62394 -3.526532,4.62394"
+         id="path16926-5-9-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.428236,119.7799 c 0,0 -0.79008,4.3694 -0.79008,4.3694"
+         id="path16928-2-6-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.321847,119.09981 c 0,0 1.502402,5.06815 1.502402,5.06815"
+         id="path16930-1-1-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.690472,120.547 c 0,0 3.558233,3.40953 3.558233,3.40953"
+         id="path16932-5-7-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.141884,120.55652 c 0,0 1.882988,3.48444 1.882988,3.48444"
+         id="path16934-7-1-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.319134,119.58964 c 0,0 3.299336,1.06765 3.299336,1.06765"
+         id="path16936-8-4-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.971972,115.30175 c 0,0 3.217231,3.04786 3.217231,3.04786"
+         id="path16938-8-0-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.269518,114.78528 c 0,0 3.386807,-0.83761 3.386807,-0.83761"
+         id="path16940-5-2-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.369645,113.71203 c 0,0 3.513166,-2.57198 3.513166,-2.57198"
+         id="path16942-6-5-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.858497,110.20333 c 0,0 2.275214,-2.35292 2.275214,-2.35292"
+         id="path16944-9-8-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.00777,106.8426 c 0,0 -4.2601603,-4.0782 -4.2601603,-4.0782"
+         id="path16950-7-0-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.3964643,114.3995 c 0,0 -4.368565,0.22464 -4.368565,0.22464"
+         id="path16952-4-1-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9884461,120.46797 c 0,0 -3.3886124,3.38797 -3.3886124,3.38797"
+         id="path16954-6-6-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.124243,120.03839 c 0,0 -1.017024,1.87248 -1.017024,1.87248"
+         id="path16956-9-9-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.068177,113.91941 c 0,0 -7.9535984,1.27101 -7.9535984,1.27101"
+         id="path16958-8-7-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.487718,116.53955 c 0,0 -5.0592443,3.95318 -5.0592443,3.95318"
+         id="path16960-4-0-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.466435,118.72719 c 0,0 -4.1890559,3.64147 -4.1890559,3.64147"
+         id="path16962-7-5-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.406083,108.73263 c 0,0 -3.597244,-5.49302 -3.597244,-5.49302"
+         id="path16964-1-1-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.706956,109.60461 c 0,0 -4.451963,-5.14067 -4.451963,-5.14067"
+         id="path16966-8-3-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.950902,107.15503 c 0,0 2.065867,-1.89311 2.065867,-1.89311"
+         id="path16974-1-2-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.84045,114.2861 c 0,0 3.764802,3.32981 3.764802,3.32981"
+         id="path16976-3-9-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.958682,117.26186 c 0,0 1.523017,3.55723 1.523017,3.55723"
+         id="path16978-4-9-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.738276,120.7412 c 0,0 1.34453,3.34604 1.34453,3.34604"
+         id="path16980-4-9-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.990409,122.14381 c 0,0 0.01009,2.09357 0.01009,2.09357"
+         id="path16982-7-6-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.287537,120.84328 c 0,0 0.547364,3.34617 0.547364,3.34617"
+         id="path16984-7-0-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.791071,122.28389 c 0,0 -1.414803,0.34274 -1.414803,0.34274"
+         id="path16986-4-6-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.019115,117.38952 c 0,0 -0.427975,5.4733 -0.427975,5.4733"
+         id="path17062-4-4-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.515813,117.29546 c 0,0 -3.430207,1.01448 -3.430207,1.01448"
+         id="path17064-9-3-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.178336,117.70121 c 0,0 -2.941638,3.77944 -2.941638,3.77944"
+         id="path17066-5-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.152375,119.40695 c 0,0 -3.479411,2.01221 -3.479411,2.01221"
+         id="path17068-7-5-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.54112,117.12964 c 0,0 -3.597215,2.22718 -3.597215,2.22718"
+         id="path17070-3-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.191016,115.08534 c 0,0 -8.9782215,-1.80167 -8.9782215,-1.80167"
+         id="path17072-3-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.561965,111.56809 c 0,0 -3.6707276,-4.03152 -3.6707276,-4.03152"
+         id="path17074-0-4-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.736151,108.98346 c 0,0 4.595623,-0.29563 4.595623,-0.29563"
+         id="path17082-1-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.286059,111.48408 c 0,0 2.908999,-0.55487 2.908999,-0.55487"
+         id="path17084-7-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.114415,113.03742 c 0,0 2.570231,0.76473 2.570231,0.76473"
+         id="path17086-2-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.218002,115.27369 c 0,0 2.21447,1.26824 2.21447,1.26824"
+         id="path17088-0-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.797596,114.54494 c 0,0 0.643584,0.86424 0.643584,0.86424"
+         id="path17090-4-9-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.428215,114.58681 c 0,0 -0.615266,2.34867 -0.615266,2.34867"
+         id="path17092-1-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.336807,115.40511 c 0,0 -0.07314,1.34501 -0.07314,1.34501"
+         id="path17094-3-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.034712,116.54325 c 0,0 -0.426805,1.82174 -0.426805,1.82174"
+         id="path17096-0-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.775237,120.03467 c 0,0 0.974895,3.76615 0.974895,3.76615"
+         id="path17098-3-9-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.112436,118.79718 c 0,0 1.208771,4.32244 1.208771,4.32244"
+         id="path17100-0-0-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.327747,118.97814 c 0,0 1.959581,2.12026 1.959581,2.12026"
+         id="path17102-4-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.345128,118.00202 c 0,0 3.54587,1.32071 3.54587,1.32071"
+         id="path17104-0-9-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.658554,119.58102 c 0,0 1.48218,3.53087 1.48218,3.53087"
+         id="path17106-1-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.158688,121.02382 c 0,0 1.277332,3.03175 1.277332,3.03175"
+         id="path17108-0-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.772553,118.31713 c 0,0 0.326296,3.85342 0.326296,3.85342"
+         id="path17110-7-6-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.379356,119.50966 c 0,0 -1.139316,4.66396 -1.139316,4.66396"
+         id="path17112-7-8-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.86581,117.42024 c 0,0 -2.660363,2.4118 -2.660363,2.4118"
+         id="path17114-7-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.877403,116.74322 c 0,0 -5.7160277,3.25768 -5.7160277,3.25768"
+         id="path17116-0-8-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.0393929,117.17994 c 0,0 -3.2229805,3.10312 -3.2229805,3.10312"
+         id="path17118-4-9-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9208097,116.18558 c 0,0 -6.3640967,1.84128 -6.3640967,1.84128"
+         id="path17120-4-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 5.9823835,114.18777 c 0,0 -4.3941007,0.23705 -4.3941007,0.23705"
+         id="path17122-8-9-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.033862,112.68866 c 0,0 -5.2644867,-1.6326 -5.2644867,-1.6326"
+         id="path17124-0-5-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.6932827,110.68743 c 0,0 -5.0149008,-2.18015 -5.0149008,-2.18015"
+         id="path17126-3-4-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.29088,108.98581 c 0,0 -6.6217278,-3.68494 -6.6217278,-3.68494"
+         id="path17128-5-6-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.098399,107.42467 c 0,0 -2.4660431,-2.87062 -2.4660431,-2.87062"
+         id="path17130-8-2-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.361086,104.54454 c 0,0 -3.143327,-3.74159 -3.143327,-3.74159"
+         id="path17132-6-7-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.360332,108.03063 c 0,0 2.081442,-2.06973 2.081442,-2.06973"
+         id="path17140-3-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.255985,107.40965 c 0,0 1.92385,0.67796 1.92385,0.67796"
+         id="path17142-8-7-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.977518,111.28089 c 0,0 4.155726,-0.19579 4.155726,-0.19579"
+         id="path17144-9-1-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.053192,114.05342 c 0,0 3.131042,1.22161 3.131042,1.22161"
+         id="path17146-2-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.36664,117.57307 c 0,0 1.748934,1.68675 1.748934,1.68675"
+         id="path17148-3-1-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.282888,119.31842 c 0,0 3.067132,2.34097 3.067132,2.34097"
+         id="path17150-9-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.328834,112.62318 c 0,0 -9.0974936,-1.23296 -9.0974936,-1.23296"
+         id="path17152-9-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.037748,109.26886 c 0,0 -6.4850722,-3.54563 -6.4850722,-3.54563"
+         id="path17154-4-8-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.625237,110.90483 c 0,0 -5.9529673,-2.3119 -5.9529673,-2.3119"
+         id="path17156-4-0-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.693551,106.43934 c 0,0 -9.9999201,-7.267704 -9.9999201,-7.267704"
+         id="path17160-0-7-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.080297,112.4632 c 0,0 -3.4497763,-0.84708 -3.4497763,-0.84708"
+         id="path17162-5-8-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.2552522,116.90002 c 0,0 -4.8505672,1.39844 -4.8505672,1.39844"
+         id="path17164-6-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.198102,118.35162 c -0.361505,0.0602 -6.9570688,2.06507 -6.9570688,2.06507"
+         id="path17166-2-6-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.262839,107.54783 c 0,0 5.103813,-5.34232 5.103813,-5.34232"
+         id="path17174-5-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.069768,108.71735 c 0.39163,-0.20335 2.873255,-2.92917 2.873255,-2.92917"
+         id="path17180-1-6-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.884223,110.61779 c 0.421755,-0.11297 3.691226,-0.90809 3.691226,-0.90809"
+         id="path17182-8-1-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.332814,112.66939 c 0.466943,0.007 3.11103,1.55233 3.11103,1.55233"
+         id="path17184-8-8-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.056488,114.68748 c 0,0 -0.128425,1.3642 -0.128425,1.3642"
+         id="path17186-2-5-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.037474,110.3399 c 0,0 3.72514,-1.32065 4.071582,-1.47128"
+         id="path17188-4-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.581309,109.13109 c 0,0 3.576598,-0.45185 3.576598,-0.45185"
+         id="path17190-5-6-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.429025,109.62031 c 0,0 1.596395,-2.9112 1.596395,-2.9112"
+         id="path17194-2-6-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.122423,111.19283 c 0,0 -2.334492,-3.25627 -2.334492,-3.25627"
+         id="path17200-1-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.498968,111.75323 c 0,0 -4.910458,-0.42791 -4.910458,-0.42791"
+         id="path17202-8-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.145459,114.24972 c 0,0 -2.87097,-0.18439 -2.87097,-0.18439"
+         id="path17204-1-5-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.016257,115.41168 c 0,0 -2.645801,1.35563 -2.645801,1.35563"
+         id="path17206-0-5-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.006514,116.41467 c 0,0 -2.018395,1.04025 -2.018395,1.04025"
+         id="path17208-1-6-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.153727,117.27672 c 0,0 -2.97059,3.94239 -2.97059,3.94239"
+         id="path17210-6-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.403177,118.8724 c 0,0 -3.328393,4.12593 -3.328393,4.12593"
+         id="path17212-2-0-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.571294,116.49141 c 0,0 -4.244758,2.55038 -4.244758,2.55038"
+         id="path17214-0-2-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.547475,115.12737 c 0,0 -3.8314455,2.19361 -3.8314455,2.19361"
+         id="path17216-2-5-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.216716,114.16046 c 0,0 -4.7707112,-1.80642 -4.7707112,-1.80642"
+         id="path17218-6-9-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.0420447,116.89949 c 0,0 -5.0807529,-2.03222 -5.0807529,-2.03222"
+         id="path17220-1-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.3265352,106.51997 c 0,0 -2.3545176,-2.00467 -2.3545176,-2.00467"
+         id="path17222-2-2-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.040797,104.20007 c 0,0 -2.4715518,-3.22519 -2.4715518,-3.22519"
+         id="path17224-3-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.923034,111.51265 c 0,0 -4.5893967,-0.27276 -4.5893967,-0.27276"
+         id="path17230-2-8-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.667312,107.55978 c 0,0 -5.7596134,-3.30842 -5.7596134,-3.30842"
+         id="path17232-6-6-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.233766,103.17895 c 0,0 1.664024,-2.69478 1.664024,-2.69478"
+         id="path17238-2-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 11.902139,102.39746 C 11.51804,102.19411 9.3130576,98.188296 9.3130576,98.188296"
+         id="path17242-1-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.0754754,104.8313 c 0,0 -4.8547149,-1.75846 -4.8547149,-1.75846"
+         id="path17244-2-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.0023849,113.30484 c 0,0 -3.1552127,-1.12284 -3.1552127,-1.12284"
+         id="path17246-6-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.6857115,119.85547 c 0,0 -2.872631,1.94482 -3.2868552,2.18582"
+         id="path17248-5-3-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.5804915,122.08873 c 0,0 -0.8121684,1.91831 -0.8121684,1.91831"
+         id="path17250-6-4-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.783736,120.1321 c 0,0 3.850965,3.4346 3.850965,3.4346"
+         id="path17252-1-0-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.272568,108.66046 c 0.39163,-0.43682 3.363693,-4.59547 3.363693,-4.59547"
+         id="path17254-7-9-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.796157,109.233 c 0,0 -7.2416002,-1.90651 -7.2416002,-1.90651"
+         id="path17264-0-6-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.476108,107.3866 c 0,0 3.36731,-5.37556 3.36731,-5.37556"
+         id="path18729-2-3-8-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.608572,109.42424 c 0,0 6.796812,-3.50204 6.796812,-3.50204"
+         id="path18731-1-0-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.308406,109.8374 c 0,0 5.552639,-1.1083 5.552639,-1.1083"
+         id="path18733-0-1-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.248182,111.62603 c 0,0 4.124331,-0.37692 4.124331,-0.37692"
+         id="path18735-0-2-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.993449,112.1445 c 0,0 3.086079,1.66322 3.086079,1.66322"
+         id="path18737-4-0-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.626851,113.48564 c 0,0 1.525676,1.24439 1.525676,1.24439"
+         id="path18739-6-9-3-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.560979,114.75799 c 0,0 1.1909,0.841 1.1909,0.841"
+         id="path18741-3-9-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.191583,115.69638 c 0,0 0.480668,1.1602 0.480668,1.1602"
+         id="path18743-9-3-5-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.379423,115.01643 c 0,0 1.099756,0.73144 1.099756,0.73144"
+         id="path18745-1-1-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.853773,115.38075 c 0,0 -0.330471,2.08935 -0.330471,2.08935"
+         id="path18747-4-8-7-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.580557,116.23828 c 0,0 -0.165706,1.58828 -0.165706,1.58828"
+         id="path18749-6-6-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.570686,115.7733 c 0,0 -0.364756,8.41202 -0.364756,8.41202"
+         id="path18751-8-7-8-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.604075,118.40158 c 0,0 -0.528985,4.9676 -0.528985,4.9676"
+         id="path18753-4-3-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.75768,119.79308 c 0,0 0.101351,4.41027 0.101351,4.41027"
+         id="path18755-2-4-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.260716,120.38798 c 0,0 0.283573,2.50033 0.283573,2.50033"
+         id="path18757-8-0-3-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.098772,119.26609 c 0,0 2.76425,3.08345 2.76425,3.08345"
+         id="path18759-2-0-5-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.151404,118.25386 c 0,0 1.314508,3.73467 1.314508,3.73467"
+         id="path18761-5-7-4-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.449836,118.67513 c 0.06025,0.44435 4.04658,1.13243 4.528587,1.2454"
+         id="path18763-9-2-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.185143,116.44069 c 0.512131,0.15815 2.582721,0.25862 3.094853,0.42431"
+         id="path18765-7-9-0-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.671394,115.11571 c 0,0 2.272343,2.47816 2.272343,2.47816"
+         id="path18767-8-6-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.85087,113.55107 c 0.135564,0.36903 2.524484,2.8586 2.524484,2.8586"
+         id="path18769-8-2-1-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.6288,112.92665 c 0.61757,0.24101 2.312288,1.0572 2.312288,1.0572"
+         id="path18771-3-2-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.595931,111.74156 c 0,0 2.976893,-0.61417 2.976893,-0.61417"
+         id="path18773-6-1-8-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.751928,111.57581 c 0.512131,-0.16569 3.280687,-2.60099 3.280687,-2.60099"
+         id="path18775-9-4-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.72754,107.7553 c 0,0 4.351165,-1.2004 4.351165,-1.2004"
+         id="path18777-6-3-4-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.727847,106.87902 c 0,0 3.562321,-2.93269 3.562321,-2.93269"
+         id="path18779-9-9-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.990865,117.45113 c 0,0 -1.433957,5.72494 -1.433957,5.72494"
+         id="path18783-9-5-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.708249,117.17539 c 0,0 -1.336319,5.34826 -1.336319,5.34826"
+         id="path18785-0-8-1-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.822644,118.32229 c 0,0 -1.37035,4.65165 -1.37035,4.65165"
+         id="path18787-4-3-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.877434,115.30817 c 0,0 -5.2014232,6.14163 -5.2014232,6.14163"
+         id="path18789-2-2-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.712982,118.47058 c 0,0 -3.206319,3.05094 -3.206319,3.05094"
+         id="path18791-2-4-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.947096,117.18109 c 0,0 -4.1673068,5.43274 -4.1673068,5.43274"
+         id="path18793-5-5-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.3398612,121.08078 c 0,0 -2.6425409,2.35828 -2.6425409,2.35828"
+         id="path18795-3-5-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.715746,116.173 c 0,0 -8.579622,0.50519 -8.579622,0.50519"
+         id="path18797-5-6-3-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.725254,117.83442 c 0,0 -6.712471,-0.14543 -6.712471,-0.14543"
+         id="path18799-2-7-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.945748,111.7008 c -0.391631,-0.0226 -9.4589168,0.54772 -9.4589168,0.54772"
+         id="path18801-1-7-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.12209,110.85161 c -0.399161,-0.18828 -8.7620138,-4.06533 -8.7620138,-4.06533"
+         id="path18803-8-8-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.568543,109.69964 c 0,0 -6.7189286,-6.36658 -6.7189286,-6.36658"
+         id="path18805-1-0-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.073607,106.16419 c 0,0 -2.441513,-6.01016 -2.546951,-6.379194"
+         id="path18819-3-8-7-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.016461,106.85211 c -0.233472,-0.37657 -2.6118658,-4.55544 -2.6118658,-4.55544"
+         id="path18821-2-2-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.373151,110.45138 c 0,0 -6.4950156,-2.729 -6.4950156,-2.729"
+         id="path18823-9-1-8-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9549305,113.98684 c 0,0 -5.9493088,1.74022 -5.9493088,1.74022"
+         id="path18825-2-3-9-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.842328,114.33392 c 0,0 -8.2802474,-0.7573 -8.2802474,-0.7573"
+         id="path18827-1-1-9-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.12954,111.02609 c -0.369037,-0.0828 -9.8669221,-1.40886 -9.8669221,-1.40886"
+         id="path18829-9-7-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.30733,108.83262 c 0,0 -6.5473752,-5.82201 -6.5473752,-5.82201"
+         id="path18831-3-5-4-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.32995,106.20238 c 0,0 -4.9805222,-6.596362 -4.9805222,-6.596362"
+         id="path18833-7-6-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.301832,109.23769 c -0.436818,-0.25606 -5.4296077,-4.41723 -5.4296077,-4.41723"
+         id="path18835-7-1-6-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.581673,111.45288 c -0.353973,-0.32385 -5.8617125,0.30113 -5.8617125,0.30113"
+         id="path18837-2-1-8-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.312541,113.6676 c 0,0 -7.2187797,2.68313 -7.2187797,2.68313"
+         id="path18839-3-1-7-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.170998,114.87113 c 0,0 -6.1441471,5.74523 -6.1441471,5.74523"
+         id="path18841-7-0-8-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.4171606,118.39336 c -0.3615047,0.0678 -5.2795907,2.83707 -5.2795907,2.83707"
+         id="path18843-1-7-5-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.6316193,115.93092 c 0,0 -6.2241628,0.83913 -6.2241628,0.83913"
+         id="path18845-4-6-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 7.9931528,111.49079 C 7.6241167,111.28744 2.38613,110.43884 2.38613,110.43884"
+         id="path18847-7-8-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.0574399,107.3641 c 0,0 -4.4179522,-3.06005 -4.4179522,-3.06005"
+         id="path18849-5-2-3-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.163647,106.0446 c 0,0 -5.3125333,-8.448878 -5.3125333,-8.448878"
+         id="path18851-7-0-6-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.716928,101.14948 c 0,0 0.558922,-3.201826 0.558922,-3.201826"
+         id="path18857-0-6-4-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.633488,101.37034 c -0.09316,-0.55448 -2.811141,-4.050219 -2.811141,-4.050219"
+         id="path18861-4-6-7-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.375093,118.65694 c -0.406692,0.007 -5.4081027,5.22126 -5.9880166,5.02545"
+         id="path18863-3-3-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.6578396,117.24811 c -0.3615048,0.26359 -5.1655389,3.23517 -5.1655389,3.23517"
+         id="path18865-7-1-5-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.5856044,118.04784 c 0,0 -7.2854351,2.78792 -7.2854351,2.78792"
+         id="path18867-7-7-9-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.8814432,113.19648 c -0.5046004,-0.0226 -8.7778742,0.129 -8.7778742,0.129"
+         id="path18869-7-3-4-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.136171,113.44898 c -0.384098,-0.0301 -6.3267959,3.51785 -6.3267959,3.51785"
+         id="path18871-3-7-4-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.035715,116.2668 c 0,0 -4.397417,3.32855 -4.397417,3.32855"
+         id="path18873-7-7-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.951146,118.15229 c 0,0 0.65178,5.49528 0.65178,5.49528"
+         id="path18875-4-9-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.882241,120.67293 c 0,0 0.194915,3.5676 0.194915,3.5676"
+         id="path18877-4-1-0-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.57966,120.38926 c 0,0 -1.779492,3.69767 -1.779492,3.69767"
+         id="path18879-0-0-0-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.206833,121.20895 c 0,0 1.325283,2.63099 1.325283,2.63099"
+         id="path18881-8-0-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.560742,121.35959 c 0,0 0.394256,2.70052 0.394256,2.70052"
+         id="path18883-6-4-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.131643,122.47402 c 0,0 0.782885,0.84219 1.234766,1.09073"
+         id="path18885-1-3-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 30.016069,119.37402 c 0.466944,0.0602 0.675038,1.94552 0.675038,1.94552"
+         id="path18887-2-5-7-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.873244,116.55862 c 0.587445,0.32265 1.901976,3.19811 1.901976,3.19811"
+         id="path18889-0-7-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.380874,115.96713 c 1.182422,0.27113 3.51099,0.33952 3.51099,0.33952"
+         id="path18891-2-1-9-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.646257,113.33186 c 0,0 1.726847,-0.9042 1.726847,-0.9042"
+         id="path18893-5-2-9-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.19715,107.40148 c 0,0 4.67914,-5.74977 4.67914,-5.74977"
+         id="path18895-7-3-0-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.102399,108.4526 c -0.04519,-0.51213 -3.637041,-4.97844 -3.637041,-4.97844"
+         id="path18903-7-4-9-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.065661,107.81146 c 0.04519,-0.3841 4.282745,-9.370061 4.282745,-9.370061"
+         id="path18907-7-1-3-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.377132,106.61266 c -0.195815,-0.42928 -5.2750311,-0.82514 -5.2750311,-0.82514"
+         id="path18913-4-1-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.7975696,109.44473 C 8.3682827,109.21879 2.2133595,107.67536 2.2133595,107.67536"
+         id="path18915-8-9-7-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.2183783,114.32292 c -0.5196631,-0.13556 -6.9002619,0.76482 -6.9002619,0.76482"
+         id="path18917-0-3-3-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.44735,113.80576 c 0,0 -5.9978754,1.03115 -5.9978754,1.03115"
+         id="path18919-6-9-1-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.194382,111.59818 c -0.361505,-0.15816 -7.8970648,-4.21733 -7.8970648,-4.21733"
+         id="path18921-7-2-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.6899858,105.58779 c 0,0 -5.5754205,-3.63102 -5.5754205,-3.63102"
+         id="path18923-4-9-8-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.74291,104.98197 c 0,0 -6.5500653,-6.394744 -6.5500653,-6.394744"
+         id="path18925-9-4-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.4180766,106.65417 C 9.0113838,106.47342 2.4211264,105.06763 2.4211264,105.06763"
+         id="path18927-6-3-5-9" />
+    </g>
+    <g
+       id="g36944"
+       clip-path="url(#clipPath5954)">
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.808282,137.90783 c 0,0 0.498823,-11.83247 0.498823,-11.83247"
+         id="path17170-6-5-3-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.502655,137.75237 c 0,0 2.821598,-5.15539 2.821598,-5.15539"
+         id="path16904-4-2-5-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.399377,137.77767 c 0,0 2.231737,-5.62664 2.231737,-5.62664"
+         id="path16906-3-0-4-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.172454,139.21673 c 0,0 -2.240277,-7.638 -2.240277,-7.638"
+         id="path16908-8-3-9-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.766485,136.17271 c 0,0 0.09048,-4.90454 0.09048,-4.90454"
+         id="path16946-6-4-7-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.347901,138.41414 c 0,0 1.394719,-4.56455 1.394719,-4.56455"
+         id="path16968-0-7-6-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.828112,135.9256 c 0,0 -0.66158,-8.71516 -0.66158,-8.71516"
+         id="path16970-2-7-4-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.504758,135.68587 c 0,0 -2.100342,-1.95612 -2.100342,-1.95612"
+         id="path16972-7-1-6-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.238609,139.67326 c 0,0 -2.685442,-3.68908 -2.685442,-3.68908"
+         id="path17076-0-6-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.139926,138.58842 c 0,0 -0.70736,-4.18751 -0.70736,-4.18751"
+         id="path17078-5-5-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.652689,138.48978 c 0,0 2.638483,-2.82394 2.638483,-2.82394"
+         id="path17080-8-5-1-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.841586,134.59588 c 0,0 -3.040616,-3.8542 -3.040616,-3.8542"
+         id="path17134-8-4-9-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.30733,135.33318 c 0,0 0.814793,-4.8813 0.814793,-4.8813"
+         id="path17136-8-6-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.16969,137.36536 c 0,0 1.925591,-5.15973 1.925591,-5.15973"
+         id="path17138-8-8-6-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.546437,135.97656 c 0,0 -1.648074,-8.02816 -1.648074,-8.02816"
+         id="path17158-1-1-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.237464,138.07583 c 0,0 -0.900881,-5.66286 -0.900881,-5.66286"
+         id="path17168-8-0-3-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.516921,138.39506 c 0,0 1.862735,-6.96758 1.862735,-6.96758"
+         id="path17172-9-1-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.631963,135.64295 c 0,0 1.36846,-4.82961 1.36846,-4.82961"
+         id="path17176-4-8-6-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.62269,133.91173 c 0,0 2.052765,-4.5797 2.052765,-4.5797"
+         id="path17178-0-9-7-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.385904,140.16387 c 0,0 0.811321,-3.02655 0.811321,-3.02655"
+         id="path17192-0-1-3-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.682714,138.91778 c 0,0 0.0467,-1.74284 0.0467,-1.74284"
+         id="path17196-3-8-0-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.407639,138.16546 c 0,0 -2.123449,-10.22785 -2.123449,-10.22785"
+         id="path17198-0-1-7-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.226065,134.66244 c 0,0 -1.840086,-2.6652 -1.840086,-2.6652"
+         id="path17226-7-0-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.556314,134.92176 c 0,0 -0.642633,-7.94002 -0.642633,-7.94002"
+         id="path17228-4-9-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.305193,136.49534 c 0,0 0.380705,-7.10965 0.380705,-7.10965"
+         id="path17234-6-7-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.064672,133.68358 c -0.0075,-0.80188 -0.393511,-7.53493 -0.393511,-7.53493"
+         id="path17236-9-3-6-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.054235,132.13299 c 0,0 3.422029,-3.33319 3.422029,-3.33319"
+         id="path17240-6-9-2-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.310536,135.33831 c 0,0 -1.022807,-4.86049 -1.022807,-4.86049"
+         id="path17256-9-1-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.832695,139.62668 c 0,0 -0.01859,-5.5879 -0.01859,-5.5879"
+         id="path17258-4-2-9-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.188316,138.59362 c 0,0 -3.909029,-2.4787 -3.909029,-2.4787"
+         id="path17260-7-6-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.893838,136.83308 c 0,0 2.485798,-5.37892 2.485798,-5.37892"
+         id="path18781-7-4-2-2-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.679681,134.61975 c 0,0 -6.969206,-6.87597 -6.969206,-6.87597"
+         id="path16948-5-6-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.56714,140.92614 c 0,0 -4.047865,-8.96165 -4.047865,-8.96165"
+         id="path18807-4-8-6-1-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.035243,139.51856 c 0,0 -2.580648,-7.2735 -2.580648,-7.2735"
+         id="path18809-4-6-5-9-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.994083,138.4958 c 0,0 0.784459,-10.28888 0.784459,-10.28888"
+         id="path18811-9-8-0-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.959052,139.09932 c 0,0 6.232411,-10.01782 6.232411,-10.01782"
+         id="path18813-5-6-5-8-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.487884,132.15303 c 0,0 1.147854,-1.25999 1.193042,-1.5989"
+         id="path18815-0-2-4-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.450248,135.54057 c 0,0 -1.114224,-6.25315 -1.114224,-6.25315"
+         id="path18817-1-2-3-7-3" />
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.658523,134.92038 c 0,0 -3.441564,-7.42493 -3.441564,-7.42493"
+         id="path18853-2-4-1-6-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.11059,133.82383 c 0,0 -2.091727,-5.89853 -2.167041,-6.30523"
+         id="path18855-2-9-9-5-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.414306,131.49003 c 0,0 0.953341,-3.46101 0.953341,-3.46101"
+         id="path18859-7-1-8-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.702887,136.53774 c 0.05272,-0.39916 2.893216,-5.91627 2.893216,-6.2853"
+         id="path18897-0-4-7-7-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.152249,136.795 c 0,0 -2.241844,-5.50012 -2.241844,-5.50012"
+         id="path18899-9-3-7-4-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.670468,139.71287 c 0,0 -0.710703,-7.68159 -0.710703,-7.68159"
+         id="path18901-0-4-6-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.219023,137.59742 c 0,0 -0.489451,-9.97979 -0.489451,-9.97979"
+         id="path18905-0-2-8-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.554234,133.68112 c -0.02259,-0.53222 -1.318785,-6.73927 -1.318785,-6.73927"
+         id="path18909-6-2-7-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.178396,130.66155 c 0,0 0.360844,-3.88088 0.360844,-3.88088"
+         id="path18911-5-4-3-9-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.535426,146.65033 c 0,0 -1.392196,1.55482 -1.392196,1.55482"
+         id="path16888-8-2-2-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.821114,147.3388 c 0,0 1.041229,0.75276 1.041229,0.75276"
+         id="path16890-6-5-9-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.027555,147.01297 c 0,0 0.673169,-0.12172 0.673169,-0.12172"
+         id="path16892-9-4-6-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.239511,144.87029 c 0,0 1.00018,0.56262 1.00018,0.56262"
+         id="path16894-9-3-8-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.356475,143.51236 c 0,0 2.500574,2.03395 2.500574,2.03395"
+         id="path16896-1-5-1-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.786138,142.12481 c 0,0 4.816124,-1.18202 4.816124,-1.18202"
+         id="path16898-6-7-5-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.977382,140.78807 c 0,0 5.177482,-3.52678 5.177482,-3.52678"
+         id="path16900-6-5-2-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.980486,138.18181 c 0,0 4.509128,-3.95922 4.509128,-3.95922"
+         id="path16902-3-6-9-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.666989,138.63115 c 0,0 -2.988185,-6.16505 -2.988185,-6.16505"
+         id="path16910-6-5-9-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.350635,141.33464 c 0,0 -5.3546126,-6.13262 -5.3546126,-6.13262"
+         id="path16912-9-9-0-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.666104,143.32418 c 0,0 -5.9077967,-5.80374 -5.9077967,-5.80374"
+         id="path16914-9-5-4-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.055481,143.96649 c 0,0 -8.2267498,-3.33389 -8.2267498,-3.33389"
+         id="path16916-5-8-7-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.568819,145.13625 c 0,0 -8.6721404,2.35889 -8.6721404,2.35889"
+         id="path16918-3-3-9-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.967097,144.24885 c 0,0 -7.4319606,-4.33811 -7.4319606,-4.33811"
+         id="path16920-4-3-9-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.464236,145.14682 c 0,0 -7.9050291,6.29211 -7.9050291,6.29211"
+         id="path16922-3-1-2-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.7002517,149.02994 c 0,0 -5.5197951,1.71005 -5.5197951,1.71005"
+         id="path16924-7-9-4-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.921496,147.08848 c 0,0 -3.752224,5.58788 -3.752224,5.58788"
+         id="path16926-5-9-0-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.852266,150.97946 c 0,0 -1.063715,4.5813 -1.063715,4.5813"
+         id="path16928-2-6-1-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.066054,149.66372 c 0,0 1.258256,5.48993 1.258256,5.48993"
+         id="path16930-1-1-9-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.947427,151.28837 c 0,0 2.807692,3.75862 2.807692,3.75862"
+         id="path16932-5-7-1-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.387709,152.07383 c 0,0 1.79663,3.52293 1.79663,3.52293"
+         id="path16934-7-1-0-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.791917,150.36153 c 0,0 2.867262,1.72871 2.867262,1.72871"
+         id="path16936-8-4-9-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.648278,146.61744 c 0,0 3.040926,2.66759 3.040926,2.66759"
+         id="path16938-8-0-7-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.224534,146.21786 c 0,0 3.254364,-0.86812 3.254364,-0.86812"
+         id="path16940-5-2-5-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.768117,144.34461 c 0,0 2.624663,-2.3693 2.624663,-2.3693"
+         id="path16942-6-5-4-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.577158,141.55128 c 0,0 2.773243,-3.21687 2.773243,-3.21687"
+         id="path16944-9-8-7-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.893797,138.26405 c 0,0 -4.5415602,-4.25897 -4.5415602,-4.25897"
+         id="path16950-7-0-9-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.7485699,145.68911 c 0,0 -4.8338173,0.35667 -4.8338173,0.35667"
+         id="path16952-4-1-0-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.4883529,151.39293 c 0,0 -3.7270423,2.92441 -3.7270423,2.92441"
+         id="path16954-6-6-5-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.612261,151.0818 c 0,0 -1.678169,2.23275 -1.678169,2.23275"
+         id="path16956-9-9-2-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.783467,145.26504 c 0,0 -8.1568465,0.75092 -8.1568465,0.75092"
+         id="path16958-8-7-9-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.330135,147.94868 c 0,0 -4.6550402,3.91361 -4.6550402,3.91361"
+         id="path16960-4-0-9-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.476216,149.1619 c 0,0 -4.6210793,4.40916 -4.6210793,4.40916"
+         id="path16962-7-5-3-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.639112,140.10962 c 0,0 -3.713182,-5.4493 -3.713182,-5.4493"
+         id="path16964-1-1-7-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.246869,140.34347 c 0,0 -3.780547,-4.49178 -3.780547,-4.49178"
+         id="path16966-8-3-7-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.432137,138.22533 c 0,0 1.982352,-2.33182 1.982352,-2.33182"
+         id="path16974-1-2-4-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.340448,145.22224 c 0,0 3.27275,2.82834 3.27275,2.82834"
+         id="path16976-3-9-4-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.480642,148.34302 c 0,0 1.573722,3.15109 1.573722,3.15109"
+         id="path16978-4-9-1-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.29116,151.54039 c 0,0 1.301445,3.47134 1.301445,3.47134"
+         id="path16980-4-9-6-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.481348,153.17318 c 0,0 -0.621347,2.47866 -0.621347,2.47866"
+         id="path16982-7-6-4-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.709012,151.56781 c 0,0 0.524802,3.31373 0.524802,3.31373"
+         id="path16984-7-0-1-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.846596,152.72159 c 0,0 -1.267543,0.38262 -1.267543,0.38262"
+         id="path16986-4-6-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.518732,148.30456 c 0,0 -1.295109,5.83188 -1.295109,5.83188"
+         id="path17062-4-4-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.467643,147.7324 c 0,0 -3.856941,1.35573 -3.856941,1.35573"
+         id="path17064-9-3-3-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.323058,149.11442 c 0,0 -2.80268,3.71258 -2.80268,3.71258"
+         id="path17066-5-0-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.654991,150.39264 c 0,0 -2.55577,1.69978 -2.55577,1.69978"
+         id="path17068-7-5-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.030347,148.16748 c 0,0 -3.6875678,2.42545 -3.6875678,2.42545"
+         id="path17070-3-4-7-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.69627,146.09224 c 0,0 -8.0655943,-1.59941 -8.0655943,-1.59941"
+         id="path17072-3-1-4-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.069716,142.415 c 0,0 -2.7281157,-4.16101 -2.7281157,-4.16101"
+         id="path17074-0-4-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.826382,140.40986 c 0,0 4.005417,-0.78246 4.005417,-0.78246"
+         id="path17082-1-5-6-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.767968,142.55197 c 0,0 2.4794,-0.19089 2.4794,-0.19089"
+         id="path17084-7-8-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.271295,144.44678 c 0,0 2.784404,0.62512 2.784404,0.62512"
+         id="path17086-2-5-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.194964,145.70883 c 0,0 2.122122,2.25421 2.122122,2.25421"
+         id="path17088-0-1-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.340919,145.27597 c 0,0 1.302318,1.52517 1.302318,1.52517"
+         id="path17090-4-9-4-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.598301,145.05124 c 0,0 -0.667697,2.33289 -0.667697,2.33289"
+         id="path17092-1-9-3-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.584843,145.90558 c 0,0 -0.777576,1.57495 -0.777576,1.57495"
+         id="path17094-3-6-2-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.344078,147.08506 c 0,0 -0.546329,1.75198 -0.546329,1.75198"
+         id="path17096-0-7-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.020538,150.53359 c 0,0 1.091205,4.54715 1.091205,4.54715"
+         id="path17098-3-9-5-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.530039,150.00676 c 0,0 0.464301,4.42583 0.464301,4.42583"
+         id="path17100-0-0-2-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.91188,149.63516 c 0,0 2.507035,1.91548 2.507035,1.91548"
+         id="path17102-4-5-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.694038,148.57849 c 0,0 3.591664,1.37192 3.591664,1.37192"
+         id="path17104-0-9-7-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.050524,150.20521 c 0,0 1.586375,3.9031 1.586375,3.9031"
+         id="path17106-1-7-1-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.650272,152.13816 c 0,0 0.293454,2.85296 0.293454,2.85296"
+         id="path17108-0-6-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.196733,148.98703 c 0,0 0.365056,4.30704 0.365056,4.30704"
+         id="path17110-7-6-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.045676,150.16028 c 0,0 -0.505141,5.43596 -0.505141,5.43596"
+         id="path17112-7-8-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.643612,148.80277 c 0,0 -2.007502,1.70985 -2.007502,1.70985"
+         id="path17114-7-1-5-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.359825,147.80924 c 0,0 -6.2538367,3.62319 -6.2538367,3.62319"
+         id="path17116-0-8-7-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.1367066,147.62411 c 0,0 -3.0573009,4.01881 -3.0573009,4.01881"
+         id="path17118-4-9-6-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.8210964,146.63023 c 0,0 -5.8895342,2.66213 -5.8895342,2.66213"
+         id="path17120-4-2-9-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 5.7063898,144.70545 c 0,0 -4.5062245,0.33876 -4.5062245,0.33876"
+         id="path17122-8-9-5-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.495737,143.81477 c 0,0 -5.6368646,-2.31603 -5.6368646,-2.31603"
+         id="path17124-0-5-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9826899,141.21431 c 0,0 -5.0382486,-2.19575 -5.0382486,-2.19575"
+         id="path17126-3-4-0-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.811578,139.77805 c 0,0 -6.3029626,-3.06904 -6.3029626,-3.06904"
+         id="path17128-5-6-5-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.713709,138.03988 c 0,0 -1.608748,-2.71445 -1.608748,-2.71445"
+         id="path17130-8-2-6-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.581628,135.03042 c 0,0 -3.8318351,-3.46895 -3.8318351,-3.46895"
+         id="path17132-6-7-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.083922,139.38189 c 0,0 2.540917,-2.95166 2.540917,-2.95166"
+         id="path17140-3-6-7-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.612308,138.69502 c 0,0 1.358461,-0.12699 1.358461,-0.12699"
+         id="path17142-8-7-3-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.700417,142.63169 c 0,0 4.749866,-0.99861 4.749866,-0.99861"
+         id="path17144-9-1-2-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.549257,145.05063 c 0,0 2.669248,1.65783 2.669248,1.65783"
+         id="path17146-2-7-1-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.418073,148.01033 c 0,0 2.19745,2.19122 2.19745,2.19122"
+         id="path17148-3-1-2-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.189792,149.76177 c 0,0 2.783814,2.50312 2.783814,2.50312"
+         id="path17150-9-8-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.828819,143.55393 c 0,0 -9.3915105,-1.68471 -9.3915105,-1.68471"
+         id="path17152-9-6-8-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.413484,139.87359 c 0,0 -7.0575623,-3.67541 -7.0575623,-3.67541"
+         id="path17154-4-8-2-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.911886,141.42977 c 0,0 -5.7917708,-1.67989 -5.7917708,-1.67989"
+         id="path17156-4-0-6-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.008217,137.76252 c 0,0 -10.0456728,-8.0778 -10.0456728,-8.0778"
+         id="path17160-0-7-2-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.3572931,142.98155 c 0,0 -3.624027,0.0585 -3.624027,0.0585"
+         id="path17162-5-8-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.4961349,147.39648 c 0,0 -4.7813772,2.22883 -4.7813772,2.22883"
+         id="path17164-6-6-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.098924,149.77629 c -0.361505,0.0602 -6.3607117,1.62805 -6.3607117,1.62805"
+         id="path17166-2-6-4-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.763404,138.45867 c 0,0 5.288417,-4.93012 5.288417,-4.93012"
+         id="path17174-5-9-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.552627,139.78176 c 0.39163,-0.20335 2.682674,-2.65329 2.682674,-2.65329"
+         id="path17180-1-6-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.230568,141.91302 c 0.421755,-0.11297 2.857434,-1.38004 2.857434,-1.38004"
+         id="path17182-8-1-2-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.092057,144.04222 c 0.466943,0.007 2.866025,1.23258 2.866025,1.23258"
+         id="path17184-8-8-2-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.488888,145.87315 c 0,0 -0.471149,0.62125 -0.471149,0.62125"
+         id="path17186-2-5-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.030511,141.32017 c 0,0 4.193456,-0.78528 4.539898,-0.93591"
+         id="path17188-4-9-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.555209,139.56638 c 0,0 3.141565,0.24075 3.141565,0.24075"
+         id="path17190-5-6-5-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.424581,140.05494 c 0,0 1.104549,-2.47201 1.104549,-2.47201"
+         id="path17194-2-6-5-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.437015,142.51607 c 0,0 -2.181152,-3.46872 -2.181152,-3.46872"
+         id="path17200-1-1-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.861279,143.03241 c 0,0 -5.107765,-0.30049 -5.107765,-0.30049"
+         id="path17202-8-7-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.399039,144.7534 c 0,0 -2.6737,0.46272 -2.6737,0.46272"
+         id="path17204-1-5-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.662982,146.70012 c 0,0 -2.031859,0.57512 -2.031859,0.57512"
+         id="path17206-0-5-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.388785,147.02699 c 0,0 -2.900605,1.3547 -2.900605,1.3547"
+         id="path17208-1-6-0-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.459767,148.60673 c 0,0 -3.141649,4.02843 -3.141649,4.02843"
+         id="path17210-6-3-6-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.904761,149.76724 c 0,0 -3.294379,4.35099 -3.294379,4.35099"
+         id="path17212-2-0-9-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.742079,147.89595 c 0,0 -4.66498,2.51379 -4.66498,2.51379"
+         id="path17214-0-2-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.036575,145.95815 c 0,0 -3.9661859,1.94469 -3.9661859,1.94469"
+         id="path17216-2-5-2-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.312389,144.60431 c 0,0 -5.0622969,-0.85564 -5.0622969,-0.85564"
+         id="path17218-6-9-5-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.6907761,148.18992 c 0,0 -5.1676147,-2.14712 -5.1676147,-2.14712"
+         id="path17220-1-8-5-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.8438879,137.324 c 0,0 -1.3817901,-1.77499 -1.3817901,-1.77499"
+         id="path17222-2-2-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.572153,135.30896 c 0,0 -2.4183107,-3.67775 -2.4183107,-3.67775"
+         id="path17224-3-3-7-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.370972,142.22511 c 0,0 -4.6171054,0.22033 -4.6171054,0.22033"
+         id="path17230-2-8-8-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.187728,138.63581 c 0,0 -5.7790116,-3.41795 -5.7790116,-3.41795"
+         id="path17232-6-6-0-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.980213,134.5445 c 0,0 1.83155,-2.63318 1.83155,-2.63318"
+         id="path17238-2-1-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.32553,133.0661 c -0.384099,-0.20335 -3.4487823,-3.69899 -3.4487823,-3.69899"
+         id="path17242-1-6-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.8857154,136.2285 c 0,0 -4.2690083,-1.91572 -4.2690083,-1.91572"
+         id="path17244-2-6-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 5.5889813,143.95821 c 0,0 -2.2561614,-0.72266 -2.2561614,-0.72266"
+         id="path17246-6-1-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.0629939,150.46197 c 0,0 -3.3478815,1.78262 -3.7621057,2.02362"
+         id="path17248-5-3-0-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.8079195,153.46862 c 0,0 -0.8444335,1.93337 -0.8444335,1.93337"
+         id="path17250-6-4-0-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.139326,150.7152 c 0,0 3.280988,3.3344 3.280988,3.3344"
+         id="path17252-1-0-5-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.31217,140.0935 c 0.39163,-0.43682 2.909556,-4.81433 2.909556,-4.81433"
+         id="path17254-7-9-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.29855,140.11875 c 0,0 -7.1653684,-1.5885 -7.1653684,-1.5885"
+         id="path17264-0-6-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.406986,137.82601 c 0,0 3.1309,-5.27615 3.1309,-5.27615"
+         id="path18729-2-3-8-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.936447,139.98136 c 0,0 6.127959,-2.75885 6.127959,-2.75885"
+         id="path18731-1-0-2-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.319799,140.71631 c 0,0 6.547914,-1.01246 6.547914,-1.01246"
+         id="path18733-0-1-6-6-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.079642,142.0899 c 0,0 4.536638,-0.34273 4.536638,-0.34273"
+         id="path18735-0-2-4-3-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.23404,143.51742 c 0,0 2.366885,1.08021 2.366885,1.08021"
+         id="path18737-4-0-2-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.836962,143.96654 c 0,0 1.030873,2.10914 1.030873,2.10914"
+         id="path18739-6-9-3-1-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.042571,145.82702 c 0,0 1.11722,0.99573 1.11722,0.99573"
+         id="path18741-3-9-0-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.187791,146.131 c 0,0 0.211611,1.2412 0.211611,1.2412"
+         id="path18743-9-3-5-1-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.874504,145.88108 c 0,0 0.599738,0.30142 0.599738,0.30142"
+         id="path18745-1-1-0-8-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.443773,146.02918 c 0,0 0.157703,1.88168 0.157703,1.88168"
+         id="path18747-4-8-7-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.996324,146.89515 c 0,0 -0.905752,1.48544 -0.905752,1.48544"
+         id="path18749-6-6-2-0-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.732356,147.32835 c 0,0 -0.34569,8.40507 -0.34569,8.40507"
+         id="path18751-8-7-8-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.060953,149.13306 c 0,0 -0.499124,5.05634 -0.499124,5.05634"
+         id="path18753-4-3-0-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.208105,150.94476 c 0,0 -0.02625,3.81138 -0.02625,3.81138"
+         id="path18755-2-4-2-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.671427,151.60775 c 0,0 -0.538455,2.49946 -0.538455,2.49946"
+         id="path18757-8-0-3-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.633265,150.38319 c 0,0 3.110587,3.38655 3.110587,3.38655"
+         id="path18759-2-0-5-4-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.728428,148.92184 c 0,0 2.066653,3.62494 2.066653,3.62494"
+         id="path18761-5-7-4-7-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.527221,149.90268 c 0.06025,0.44435 3.740306,1.32961 4.222313,1.44258"
+         id="path18763-9-2-3-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.736799,147.59663 c 0.512131,0.15815 2.531298,0.0526 3.04343,0.21826"
+         id="path18765-7-9-0-0-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.574128,146.54077 c 0,0 2.612934,1.55091 2.612934,1.55091"
+         id="path18767-8-6-7-4-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.829989,143.98612 c 0.135564,0.36903 2.253771,2.95199 2.253771,2.95199"
+         id="path18769-8-2-1-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.122336,143.78112 c 0.61757,0.24101 1.846031,0.63808 1.846031,0.63808"
+         id="path18771-3-2-8-0-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.045304,142.45693 c 0,0 2.334993,0.0665 2.334993,0.0665"
+         id="path18773-6-1-8-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.337333,142.23094 c 0.512131,-0.16569 3.253287,-2.55526 3.253287,-2.55526"
+         id="path18775-9-4-7-0-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.22309,138.75647 c 0,0 3.764298,-0.77537 3.764298,-0.77537"
+         id="path18777-6-3-4-4-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.228359,137.83626 c 0,0 4.509857,-2.73339 4.509857,-2.73339"
+         id="path18779-9-9-2-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.854403,148.86676 c 0,0 -0.859696,5.48544 -0.859696,5.48544"
+         id="path18783-9-5-2-0-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.689531,148.60965 c 0,0 -1.68807,4.51282 -1.68807,4.51282"
+         id="path18785-0-8-1-5-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.230591,148.9678 c 0,0 -1.795035,5.44047 -1.795035,5.44047"
+         id="path18787-4-3-2-5-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.362125,146.36556 c 0,0 -5.3745067,6.40988 -5.3745067,6.40988"
+         id="path18789-2-2-1-7-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.043031,149.0296 c 0,0 -3.148479,3.74203 -3.148479,3.74203"
+         id="path18791-2-4-7-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.778243,147.64507 c 0,0 -4.0203597,6.40289 -4.0203597,6.40289"
+         id="path18793-5-5-2-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.7866633,152.23982 c 0,0 -2.7628045,1.7552 -2.7628045,1.7552"
+         id="path18795-3-5-6-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.515619,147.56581 c 0,0 -8.2088261,0.51696 -8.2088261,0.51696"
+         id="path18797-5-6-3-6-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.64701,148.27519 c 0,0 -7.0944557,0.15299 -7.0944557,0.15299"
+         id="path18799-2-7-6-9-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.441978,142.57412 C 14.050347,142.55152 4.9472926,143.378 4.9472926,143.378"
+         id="path18801-1-7-0-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.986698,141.3049 c -0.399161,-0.18828 -8.14279,-3.45789 -8.14279,-3.45789"
+         id="path18803-8-8-8-0-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.350732,141.08431 c 0,0 -6.121758,-7.14235 -6.121758,-7.14235"
+         id="path18805-1-0-8-0-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.479631,136.807 c 0,0 -2.731616,-6.20474 -2.837054,-6.57377"
+         id="path18819-3-8-7-5-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.51404,137.73758 c -0.233472,-0.37657 -2.614637,-4.57817 -2.614637,-4.57817"
+         id="path18821-2-2-0-8-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.734774,141.73128 c 0,0 -6.3780394,-2.92957 -6.3780394,-2.92957"
+         id="path18823-9-1-8-5-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.4413741,145.03709 c 0,0 -6.9044634,1.79868 -6.9044634,1.79868"
+         id="path18825-2-3-9-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.316272,145.42783 c 0,0 -8.6393087,-1.40322 -8.6393087,-1.40322"
+         id="path18827-1-1-9-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.576809,142.1842 c -0.369037,-0.0828 -9.9059365,-1.34369 -9.9059365,-1.34369"
+         id="path18829-9-7-8-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.929012,139.44031 c 0,0 -6.5297372,-5.14881 -6.5297372,-5.14881"
+         id="path18831-3-5-4-9-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.823978,137.21403 c 0,0 -5.5677592,-6.18216 -5.5677592,-6.18216"
+         id="path18833-7-6-2-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.70737,140.46477 c -0.436818,-0.25606 -5.7703066,-5.20548 -5.7703066,-5.20548"
+         id="path18835-7-1-6-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.13978,142.15354 c -0.353973,-0.32385 -4.9239285,0.59905 -4.9239285,0.59905"
+         id="path18837-2-1-8-8-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.368001,144.1053 c 0,0 -7.6928199,3.45352 -7.6928199,3.45352"
+         id="path18839-3-1-7-8-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.61654,146.03266 c 0,0 -6.1581001,5.26586 -6.1581001,5.26586"
+         id="path18841-7-0-8-4-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.9023599,149.20722 c -0.3615047,0.0678 -6.2607093,3.02157 -6.2607093,3.02157"
+         id="path18843-1-7-5-3-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.1134794,146.73207 c 0,0 -7.0585018,0.61797 -7.0585018,0.61797"
+         id="path18845-4-6-9-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.4031382,142.1392 C 8.0341021,141.93585 1.8896766,141.4329 1.8896766,141.4329"
+         id="path18847-7-8-8-6-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.4987876,138.06374 c 0,0 -4.6245662,-2.38361 -4.6245662,-2.38361"
+         id="path18849-5-2-3-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.975144,137.44232 c 0,0 -5.0379891,-8.41945 -5.0379891,-8.41945"
+         id="path18851-7-0-6-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.493286,131.63689 c 0,0 1.280292,-2.80223 1.280292,-2.80223"
+         id="path18857-0-6-4-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.990484,132.65503 c -0.09316,-0.55448 -3.553146,-4.71931 -3.553146,-4.71931"
+         id="path18861-4-6-7-8-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.669936,149.18773 c -0.406692,0.007 -5.7487936,6.12297 -6.3287075,5.92716"
+         id="path18863-3-3-1-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.4823862,148.65093 c -0.3615048,0.26359 -5.305489,2.37899 -5.305489,2.37899"
+         id="path18865-7-1-5-6-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.2836052,148.58396 c 0,0 -6.4890892,3.11143 -6.4890892,3.11143"
+         id="path18867-7-7-9-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9570437,143.75916 c -0.5046004,-0.0226 -8.86765634,0.23585 -8.86765634,0.23585"
+         id="path18869-7-3-4-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.998425,144.86424 c -0.384098,-0.0301 -5.7326743,3.24146 -5.7326743,3.24146"
+         id="path18871-3-7-4-8-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.546351,147.30399 c 0,0 -4.049345,3.70559 -4.049345,3.70559"
+         id="path18873-7-7-2-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.995625,149.58492 c 0,0 1.1069,5.01728 1.1069,5.01728"
+         id="path18875-4-9-0-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.387235,151.76641 c 0,0 1.162646,3.65999 1.162646,3.65999"
+         id="path18877-4-1-0-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.498093,151.93501 c 0,0 -2.18779,3.30453 -2.18779,3.30453"
+         id="path18879-0-0-0-0-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.709647,152.19653 c 0,0 2.276233,2.78802 2.276233,2.78802"
+         id="path18881-8-0-0-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.924636,152.84332 c 0,0 0.232989,1.90052 0.232989,1.90052"
+         id="path18883-6-4-8-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.578626,153.18456 c 0,0 -0.0515,0.75016 0.400377,0.9987"
+         id="path18885-1-3-1-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.946514,149.81349 c 0.466944,0.0602 1.04604,2.04175 1.04604,2.04175"
+         id="path18887-2-5-7-6-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.376331,147.43776 c 0.587445,0.32265 1.96909,3.50906 1.96909,3.50906"
+         id="path18889-0-7-1-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.868861,147.01069 c 1.182422,0.27113 3.073296,0.72803 3.073296,0.72803"
+         id="path18891-2-1-9-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 30.092398,144.04073 c 0,0 1.469433,-1.14147 1.469433,-1.14147"
+         id="path18893-5-2-9-6-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.877915,137.95127 c 0,0 4.498377,-5.36345 4.498377,-5.36345"
+         id="path18895-7-3-0-7-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.427109,139.007 c -0.04519,-0.51213 -3.842037,-5.08369 -3.842037,-5.08369"
+         id="path18903-7-4-9-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.597429,138.92145 c 0.04519,-0.3841 4.363848,-9.86187 4.363848,-9.86187"
+         id="path18907-7-1-3-5-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.862126,137.66885 c -0.195815,-0.42928 -5.2656359,-0.87203 -5.2656359,-0.87203"
+         id="path18913-4-1-4-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.5092314,139.97085 C 8.0799445,139.74491 1.7558354,138.4083 1.7558354,138.4083"
+         id="path18915-8-9-7-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.9278122,144.85063 c -0.5196631,-0.13556 -6.1359129,1.01194 -6.1359129,1.01194"
+         id="path18917-0-3-3-6-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.072652,145.07143 c 0,0 -6.0828448,0.89683 -6.0828448,0.89683"
+         id="path18919-6-9-1-4-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.691579,142.47992 c -0.361505,-0.15816 -8.7097207,-3.77654 -8.7097207,-3.77654"
+         id="path18921-7-2-7-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.9942447,136.12563 c 0,0 -5.3817768,-3.1885 -5.3817768,-3.1885"
+         id="path18923-4-9-8-9-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.223818,135.77973 c 0,0 -7.5297996,-6.22365 -7.5297996,-6.22365"
+         id="path18925-9-4-2-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.8542188,137.83328 C 9.447526,137.65253 2.4994269,135.50841 2.4994269,135.50841"
+         id="path18927-6-3-5-9-9" />
+    </g>
+    <g
+       id="g37450"
+       clip-path="url(#clipPath5958)">
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.754143,169.44389 c 0,0 0.474407,-11.8292 0.474407,-11.8292"
+         id="path17170-6-5-3-5-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.875121,170.11907 c 0,0 2.195727,-5.05793 2.195727,-5.05793"
+         id="path16904-4-2-5-1-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.916427,169.68133 c 0,0 2.215212,-5.47427 2.215212,-5.47427"
+         id="path16906-3-0-4-4-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.776556,171.55525 c 0,0 -1.377066,-8.12122 -1.377066,-8.12122"
+         id="path16908-8-3-9-8-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.019773,167.77473 c 0,0 -0.181561,-4.97309 -0.181561,-4.97309"
+         id="path16946-6-4-7-1-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.96465,170.12615 c 0,0 1.978277,-4.70155 1.978277,-4.70155"
+         id="path16968-0-7-6-3-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.849857,167.4592 c 0,0 -0.647947,-8.71439 -0.647947,-8.71439"
+         id="path16970-2-7-4-7-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.827804,167.33736 c 0,0 -2.104544,-1.95964 -2.104544,-1.95964"
+         id="path16972-7-1-6-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.320584,172.19961 c 0,0 -3.049923,-3.76976 -3.049923,-3.76976"
+         id="path17076-0-6-6-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.986304,170.14573 c 0,0 -0.939628,-3.39375 -0.939628,-3.39375"
+         id="path17078-5-5-6-2-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.031376,170.84939 c 0,0 2.29366,-2.65158 2.29366,-2.65158"
+         id="path17080-8-5-1-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.341412,166.64221 c 0,0 -3.356973,-4.33252 -3.356973,-4.33252"
+         id="path17134-8-4-9-0-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.033238,166.94812 c 0,0 0.657807,-4.71644 0.657807,-4.71644"
+         id="path17136-8-6-8-4-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.594299,169.6625 c 0,0 1.085379,-5.14576 1.085379,-5.14576"
+         id="path17138-8-8-6-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.03033,168.13557 c 0,0 -2.560948,-8.41091 -2.560948,-8.41091"
+         id="path17158-1-1-8-5-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.756511,170.24564 c 0,0 -0.782598,-6.14374 -0.782598,-6.14374"
+         id="path17168-8-0-3-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.215937,170.02892 c 0,0 1.689405,-6.72652 1.689405,-6.72652"
+         id="path17172-9-1-6-6-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.16389,167.50028 c 0,0 1.816382,-5.1534 1.816382,-5.1534"
+         id="path17176-4-8-6-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.504721,165.45898 c 0,0 2.140119,-4.59288 2.140119,-4.59288"
+         id="path17178-0-9-7-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.042333,171.83374 c 0,0 1.531637,-2.33456 1.531637,-2.33456"
+         id="path17192-0-1-3-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.138051,171.15746 c 0,0 -0.450468,-1.45115 -0.450468,-1.45115"
+         id="path17196-3-8-0-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.020509,169.88215 c 0,0 -1.267871,-10.08622 -1.267871,-10.08622"
+         id="path17198-0-1-7-3-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.02914,167.15515 c 0,0 -1.344047,-2.72412 -1.344047,-2.72412"
+         id="path17226-7-0-4-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.485654,166.4599 c 0,0 -0.687684,-7.93147 -0.687684,-7.93147"
+         id="path17228-4-9-8-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.610856,168.13277 c 0,0 0.01427,-6.21767 0.01427,-6.21767"
+         id="path17234-6-7-2-9-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.557782,165.63398 c -0.0075,-0.80188 -0.787388,-7.94225 -0.787388,-7.94225"
+         id="path17236-9-3-6-5-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.968143,163.67358 c 0,0 3.822055,-2.4515 3.822055,-2.4515"
+         id="path17240-6-9-2-8-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.201953,166.88337 c 0,0 -1.123696,-3.91842 -1.123696,-3.91842"
+         id="path17256-9-1-8-3-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.782793,171.1623 c 0,0 -0.468384,-5.07296 -0.468384,-5.07296"
+         id="path17258-4-2-9-8-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.950232,170.18706 c 0,0 -3.404109,-2.46187 -3.404109,-2.46187"
+         id="path17260-7-6-5-0-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.39941,168.94064 c 0,0 2.73157,-5.88715 2.73157,-5.88715"
+         id="path18781-7-4-2-2-4-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.179875,166.63894 c 0,0 -5.985087,-6.73778 -5.985087,-6.73778"
+         id="path16948-5-6-2-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.891685,172.57891 c 0,0 -3.991572,-8.25732 -3.991572,-8.25732"
+         id="path18807-4-8-6-1-4-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.046759,171.05182 c 0,0 -2.678997,-7.26604 -2.678997,-7.26604"
+         id="path18809-4-6-5-9-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.092487,171.01915 c 0,0 0.587596,-11.26932 0.587596,-11.26932"
+         id="path18811-9-8-0-3-4-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.159646,170.67445 c 0,0 6.003254,-10.05901 6.003254,-10.05901"
+         id="path18813-5-6-5-8-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.985454,164.23538 c 0,0 0.841406,-1.77124 0.886594,-2.11015"
+         id="path18815-0-2-4-7-4-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.490035,168.0721 c 0,0 -0.65593,-6.70779 -0.65593,-6.70779"
+         id="path18817-1-2-3-7-3-3" />
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.143263,166.83092 c 0,0 -3.580382,-6.94133 -3.580382,-6.94133"
+         id="path18853-2-4-1-6-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.720358,166.16955 c 0,0 -1.540538,-6.68451 -1.615852,-7.09121"
+         id="path18855-2-9-9-5-4-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.723757,163.91588 c 0,0 0.889261,-4.28939 0.889261,-4.28939"
+         id="path18859-7-1-8-5-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.941872,169.01006 c 0.05272,-0.39916 2.580702,-6.85002 2.580702,-7.21905"
+         id="path18897-0-4-7-7-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.924257,168.38313 c 0,0 -1.582315,-4.80259 -1.582315,-4.80259"
+         id="path18899-9-3-7-4-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.069143,172.04775 c 0,0 -1.579741,-7.81376 -1.579741,-7.81376"
+         id="path18901-0-4-6-3-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.148748,169.1355 c 0,0 -0.03758,-9.16166 -0.03758,-9.16166"
+         id="path18905-0-2-8-6-9-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.106995,165.9378 c -0.02259,-0.53222 -0.862621,-7.46275 -0.862621,-7.46275"
+         id="path18909-6-2-7-3-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.062869,163.18115 c 0,0 0.156577,-3.983 0.156577,-3.983"
+         id="path18911-5-4-3-9-1-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.502818,178.18451 c 0,0 -1.414031,2.55079 -1.414031,2.55079"
+         id="path16888-8-2-2-5-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.319486,179.41223 c 0,0 0.908392,1.0536 0.908392,1.0536"
+         id="path16890-6-5-9-6-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.297518,178.62523 c 0,0 0.01314,-0.0137 0.01314,-0.0137"
+         id="path16892-9-4-6-7-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.67539,176.65844 c 0,0 0.60221,0.30904 0.60221,0.30904"
+         id="path16894-9-3-8-0-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.198102,175.07122 c 0,0 2.200092,2.70683 2.200092,2.70683"
+         id="path16896-1-5-1-2-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.098766,173.76772 c 0,0 5.003412,-0.80098 5.003412,-0.80098"
+         id="path16898-6-7-5-3-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.473143,172.88616 c 0,0 4.57642,-4.08053 4.57642,-4.08053"
+         id="path16900-6-5-2-4-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.133791,170.69086 c 0,0 4.032738,-4.81675 4.032738,-4.81675"
+         id="path16902-3-6-9-1-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.183772,170.79273 c 0,0 -2.222968,-5.88062 -2.222968,-5.88062"
+         id="path16910-6-5-9-2-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.459534,173.85577 c 0,0 -5.7533085,-7.02808 -5.7533085,-7.02808"
+         id="path16912-9-9-0-9-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.019908,175.004 c 0,0 -6.6935396,-5.70229 -6.6935396,-5.70229"
+         id="path16914-9-5-4-1-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.372097,176.38659 c 0,0 -8.7881203,-3.28487 -8.7881203,-3.28487"
+         id="path16916-5-8-7-7-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.212649,177.52029 c 0,0 -8.7717655,1.80242 -8.7717655,1.80242"
+         id="path16918-3-3-9-8-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.517864,176.50149 c 0,0 -6.5297335,-4.34597 -6.5297335,-4.34597"
+         id="path16920-4-3-9-2-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.977283,177.29342 c 0,0 -6.9188509,6.20645 -6.9188509,6.20645"
+         id="path16922-3-1-2-4-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.7690508,181.5583 c 0,0 -6.0799482,1.12224 -6.0799482,1.12224"
+         id="path16924-7-9-4-6-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.421854,179.14053 c 0,0 -3.745468,5.65301 -3.745468,5.65301"
+         id="path16926-5-9-0-8-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.771292,182.51918 c 0,0 -0.633759,4.71663 -0.633759,4.71663"
+         id="path16928-2-6-1-5-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.648328,181.42206 c 0,0 1.437518,5.32524 1.437518,5.32524"
+         id="path16930-1-1-9-2-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.484656,183.51081 c 0,0 3.355496,4.06202 3.355496,4.06202"
+         id="path16932-5-7-1-3-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.646778,183.6793 c 0,0 1.567093,4.44971 1.567093,4.44971"
+         id="path16934-7-1-0-1-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.635661,182.86961 c 0,0 2.52489,1.29077 2.52489,1.29077"
+         id="path16936-8-4-9-5-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.738967,179.14227 c 0,0 3.143819,1.71487 3.143819,1.71487"
+         id="path16938-8-0-7-5-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.746388,178.10478 c 0,0 3.814348,-1.21518 3.814348,-1.21518"
+         id="path16940-5-2-5-8-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.26251,176.30306 c 0,0 1.904288,-2.74065 1.904288,-2.74065"
+         id="path16942-6-5-4-2-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.281438,173.98757 c 0,0 3.517874,-3.84022 3.517874,-3.84022"
+         id="path16944-9-8-7-0-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.941322,169.79943 c 0,0 -4.6715156,-3.26807 -4.6715156,-3.26807"
+         id="path16950-7-0-9-4-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.4054675,177.35853 c 0,0 -4.9178261,0.98033 -4.9178261,0.98033"
+         id="path16952-4-1-0-2-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.9827542,183.50068 c 0,0 -3.7215528,2.83933 -3.7215528,2.83933"
+         id="path16954-6-6-5-0-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.385994,182.66905 c 0,0 -1.121381,2.30345 -1.121381,2.30345"
+         id="path16956-9-9-2-6-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.903356,177.78357 c 0,0 -8.6394597,0.60965 -8.6394597,0.60965"
+         id="path16958-8-7-9-6-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.759731,179.72597 c 0,0 -5.4574531,4.50263 -5.4574531,4.50263"
+         id="path16960-4-0-9-7-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.918527,180.96187 c 0,0 -5.5568662,4.72282 -5.5568662,4.72282"
+         id="path16962-7-5-3-4-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.400689,171.70325 c 0,0 -3.9747,-5.0175 -3.9747,-5.0175"
+         id="path16964-1-1-7-5-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.770869,172.52964 c 0,0 -3.531032,-4.19907 -3.531032,-4.19907"
+         id="path16966-8-3-7-8-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.126748,170.65436 c 0,0 1.836264,-2.94259 1.836264,-2.94259"
+         id="path16974-1-2-4-6-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.107766,177.69792 c 0,0 3.948673,2.1544 3.948673,2.1544"
+         id="path16976-3-9-4-0-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.977133,180.43527 c 0,0 1.393632,2.70481 1.393632,2.70481"
+         id="path16978-4-9-1-2-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.792971,183.53099 c 0,0 1.603461,3.97377 1.603461,3.97377"
+         id="path16980-4-9-6-9-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.068869,185.4889 c 0,0 -0.322831,1.70922 -0.322831,1.70922"
+         id="path16982-7-6-4-5-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.443777,184.02478 c 0,0 0.55488,3.33114 0.55488,3.33114"
+         id="path16984-7-0-1-3-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.599351,185.1893 c 0,0 -1.074379,0.4451 -1.074379,0.4451"
+         id="path16986-4-6-0-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.01861,180.34874 c 0,0 -2.270746,5.97463 -2.270746,5.97463"
+         id="path17062-4-4-3-4-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.946538,179.6218 c 0,0 -3.993806,1.13475 -3.993806,1.13475"
+         id="path17064-9-3-3-3-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.835423,181.25805 c 0,0 -2.574337,4.02958 -2.574337,4.02958"
+         id="path17066-5-0-1-5-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.085816,182.17201 c 0,0 -3.479168,1.86767 -3.479168,1.86767"
+         id="path17068-7-5-5-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.432836,179.90395 c 0,0 -3.5947412,2.65382 -3.5947412,2.65382"
+         id="path17070-3-4-7-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.940727,178.56153 c 0,0 -8.1092038,-1.57769 -8.1092038,-1.57769"
+         id="path17072-3-1-4-3-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.18795,173.9623 c 0,0 -3.3014793,-3.46817 -3.3014793,-3.46817"
+         id="path17074-0-4-8-5-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.931976,172.93171 c 0,0 3.511603,-1.58629 3.511603,-1.58629"
+         id="path17082-1-5-6-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.447262,174.9687 c 0,0 3.299625,-0.59643 3.299625,-0.59643"
+         id="path17084-7-8-5-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.501756,176.03618 c 0,0 2.089035,0.88483 2.089035,0.88483"
+         id="path17086-2-5-8-9-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.934496,178.16876 c 0,0 1.900069,1.69636 1.900069,1.69636"
+         id="path17088-0-1-5-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.838637,177.35682 c 0,0 0.375641,1.22056 0.375641,1.22056"
+         id="path17090-4-9-4-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.356031,176.64698 c 0,0 -0.211628,3.22225 -0.211628,3.22225"
+         id="path17092-1-9-3-9-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.85762,178.35774 c 0,0 -1.235456,1.62038 -1.235456,1.62038"
+         id="path17094-3-6-2-3-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.162122,178.65246 c 0,0 -0.336859,2.71694 -0.336859,2.71694"
+         id="path17096-0-7-1-4-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.343469,182.94844 c 0,0 1.179477,3.88097 1.179477,3.88097"
+         id="path17098-3-9-5-3-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.940672,182.32516 c 0,0 -0.305877,4.48801 -0.305877,4.48801"
+         id="path17100-0-0-2-5-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.477519,181.91594 c 0,0 3.238219,1.26547 3.238219,1.26547"
+         id="path17102-4-5-6-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.508253,181.07581 c 0,0 3.400029,0.57977 3.400029,0.57977"
+         id="path17104-0-9-7-0-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.579854,182.0696 c 0,0 2.553295,4.01071 2.553295,4.01071"
+         id="path17106-1-7-1-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.265929,184.49109 c 0,0 0.209961,2.35672 0.209961,2.35672"
+         id="path17108-0-6-8-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.628624,181.27208 c 0,0 0.423742,3.95851 0.423742,3.95851"
+         id="path17110-7-6-3-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.58993,181.98774 c 0,0 -0.02183,6.14086 -0.02183,6.14086"
+         id="path17112-7-8-0-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.403699,180.39721 c 0,0 -1.291696,2.30191 -1.291696,2.30191"
+         id="path17114-7-1-5-4-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.016436,179.47893 c 0,0 -5.8082283,3.49718 -5.8082283,3.49718"
+         id="path17116-0-8-7-3-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.793363,180.02072 c 0,0 -3.1469417,3.40527 -3.1469417,3.40527"
+         id="path17118-4-9-6-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.6801456,178.18364 c 0,0 -5.3158537,2.89136 -5.3158537,2.89136"
+         id="path17120-4-2-9-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 5.2917316,177.01797 c 0,0 -4.31576612,0.50628 -4.31576612,0.50628"
+         id="path17122-8-9-5-4-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.085992,176.13444 c 0,0 -4.7735071,-2.8129 -4.7735071,-2.8129"
+         id="path17124-0-5-0-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9768712,172.74746 c 0,0 -4.5324329,-1.69405 -4.5324329,-1.69405"
+         id="path17126-3-4-0-3-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.508943,172.20918 c 0,0 -5.5004074,-3.45811 -5.5004074,-3.45811"
+         id="path17128-5-6-5-5-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.963174,169.63969 c 0,0 -1.361235,-2.22624 -1.361235,-2.22624"
+         id="path17130-8-2-6-3-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.424202,167.53811 c 0,0 -3.6794282,-4.44349 -3.6794282,-4.44349"
+         id="path17132-6-7-3-7-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.842694,171.85297 c 0,0 2.66995,-3.87687 2.66995,-3.87687"
+         id="path17140-3-6-7-2-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.145567,170.54883 c 0,0 2.32282,0.004 2.32282,0.004"
+         id="path17142-8-7-3-3-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.502659,174.20558 c 0,0 5.004121,-1.03618 5.004121,-1.03618"
+         id="path17144-9-1-2-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.047783,177.12211 c 0,0 1.705063,1.43737 1.705063,1.43737"
+         id="path17146-2-7-1-7-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.96828,180.26182 c 0,0 3.137482,1.87454 3.137482,1.87454"
+         id="path17148-3-1-2-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.470645,182.20856 c 0,0 2.438016,1.5937 2.438016,1.5937"
+         id="path17150-9-8-9-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.502123,175.20855 c 0,0 -8.5695249,-1.23773 -8.5695249,-1.23773"
+         id="path17152-9-6-8-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.913479,171.9089 c 0,0 -7.8948534,-4.04669 -7.8948534,-4.04669"
+         id="path17154-4-8-2-0-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.42651,173.34285 c 0,0 -5.2655818,-2.05818 -5.2655818,-2.05818"
+         id="path17156-4-0-6-0-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.505904,169.7476 c 0,0 -10.6009647,-8.52643 -10.6009647,-8.52643"
+         id="path17160-0-7-2-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.3659596,175.51459 c 0,0 -3.7371428,0.0476 -3.7371428,0.0476"
+         id="path17162-5-8-8-9-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.0772195,179.70256 c 0,0 -3.9678762,1.64878 -3.9678762,1.64878"
+         id="path17164-6-6-8-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.062879,181.31071 c -0.361505,0.0602 -6.8202363,2.19316 -6.8202363,2.19316"
+         id="path17166-2-6-4-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.264564,170.45777 c 0,0 5.518475,-4.47448 5.518475,-4.47448"
+         id="path17174-5-9-3-4-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.675636,172.29951 c 0.39163,-0.20335 2.347662,-2.68509 2.347662,-2.68509"
+         id="path17180-1-6-0-1-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.42262,173.48449 c 0.421755,-0.11297 3.121524,-0.71361 3.121524,-0.71361"
+         id="path17182-8-1-2-5-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.577336,176.19577 c 0.466943,0.007 1.985768,1.41873 1.985768,1.41873"
+         id="path17184-8-8-2-4-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.802078,177.51651 c 0,0 -0.871678,0.51871 -0.871678,0.51871"
+         id="path17186-2-5-3-6-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.184853,173.82223 c 0,0 4.230018,-1.73511 4.57646,-1.88574"
+         id="path17188-4-9-2-9-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.050549,171.66762 c 0,0 3.036883,-0.13943 3.036883,-0.13943"
+         id="path17190-5-6-5-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.536383,172.5754 c 0,0 1.471502,-2.81515 1.471502,-2.81515"
+         id="path17194-2-6-5-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.47671,175.04761 c 0,0 -2.402363,-4.43302 -2.402363,-4.43302"
+         id="path17200-1-1-8-5-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.546797,175.45425 c 0,0 -4.522486,-0.26889 -4.522486,-0.26889"
+         id="path17202-8-7-5-6-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.153107,177.22186 c 0,0 -2.634198,-0.42802 -2.634198,-0.42802"
+         id="path17204-1-5-4-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.28231,178.40907 c 0,0 -1.57186,1.39296 -1.57186,1.39296"
+         id="path17206-0-5-7-5-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.129192,179.48744 c 0,0 -2.201741,1.16621 -2.201741,1.16621"
+         id="path17208-1-6-0-0-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.343695,180.15351 c 0,0 -3.371834,4.15407 -3.371834,4.15407"
+         id="path17210-6-3-6-9-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.420827,181.67463 c 0,0 -3.008424,4.93585 -3.008424,4.93585"
+         id="path17212-2-0-9-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.419566,179.54699 c 0,0 -3.854003,2.78909 -3.854003,2.78909"
+         id="path17214-0-2-6-8-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.424341,178.30692 c 0,0 -4.0769113,1.21281 -4.0769113,1.21281"
+         id="path17216-2-5-2-2-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.774062,176.44545 c 0,0 -5.0240371,-0.67186 -5.0240371,-0.67186"
+         id="path17218-6-9-5-5-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.2975257,180.53184 c 0,0 -5.1832587,-2.74368 -5.1832587,-2.74368"
+         id="path17220-1-8-5-2-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.8795429,168.85839 c 0,0 -1.4698753,-1.7735 -1.4698753,-1.7735"
+         id="path17222-2-2-6-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.072153,167.34252 c 0,0 -2.6015153,-4.06502 -2.6015153,-4.06502"
+         id="path17224-3-3-7-4-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.752223,173.93475 c 0,0 -5.3093617,0.93531 -5.3093617,0.93531"
+         id="path17230-2-8-8-0-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.328908,170.18928 c 0,0 -5.7191351,-3.39609 -5.7191351,-3.39609"
+         id="path17232-6-6-0-7-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.067405,167.06996 c 0,0 2.195707,-2.91038 2.195707,-2.91038"
+         id="path17238-2-1-6-6-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.78043,164.8917 c -0.384099,-0.20335 -4.3862857,-3.62221 -4.3862857,-3.62221"
+         id="path17242-1-6-6-8-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.4605714,168.52478 c 0,0 -4.2660434,-2.44676 -4.2660434,-2.44676"
+         id="path17244-2-6-2-9-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 5.9340228,175.62946 c 0,0 -2.1797647,-0.0917 -2.1797647,-0.0917"
+         id="path17246-6-1-5-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.3405538,182.0792 c 0,0 -3.2364366,2.51264 -3.6506608,2.75364"
+         id="path17248-5-3-0-0-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.201473,185.19333 c 0,0 -1.5957517,2.59107 -1.5957517,2.59107"
+         id="path17250-6-4-0-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.364706,183.19465 c 0,0 3.494721,3.12719 3.494721,3.12719"
+         id="path17252-1-0-5-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.554206,171.68911 c 0.39163,-0.43682 2.529032,-3.89638 2.529032,-3.89638"
+         id="path17254-7-9-6-6-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.293368,172.65185 c 0,0 -6.9781954,-2.55418 -6.9781954,-2.55418"
+         id="path17264-0-6-3-4-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.564978,169.38475 c 0,0 2.520784,-5.01527 2.520784,-5.01527"
+         id="path18729-2-3-8-8-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.511335,172.27769 c 0,0 6.623656,-3.51705 6.623656,-3.51705"
+         id="path18731-1-0-2-1-3-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.820146,172.73081 c 0,0 6.58872,-1.19248 6.58872,-1.19248"
+         id="path18733-0-1-6-6-1-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.451455,173.78872 c 0,0 4.627903,-0.19699 4.627903,-0.19699"
+         id="path18735-0-2-4-3-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.450744,175.09994 c 0,0 1.831417,1.1456 1.831417,1.1456"
+         id="path18737-4-0-2-3-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.929575,176.49101 c 0,0 1.044542,1.12923 1.044542,1.12923"
+         id="path18739-6-9-3-1-4-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.721225,177.47708 c 0,0 1.497419,1.87532 1.497419,1.87532"
+         id="path18741-3-9-0-1-1-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.691716,178.1016 c 0,0 1.140336,1.05309 1.140336,1.05309"
+         id="path18743-9-3-5-1-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.475878,178.21602 c 0,0 0.941988,0.49641 0.941988,0.49641"
+         id="path18745-1-1-0-8-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.857358,178.34328 c 0,0 -0.120695,2.08208 -0.120695,2.08208"
+         id="path18747-4-8-7-5-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.881113,178.44172 c 0,0 -0.985341,1.51151 -0.985341,1.51151"
+         id="path18749-6-6-2-0-4-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.394749,178.99266 c 0,0 0.422971,8.52052 0.422971,8.52052"
+         id="path18751-8-7-8-9-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.748796,181.55677 c 0,0 -0.0095,4.19833 -0.0095,4.19833"
+         id="path18753-4-3-0-1-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.321808,183.46479 c 0,0 -0.280619,2.84466 -0.280619,2.84466"
+         id="path18755-2-4-2-2-3-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.698228,183.14159 c 0,0 -0.491161,3.49322 -0.491161,3.49322"
+         id="path18757-8-0-3-7-2-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.34599,182.82555 c 0,0 2.898179,2.99512 2.898179,2.99512"
+         id="path18759-2-0-5-4-6-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.186099,180.75363 c 0,0 1.412802,3.36636 1.412802,3.36636"
+         id="path18761-5-7-4-7-8-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.065438,182.12753 c 0.06025,0.44434 4.129505,1.63259 4.611512,1.74555"
+         id="path18763-9-2-3-2-5-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.212174,179.78473 c 0.512131,0.15816 1.631753,0.16235 2.143885,0.32801"
+         id="path18765-7-9-0-0-4-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.407734,179.04539 c 0,0 2.549051,1.52323 2.549051,1.52323"
+         id="path18767-8-6-7-4-4-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.537403,175.61379 c 0.135564,0.36904 2.939706,3.04877 2.939706,3.04877"
+         id="path18769-8-2-1-2-7-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.65872,175.627 c 0.61757,0.24101 2.318646,1.32524 2.318646,1.32524"
+         id="path18771-3-2-8-0-3-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.922575,174.00535 c 0,0 2.731988,0.13314 2.731988,0.13314"
+         id="path18773-6-1-8-3-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.992609,173.9019 c 0.512131,-0.1657 3.459786,-1.71259 3.459786,-1.71259"
+         id="path18775-9-4-7-0-5-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.308475,170.29694 c 0,0 4.176357,-0.33321 4.176357,-0.33321"
+         id="path18777-6-3-4-4-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.729362,169.83773 c 0,0 4.508862,-2.7046 4.508862,-2.7046"
+         id="path18779-9-9-2-0-1-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.154713,181.29965 c 0,0 -1.159075,4.58568 -1.159075,4.58568"
+         id="path18783-9-5-2-0-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.188274,180.6782 c 0,0 -2.255936,3.98219 -2.255936,3.98219"
+         id="path18785-0-8-1-5-4-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.698907,180.82576 c 0,0 -2.475263,6.0685 -2.475263,6.0685"
+         id="path18787-4-3-2-5-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.827963,178.21704 c 0,0 -6.0946624,6.16103 -6.0946624,6.16103"
+         id="path18789-2-2-1-7-3-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.314158,180.64261 c 0,0 -3.912709,4.2449 -3.912709,4.2449"
+         id="path18791-2-4-7-0-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.278178,179.68625 c 0,0 -4.6002033,5.90127 -4.6002033,5.90127"
+         id="path18793-5-5-2-3-4-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.248727,184.46398 c 0,0 -3.7051396,1.42509 -3.7051396,1.42509"
+         id="path18795-3-5-6-8-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.018749,179.65479 c 0,0 -7.4444829,0.88355 -7.4444829,0.88355"
+         id="path18797-5-6-3-6-1-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.688346,180.8066 c 0,0 -7.1954135,-0.84173 -7.1954135,-0.84173"
+         id="path18799-2-7-6-9-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.018725,174.34105 c -0.391631,-0.0226 -9.3260327,1.50039 -9.3260327,1.50039"
+         id="path18801-1-7-0-1-1-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 16.485516,173.37239 C 16.086355,173.1841 7.9929968,169.40287 7.9929968,169.40287"
+         id="path18803-8-8-8-0-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.850836,173.10722 c 0,0 -5.406665,-7.58346 -5.406665,-7.58346"
+         id="path18805-1-0-8-0-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.060261,169.11239 c 0,0 -2.504494,-6.01545 -2.609932,-6.38448"
+         id="path18819-3-8-7-5-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.008268,169.84646 c -0.233472,-0.37658 -2.646158,-4.8434 -2.646158,-4.8434"
+         id="path18821-2-2-0-8-9-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.254205,173.62637 c 0,0 -6.3530953,-2.99747 -6.3530953,-2.99747"
+         id="path18823-9-1-8-5-4-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.0065064,176.82346 c 0,0 -6.5079506,1.5469 -6.5079506,1.5469"
+         id="path18825-2-3-9-7-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.714817,177.76289 c 0,0 -8.6015149,-1.46101 -8.6015149,-1.46101"
+         id="path18827-1-1-9-9-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.582801,174.71729 c -0.369037,-0.0828 -9.5679951,-2.20658 -9.5679951,-2.20658"
+         id="path18829-9-7-8-6-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.376576,171.69634 c 0,0 -6.5325583,-5.14323 -6.5325583,-5.14323"
+         id="path18831-3-5-4-9-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.085853,169.6731 c 0,0 -5.335576,-6.53126 -5.335576,-6.53126"
+         id="path18833-7-6-2-6-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.20658,172.4698 c -0.436818,-0.25606 -6.096089,-4.70843 -6.096089,-4.70843"
+         id="path18835-7-1-6-2-4-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.275838,173.70553 c -0.353973,-0.32385 -5.550274,1.17825 -5.550274,1.17825"
+         id="path18837-2-1-8-8-1-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.536361,176.60922 c 0,0 -7.3633187,3.02892 -7.3633187,3.02892"
+         id="path18839-3-1-7-8-3-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.997046,177.74141 c 0,0 -7.0046173,5.40903 -7.0046173,5.40903"
+         id="path18841-7-0-8-4-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.233371,181.61508 c -0.3615043,0.0678 -6.1317993,2.84297 -6.1317993,2.84297"
+         id="path18843-1-7-5-3-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.1633413,178.26768 c 0,0 -7.2581419,0.63845 -7.2581419,0.63845"
+         id="path18845-4-6-9-2-0-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.9441852,174.37072 c -0.3690361,-0.20335 -5.5556864,-0.8704 -5.5556864,-0.8704"
+         id="path18847-7-8-8-6-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.3457011,170.57285 c 0,0 -4.7529275,-2.44634 -4.7529275,-2.44634"
+         id="path18849-5-2-3-8-0-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.949611,168.97609 c 0,0 -4.8466116,-8.39179 -4.8466116,-8.39179"
+         id="path18851-7-0-6-2-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.791267,164.07152 c 0,0 1.4413,-3.00542 1.4413,-3.00542"
+         id="path18857-0-6-4-1-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.345222,164.33579 c -0.09316,-0.55448 -4.282166,-4.69848 -4.282166,-4.69848"
+         id="path18861-4-6-7-8-3-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.98785,180.83493 c -0.406692,0.007 -5.6826983,6.8291 -6.2626122,6.63329"
+         id="path18863-3-3-1-3-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 6.9607738,180.53864 C 6.599269,180.80223 1.4359411,183.4907 1.4359411,183.4907"
+         id="path18865-7-1-5-6-1-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.2106559,181.11173 c 0,0 -6.3493319,2.12127 -6.3493319,2.12127"
+         id="path18867-7-7-9-5-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.5581053,176.25424 c -0.5046004,-0.0226 -9.49010481,-0.47929 -9.49010481,-0.47929"
+         id="path18869-7-3-4-0-8-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.766381,177.34025 c -0.384098,-0.0301 -5.0588401,2.56443 -5.0588401,2.56443"
+         id="path18871-3-7-4-8-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.134303,179.05388 c 0,0 -3.219122,4.26292 -3.219122,4.26292"
+         id="path18873-7-7-2-1-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.229811,182.05981 c 0,0 1.081226,4.12107 1.081226,4.12107"
+         id="path18875-4-9-0-8-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.527866,183.31971 c 0,0 1.356419,4.51153 1.356419,4.51153"
+         id="path18877-4-1-0-5-5-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.459717,184.46667 c 0,0 -2.395408,3.2413 -2.395408,3.2413"
+         id="path18879-0-0-0-0-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.11818,183.94138 c 0,0 1.476637,3.38785 1.476637,3.38785"
+         id="path18881-8-0-0-1-0-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.253918,184.50018 c 0,0 -0.415541,2.6616 -0.415541,2.6616"
+         id="path18883-6-4-8-7-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.5149,185.71361 c 0,0 0.240555,-0.19059 0.692432,0.058"
+         id="path18885-1-3-1-0-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.541256,181.55375 c 0.466944,0.0602 1.869126,2.05999 1.869126,2.05999"
+         id="path18887-2-5-7-6-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.897896,179.32562 c 0.587445,0.32266 2.210569,4.09461 2.210569,4.09461"
+         id="path18889-0-7-1-7-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.814112,178.90756 c 1.182422,0.27114 3.998985,1.09302 3.998985,1.09302"
+         id="path18891-2-1-9-7-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.707239,175.75502 c 0,0 2.06141,-1.27786 2.06141,-1.27786"
+         id="path18893-5-2-9-6-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.438327,170.22264 c 0,0 4.515166,-5.86861 4.515166,-5.86861"
+         id="path18895-7-3-0-7-6-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.926879,171.02496 c -0.04519,-0.51213 -4.731844,-5.38137 -4.731844,-5.38137"
+         id="path18903-7-4-9-5-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.09129,171.03268 c 0.04519,-0.3841 3.390361,-10.08126 3.390361,-10.08126"
+         id="path18907-7-1-3-5-3-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.174488,170.09239 c -0.195815,-0.42928 -5.095317,-1.39291 -5.095317,-1.39291"
+         id="path18913-4-1-4-3-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.0090206,172.0185 C 8.5797337,171.79255 2.2484675,170.52694 2.2484675,170.52694"
+         id="path18915-8-9-7-8-6-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.4394707,176.99109 c -0.5196631,-0.13556 -5.6431584,0.40462 -5.6431584,0.40462"
+         id="path18917-0-3-3-6-4-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.65625,177.38133 c 0,0 -6.0649997,0.31814 -6.0649997,0.31814"
+         id="path18919-6-9-1-4-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.100545,174.22538 C 13.73904,174.06722 4.7218465,170.30942 4.7218465,170.30942"
+         id="path18921-7-2-7-2-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.416532,168.42647 c 0,0 -6.3026753,-3.41898 -6.3026753,-3.41898"
+         id="path18923-4-9-8-9-4-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14,168.25997 c 0,0 -7.5628005,-6.24177 -7.5628005,-6.24177"
+         id="path18925-9-4-2-6-6-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.323725,169.69446 C 9.9170321,169.51371 2.0425925,167.3383 2.0425925,167.3383"
+         id="path18927-6-3-5-9-9-0" />
+    </g>
+    <g
+       id="g37704"
+       clip-path="url(#clipPath5962)">
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.239155,201.5654 c 0,0 0.403571,-11.67061 0.403571,-11.67061"
+         id="path17170-6-5-3-5-4-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.366827,202.20976 c 0,0 1.608536,-4.65782 1.608536,-4.65782"
+         id="path16904-4-2-5-1-5-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.083224,201.20997 c 0,0 2.21095,-5.47576 2.21095,-5.47576"
+         id="path16906-3-0-4-4-5-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.276821,203.53897 c 0,0 -1.369777,-8.01836 -1.369777,-8.01836"
+         id="path16908-8-3-9-8-1-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.572837,199.55057 c 0,0 0.72872,-4.93684 0.72872,-4.93684"
+         id="path16946-6-4-7-1-2-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.401191,202.36994 c 0,0 1.985702,-4.71535 1.985702,-4.71535"
+         id="path16968-0-7-6-3-6-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.39674,199.67059 c 0,0 -0.262332,-8.43036 -0.262332,-8.43036"
+         id="path16970-2-7-4-7-4-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.747573,198.84384 c 0,0 -2.501626,-1.61502 -2.501626,-1.61502"
+         id="path16972-7-1-6-4-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.721915,204.49783 c 0,0 -3.229461,-3.61986 -3.229461,-3.61986"
+         id="path17076-0-6-6-8-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.995666,201.64582 c 0,0 -0.950208,-3.39384 -0.950208,-3.39384"
+         id="path17078-5-5-6-2-2-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.645068,202.53195 c 0,0 2.709043,-2.83329 2.709043,-2.83329"
+         id="path17080-8-5-1-3-6-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.827093,198.52341 c 0,0 -3.757885,-4.70648 -3.757885,-4.70648"
+         id="path17134-8-4-9-0-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.472963,198.71012 c 0,0 -0.147428,-4.13726 -0.147428,-4.13726"
+         id="path17136-8-6-8-4-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.785751,202.12439 c 0,0 0.950115,-5.11082 0.950115,-5.11082"
+         id="path17138-8-8-6-4-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.518219,200.24495 c 0,0 -2.925304,-8.03579 -2.925304,-8.03579"
+         id="path17158-1-1-8-5-3-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.125045,202.58355 c 0,0 -1.083098,-6.977 -1.083098,-6.977"
+         id="path17168-8-0-3-1-4-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.730114,202.14714 c 0,0 2.05654,-7.33045 2.05654,-7.33045"
+         id="path17172-9-1-6-6-9-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.761407,199.79694 c 0,0 2.476006,-5.02125 2.476006,-5.02125"
+         id="path17176-4-8-6-4-9-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.949728,197.23101 c 0,0 1.963983,-3.94336 1.963983,-3.94336"
+         id="path17178-0-9-7-6-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.493703,204.04883 c 0,0 0.582462,-2.59645 0.582462,-2.59645"
+         id="path17192-0-1-3-3-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.637542,203.13491 c 0,0 -0.726,-0.98156 -0.726,-0.98156"
+         id="path17196-3-8-0-4-1-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.934417,201.38962 c 0,0 -0.735206,-9.36881 -0.735206,-9.36881"
+         id="path17198-0-1-7-3-5-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.535615,199.07494 c 0,0 -0.797427,-2.14674 -0.797427,-2.14674"
+         id="path17226-7-0-4-1-5-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.060528,198.19671 c 0,0 -0.654696,-7.97849 -0.654696,-7.97849"
+         id="path17228-4-9-8-9-2-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.573949,199.63413 c 0,0 0.545836,-5.79192 0.545836,-5.79192"
+         id="path17234-6-7-2-9-4-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.341619,197.18312 c -0.0075,-0.80188 -0.301402,-7.91234 -0.301402,-7.91234"
+         id="path17236-9-3-6-5-7-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.137357,196.14408 c 0,0 4.093894,-2.68647 4.093894,-2.68647"
+         id="path17240-6-9-2-8-7-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.756933,199.11131 c 0,0 -1.148742,-3.97595 -1.148742,-3.97595"
+         id="path17256-9-1-8-3-0-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.344481,202.92171 c 0,0 -0.193657,-5.30485 -0.193657,-5.30485"
+         id="path17258-4-2-9-8-8-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.446814,202.12869 c 0,0 -3.411182,-2.30161 -3.411182,-2.30161"
+         id="path17260-7-6-5-0-3-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.370159,201.43978 c 0,0 2.40271,-6.03735 2.40271,-6.03735"
+         id="path18781-7-4-2-2-4-5-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.217325,198.14034 c 0,0 -5.5857524,-6.48253 -5.5857524,-6.48253"
+         id="path16948-5-6-2-6-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.674336,204.12862 c 0,0 -3.652545,-8.292 -3.652545,-8.292"
+         id="path18807-4-8-6-1-4-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.08977,203.54997 c 0,0 -2.470878,-8.19655 -2.470878,-8.19655"
+         id="path18809-4-6-5-9-1-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.560558,202.84334 c 0,0 -0.107375,-10.64796 -0.107375,-10.64796"
+         id="path18811-9-8-0-3-4-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.854316,202.2785 c 0,0 5.994171,-10.05183 5.994171,-10.05183"
+         id="path18813-5-6-5-8-5-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.346183,195.88915 c 0,0 0.976016,-1.49312 1.021204,-1.83203"
+         id="path18815-0-2-4-7-4-9-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.650156,199.59843 c 0,0 -1.167563,-6.5897 -1.167563,-6.5897"
+         id="path18817-1-2-3-7-3-3-9" />
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.610543,198.65302 c 0,0 -3.748374,-7.16396 -3.748374,-7.16396"
+         id="path18853-2-4-1-6-0-6-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.098778,197.84275 c 0,0 -2.143417,-6.8045 -2.218731,-7.2112"
+         id="path18855-2-9-9-5-4-4-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.235684,195.80732 c 0,0 1.622528,-4.61658 1.622528,-4.61658"
+         id="path18859-7-1-8-5-5-5-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.003716,200.5139 c 0.05272,-0.39916 2.368104,-5.87713 2.368104,-6.24616"
+         id="path18897-0-4-7-7-5-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.312405,200.06795 c 0,0 -1.889938,-4.98088 -1.889938,-4.98088"
+         id="path18899-9-3-7-4-4-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.77621,203.64255 c 0,0 -0.787382,-7.43251 -0.787382,-7.43251"
+         id="path18901-0-4-6-3-0-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.764303,201.45519 c 0,0 -0.151043,-9.52704 -0.151043,-9.52704"
+         id="path18905-0-2-8-6-9-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.668365,198.17781 c -0.02259,-0.53222 -0.296684,-8.18628 -0.296684,-8.18628"
+         id="path18909-6-2-7-3-2-6-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.641232,194.91241 c 0,0 0.08845,-3.61363 0.08845,-3.61363"
+         id="path18911-5-4-3-9-1-9-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.004854,210.13944 c 0,0 -0.559991,2.24485 -0.559991,2.24485"
+         id="path16888-8-2-2-5-2-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.099807,210.96307 c 0,0 1.519965,1.19225 1.519965,1.19225"
+         id="path16890-6-5-9-6-7-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.646373,210.98342 c 0,0 -0.60518,-0.79307 -0.60518,-0.79307"
+         id="path16892-9-4-6-7-5-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.316867,208.30993 c 0,0 1.385761,0.9209 1.385761,0.9209"
+         id="path16894-9-3-8-0-0-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.329143,206.5887 c 0,0 2.363266,3.59362 2.363266,3.59362"
+         id="path16896-1-5-1-2-8-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.754301,205.40531 c 0,0 4.922801,-0.1753 4.922801,-0.1753"
+         id="path16898-6-7-5-3-0-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.114487,204.53778 c 0,0 5.238944,-3.33508 5.238944,-3.33508"
+         id="path16900-6-5-2-4-7-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.921205,202.2383 c 0,0 3.752947,-4.27721 3.752947,-4.27721"
+         id="path16902-3-6-9-1-3-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.7295,202.58383 c 0,0 -1.642978,-6.15566 -1.642978,-6.15566"
+         id="path16910-6-5-9-2-6-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.252978,205.40043 c 0,0 -5.7164692,-6.10242 -5.7164692,-6.10242"
+         id="path16912-9-9-0-9-4-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.520462,207.02753 c 0,0 -6.4234734,-5.28154 -6.4234734,-5.28154"
+         id="path16914-9-5-4-1-0-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.35672,207.88683 c 0,0 -9.2315263,-2.58632 -9.2315263,-2.58632"
+         id="path16916-5-8-7-7-8-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.055504,209.99495 c 0,0 -8.2634493,0.97184 -8.2634493,0.97184"
+         id="path16918-3-3-9-8-5-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.014642,208.55816 c 0,0 -7.5093955,-4.27294 -7.5093955,-4.27294"
+         id="path16920-4-3-9-2-5-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.812405,209.76545 c 0,0 -6.3182663,5.97969 -6.3182663,5.97969"
+         id="path16922-3-1-2-4-3-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.4595255,213.16562 c 0,0 -5.5101699,1.94185 -5.5101699,1.94185"
+         id="path16924-7-9-4-6-0-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.885176,210.95256 c 0,0 -4.659561,5.62463 -4.659561,5.62463"
+         id="path16926-5-9-0-8-5-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.127684,214.86987 c 0,0 -0.596493,4.05767 -0.596493,4.05767"
+         id="path16928-2-6-1-5-6-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.242824,213.71458 c 0,0 2.187881,5.39476 2.187881,5.39476"
+         id="path16930-1-1-9-2-8-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.842083,215.16117 c 0,0 2.954005,4.90971 2.954005,4.90971"
+         id="path16932-5-7-1-3-2-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.147909,215.38511 c 0,0 1.622564,4.64718 1.622564,4.64718"
+         id="path16934-7-1-0-1-7-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.001135,215.21083 c 0,0 1.715352,1.17935 1.715352,1.17935"
+         id="path16936-8-4-9-5-1-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.901228,211.61521 c 0,0 3.429857,1.46335 3.429857,1.46335"
+         id="path16938-8-0-7-5-8-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.338839,210.39444 c 0,0 4.093304,-1.02166 4.093304,-1.02166"
+         id="path16940-5-2-5-8-4-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.406611,208.78184 c 0,0 2.187959,-3.4783 2.187959,-3.4783"
+         id="path16942-6-5-4-2-9-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.204659,205.4935 c 0,0 3.910391,-2.95845 3.910391,-2.95845"
+         id="path16944-9-8-7-0-2-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.179259,202.23919 c 0,0 -5.0770652,-4.1789 -5.0770652,-4.1789"
+         id="path16950-7-0-9-4-7-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.6628194,208.92985 c 0,0 -4.6751946,1.40493 -4.6751946,1.40493"
+         id="path16952-4-1-0-2-1-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.4848945,215.54689 c 0,0 -3.5748914,3.14901 -3.5748914,3.14901"
+         id="path16954-6-6-5-0-5-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.860987,214.5129 c 0,0 -1.126949,2.63176 -1.126949,2.63176"
+         id="path16956-9-9-2-6-5-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.444936,209.9832 c 0,0 -7.6838155,0.46263 -7.6838155,0.46263"
+         id="path16958-8-7-9-6-0-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.259521,211.71148 c 0,0 -6.448128,4.61216 -6.448128,4.61216"
+         id="path16960-4-0-9-7-8-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.872479,213.45975 c 0,0 -5.7836848,3.80596 -5.7836848,3.80596"
+         id="path16962-7-5-3-4-3-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.249681,204.1799 c 0,0 -3.439016,-5.17474 -3.439016,-5.17474"
+         id="path16964-1-1-7-5-5-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.006969,204.97039 c 0,0 -3.673581,-5.13099 -3.673581,-5.13099"
+         id="path16966-8-3-7-8-0-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.588076,202.84717 c 0,0 1.784164,-2.84812 1.784164,-2.84812"
+         id="path16974-1-2-4-6-1-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.756913,210.05415 c 0,0 4.723748,1.53353 4.723748,1.53353"
+         id="path16976-3-9-4-0-7-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.482448,212.36256 c 0,0 1.534249,2.42448 1.534249,2.42448"
+         id="path16978-4-9-1-2-9-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.973682,215.06479 c 0,0 1.304698,3.95411 1.304698,3.95411"
+         id="path16980-4-9-6-9-6-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.127607,217.98544 c 0,0 0.03605,1.48763 0.03605,1.48763"
+         id="path16982-7-6-4-5-3-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.913676,216.19564 c 0,0 0.46458,3.48571 0.46458,3.48571"
+         id="path16984-7-0-1-3-4-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.872671,217.60798 c 0,0 -0.850929,0.0832 -0.850929,0.0832"
+         id="path16986-4-6-0-1-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.810834,211.89396 c 0,0 -2.326163,6.85453 -2.326163,6.85453"
+         id="path17062-4-4-3-4-3-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.089068,212.10105 c 0,0 -3.660392,0.80872 -3.660392,0.80872"
+         id="path17064-9-3-3-3-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.316781,213.12279 c 0,0 -2.969629,4.65738 -2.969629,4.65738"
+         id="path17066-5-0-1-5-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.511499,213.90972 c 0,0 -4.131067,1.68406 -4.131067,1.68406"
+         id="path17068-7-5-5-8-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.034254,211.60207 c 0,0 -3.5798822,3.27626 -3.5798822,3.27626"
+         id="path17070-3-4-7-9-3-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.702161,211.00095 c 0,0 -8.3703986,-2.03257 -8.3703986,-2.03257"
+         id="path17072-3-1-4-3-1-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.331509,205.48335 c 0,0 -3.938772,-2.91031 -3.938772,-2.91031"
+         id="path17074-0-4-8-5-7-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.347813,205.20934 c 0,0 2.810906,-2.27484 2.810906,-2.27484"
+         id="path17082-1-5-6-1-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.990623,206.76503 c 0,0 4.227613,-0.55958 4.227613,-0.55958"
+         id="path17084-7-8-5-8-3-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.406945,207.54525 c 0,0 2.630243,1.15053 2.630243,1.15053"
+         id="path17086-2-5-8-9-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.447558,210.2823 c 0,0 1.9492,1.82433 1.9492,1.82433"
+         id="path17088-0-1-5-8-3-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.77817,209.85315 c 0,0 0.926282,0.82287 0.926282,0.82287"
+         id="path17090-4-9-4-4-2-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.77651,208.91753 c 0,0 -0.835166,3.40861 -0.835166,3.40861"
+         id="path17092-1-9-3-9-9-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.372317,210.2374 c 0,0 -0.92568,2.2089 -0.92568,2.2089"
+         id="path17094-3-6-2-3-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.699352,210.46314 c 0,0 -0.228186,3.25927 -0.228186,3.25927"
+         id="path17096-0-7-1-4-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.831551,214.83992 c 0,0 1.191395,3.98948 1.191395,3.98948"
+         id="path17098-3-9-5-3-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.014601,214.81966 c 0,0 -0.868111,4.10102 -0.868111,4.10102"
+         id="path17100-0-0-2-5-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.061392,214.19314 c 0,0 3.671869,0.48858 3.671869,0.48858"
+         id="path17102-4-5-6-6-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.098359,212.78948 c 0,0 3.865554,0.3692 3.865554,0.3692"
+         id="path17104-0-9-7-0-3-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.457097,214.5543 c 0,0 2.297017,3.19992 2.297017,3.19992"
+         id="path17106-1-7-1-3-6-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.575516,216.09846 c 0,0 0.14246,2.31186 0.14246,2.31186"
+         id="path17108-0-6-8-4-2-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.213481,212.99341 c 0,0 1.037179,4.69618 1.037179,4.69618"
+         id="path17110-7-6-3-6-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.596364,214.4877 c 0,0 -0.513247,5.51928 -0.513247,5.51928"
+         id="path17112-7-8-0-1-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.783092,212.72288 c 0,0 -1.185691,1.85629 -1.185691,1.85629"
+         id="path17114-7-1-5-4-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.608376,211.18999 c 0,0 -5.2187837,3.32018 -5.2187837,3.32018"
+         id="path17116-0-8-7-3-2-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.4972925,211.6178 c 0,0 -3.067057,4.25904 -3.067057,4.25904"
+         id="path17118-4-9-6-1-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.6118768,210.67896 c 0,0 -4.9000533,2.75551 -4.9000533,2.75551"
+         id="path17120-4-2-9-8-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 5.098609,209.47917 c 0,0 -4.0325162,-0.44673 -4.0325162,-0.44673"
+         id="path17122-8-9-5-4-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.696284,207.82119 c 0,0 -4.3578961,-2.99898 -4.3578961,-2.99898"
+         id="path17124-0-5-0-8-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.0383951,205.24366 c 0,0 -4.9131568,-2.5751 -4.9131568,-2.5751"
+         id="path17126-3-4-0-3-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.712962,203.7527 c 0,0 -5.9987584,-2.59744 -5.9987584,-2.59744"
+         id="path17128-5-6-5-5-7-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.06564,201.1503 c 0,0 -0.963719,-1.73256 -0.963719,-1.73256"
+         id="path17130-8-2-6-3-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.932287,199.62766 c 0,0 -3.2555859,-4.0377 -3.2555859,-4.0377"
+         id="path17132-6-7-3-7-2-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.081719,203.4138 c 0,0 2.831027,-3.73756 2.831027,-3.73756"
+         id="path17140-3-6-7-2-0-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.449557,202.94581 c 0,0 2.456371,-0.63497 2.456371,-0.63497"
+         id="path17142-8-7-3-3-9-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.005361,206.25749 c 0,0 5.411255,-1.57989 5.411255,-1.57989"
+         id="path17144-9-1-2-8-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.471841,209.38701 c 0,0 1.731404,1.38959 1.731404,1.38959"
+         id="path17146-2-7-1-7-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.463821,212.32844 c 0,0 2.152985,1.70341 2.152985,1.70341"
+         id="path17148-3-1-2-1-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.795514,214.58864 c 0,0 2.526175,0.93183 2.526175,0.93183"
+         id="path17150-9-8-9-2-7-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.036078,207.38966 c 0,0 -7.9948219,-0.93079 -7.9948219,-0.93079"
+         id="path17152-9-6-8-6-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.521396,203.59862 c 0,0 -7.1452813,-4.08598 -7.1452813,-4.08598"
+         id="path17154-4-8-2-0-5-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.617046,205.80512 c 0,0 -4.9651156,-2.42602 -4.9651156,-2.42602"
+         id="path17156-4-0-6-0-0-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.744093,201.30798 c 0,0 -11.0596717,-8.53555 -11.0596717,-8.53555"
+         id="path17160-0-7-2-0-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.1126229,207.94566 c 0,0 -3.1051946,-0.71005 -3.1051946,-0.71005"
+         id="path17162-5-8-8-9-4-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.7900016,211.29329 c 0,0 -4.1806112,2.06492 -4.1806112,2.06492"
+         id="path17164-6-6-8-3-4-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.203395,212.83086 c -0.361505,0.0602 -6.5217741,2.43364 -6.5217741,2.43364"
+         id="path17166-2-6-4-6-7-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.765253,202.48401 c 0,0 6.30523,-4.90984 6.30523,-4.90984"
+         id="path17174-5-9-3-4-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.204882,204.13102 c 0.39163,-0.20335 2.553926,-2.09228 2.553926,-2.09228"
+         id="path17180-1-6-0-1-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.535772,204.99746 c 0.421755,-0.11297 3.472169,-0.0398 3.472169,-0.0398"
+         id="path17182-8-1-2-5-1-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.659375,208.68899 c 0.466943,0.007 2.381139,0.77692 2.381139,0.77692"
+         id="path17184-8-8-2-4-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.143779,209.15149 c 0,0 -1.682718,0.71133 -1.682718,0.71133"
+         id="path17186-2-5-3-6-5-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.109464,205.62621 c 0,0 5.125681,-1.94429 5.472123,-2.09492"
+         id="path17188-4-9-2-9-5-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.069183,203.16797 c 0,0 2.958039,-0.13614 2.958039,-0.13614"
+         id="path17190-5-6-5-1-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.100574,204.82049 c 0,0 1.792169,-2.57368 1.792169,-2.57368"
+         id="path17194-2-6-5-7-7-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.433955,207.54578 c 0,0 -2.058598,-4.53195 -2.058598,-4.53195"
+         id="path17200-1-1-8-5-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.061318,207.57388 c 0,0 -4.264619,0.0567 -4.264619,0.0567"
+         id="path17202-8-7-5-6-0-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.051318,208.73233 c 0,0 -2.077236,0.26843 -2.077236,0.26843"
+         id="path17204-1-5-4-1-8-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.278008,209.90909 c 0,0 -1.768805,2.35065 -1.768805,2.35065"
+         id="path17206-0-5-7-5-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.472077,211.12353 c 0,0 -2.044881,1.51414 -2.044881,1.51414"
+         id="path17208-1-6-0-0-9-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.132293,212.60662 c 0,0 -3.119472,4.19928 -3.119472,4.19928"
+         id="path17210-6-3-6-9-4-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.884526,213.48759 c 0,0 -3.947189,4.96696 -3.947189,4.96696"
+         id="path17212-2-0-9-8-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.587429,212.01797 c 0,0 -3.975007,1.82031 -3.975007,1.82031"
+         id="path17214-0-2-6-8-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.925735,210.34423 c 0,0 -3.0926588,1.05656 -3.0926588,1.05656"
+         id="path17216-2-5-2-2-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.142549,208.10749 c 0,0 -5.6919632,0.0665 -5.6919632,0.0665"
+         id="path17218-6-9-5-5-9-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.5971731,212.9321 c 0,0 -5.6282956,-2.66554 -5.6282956,-2.66554"
+         id="path17220-1-8-5-2-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.3889818,200.95508 c 0,0 -0.6668554,-2.26054 -0.6668554,-2.26054"
+         id="path17222-2-2-6-6-7-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.019613,199.83975 c 0,0 -2.0496712,-4.58862 -2.0496712,-4.58862"
+         id="path17224-3-3-7-4-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.723796,205.43556 c 0,0 -4.8167451,1.62032 -4.8167451,1.62032"
+         id="path17230-2-8-8-0-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.830421,202.22815 c 0,0 -5.2844241,-3.93088 -5.2844241,-3.93088"
+         id="path17232-6-6-0-7-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.758685,198.67665 c 0,0 2.265451,-2.07788 2.265451,-2.07788"
+         id="path17238-2-1-6-6-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.662292,197.37754 c -0.384099,-0.20335 -4.7540992,-3.99036 -4.7540992,-3.99036"
+         id="path17242-1-6-6-8-1-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.9596214,200.55559 c 0,0 -5.0108672,-2.04214 -5.0108672,-2.04214"
+         id="path17244-2-6-2-9-1-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.433433,207.65374 c 0,0 -2.3288849,0.24081 -2.3288849,0.24081"
+         id="path17246-6-1-5-8-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.7694457,213.82219 c 0,0 -3.5201676,3.24811 -3.9343918,3.48911"
+         id="path17248-5-3-0-0-4-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.7375174,217.00693 c 0,0 -0.6373806,2.85199 -0.6373806,2.85199"
+         id="path17250-6-4-0-0-8-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.937696,214.93453 c 0,0 4.329436,3.09787 4.329436,3.09787"
+         id="path17252-1-0-5-4-7-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.342858,203.23597 c 0.39163,-0.43682 3.227168,-3.32906 3.227168,-3.32906"
+         id="path17254-7-9-6-6-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.58372,205.05891 c 0,0 -7.5732653,-3.35766 -7.5732653,-3.35766"
+         id="path17264-0-6-3-4-2-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.067765,201.33203 c 0,0 2.56872,-5.18198 2.56872,-5.18198"
+         id="path18729-2-3-8-8-7-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.689124,203.81037 c 0,0 6.945537,-3.03156 6.945537,-3.03156"
+         id="path18731-1-0-2-1-3-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.979915,204.25702 c 0,0 5.944278,-0.59584 5.944278,-0.59584"
+         id="path18733-0-1-6-6-1-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.952979,205.74971 c 0,0 5.6246,-0.20013 5.6246,-0.20013"
+         id="path18735-0-2-4-3-3-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.145703,207.49611 c 0,0 1.800545,0.37908 1.800545,0.37908"
+         id="path18737-4-0-2-3-2-0-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.376673,208.26717 c 0,0 0.203,1.66034 0.203,1.66034"
+         id="path18739-6-9-3-1-4-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.558787,209.0042 c 0,0 1.822713,1.87547 1.822713,1.87547"
+         id="path18741-3-9-0-1-1-9-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.652506,209.60314 c 0,0 0.98471,2.01203 0.98471,2.01203"
+         id="path18743-9-3-5-1-9-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.127872,209.85701 c 0,0 1.26371,1.35473 1.26371,1.35473"
+         id="path18745-1-1-0-8-2-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.800019,210.83998 c 0,0 -0.147549,1.09252 -0.147549,1.09252"
+         id="path18747-4-8-7-5-2-9-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.142413,210.01543 c 0,0 -0.824781,2.20619 -0.824781,2.20619"
+         id="path18749-6-6-2-0-4-7-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.245003,210.51561 c 0,0 1.067327,8.92435 1.067327,8.92435"
+         id="path18751-8-7-8-9-2-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.248999,213.57101 c 0,0 0.672253,4.64981 0.672253,4.64981"
+         id="path18753-4-3-0-1-1-6-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.801325,215.32314 c 0,0 -1.250061,2.88644 -1.250061,2.88644"
+         id="path18755-2-4-2-2-3-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.469156,215.58603 c 0,0 -0.119638,3.52806 -0.119638,3.52806"
+         id="path18757-8-0-3-7-2-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.661383,214.43757 c 0,0 2.337752,2.94726 2.337752,2.94726"
+         id="path18759-2-0-5-4-6-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.699317,212.86784 c 0,0 2.386475,3.13841 2.386475,3.13841"
+         id="path18761-5-7-4-7-8-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.000555,213.63176 c 0.06025,0.44434 4.244926,1.63092 4.726933,1.74388"
+         id="path18763-9-2-3-2-5-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.086554,211.30077 c 0.512131,0.15816 2.23391,0.79768 2.746042,0.96334"
+         id="path18765-7-9-0-0-4-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.395432,211.54524 c 0,0 3.029373,1.19933 3.029373,1.19933"
+         id="path18767-8-6-7-4-4-7-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.13947,207.31105 c 0.135564,0.36904 3.510918,2.8825 3.510918,2.8825"
+         id="path18769-8-2-1-2-7-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.299635,207.97493 c 0.61757,0.24101 3.173582,1.04159 3.173582,1.04159"
+         id="path18771-3-2-8-0-3-6-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.256325,206.37766 c 0,0 1.899492,-0.20378 1.899492,-0.20378"
+         id="path18773-6-1-8-3-2-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.118924,206.38568 c 0.512131,-0.1657 2.9413,-1.88621 2.9413,-1.88621"
+         id="path18775-9-4-7-0-5-6-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.186104,201.81215 c 0,0 3.798762,0.15738 3.798762,0.15738"
+         id="path18777-6-3-4-4-2-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.226573,201.78499 c 0,0 4.396918,-2.97056 4.396918,-2.97056"
+         id="path18779-9-9-2-0-1-4-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.128695,213.79897 c 0,0 -1.535519,3.78967 -1.535519,3.78967"
+         id="path18783-9-5-2-0-5-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.498424,213.07038 c 0,0 -2.144086,3.85818 -2.144086,3.85818"
+         id="path18785-0-8-1-5-4-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.150776,212.61172 c 0,0 -2.591003,6.6527 -2.591003,6.6527"
+         id="path18787-4-3-2-5-7-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.359654,210.39222 c 0,0 -5.16897,5.78386 -5.16897,5.78386"
+         id="path18789-2-2-1-7-3-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.814118,212.64892 c 0,0 -4.399932,3.73875 -4.399932,3.73875"
+         id="path18791-2-4-7-0-8-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.934133,211.32344 c 0,0 -3.9210401,5.89301 -3.9210401,5.89301"
+         id="path18793-5-5-2-3-4-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.248681,215.96398 c 0,0 -3.4931167,1.47225 -3.4931167,1.47225"
+         id="path18795-3-5-6-8-7-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.778279,212.09317 c 0,0 -7.3110863,-0.0432 -7.3110863,-0.0432"
+         id="path18797-5-6-3-6-1-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.045859,213.15615 c 0,0 -7.880102,-1.56938 -7.880102,-1.56938"
+         id="path18799-2-7-6-9-7-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.495693,206.19104 c -0.391631,-0.0226 -9.305008,1.60564 -9.305008,1.60564"
+         id="path18801-1-7-0-1-1-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.261667,204.9253 c -0.399161,-0.18829 -7.9428072,-3.90166 -7.9428072,-3.90166"
+         id="path18803-8-8-8-0-5-5-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.267226,204.83042 c 0,0 -5.686478,-6.82567 -5.686478,-6.82567"
+         id="path18805-1-0-8-0-0-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.07756,200.61269 c 0,0 -2.289235,-5.07313 -2.394673,-5.44216"
+         id="path18819-3-8-7-5-1-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.548323,202.04255 c -0.233472,-0.37658 -1.7543622,-5.29149 -1.7543622,-5.29149"
+         id="path18821-2-2-0-8-9-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.8762428,205.29904 c 0,0 -6.4239246,-2.89056 -6.4239246,-2.89056"
+         id="path18823-9-1-8-5-4-4-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.4491972,208.59103 c 0,0 -7.4506409,1.77863 -7.4506409,1.77863"
+         id="path18825-2-3-9-7-7-4-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.174617,209.95932 c 0,0 -8.5694168,-1.56779 -8.5694168,-1.56779"
+         id="path18827-1-1-9-9-2-9-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.891917,207.11029 c -0.369037,-0.0828 -9.915006,-3.09814 -9.915006,-3.09814"
+         id="path18829-9-7-8-6-8-0-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.876715,203.68453 c 0,0 -6.5326835,-5.12771 -6.5326835,-5.12771"
+         id="path18831-3-5-4-9-0-9-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.613018,201.51054 c 0,0 -5.2012506,-6.00072 -5.2012506,-6.00072"
+         id="path18833-7-6-2-6-6-8-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.7941,204.7524 c -0.436818,-0.25606 -5.183729,-4.98008 -5.183729,-4.98008"
+         id="path18835-7-1-6-2-4-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.707906,205.4539 c -0.353973,-0.32385 -5.5782411,1.13543 -5.5782411,1.13543"
+         id="path18837-2-1-8-8-1-4-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.887888,208.25365 c 0,0 -8.1300606,3.66305 -8.1300606,3.66305"
+         id="path18839-3-1-7-8-3-9-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.40579,209.45344 c 0,0 -7.8884492,5.85286 -7.8884492,5.85286"
+         id="path18841-7-0-8-4-0-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.699759,213.79531 c -0.361504,0.0678 -7.0935199,2.7309 -7.0935199,2.7309"
+         id="path18843-1-7-5-3-7-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.5518361,210.58244 c 0,0 -7.1987355,0.10146 -7.1987355,0.10146"
+         id="path18845-4-6-9-2-0-4-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 7.9880332,205.87265 C 7.6189971,205.6693 1.8901016,205.46032 1.8901016,205.46032"
+         id="path18847-7-8-8-6-3-0-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.2513182,203.06386 c 0,0 -4.755339,-3.42789 -4.755339,-3.42789"
+         id="path18849-5-2-3-8-0-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.373973,201.24051 c 0,0 -5.1343684,-8.17523 -5.1343684,-8.17523"
+         id="path18851-7-0-6-2-5-0-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.275455,196.19627 c 0,0 1.28955,-2.75669 1.28955,-2.75669"
+         id="path18857-0-6-4-1-7-0-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.822714,196.48412 C 14.729554,195.92964 9.7713587,192.0434 9.7713587,192.0434"
+         id="path18861-4-6-7-8-3-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.418279,212.58051 c -0.406692,0.007 -5.8813771,6.64047 -6.461291,6.44466"
+         id="path18863-3-3-1-3-2-2-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.4252915,212.72364 c -0.3615048,0.26359 -6.0060582,2.26734 -6.0060582,2.26734"
+         id="path18865-7-1-5-6-1-9-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.1835383,213.61099 c 0,0 -6.0382152,1.2105 -6.0382152,1.2105"
+         id="path18867-7-7-9-5-0-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.7760216,208.70425 c -0.5046004,-0.0226 -9.6965564,-0.42943 -9.6965564,-0.42943"
+         id="path18869-7-3-4-0-8-9-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.325705,209.57648 c -0.384098,-0.0301 -4.652962,2.82699 -4.652962,2.82699"
+         id="path18871-3-7-4-8-1-1-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.158882,210.55448 c 0,0 -2.864537,5.08826 -2.864537,5.08826"
+         id="path18873-7-7-2-1-6-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.820475,213.77268 c 0,0 1.033722,4.61142 1.033722,4.61142"
+         id="path18875-4-9-0-8-7-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.657852,215.5963 c 0,0 1.125679,4.51846 1.125679,4.51846"
+         id="path18877-4-1-0-5-5-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.525709,216.815 c 0,0 -2.240314,3.19414 -2.240314,3.19414"
+         id="path18879-0-0-0-0-5-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.478721,215.59495 c 0,0 0.75533,4.08047 0.75533,4.08047"
+         id="path18881-8-0-0-1-0-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.639435,216.18178 c 0,0 -1.098952,3.38157 -1.098952,3.38157"
+         id="path18883-6-4-8-7-2-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.145836,217.37628 c 0,0 0.491329,-0.33907 0.943206,-0.0905"
+         id="path18885-1-3-1-0-6-5-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.932202,213.86546 c 0.466944,0.0602 1.873176,2.05484 1.873176,2.05484"
+         id="path18887-2-5-7-6-3-4-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.299235,211.62383 c 0.587445,0.32266 2.293471,3.67186 2.293471,3.67186"
+         id="path18889-0-7-1-7-2-0-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.318038,210.84502 c 1.182422,0.27114 4.144859,0.79868 4.144859,0.79868"
+         id="path18891-2-1-9-7-0-1-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 30.206774,207.77658 c 0,0 1.248709,-0.90964 1.248709,-0.90964"
+         id="path18893-5-2-9-6-1-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.724787,202.63245 c 0,0 4.728056,-6.25293 4.728056,-6.25293"
+         id="path18895-7-3-0-7-6-0-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 16.601832,202.64503 C 16.556642,202.1329 12.68772,197.7288 12.68772,197.7288"
+         id="path18903-7-4-9-5-0-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.319893,202.588 c 0.04519,-0.3841 3.237242,-9.14231 3.237242,-9.14231"
+         id="path18907-7-1-3-5-3-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.552445,202.41973 C 12.35663,201.99045 6.9776156,200.2099 6.9776156,200.2099"
+         id="path18913-4-1-4-3-2-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.9528408,203.52167 C 8.5235539,203.29572 2.5173672,202.94848 2.5173672,202.94848"
+         id="path18915-8-9-7-8-6-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.9956605,208.7608 c -0.5196631,-0.13556 -4.8345526,0.97685 -4.8345526,0.97685"
+         id="path18917-0-3-3-6-4-5-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.3081,209.74021 c 0,0 -5.2408216,-0.1937 -5.2408216,-0.1937"
+         id="path18919-6-9-1-4-6-9-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.861999,205.78595 c -0.361505,-0.15816 -9.6083407,-3.30103 -9.6083407,-3.30103"
+         id="path18921-7-2-7-2-6-8-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.467475,200.92387 c 0,0 -6.6945448,-3.55064 -6.6945448,-3.55064"
+         id="path18923-4-9-8-9-4-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.500028,200.2547 c 0,0 -7.2776293,-5.78499 -7.2776293,-5.78499"
+         id="path18925-9-4-2-6-6-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.582639,202.1222 c -0.406693,-0.18075 -8.2741263,-3.20732 -8.2741263,-3.20732"
+         id="path18927-6-3-5-9-9-0-5" />
+    </g>
+    <g
+       id="g61766"
+       clip-path="url(#clipPath5966)">
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.755951,233.43689 c 0,0 0.526036,-11.88832 0.526036,-11.88832"
+         id="path17170-6-5-3-5-4-3-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.725353,234.55827 c 0,0 0.766542,-5.13384 0.766542,-5.13384"
+         id="path16904-4-2-5-1-5-8-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.075515,233.70991 c 0,0 1.845103,-6.30805 1.845103,-6.30805"
+         id="path16906-3-0-4-4-5-6-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.903418,235.20645 c 0,0 -1.476753,-7.54715 -1.476753,-7.54715"
+         id="path16908-8-3-9-8-1-0-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.19879,231.88237 c 0,0 1.571314,-5.0941 1.571314,-5.0941"
+         id="path16946-6-4-7-1-2-0-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.84151,234.60684 c 0,0 1.117751,-5.21135 1.117751,-5.21135"
+         id="path16968-0-7-6-3-6-4-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.964159,231.92134 c 0,0 0.669899,-8.66241 0.669899,-8.66241"
+         id="path16970-2-7-4-7-4-1-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.313618,231.0922 c 0,0 -2.549171,-1.99813 -2.549171,-1.99813"
+         id="path16972-7-1-6-4-1-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.435427,236.90762 c 0,0 -2.514226,-3.7724 -2.514226,-3.7724"
+         id="path17076-0-6-6-8-5-8-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.984093,234.14569 c 0,0 -0.452204,-3.77802 -0.452204,-3.77802"
+         id="path17078-5-5-6-2-2-3-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.145132,234.53997 c 0,0 3.089051,-2.35591 3.089051,-2.35591"
+         id="path17080-8-5-1-3-6-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.259423,230.77459 c 0,0 -4.080393,-4.46987 -4.080393,-4.46987"
+         id="path17134-8-4-9-0-6-2-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.750403,231.12609 c 0,0 -0.694057,-4.13188 -0.694057,-4.13188"
+         id="path17136-8-6-8-4-5-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.441584,233.76169 c 0,0 1.713944,-4.4763 1.713944,-4.4763"
+         id="path17138-8-8-6-4-7-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.796492,232.66036 c 0,0 -2.795357,-8.73991 -2.795357,-8.73991"
+         id="path17158-1-1-8-5-3-0-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.571506,234.35844 c 0,0 -1.946941,-6.47659 -1.946941,-6.47659"
+         id="path17168-8-0-3-1-4-8-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.049254,233.76224 c 0,0 2.137289,-6.6454 2.137289,-6.6454"
+         id="path17172-9-1-6-6-9-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.301205,231.99242 c 0,0 2.943427,-5.71668 2.943427,-5.71668"
+         id="path17176-4-8-6-4-9-1-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.238661,229.63908 c 0,0 2.06699,-4.66189 2.06699,-4.66189"
+         id="path17178-0-9-7-6-6-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.656104,236.52172 c 0,0 0.04665,-3.40186 0.04665,-3.40186"
+         id="path17192-0-1-3-3-7-5-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.241615,235.44026 c 0,0 -0.203445,-1.77061 -0.203445,-1.77061"
+         id="path17196-3-8-0-4-1-0-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.255871,233.77259 c 0,0 -1.211569,-9.27638 -1.211569,-9.27638"
+         id="path17198-0-1-7-3-5-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.784211,231.50876 c 0,0 -0.876172,-2.11029 -0.876172,-2.11029"
+         id="path17226-7-0-4-1-5-5-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.789551,229.77651 c 0,0 -0.883632,-7.54895 -0.883632,-7.54895"
+         id="path17228-4-9-8-9-2-0-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.132955,231.86977 c 0,0 1.366438,-6.35298 1.366438,-6.35298"
+         id="path17234-6-7-2-9-4-0-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.867436,229.02453 c -0.0075,-0.80188 0.450172,-7.33775 0.450172,-7.33775"
+         id="path17236-9-3-6-5-7-6-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.246471,227.65613 c 0,0 4.357838,-1.86561 4.357838,-1.86561"
+         id="path17240-6-9-2-8-7-9-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.257186,231.0954 c 0,0 -0.468474,-4.42631 -0.468474,-4.42631"
+         id="path17256-9-1-8-3-0-6-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.084676,234.49451 c 0,0 0.563364,-4.93034 0.563364,-4.93034"
+         id="path17258-4-2-9-8-8-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.784757,234.49719 c 0,0 -3.52888,-2.22123 -3.52888,-2.22123"
+         id="path17260-7-6-5-0-3-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.729461,233.78749 c 0,0 1.894757,-6.86245 1.894757,-6.86245"
+         id="path18781-7-4-2-2-4-5-7-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.54358,229.76145 c 0,0 -5.456317,-6.30942 -5.456317,-6.30942"
+         id="path16948-5-6-2-6-5-5-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.116152,235.89453 c 0,0 -3.633193,-7.86472 -3.633193,-7.86472"
+         id="path18807-4-8-6-1-4-0-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.487374,235.2468 c 0,0 -2.753203,-7.40685 -2.753203,-7.40685"
+         id="path18809-4-6-5-9-1-1-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.049147,234.94955 c 0,0 -0.868123,-10.33473 -0.868123,-10.33473"
+         id="path18811-9-8-0-3-4-6-8-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.43293,234.54764 c 0,0 6.284369,-10.80345 6.284369,-10.80345"
+         id="path18813-5-6-5-8-5-5-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.684639,227.52112 c 0,0 1.128499,-1.21985 1.173687,-1.55876"
+         id="path18815-0-2-4-7-4-9-0-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.158121,231.68732 c 0,0 -0.870734,-6.21827 -0.870734,-6.21827"
+         id="path18817-1-2-3-7-3-3-9-9" />
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.227488,230.33166 c 0,0 -3.616619,-7.27486 -3.616619,-7.27486"
+         id="path18853-2-4-1-6-0-6-0-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.654538,229.61329 c 0,0 -2.0112,-6.18435 -2.086514,-6.59105"
+         id="path18855-2-9-9-5-4-4-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.818122,227.53229 c 0,0 1.589193,-4.55763 1.589193,-4.55763"
+         id="path18859-7-1-8-5-5-5-4-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.763814,232.07521 c 0.05272,-0.39916 3.06862,-5.63295 3.06862,-6.00198"
+         id="path18897-0-4-7-7-5-2-9-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.740051,231.80888 c 0,0 -2.30409,-4.22199 -2.30409,-4.22199"
+         id="path18899-9-3-7-4-4-3-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.274028,235.68921 c 0,0 -1.28493,-7.97917 -1.28493,-7.97917"
+         id="path18901-0-4-6-3-0-2-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.731572,233.95412 c 0,0 0.199587,-9.64004 0.199587,-9.64004"
+         id="path18905-0-2-8-6-9-1-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.820715,230.65403 c -0.02259,-0.53222 -0.0208,-8.92061 -0.0208,-8.92061"
+         id="path18909-6-2-7-3-2-6-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.061222,226.6411 c 0,0 -0.762684,-3.59553 -0.762684,-3.59553"
+         id="path18911-5-4-3-9-1-9-8-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.257493,242.57092 c 0,0 -0.461238,1.45767 -0.461238,1.45767"
+         id="path16888-8-2-2-5-2-1-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.604069,242.89793 c 0,0 1.540474,1.10196 1.540474,1.10196"
+         id="path16890-6-5-9-6-7-5-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.244409,243.28078 c 0,0 -0.310464,-1.57879 -0.310464,-1.57879"
+         id="path16892-9-4-6-7-5-8-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.836173,240.44753 c 0,0 1.841442,0.28393 1.841442,0.28393"
+         id="path16894-9-3-8-0-0-8-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.403311,238.61098 c 0,0 3.238606,3.90111 3.238606,3.90111"
+         id="path16896-1-5-1-2-8-5-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.087951,237.7777 c 0,0 4.849245,-0.97472 4.849245,-0.97472"
+         id="path16898-6-7-5-3-0-2-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.412901,236.93896 c 0,0 4.90908,-4.23527 4.90908,-4.23527"
+         id="path16900-6-5-2-4-7-6-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.466917,234.02944 c 0,0 4.483905,-3.65187 4.483905,-3.65187"
+         id="path16902-3-6-9-1-3-7-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.426892,234.98186 c 0,0 -0.849453,-6.64856 -0.849453,-6.64856"
+         id="path16910-6-5-9-2-6-2-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.499509,236.96543 c 0,0 -5.8182639,-5.18883 -5.8182639,-5.18883"
+         id="path16912-9-9-0-9-4-2-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.603786,239.52054 c 0,0 -6.4177224,-5.28255 -6.4177224,-5.28255"
+         id="path16914-9-5-4-1-0-9-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.33487,239.38731 c 0,0 -9.278334,-2.58206 -9.278334,-2.58206"
+         id="path16916-5-8-7-7-8-0-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.537949,242.12628 c 0,0 -8.3229309,1.10716 -8.3229309,1.10716"
+         id="path16918-3-3-9-8-5-6-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.611016,240.85326 c 0,0 -6.7387366,-4.90758 -6.7387366,-4.90758"
+         id="path16920-4-3-9-2-5-0-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.03222,241.31636 c 0,0 -6.8093835,6.84877 -6.8093835,6.84877"
+         id="path16922-3-1-2-4-3-0-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.9865011,245.32763 c 0,0 -5.341179,1.3829 -5.341179,1.3829"
+         id="path16924-7-9-4-6-0-2-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.297246,242.66937 c 0,0 -4.598966,5.74476 -4.598966,5.74476"
+         id="path16926-5-9-0-8-5-4-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.785367,246.50543 c 0,0 -0.724699,4.59125 -0.724699,4.59125"
+         id="path16928-2-6-1-5-6-6-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.596688,245.36134 c 0,0 2.299398,5.93081 2.299398,5.93081"
+         id="path16930-1-1-9-2-8-0-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.030834,247.62417 c 0,0 3.239353,4.28787 3.239353,4.28787"
+         id="path16932-5-7-1-3-2-9-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.718564,246.71911 c 0,0 2.231395,5.3701 2.231395,5.3701"
+         id="path16934-7-1-0-1-7-6-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.175511,247.67944 c 0,0 1.051726,0.81386 1.051726,0.81386"
+         id="path16936-8-4-9-5-1-1-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.454026,243.39158 c 0,0 4.345706,1.86125 4.345706,1.86125"
+         id="path16938-8-0-7-5-8-9-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.763038,242.65912 c 0,0 3.692,-0.78686 3.692,-0.78686"
+         id="path16940-5-2-5-8-4-6-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.096967,240.38926 c 0,0 1.997656,-3.07842 1.997656,-3.07842"
+         id="path16942-6-5-4-2-9-5-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.712575,237.40488 c 0,0 4.897122,-2.9428 4.897122,-2.9428"
+         id="path16944-9-8-7-0-2-9-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.842061,233.87 c 0,0 -4.3014984,-3.56923 -4.3014984,-3.56923"
+         id="path16950-7-0-9-4-7-0-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.5329299,241.41268 c 0,0 -4.1142468,0.66875 -4.1142468,0.66875"
+         id="path16952-4-1-0-2-1-7-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.3602588,247.06267 c 0,0 -3.6915154,3.19529 -3.6915154,3.19529"
+         id="path16954-6-6-5-0-5-7-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.072926,246.96576 c 0,0 -1.601486,1.75341 -1.601486,1.75341"
+         id="path16956-9-9-2-6-5-4-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.963776,241.84724 c 0,0 -7.2121485,0.0987 -7.2121485,0.0987"
+         id="path16958-8-7-9-6-0-7-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.9484,244.10289 c 0,0 -6.5049975,4.55925 -6.5049975,4.55925"
+         id="path16960-4-0-9-7-8-8-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.4441,245.20189 c 0,0 -5.1498464,4.51966 -5.1498464,4.51966"
+         id="path16962-7-5-3-4-3-9-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.827928,236.44846 c 0,0 -3.245993,-4.99869 -3.245993,-4.99869"
+         id="path16964-1-1-7-5-5-5-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.812892,237.43119 c 0,0 -3.974595,-5.66168 -3.974595,-5.66168"
+         id="path16966-8-3-7-8-0-9-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.632963,235.34515 c 0,0 2.239251,-3.34096 2.239251,-3.34096"
+         id="path16974-1-2-4-6-1-7-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.129694,242.38737 c 0,0 4.812447,1.00786 4.812447,1.00786"
+         id="path16976-3-9-4-0-7-7-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.926013,244.1318 c 0,0 1.126827,2.15655 1.126827,2.15655"
+         id="path16978-4-9-1-2-9-5-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.576999,246.76042 c 0,0 1.739574,4.75702 1.739574,4.75702"
+         id="path16980-4-9-6-9-6-4-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.172739,249.48748 c 0,0 0.368139,2.31377 0.368139,2.31377"
+         id="path16982-7-6-4-5-3-1-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.807526,247.70704 c 0,0 0.967962,4.27797 0.967962,4.27797"
+         id="path16984-7-0-1-3-4-7-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.382676,249.50846 c 0,0 -0.612077,0.61507 -0.612077,0.61507"
+         id="path16986-4-6-0-1-8-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.377398,244.14323 c 0,0 -1.91369,6.1057 -1.91369,6.1057"
+         id="path17062-4-4-3-4-3-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.306681,243.65089 c 0,0 -4.355721,1.40649 -4.355721,1.40649"
+         id="path17064-9-3-3-3-1-5-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.87042,245.34809 c 0,0 -2.213437,4.03965 -2.213437,4.03965"
+         id="path17066-5-0-1-5-3-6-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.045648,245.72811 c 0,0 -3.549692,2.35214 -3.549692,2.35214"
+         id="path17068-7-5-5-8-9-2-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.760947,243.18338 c 0,0 -2.8940847,3.97753 -2.8940847,3.97753"
+         id="path17070-3-4-7-9-3-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.503604,242.54207 c 0,0 -8.6630661,-1.48042 -8.6630661,-1.48042"
+         id="path17072-3-1-4-3-1-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.215845,236.99691 c 0,0 -3.4201943,-2.71995 -3.4201943,-2.71995"
+         id="path17074-0-4-8-5-7-0-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.135051,237.66181 c 0,0 2.926179,-2.23691 2.926179,-2.23691"
+         id="path17082-1-5-6-1-1-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.028668,239.26358 c 0,0 3.722995,-1.23788 3.722995,-1.23788"
+         id="path17084-7-8-5-8-3-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.91676,239.64384 c 0,0 2.943576,0.58426 2.943576,0.58426"
+         id="path17086-2-5-8-9-5-6-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.18353,241.85769 c 0,0 1.906273,1.85425 1.906273,1.85425"
+         id="path17088-0-1-5-8-3-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.835112,241.3564 c 0,0 0.589142,0.90551 0.589142,0.90551"
+         id="path17090-4-9-4-4-2-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.282921,240.83772 c 0,0 -0.0058,3.85887 -0.0058,3.85887"
+         id="path17092-1-9-3-9-9-4-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.290095,242.73059 c 0,0 -0.647822,1.25557 -0.647822,1.25557"
+         id="path17094-3-6-2-3-2-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.048114,242.10486 c 0,0 -0.278195,4.01848 -0.278195,4.01848"
+         id="path17096-0-7-1-4-6-2-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.262391,247.09365 c 0,0 0.578068,4.20126 0.578068,4.20126"
+         id="path17098-3-9-5-3-8-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.441833,247.07942 c 0,0 -1.360763,4.33696 -1.360763,4.33696"
+         id="path17100-0-0-2-5-3-4-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.939305,245.70827 c 0,0 3.977363,0.5083 3.977363,0.5083"
+         id="path17102-4-5-6-6-2-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.590912,244.7035 c 0,0 3.795274,0.18744 3.795274,0.18744"
+         id="path17104-0-9-7-0-3-8-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.850093,246.86342 c 0,0 2.363916,3.08701 2.363916,3.08701"
+         id="path17106-1-7-1-3-6-1-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.015868,247.86163 c 0,0 0.191742,2.44741 0.191742,2.44741"
+         id="path17108-0-6-8-4-2-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.713499,244.9892 c 0,0 1.9372,4.40044 1.9372,4.40044"
+         id="path17110-7-6-3-6-8-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.076541,246.62709 c 0,0 -1.151046,4.90538 -1.151046,4.90538"
+         id="path17112-7-8-0-1-1-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.545666,245.16291 c 0,0 -1.444499,1.35501 -1.444499,1.35501"
+         id="path17114-7-1-5-4-4-9-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.113112,243.12134 c 0,0 -5.0915208,3.72732 -5.0915208,3.72732"
+         id="path17116-0-8-7-3-2-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.0441098,243.40655 c 0,0 -2.3627215,4.90264 -2.3627215,4.90264"
+         id="path17118-4-9-6-1-1-5-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.2542958,243.02844 c 0,0 -4.4201459,2.89084 -4.4201459,2.89084"
+         id="path17120-4-2-9-8-3-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 5.0958463,240.97918 c 0,0 -4.16204764,0.53544 -4.16204764,0.53544"
+         id="path17122-8-9-5-4-8-3-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.537523,239.34706 c 0,0 -4.602785,-2.22978 -4.602785,-2.22978"
+         id="path17124-0-5-0-8-4-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.3526643,237.63255 c 0,0 -5.4069321,-3.43066 -5.4069321,-3.43066"
+         id="path17126-3-4-0-3-9-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.154753,235.51856 c 0,0 -6.8533175,-2.64547 -6.8533175,-2.64547"
+         id="path17128-5-6-5-5-7-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.597689,233.32643 c 0,0 -0.52567,-2.4078 -0.52567,-2.4078"
+         id="path17130-8-2-6-3-0-1-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.473055,231.42991 c 0,0 -2.565355,-3.39651 -2.565355,-3.39651"
+         id="path17132-6-7-3-7-2-8-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.846477,234.9726 c 0,0 2.784628,-3.70949 2.784628,-3.70949"
+         id="path17140-3-6-7-2-0-4-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.355257,234.45478 c 0,0 3.049678,-0.11245 3.049678,-0.11245"
+         id="path17142-8-7-3-3-9-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.50525,238.26801 c 0,0 4.45811,-1.37932 4.45811,-1.37932"
+         id="path17144-9-1-2-8-5-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.091427,241.71149 c 0,0 2.575841,1.25134 2.575841,1.25134"
+         id="path17146-2-7-1-7-3-7-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.261899,243.87103 c 0,0 2.692547,1.79204 2.692547,1.79204"
+         id="path17148-3-1-2-1-8-5-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.05585,247.01552 c 0,0 2.711934,0.27912 2.711934,0.27912"
+         id="path17150-9-8-9-2-7-9-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.672117,239.73249 c 0,0 -7.4983228,-1.75573 -7.4983228,-1.75573"
+         id="path17152-9-6-8-6-7-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.733875,235.14601 c 0,0 -6.8985446,-3.83116 -6.8985446,-3.83116"
+         id="path17154-4-8-2-0-5-1-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.115502,237.84439 c 0,0 -4.9761102,-2.57656 -4.9761102,-2.57656"
+         id="path17156-4-0-6-0-0-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.366472,233.6357 c 0,0 -11.0291257,-8.50335 -11.0291257,-8.50335"
+         id="path17160-0-7-2-0-1-1-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.3457879,240.38797 c 0,0 -3.5264643,-0.68909 -3.5264643,-0.68909"
+         id="path17162-5-8-8-9-4-5-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.2282819,243.05264 c 0,0 -4.3339093,1.89474 -4.3339093,1.89474"
+         id="path17164-6-6-8-3-4-3-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.381296,244.36358 c -0.361505,0.0602 -6.8311247,3.38333 -6.8311247,3.38333"
+         id="path17166-2-6-4-6-7-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.299455,234.30226 c 0,0 7.225744,-4.52016 7.225744,-4.52016"
+         id="path17174-5-9-3-4-4-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.191773,236.63085 c 0.39163,-0.20335 2.114066,-2.80382 2.114066,-2.80382"
+         id="path17180-1-6-0-1-7-8-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.609432,237.12513 c 0.421755,-0.11297 3.247025,0.26065 3.247025,0.26065"
+         id="path17182-8-1-2-5-1-3-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.09006,240.94298 c 0.466943,0.007 2.444251,0.44441 2.444251,0.44441"
+         id="path17184-8-8-2-4-8-9-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.5659,240.88351 c 0,0 -2.590979,0.8624 -2.590979,0.8624"
+         id="path17186-2-5-3-6-5-1-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.602631,237.54383 c 0,0 4.193116,-1.62331 4.539558,-1.77394"
+         id="path17188-4-9-2-9-5-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.702053,235.5074 c 0,0 2.825199,-0.48103 2.825199,-0.48103"
+         id="path17190-5-6-5-1-6-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.770647,236.44479 c 0,0 1.623529,-2.23581 1.623529,-2.23581"
+         id="path17194-2-6-5-7-7-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.125852,239.15199 c 0,0 -1.333445,-4.41397 -1.333445,-4.41397"
+         id="path17200-1-1-8-5-9-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.742519,239.95906 c 0,0 -3.729445,-0.77924 -3.729445,-0.77924"
+         id="path17202-8-7-5-6-0-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.556432,240.661 c 0,0 -1.455148,0.82331 -1.455148,0.82331"
+         id="path17204-1-5-4-1-8-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.22061,242.40578 c 0,0 -1.240301,2.02147 -1.240301,2.02147"
+         id="path17206-0-5-7-5-5-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.988414,242.99676 c 0,0 -2.060909,1.6585 -2.060909,1.6585"
+         id="path17208-1-6-0-0-9-0-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.880545,245.03862 c 0,0 -2.639814,3.32224 -2.639814,3.32224"
+         id="path17210-6-3-6-9-4-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.116521,245.04467 c 0,0 -4.483537,5.80658 -4.483537,5.80658"
+         id="path17212-2-0-9-8-4-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.835843,244.45189 c 0,0 -4.723385,1.39236 -4.723385,1.39236"
+         id="path17214-0-2-6-8-6-8-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.436769,242.44869 c 0,0 -2.3085676,1.35571 -2.3085676,1.35571"
+         id="path17216-2-5-2-2-6-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.90328,239.66846 c 0,0 -5.5797271,0.0219 -5.5797271,0.0219"
+         id="path17218-6-9-5-5-9-1-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.2020057,244.62576 c 0,0 -5.4796159,-2.79422 -5.4796159,-2.79422"
+         id="path17220-1-8-5-2-8-3-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.8523233,233.143 c 0,0 -1.2426672,-2.93565 -1.2426672,-2.93565"
+         id="path17222-2-2-6-6-7-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.674817,231.47765 c 0,0 -1.551459,-3.75064 -1.551459,-3.75064"
+         id="path17224-3-3-7-4-4-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.754322,236.93649 c 0,0 -4.7819991,2.61511 -4.7819991,2.61511"
+         id="path17230-2-8-8-0-4-2-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.533082,233.82617 c 0,0 -4.4974089,-3.62998 -4.4974089,-3.62998"
+         id="path17232-6-6-0-7-6-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.936659,230.2094 c 0,0 2.266605,-2.07744 2.266605,-2.07744"
+         id="path17238-2-1-6-6-1-1-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.120963,229.17849 c -0.384099,-0.20335 -5.2544277,-4.28957 -5.2544277,-4.28957"
+         id="path17242-1-6-6-8-1-0-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.0603311,232.06584 c 0,0 -4.6937495,-1.82702 -4.6937495,-1.82702"
+         id="path17244-2-6-2-9-1-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.7940922,239.30744 c 0,0 -3.106333,0.31091 -3.106333,0.31091"
+         id="path17246-6-1-5-8-3-7-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.5560038,245.37004 c 0,0 -3.4113262,4.1892 -3.8255504,4.4302"
+         id="path17248-5-3-0-0-4-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.23751,248.84566 c 0,0 -0.9050316,3.2921 -0.9050316,3.2921"
+         id="path17250-6-4-0-0-8-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.329559,246.62398 c 0,0 3.764886,2.93919 3.764886,2.93919"
+         id="path17252-1-0-5-4-7-0-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.87671,235.41682 c 0.39163,-0.43682 3.640134,-4.00707 3.640134,-4.00707"
+         id="path17254-7-9-6-6-3-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.100415,236.93078 c 0,0 -6.7705015,-2.84489 -6.7705015,-2.84489"
+         id="path17264-0-6-3-4-2-8-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.580392,233.44369 c 0,0 3.388334,-4.91999 3.388334,-4.91999"
+         id="path18729-2-3-8-8-7-7-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.046102,236.16047 c 0,0 6.13475,-3.59156 6.13475,-3.59156"
+         id="path18731-1-0-2-1-3-5-2-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.416483,236.50076 c 0,0 5.837553,-0.46381 5.837553,-0.46381"
+         id="path18733-0-1-6-6-1-2-9-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.661179,237.34369 c 0,0 5.418897,0.15598 5.418897,0.15598"
+         id="path18735-0-2-4-3-3-2-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.499987,239.84893 c 0,0 1.660645,0.47797 1.660645,0.47797"
+         id="path18737-4-0-2-3-2-0-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.106917,240.68816 c 0,0 0.89801,0.97637 0.89801,0.97637"
+         id="path18739-6-9-3-1-4-1-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.298652,241.4312 c 0,0 1.583048,1.4626 1.583048,1.4626"
+         id="path18741-3-9-0-1-1-9-4-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.689883,242.10174 c 0,0 0.627203,1.12935 0.627203,1.12935"
+         id="path18743-9-3-5-1-9-2-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.626546,241.89341 c 0,0 1.199999,1.56492 1.199999,1.56492"
+         id="path18745-1-1-0-8-2-1-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.72778,242.34523 c 0,0 0.400135,1.43251 0.400135,1.43251"
+         id="path18747-4-8-7-5-2-9-3-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.653752,242.12131 c 0,0 0.161296,2.15108 0.161296,2.15108"
+         id="path18749-6-6-2-0-4-7-9-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.572277,242.89362 c 0,0 0.788519,8.04869 0.788519,8.04869"
+         id="path18751-8-7-8-9-2-0-9-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.749235,245.58639 c 0,0 0.68358,4.74134 0.68358,4.74134"
+         id="path18753-4-3-0-1-1-6-0-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.960254,247.79721 c 0,0 -1.900278,2.5053 -1.900278,2.5053"
+         id="path18755-2-4-2-2-3-3-0-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.717252,247.15192 c 0,0 -0.569974,4.41944 -0.569974,4.41944"
+         id="path18757-8-0-3-7-2-8-7-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.217571,246.20729 c 0,0 3.003454,2.72947 3.003454,2.72947"
+         id="path18759-2-0-5-4-6-2-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.592834,244.37931 c 0,0 2.538494,4.12486 2.538494,4.12486"
+         id="path18761-5-7-4-7-8-2-4-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.430954,245.37729 c 0.06025,0.44434 4.008312,1.42447 4.490319,1.53743"
+         id="path18763-9-2-3-2-5-9-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.666482,243.57195 c 0.512131,0.15816 3.148325,0.4515 3.660457,0.61716"
+         id="path18765-7-9-0-0-4-0-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.896621,243.51077 c 0,0 3.748025,1.68288 3.748025,1.68288"
+         id="path18767-8-6-7-4-4-7-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.891142,238.87708 c 0.135564,0.36904 3.352309,3.60699 3.352309,3.60699"
+         id="path18769-8-2-1-2-7-3-4-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.995312,240.37165 c 0.61757,0.24101 3.747424,1.06601 3.747424,1.06601"
+         id="path18771-3-2-8-0-3-6-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.510779,237.94725 c 0,0 1.172233,0.38928 1.172233,0.38928"
+         id="path18773-6-1-8-3-2-0-8-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.539773,238.65565 c 0.512131,-0.1657 2.997243,-2.00562 2.997243,-2.00562"
+         id="path18775-9-4-7-0-5-6-7-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.599067,233.53026 c 0,0 3.158438,-0.006 3.158438,-0.006"
+         id="path18777-6-3-4-4-2-9-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.872965,233.43149 c 0,0 5.104962,-2.26439 5.104962,-2.26439"
+         id="path18779-9-9-2-0-1-4-5-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.46519,245.42914 c 0,0 -1.384843,4.04696 -1.384843,4.04696"
+         id="path18783-9-5-2-0-5-2-1-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.69424,244.61032 c 0,0 -2.772507,4.06754 -2.772507,4.06754"
+         id="path18785-0-8-1-5-4-7-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.485581,244.98308 c 0,0 -2.836817,6.77336 -2.836817,6.77336"
+         id="path18787-4-3-2-5-7-1-6-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.050829,241.99899 c 0,0 -4.800039,5.68072 -4.800039,5.68072"
+         id="path18789-2-2-1-7-3-5-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.313172,244.67966 c 0,0 -4.930213,3.20899 -4.930213,3.20899"
+         id="path18791-2-4-7-0-8-0-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.135432,243.78113 c 0,0 -4.0607339,5.93151 -4.0607339,5.93151"
+         id="path18793-5-5-2-3-4-8-6-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.7895228,247.76606 c 0,0 -3.3297961,2.07326 -3.3297961,2.07326"
+         id="path18795-3-5-6-8-7-2-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.546257,244.53608 c 0,0 -7.2818802,-0.94313 -7.2818802,-0.94313"
+         id="path18797-5-6-3-6-1-4-3-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.684508,244.81057 c 0,0 -7.7390875,-1.67263 -7.7390875,-1.67263"
+         id="path18799-2-7-6-9-7-1-0-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.222948,238.6101 c -0.391631,-0.0226 -9.4279028,0.88085 -9.4279028,0.88085"
+         id="path18801-1-7-0-1-1-5-0-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 15.775788,237.04329 C 15.376627,236.855 8.3513666,232.5247 8.3513666,232.5247"
+         id="path18803-8-8-8-0-5-5-3-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.974165,236.42531 c 0,0 -4.91142,-6.2876 -4.91142,-6.2876"
+         id="path18805-1-0-8-0-0-2-6-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.543153,232.79496 c 0,0 -3.142369,-5.57133 -3.247807,-5.94036"
+         id="path18819-3-8-7-5-1-7-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.568614,234.54214 c -0.233472,-0.37658 -2.0161895,-6.22887 -2.0161895,-6.22887"
+         id="path18821-2-2-0-8-9-7-2-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.3802316,237.36207 c 0,0 -5.5898471,-2.5852 -5.5898471,-2.5852"
+         id="path18823-9-1-8-5-4-4-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9571286,240.50233 c 0,0 -6.8818106,2.3614 -6.8818106,2.3614"
+         id="path18825-2-3-9-7-7-4-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.899566,242.37687 c 0,0 -8.688581,-1.67778 -8.688581,-1.67778"
+         id="path18827-1-1-9-9-2-9-1-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.992086,238.62043 C 13.623049,238.53763 3.5035832,236.17327 3.5035832,236.17327"
+         id="path18829-9-7-8-6-8-0-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.752,236.16873 c 0,0 -6.4770575,-5.11671 -6.4770575,-5.11671"
+         id="path18831-3-5-4-9-0-9-4-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.580768,233.01158 c 0,0 -5.2803893,-5.98919 -5.2803893,-5.98919"
+         id="path18833-7-6-2-6-6-8-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.301993,236.66391 c -0.436818,-0.25606 -5.189373,-4.84422 -5.189373,-4.84422"
+         id="path18835-7-1-6-2-4-2-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.234568,237.29281 c -0.353973,-0.32385 -5.3954071,1.70347 -5.3954071,1.70347"
+         id="path18837-2-1-8-8-1-4-8-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.193988,239.8583 c 0,0 -8.5915107,3.58315 -8.5915107,3.58315"
+         id="path18839-3-1-7-8-3-9-3-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.646856,241.89149 c 0,0 -8.087067,5.913 -8.087067,5.913"
+         id="path18841-7-0-8-4-0-2-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.244944,246.00302 c -0.3615036,0.0678 -7.0070145,2.86134 -7.0070145,2.86134"
+         id="path18843-1-7-5-3-7-1-3-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.3083931,243.01917 c 0,0 -6.6467939,-0.72875 -6.6467939,-0.72875"
+         id="path18845-4-6-9-2-0-4-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.4006381,238.15506 C 8.031602,237.95171 1.4468735,237.69173 1.4468735,237.69173"
+         id="path18847-7-8-8-6-3-0-3-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.7206457,235.23629 c 0,0 -5.6814758,-3.80361 -5.6814758,-3.80361"
+         id="path18849-5-2-3-8-0-3-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.969511,232.94655 c 0,0 -4.3053079,-8.14531 -4.3053079,-8.14531"
+         id="path18851-7-0-6-2-5-0-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.945758,228.57217 c 0,0 1.985441,-2.79215 1.985441,-2.79215"
+         id="path18857-0-6-4-1-7-0-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.93745,228.97078 c -0.09316,-0.55448 -4.689441,-5.07839 -4.689441,-5.07839"
+         id="path18861-4-6-7-8-3-7-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.703542,244.16987 c -0.406692,0.007 -5.7830071,6.73045 -6.362921,6.53464"
+         id="path18863-3-3-1-3-2-2-8-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.3114438,245.21051 c -0.3615048,0.26359 -5.8287287,1.28452 -5.8287287,1.28452"
+         id="path18865-7-1-5-6-1-9-0-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.4212313,245.1711 c 0,0 -6.1919259,2.14329 -6.1919259,2.14329"
+         id="path18867-7-7-9-5-0-1-3-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.687464,241.07291 C 10.182866,241.05031 0.16109819,240.36368 0.16109819,240.36368"
+         id="path18869-7-3-4-0-8-9-8-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.509542,242.04146 c -0.384098,-0.0301 -5.2298036,2.67112 -5.2298036,2.67112"
+         id="path18871-3-7-4-8-1-1-2-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.065145,242.06335 c 0,0 -3.223919,5.36801 -3.223919,5.36801"
+         id="path18873-7-7-2-1-6-9-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.298659,245.6266 c 0,0 0.7934,4.3177 0.7934,4.3177"
+         id="path18875-4-9-0-8-7-2-3-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.186862,247.97036 c 0,0 1.604885,3.85069 1.604885,3.85069"
+         id="path18877-4-1-0-5-5-6-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.500102,249.46164 c 0,0 -1.915553,2.29417 -1.915553,2.29417"
+         id="path18879-0-0-0-0-5-2-2-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.810557,247.22094 c 0,0 0.382065,3.9562 0.382065,3.9562"
+         id="path18881-8-0-0-1-0-7-4-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.544622,248.67271 c 0,0 -0.665252,2.523 -0.665252,2.523"
+         id="path18883-6-4-8-7-2-1-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.441837,248.97331 c 0,0 -0.119855,0.45205 0.332022,0.70062"
+         id="path18885-1-3-1-0-6-5-9-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.080047,245.45019 c 0.466944,0.0602 2.637233,2.35087 2.637233,2.35087"
+         id="path18887-2-5-7-6-3-4-8-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.2157,243.13086 c 0.587445,0.32266 2.4788,3.6753 2.4788,3.6753"
+         id="path18889-0-7-1-7-2-0-4-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.852176,242.66344 c 1.182422,0.27114 5.107949,1.03283 5.107949,1.03283"
+         id="path18891-2-1-9-7-0-1-9-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 30.186252,239.277 c 0,0 1.094061,0.0583 1.094061,0.0583"
+         id="path18893-5-2-9-6-1-0-9-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.215936,234.53879 c 0,0 4.604059,-6.49868 4.604059,-6.49868"
+         id="path18895-7-3-0-7-6-0-7-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.139859,234.83629 c -0.04519,-0.51213 -3.01987,-4.85621 -3.01987,-4.85621"
+         id="path18903-7-4-9-5-0-1-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.581475,234.16188 c 0.04519,-0.3841 2.520152,-8.92238 2.520152,-8.92238"
+         id="path18907-7-1-3-5-3-1-3-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.175796,234.09089 c -0.195815,-0.42928 -4.7432564,-1.67352 -4.7432564,-1.67352"
+         id="path18913-4-1-4-3-2-0-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.5495741,235.81726 C 8.1202872,235.59131 2.6716031,235.4241 2.6716031,235.4241"
+         id="path18915-8-9-7-8-6-3-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.2420675,241.19587 c -0.5196631,-0.13556 -5.3271168,0.10657 -5.3271168,0.10657"
+         id="path18917-0-3-3-6-4-5-1-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.14993,241.26589 c 0,0 -5.5085382,0.0187 -5.5085382,0.0187"
+         id="path18919-6-9-1-4-6-9-4-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.296665,238.03306 C 13.93516,237.8749 3.8756649,234.81221 3.8756649,234.81221"
+         id="path18921-7-2-7-2-6-8-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.152302,232.53571 c 0,0 -6.0889004,-3.56945 -6.0889004,-3.56945"
+         id="path18923-4-9-8-9-4-8-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.350183,231.77768 c 0,0 -7.0118938,-5.79435 -7.0118938,-5.79435"
+         id="path18925-9-4-2-6-6-3-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.581943,233.6222 C 10.17525,233.44145 2.4061021,231.40526 2.4061021,231.40526"
+         id="path18927-6-3-5-9-9-0-5-1" />
+    </g>
+    <g
+       id="g62272"
+       clip-path="url(#clipPath5970)">
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.255157,266.44849 c 0,0 0.509333,-11.78537 0.509333,-11.78537"
+         id="path17170-6-5-3-5-4-3-3-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.543873,268.00761 c 0,0 1.239123,-5.19322 1.239123,-5.19322"
+         id="path16904-4-2-5-1-5-8-1-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.987006,267.18545 c 0,0 2.230088,-7.20277 2.230088,-7.20277"
+         id="path16906-3-0-4-4-5-6-3-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.518672,268.50922 c 0,0 -1.456972,-7.52472 -1.456972,-7.52472"
+         id="path16908-8-3-9-8-1-0-5-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.647855,264.64594 c 0,0 0.911636,-4.42075 0.911636,-4.42075"
+         id="path16946-6-4-7-1-2-0-6-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.210402,267.9278 c 0,0 0.471909,-5.13258 0.471909,-5.13258"
+         id="path16968-0-7-6-3-6-4-5-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.841059,265.38939 c 0,0 0.293003,-9.14495 0.293003,-9.14495"
+         id="path16970-2-7-4-7-4-1-6-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.351672,264.57419 c 0,0 -2.424386,-2.02394 -2.424386,-2.02394"
+         id="path16972-7-1-6-4-1-6-2-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.156872,270.30628 c 0,0 -1.73568,-4.19068 -1.73568,-4.19068"
+         id="path17076-0-6-6-8-5-8-2-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.475931,267.2191 c 0,0 -0.444257,-3.85334 -0.444257,-3.85334"
+         id="path17078-5-5-6-2-2-3-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.131787,267.02359 c 0,0 2.633929,-1.68134 2.633929,-1.68134"
+         id="path17080-8-5-1-3-6-9-3-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.849186,263.47219 c 0,0 -3.477416,-3.72267 -3.477416,-3.72267"
+         id="path17134-8-4-9-0-6-2-2-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.257885,264.02336 c 0,0 0.06464,-4.46897 0.06464,-4.46897"
+         id="path17136-8-6-8-4-5-6-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.877614,266.98983 c 0,0 0.981201,-5.12344 0.981201,-5.12344"
+         id="path17138-8-8-6-4-7-7-5-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.867873,266.13868 c 0,0 -2.368656,-9.19103 -2.368656,-9.19103"
+         id="path17158-1-1-8-5-3-0-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.169663,267.63941 c 0,0 -1.060833,-6.89857 -1.060833,-6.89857"
+         id="path17168-8-0-3-1-4-8-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.979099,266.25063 c 0,0 2.465818,-5.72228 2.465818,-5.72228"
+         id="path17172-9-1-6-6-9-4-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.224235,264.48182 c 0,0 3.382004,-4.87733 3.382004,-4.87733"
+         id="path17176-4-8-6-4-9-1-9-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.23858,263.12252 c 0,0 2.287025,-4.71287 2.287025,-4.71287"
+         id="path17178-0-9-7-6-6-8-9-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.593181,270.00118 c 0,0 0.591874,-4.02974 0.591874,-4.02974"
+         id="path17192-0-1-3-3-7-5-9-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.631165,268.11025 c 0,0 -0.329279,-1.88196 -0.329279,-1.88196"
+         id="path17196-3-8-0-4-1-0-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.589924,266.384 c 0,0 -1.331687,-8.45243 -1.331687,-8.45243"
+         id="path17198-0-1-7-3-5-4-9-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.054833,264.07177 c 0,0 -0.647921,-1.65631 -0.647921,-1.65631"
+         id="path17226-7-0-4-1-5-5-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.507344,263.1727 c 0,0 -0.757141,-8.43683 -0.757141,-8.43683"
+         id="path17228-4-9-8-9-2-0-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.188455,265.35012 c 0,0 1.773812,-7.03896 1.773812,-7.03896"
+         id="path17234-6-7-2-9-4-0-0-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.365616,261.96534 c -0.0075,-0.80188 0.285386,-6.9225 0.285386,-6.9225"
+         id="path17236-9-3-6-5-7-6-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.738477,260.72862 c 0,0 3.723607,-1.47531 3.723607,-1.47531"
+         id="path17240-6-9-2-8-7-9-4-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.026766,263.6351 c 0,0 -0.650233,-3.69954 -0.650233,-3.69954"
+         id="path17256-9-1-8-3-0-6-4-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.584473,267.49218 c 0,0 0.226925,-5.41713 0.226925,-5.41713"
+         id="path17258-4-2-9-8-8-2-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.923419,267.00024 c 0,0 -3.920082,-2.17238 -3.920082,-2.17238"
+         id="path17260-7-6-5-0-3-1-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.225906,266.83045 c 0,0 1.65296,-7.35227 1.65296,-7.35227"
+         id="path18781-7-4-2-2-4-5-7-3-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.04358,262.74442 c 0,0 -5.4396219,-6.18082 -5.4396219,-6.18082"
+         id="path16948-5-6-2-6-5-5-4-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.82784,268.46946 c 0,0 -3.841394,-7.51516 -3.841394,-7.51516"
+         id="path18807-4-8-6-1-4-0-2-7-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.044245,267.99864 c 0,0 -2.582856,-6.75622 -2.582856,-6.75622"
+         id="path18809-4-6-5-9-1-1-6-8-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.683966,267.59146 c 0,0 -0.08887,-10.27345 -0.08887,-10.27345"
+         id="path18811-9-8-0-3-4-6-8-1-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.790955,267.18206 c 0,0 6.261889,-10.82512 6.261889,-10.82512"
+         id="path18813-5-6-5-8-5-5-2-3-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.062683,260.8318 c 0,0 1.245338,-1.61844 1.290526,-1.95735"
+         id="path18815-0-2-4-7-4-9-0-5-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.659707,264.71055 c 0,0 -0.717386,-5.89622 -0.717386,-5.89622"
+         id="path18817-1-2-3-7-3-3-9-9-1" />
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.841734,262.99699 c 0,0 -3.726475,-7.02286 -3.726475,-7.02286"
+         id="path18853-2-4-1-6-0-6-0-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.164649,262.69678 c 0,0 -1.023555,-6.23708 -1.098869,-6.64378"
+         id="path18855-2-9-9-5-4-4-0-8-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.950849,260.03367 c 0,0 1.951223,-4.14779 1.951223,-4.14779"
+         id="path18859-7-1-8-5-5-5-4-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.252257,264.95177 c 0.05272,-0.39916 2.423845,-5.05114 2.423845,-5.42017"
+         id="path18897-0-4-7-7-5-2-9-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.237983,264.74689 c 0,0 -3.198939,-3.87249 -3.198939,-3.87249"
+         id="path18899-9-3-7-4-4-3-2-2-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.720197,268.44697 c 0,0 -1.534116,-7.29393 -1.534116,-7.29393"
+         id="path18901-0-4-6-3-0-2-0-8-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.657976,266.44301 c 0,0 0.517044,-8.70899 0.517044,-8.70899"
+         id="path18905-0-2-8-6-9-1-6-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.30334,263.76813 c -0.02259,-0.53222 -0.836561,-8.67842 -0.836561,-8.67842"
+         id="path18909-6-2-7-3-2-6-2-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.673693,259.94048 c 0,0 -0.782202,-3.6211 -0.782202,-3.6211"
+         id="path18911-5-4-3-9-1-9-8-5-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.77292,275.43112 c 0,0 -0.140048,2.05346 -0.140048,2.05346"
+         id="path16888-8-2-2-5-2-1-8-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.100096,275.81846 c 0,0 0.859769,0.70023 0.859769,0.70023"
+         id="path16890-6-5-9-6-7-5-3-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.70248,276.46465 c 0,0 -1.268351,-1.79277 -1.268351,-1.79277"
+         id="path16892-9-4-6-7-5-8-4-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.364007,273.26647 c 0,0 2.41412,0.93822 2.41412,0.93822"
+         id="path16894-9-3-8-0-0-8-7-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.371627,271.17852 c 0,0 3.116082,4.61692 3.116082,4.61692"
+         id="path16896-1-5-1-2-8-5-6-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.057684,270.26206 c 0,0 5.142898,-0.0506 5.142898,-0.0506"
+         id="path16898-6-7-5-3-0-2-6-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.942108,269.75401 c 0,0 5.397995,-4.56655 5.397995,-4.56655"
+         id="path16900-6-5-2-4-7-6-8-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.880234,267.29425 c 0,0 4.220219,-4.41033 4.220219,-4.41033"
+         id="path16902-3-6-9-1-3-7-5-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.726741,267.56519 c 0,0 -1.338659,-6.71121 -1.338659,-6.71121"
+         id="path16910-6-5-9-2-6-2-6-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.999557,269.94193 c 0,0 -5.3380241,-4.68228 -5.3380241,-4.68228"
+         id="path16912-9-9-0-9-4-2-1-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.10071,272.4486 c 0,0 -6.4541631,-5.03235 -6.4541631,-5.03235"
+         id="path16914-9-5-4-1-0-9-1-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.167507,272.84191 c 0,0 -8.8485608,-2.62761 -8.8485608,-2.62761"
+         id="path16916-5-8-7-7-8-0-2-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.680701,275.58891 c 0,0 -8.6288382,1.1006 -8.6288382,1.1006"
+         id="path16918-3-3-9-8-5-6-2-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.852109,273.39867 c 0,0 -6.5418269,-4.7107 -6.5418269,-4.7107"
+         id="path16920-4-3-9-2-5-0-4-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.304206,274.71935 c 0,0 -7.3178078,6.86978 -7.3178078,6.86978"
+         id="path16922-3-1-2-4-3-0-5-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.4792996,278.39563 c 0,0 -6.2136855,0.97304 -6.2136855,0.97304"
+         id="path16924-7-9-4-6-0-2-9-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.792664,275.72035 c 0,0 -5.255987,5.20406 -5.255987,5.20406"
+         id="path16926-5-9-0-8-5-4-1-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.057978,279.06972 c 0,0 -0.73946,4.58202 -0.73946,4.58202"
+         id="path16928-2-6-1-5-6-6-5-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.186503,278.6307 c 0,0 2.267126,5.41201 2.267126,5.41201"
+         id="path16930-1-1-9-2-8-0-0-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.168982,278.77998 c 0,0 3.247726,5.24646 3.247726,5.24646"
+         id="path16932-5-7-1-3-2-9-7-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.173819,278.68004 c 0,0 1.428708,5.52293 1.428708,5.52293"
+         id="path16934-7-1-0-1-7-6-1-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.588539,280.94467 c 0,0 1.006014,0.8713 1.006014,0.8713"
+         id="path16936-8-4-9-5-1-1-2-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.014143,276.61272 c 0,0 4.297186,1.73061 4.297186,1.73061"
+         id="path16938-8-0-7-5-8-9-2-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.245206,275.7749 c 0,0 3.333954,-0.43485 3.333954,-0.43485"
+         id="path16940-5-2-5-8-4-6-1-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.596113,273.34349 c 0,0 1.279125,-2.59991 1.279125,-2.59991"
+         id="path16942-6-5-4-2-9-5-3-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.000235,269.97936 c 0,0 4.368213,-2.09589 4.368213,-2.09589"
+         id="path16944-9-8-7-0-2-9-3-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.958034,267.3398 c 0,0 -4.0377911,-4.38092 -4.0377911,-4.38092"
+         id="path16950-7-0-9-4-7-0-3-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.2033147,274.02015 c 0,0 -3.8336638,1.54231 -3.8336638,1.54231"
+         id="path16952-4-1-0-2-1-7-1-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.3327487,279.54687 c 0,0 -4.0248048,4.04069 -4.0248048,4.04069"
+         id="path16954-6-6-5-0-5-7-9-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.829631,279.51238 c 0,0 -1.236425,2.67518 -1.236425,2.67518"
+         id="path16956-9-9-2-6-5-4-7-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.470817,274.74707 c 0,0 -7.0359061,-0.20459 -7.0359061,-0.20459"
+         id="path16958-8-7-9-6-0-7-9-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.334363,277.40419 c 0,0 -6.6123367,3.82622 -6.6123367,3.82622"
+         id="path16960-4-0-9-7-8-8-9-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.63271,277.72227 c 0,0 -5.4861796,4.50504 -5.4861796,4.50504"
+         id="path16962-7-5-3-4-3-9-1-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.15598,269.05456 c 0,0 -4.073139,-4.65144 -4.073139,-4.65144"
+         id="path16964-1-1-7-5-5-5-3-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.499663,270.80436 c 0,0 -4.120301,-5.85297 -4.120301,-5.85297"
+         id="path16966-8-3-7-8-0-9-8-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.019832,268.01184 c 0,0 1.819929,-2.52526 1.819929,-2.52526"
+         id="path16974-1-2-4-6-1-7-9-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.090308,275.86926 c 0,0 4.352479,0.53481 4.352479,0.53481"
+         id="path16976-3-9-4-0-7-7-9-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.345033,277.38804 c 0,0 0.301934,1.59174 0.301934,1.59174"
+         id="path16978-4-9-1-2-9-5-6-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.649318,279.41267 c 0,0 1.980045,4.65236 1.980045,4.65236"
+         id="path16980-4-9-6-9-6-4-6-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.684629,281.36666 c 0,0 1.014431,2.6797 1.014431,2.6797"
+         id="path16982-7-6-4-5-3-1-7-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.40555,279.67019 c 0,0 1.28147,4.47274 1.28147,4.47274"
+         id="path16984-7-0-1-3-4-7-9-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.354766,281.99268 c 0,0 -0.192729,1.42538 -0.192729,1.42538"
+         id="path16986-4-6-0-1-8-3-7-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.8845,277.0427 c 0,0 -0.988108,5.9391 -0.988108,5.9391"
+         id="path17062-4-4-3-4-3-2-9-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.894521,276.91739 c 0,0 -3.595873,0.76411 -3.595873,0.76411"
+         id="path17064-9-3-3-3-1-5-2-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.076682,278.787 c 0,0 -2.389609,4.08327 -2.389609,4.08327"
+         id="path17066-5-0-1-5-3-6-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.506861,278.90464 c 0,0 -4.064926,2.65612 -4.064926,2.65612"
+         id="path17068-7-5-5-8-9-2-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.418842,275.80218 c 0,0 -2.2895263,4.76775 -2.2895263,4.76775"
+         id="path17070-3-4-7-9-3-9-3-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.741071,275.96552 c 0,0 -9.3662917,-2.10228 -9.3662917,-2.10228"
+         id="path17072-3-1-4-3-1-2-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.078249,269.49966 c 0,0 -2.9639406,-2.62456 -2.9639406,-2.62456"
+         id="path17074-0-4-8-5-7-0-2-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.846499,270.23691 c 0,0 3.658462,-2.05901 3.658462,-2.05901"
+         id="path17082-1-5-6-1-1-1-5-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.44524,272.52355 c 0,0 2.843936,-1.70442 2.843936,-1.70442"
+         id="path17084-7-8-5-8-3-1-4-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.433728,272.49813 c 0,0 3.90956,0.84286 3.90956,0.84286"
+         id="path17086-2-5-8-9-5-6-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.126954,274.34434 c 0,0 2.149077,2.81506 2.149077,2.81506"
+         id="path17088-0-1-5-8-3-2-7-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.406291,274.08272 c 0,0 0.683582,1.53437 0.683582,1.53437"
+         id="path17090-4-9-4-4-2-1-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.927135,274.17247 c 0,0 0.81293,3.31866 0.81293,3.31866"
+         id="path17092-1-9-3-9-9-4-8-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.883615,275.42287 c 0,0 -0.546524,1.94279 -0.546524,1.94279"
+         id="path17094-3-6-2-3-2-7-1-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.540553,275.17492 c 0,0 -1.210495,4.1696 -1.210495,4.1696"
+         id="path17096-0-7-1-4-6-2-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.733947,280.24333 c 0,0 0.404549,3.63356 0.404549,3.63356"
+         id="path17098-3-9-5-3-8-4-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.250219,279.86908 c 0,0 -0.670175,3.90716 -0.670175,3.90716"
+         id="path17100-0-0-2-5-3-4-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.057719,279.17749 c 0,0 3.766716,-0.4689 3.766716,-0.4689"
+         id="path17102-4-5-6-6-2-9-2-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.090864,277.69387 c 0,0 3.088981,0.63595 3.088981,0.63595"
+         id="path17104-0-9-7-0-3-8-0-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.806916,280.34499 c 0,0 1.9122,2.66016 1.9122,2.66016"
+         id="path17106-1-7-1-3-6-1-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.563967,281.05905 c 0,0 1.125594,2.36656 1.125594,2.36656"
+         id="path17108-0-6-8-4-2-8-3-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.485337,277.52773 c 0,0 1.768932,4.54065 1.768932,4.54065"
+         id="path17110-7-6-3-6-8-9-3-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.129778,278.86752 c 0,0 -1.531337,5.02434 -1.531337,5.02434"
+         id="path17112-7-8-0-1-1-8-9-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.866582,277.76293 c 0,0 -1.566494,2.19716 -1.566494,2.19716"
+         id="path17114-7-1-5-4-4-9-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.583861,275.93627 c 0,0 -5.4495056,3.40871 -5.4495056,3.40871"
+         id="path17116-0-8-7-3-2-6-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.9142259,276.87283 c 0,0 -2.7238362,4.32535 -2.7238362,4.32535"
+         id="path17118-4-9-6-1-1-5-0-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.7866109,275.83504 c 0,0 -3.6448492,3.46186 -3.6448492,3.46186"
+         id="path17120-4-2-9-8-3-4-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 4.7544993,273.59727 c 0,0 -4.23070529,0.61461 -4.23070529,0.61461"
+         id="path17122-8-9-5-4-8-3-0-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.730294,271.86915 c 0,0 -5.2949877,-1.79226 -5.2949877,-1.79226"
+         id="path17124-0-5-0-8-4-7-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.6376376,271.02683 c 0,0 -5.5078819,-3.3766 -5.5078819,-3.3766"
+         id="path17126-3-4-0-3-9-3-7-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.75952,268.80825 c 0,0 -6.9577496,-2.93342 -6.9577496,-2.93342"
+         id="path17128-5-6-5-5-7-6-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.909588,266.70066 c 0,0 -0.374587,-2.9874 -0.374587,-2.9874"
+         id="path17130-8-2-6-3-0-1-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.280372,264.87473 c 0,0 -2.6815091,-3.46467 -2.6815091,-3.46467"
+         id="path17132-6-7-3-7-2-8-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.497621,267.59785 c 0,0 2.633644,-3.33865 2.633644,-3.33865"
+         id="path17140-3-6-7-2-0-4-3-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.163381,267.89994 c 0,0 3.57244,-0.94902 3.57244,-0.94902"
+         id="path17142-8-7-3-3-9-5-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.055739,271.4704 c 0,0 5.155059,-1.16379 5.155059,-1.16379"
+         id="path17144-9-1-2-8-5-8-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.213982,275.17968 c 0,0 2.793372,1.13312 2.793372,1.13312"
+         id="path17146-2-7-1-7-3-7-0-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.277324,276.35471 c 0,0 2.294614,2.61381 2.294614,2.61381"
+         id="path17148-3-1-2-1-8-5-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.717384,280.36698 c 0,0 2.627819,-0.35615 2.627819,-0.35615"
+         id="path17150-9-8-9-2-7-9-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.172287,272.72898 c 0,0 -6.5354036,-1.95732 -6.5354036,-1.95732"
+         id="path17152-9-6-8-6-7-8-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.234034,268.11684 c 0,0 -6.0951125,-4.21583 -6.0951125,-4.21583"
+         id="path17154-4-8-2-0-5-1-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.711146,271.12193 c 0,0 -4.1253792,-2.64538 -4.1253792,-2.64538"
+         id="path17156-4-0-6-0-0-4-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.097025,267.04033 c 0,0 -10.643252,-9.4108 -10.643252,-9.4108"
+         id="path17160-0-7-2-0-1-1-2-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.8820358,273.55832 c 0,0 -3.3754908,-0.48591 -3.3754908,-0.48591"
+         id="path17162-5-8-8-9-4-5-5-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.7086953,275.89751 c 0,0 -4.5366816,1.61748 -4.5366816,1.61748"
+         id="path17164-6-6-8-3-4-3-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.49615,276.86039 c -0.361505,0.0602 -6.5733484,4.20335 -6.5733484,4.20335"
+         id="path17166-2-6-4-6-7-3-6-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.516889,267.73595 c 0,0 7.08901,-5.46385 7.08901,-5.46385"
+         id="path17174-5-9-3-4-4-1-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.425395,269.17223 c 0.39163,-0.20335 2.066613,-1.89771 2.066613,-1.89771"
+         id="path17180-1-6-0-1-7-8-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.038663,270.36501 c 0.421755,-0.11297 2.370744,-0.21972 2.370744,-0.21972"
+         id="path17182-8-1-2-5-1-3-0-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.615884,274.08503 c 0.466943,0.007 3.406475,0.39447 3.406475,0.39447"
+         id="path17184-8-8-2-4-8-9-0-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.732424,273.3955 c 0,0 -2.298405,1.13579 -2.298405,1.13579"
+         id="path17186-2-5-3-6-5-1-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.246288,270.17653 c 0,0 4.168921,-0.94824 4.515363,-1.09887"
+         id="path17188-4-9-2-9-5-3-4-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.215954,268.60792 c 0,0 3.529543,-1.04796 3.529543,-1.04796"
+         id="path17190-5-6-5-1-6-8-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.220747,269.64597 c 0,0 1.012795,-2.92704 1.012795,-2.92704"
+         id="path17194-2-6-5-7-7-0-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.995883,271.65262 c 0,0 -1.690582,-4.04398 -1.690582,-4.04398"
+         id="path17200-1-1-8-5-9-2-7-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.008339,273.36599 c 0,0 -4.422614,-0.94317 -4.422614,-0.94317"
+         id="path17202-8-7-5-6-0-7-8-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.396767,273.17062 c 0,0 -1.760948,1.11453 -1.760948,1.11453"
+         id="path17204-1-5-4-1-8-7-1-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.003172,275.83947 c 0,0 -0.53798,1.69324 -0.53798,1.69324"
+         id="path17206-0-5-7-5-5-8-5-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.40308,275.70082 c 0,0 -2.246789,1.49329 -2.246789,1.49329"
+         id="path17208-1-6-0-0-9-0-9-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.191869,277.63081 c 0,0 -3.135323,4.17833 -3.135323,4.17833"
+         id="path17210-6-3-6-9-4-4-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.619194,278.07974 c 0,0 -3.990197,5.25497 -3.990197,5.25497"
+         id="path17212-2-0-9-8-4-1-4-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.099409,277.01044 c 0,0 -5.3337049,2.17747 -5.3337049,2.17747"
+         id="path17214-0-2-6-8-6-8-8-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.597993,274.95884 c 0,0 -2.7603491,1.42209 -2.7603491,1.42209"
+         id="path17216-2-5-2-2-6-7-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.878339,272.15252 c 0,0 -6.0535825,0.55595 -6.0535825,0.55595"
+         id="path17218-6-9-5-5-9-1-7-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.1978921,278.10918 c 0,0 -5.9716743,-3.35595 -5.9716743,-3.35595"
+         id="path17220-1-8-5-2-8-3-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.2044293,265.77145 c 0,0 -1.1159466,-2.4367 -1.1159466,-2.4367"
+         id="path17222-2-2-6-6-7-2-9-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.584452,264.95286 c 0,0 -1.9534947,-4.32925 -1.9534947,-4.32925"
+         id="path17224-3-3-7-4-4-1-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.03896,269.50886 c 0,0 -4.6751528,3.33721 -4.6751528,3.33721"
+         id="path17230-2-8-8-0-4-2-3-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.095179,267.05094 c 0,0 -4.5143126,-3.66358 -4.5143126,-3.66358"
+         id="path17232-6-6-0-7-6-7-1-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.397571,263.38664 c 0,0 2.25862,-2.48304 2.25862,-2.48304"
+         id="path17238-2-1-6-6-1-1-2-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.370803,261.72882 c -0.384099,-0.20335 -5.9927906,-3.96297 -5.9927906,-3.96297"
+         id="path17242-1-6-6-8-1-0-7-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.2862522,265.49533 c 0,0 -4.9783636,-1.77653 -4.9783636,-1.77653"
+         id="path17244-2-6-2-9-1-0-8-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.3500463,272.52071 c 0,0 -2.2499214,-0.20168 -2.2499214,-0.20168"
+         id="path17246-6-1-5-8-3-7-3-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.7149087,278.82756 c 0,0 -3.930428,4.0619 -4.3446522,4.3029"
+         id="path17248-5-3-0-0-4-4-2-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.72943,280.93523 c 0,0 -0.9096589,3.09056 -0.9096589,3.09056"
+         id="path17250-6-4-0-0-8-7-5-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.838411,279.51375 c 0,0 4.54016,2.62143 4.54016,2.62143"
+         id="path17252-1-0-5-4-7-0-5-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.331047,268.19151 c 0.39163,-0.43682 3.071551,-3.31155 3.071551,-3.31155"
+         id="path17254-7-9-6-6-3-7-8-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.507977,270.20386 c 0,0 -6.6798836,-3.09191 -6.6798836,-3.09191"
+         id="path17264-0-6-3-4-2-8-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.320063,266.00025 c 0,0 3.477131,-4.96277 3.477131,-4.96277"
+         id="path18729-2-3-8-8-7-7-0-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.756177,268.73655 c 0,0 6.763102,-3.55226 6.763102,-3.55226"
+         id="path18731-1-0-2-1-3-5-2-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.922712,269.56288 c 0,0 6.322659,-0.0426 6.322659,-0.0426"
+         id="path18733-0-1-6-6-1-2-9-5-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.751876,270.81884 c 0,0 5.291235,-0.83436 5.291235,-0.83436"
+         id="path18735-0-2-4-3-3-2-2-4-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.001358,272.86937 c 0,0 2.657966,0.47711 2.657966,0.47711"
+         id="path18737-4-0-2-3-2-0-7-4-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.459343,273.31692 c 0,0 0.728978,0.8659 0.728978,0.8659"
+         id="path18739-6-9-3-1-4-1-0-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.316424,273.91496 c 0,0 1.565708,1.46228 1.565708,1.46228"
+         id="path18741-3-9-0-1-1-9-4-7-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.104421,275.36475 c 0,0 0.704797,0.76143 0.704797,0.76143"
+         id="path18743-9-3-5-1-9-2-9-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.346454,275.29103 c 0,0 1.727119,1.58545 1.727119,1.58545"
+         id="path18745-1-1-0-8-2-1-7-0-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.183323,275.12256 c 0,0 -0.554728,1.66469 -0.554728,1.66469"
+         id="path18747-4-8-7-5-2-9-3-8-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.272424,274.78135 c 0,0 0.260731,2.88744 0.260731,2.88744"
+         id="path18749-6-6-2-0-4-7-9-9-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.069717,275.92759 c 0,0 -0.192651,8.12467 -0.192651,8.12467"
+         id="path18751-8-7-8-9-2-0-9-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.311861,278.81212 c 0,0 0.820012,4.89834 0.820012,4.89834"
+         id="path18753-4-3-0-1-1-6-0-0-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.001892,281.27891 c 0,0 -1.618651,1.6256 -1.618651,1.6256"
+         id="path18755-2-4-2-2-3-3-0-5-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.196068,279.86961 c 0,0 -1.548045,4.24816 -1.548045,4.24816"
+         id="path18757-8-0-3-7-2-8-7-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.802666,279.46975 c 0,0 3.907502,2.34682 3.907502,2.34682"
+         id="path18759-2-0-5-4-6-2-7-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.852881,277.7898 c 0,0 2.069395,3.24361 2.069395,3.24361"
+         id="path18761-5-7-4-7-8-2-4-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.901009,278.19029 c 0.06025,0.44434 3.281058,2.02369 3.763065,2.13665"
+         id="path18763-9-2-3-2-5-9-2-3-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.290916,276.22531 c 0.512131,0.15816 3.758779,0.34019 4.270911,0.50585"
+         id="path18765-7-9-0-0-4-0-2-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.36266,276.31308 c 0,0 2.905833,1.5346 2.905833,1.5346"
+         id="path18767-8-6-7-4-4-7-5-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.557224,271.48837 c 0.135564,0.36904 3.287181,4.28041 3.287181,4.28041"
+         id="path18769-8-2-1-2-7-3-4-6-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.404204,273.06733 c 0.61757,0.24101 3.48572,1.83161 3.48572,1.83161"
+         id="path18771-3-2-8-0-3-6-1-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.99093,271.07017 c 0,0 0.214203,0.39688 0.214203,0.39688"
+         id="path18773-6-1-8-3-2-0-8-9-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.728282,271.17599 c 0.512131,-0.1657 3.062376,-1.11163 3.062376,-1.11163"
+         id="path18775-9-4-7-0-5-6-7-6-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.863281,266.08921 c 0,0 2.875383,-0.0811 2.875383,-0.0811"
+         id="path18777-6-3-4-4-2-9-2-1-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.953064,266.90847 c 0,0 5.076232,-2.26058 5.076232,-2.26058"
+         id="path18779-9-9-2-0-1-4-5-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.434887,277.9135 c 0,0 -1.773774,4.27356 -1.773774,4.27356"
+         id="path18783-9-5-2-0-5-2-1-8-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.410508,278.00546 c 0,0 -2.031737,3.45307 -2.031737,3.45307"
+         id="path18785-0-8-1-5-4-7-1-6-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.000595,277.02277 c 0,0 -2.299452,7.14901 -2.299452,7.14901"
+         id="path18787-4-3-2-5-7-1-6-0-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.322805,274.56287 c 0,0 -4.641647,5.84575 -4.641647,5.84575"
+         id="path18789-2-2-1-7-3-5-0-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.813597,277.68371 c 0,0 -4.232237,3.64733 -4.232237,3.64733"
+         id="path18791-2-4-7-0-8-0-2-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.173054,277.26315 c 0,0 -3.8460185,5.00128 -3.8460185,5.00128"
+         id="path18793-5-5-2-3-4-8-6-4-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.151829,281.09408 c 0,0 -3.1987708,1.64729 -3.1987708,1.64729"
+         id="path18795-3-5-6-8-7-2-3-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.204148,277.15488 c 0,0 -7.0829678,-0.0994 -7.0829678,-0.0994"
+         id="path18797-5-6-3-6-1-4-3-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.026033,277.42882 c 0,0 -7.9387499,-1.78689 -7.9387499,-1.78689"
+         id="path18799-2-7-6-9-7-1-0-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.147914,271.0992 c -0.391631,-0.0226 -9.0551085,1.77686 -9.0551085,1.77686"
+         id="path18801-1-7-0-1-1-5-0-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.303488,269.86262 c -0.399161,-0.18829 -6.787402,-4.82657 -6.787402,-4.82657"
+         id="path18803-8-8-8-0-5-5-3-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.302958,269.03206 c 0,0 -5.007449,-6.35343 -5.007449,-6.35343"
+         id="path18805-1-0-8-0-0-2-6-7-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.524607,266.27806 c 0,0 -2.662293,-5.87866 -2.767731,-6.24769"
+         id="path18819-3-8-7-5-1-7-2-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 11.863682,267.12193 C 11.63021,266.74535 9.9627098,261.01094 9.9627098,261.01094"
+         id="path18821-2-2-0-8-9-7-2-8-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.2846434,270.83629 c 0,0 -5.394191,-3.56586 -5.394191,-3.56586"
+         id="path18823-9-1-8-5-4-4-0-6-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.4547889,273.43746 c 0,0 -7.3570442,1.91021 -7.3570442,1.91021"
+         id="path18825-2-3-9-7-7-4-1-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.588806,275.75201 c 0,0 -8.063041,-1.681 -8.063041,-1.681"
+         id="path18827-1-1-9-9-2-9-1-9-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.729227,272.0292 C 13.36019,271.9464 3.1693101,269.52855 3.1693101,269.52855"
+         id="path18829-9-7-8-6-8-0-0-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.944649,268.69077 c 0,0 -6.265974,-4.36035 -6.265974,-4.36035"
+         id="path18831-3-5-4-9-0-9-4-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.05962,266.1389 c 0,0 -6.1600741,-6.43196 -6.1600741,-6.43196"
+         id="path18833-7-6-2-6-6-8-1-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.901203,269.94629 c -0.436818,-0.25606 -5.0474462,-5.57093 -5.0474462,-5.57093"
+         id="path18835-7-1-6-2-4-2-7-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.463286,269.83163 c -0.353973,-0.32385 -6.0036633,1.82259 -6.0036633,1.82259"
+         id="path18837-2-1-8-8-1-4-8-9-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.909495,272.43057 c 0,0 -7.850175,4.19753 -7.850175,4.19753"
+         id="path18839-3-1-7-8-3-9-3-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.110845,274.68861 c 0,0 -8.86001,6.49245 -8.86001,6.49245"
+         id="path18841-7-0-8-4-0-2-1-3-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.8657595,278.66055 c -0.3615036,0.0678 -7.0437016,3.46483 -7.0437016,3.46483"
+         id="path18843-1-7-5-3-7-1-3-6-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.3641486,276.49949 c 0,0 -6.7894948,-0.73325 -6.7894948,-0.73325"
+         id="path18845-4-6-9-2-0-4-0-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.282472,270.65266 c -0.3690361,-0.20335 -6.5559625,0.437 -6.5559625,0.437"
+         id="path18847-7-8-8-6-3-0-3-6-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.081111,267.87323 c 0,0 -6.3013413,-3.88456 -6.3013413,-3.88456"
+         id="path18849-5-2-3-8-0-3-2-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.621852,265.57064 c 0,0 -4.4576224,-7.78082 -4.4576224,-7.78082"
+         id="path18851-7-0-6-2-5-0-7-0-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.423772,261.40897 c 0,0 1.831621,-2.26486 1.831621,-2.26486"
+         id="path18857-0-6-4-1-7-0-7-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.655688,261.54117 c -0.09316,-0.55448 -4.412169,-5.16532 -4.412169,-5.16532"
+         id="path18861-4-6-7-8-3-7-7-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.989631,276.74325 c -0.406692,0.007 -5.6015811,6.96323 -6.181495,6.76742"
+         id="path18863-3-3-1-3-2-2-8-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.1448908,278.66539 c -0.3615048,0.26359 -5.4915631,1.28307 -5.4915631,1.28307"
+         id="path18865-7-1-5-6-1-9-0-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.8819012,277.96016 c 0,0 -6.1557021,2.39332 -6.1557021,2.39332"
+         id="path18867-7-7-9-5-0-1-3-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.558681,273.57322 C 10.054083,273.55062 0.54425394,273.02589 0.54425394,273.02589"
+         id="path18869-7-3-4-0-8-9-8-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.179136,275.40018 c -0.384098,-0.0301 -5.272251,1.9627 -5.272251,1.9627"
+         id="path18871-3-7-4-8-1-1-2-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.663554,275.34466 c 0,0 -3.312204,5.17025 -3.312204,5.17025"
+         id="path18873-7-7-2-1-6-9-2-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.801976,278.66753 c 0,0 1.247745,3.76201 1.247745,3.76201"
+         id="path18875-4-9-0-8-7-2-3-8-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.584766,279.96597 c 0,0 0.731288,3.99946 0.731288,3.99946"
+         id="path18877-4-1-0-5-5-6-6-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.085073,281.51064 c 0,0 -1.0446,2.36775 -1.0446,2.36775"
+         id="path18879-0-0-0-0-5-2-2-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.169359,279.85615 c 0,0 -0.386224,4.01752 -0.386224,4.01752"
+         id="path18881-8-0-0-1-0-7-4-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.975621,280.90456 c 0,0 -0.869845,3.22226 -0.869845,3.22226"
+         id="path18883-6-4-8-7-2-1-1-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.598152,282.43169 c 0,0 -0.0168,0.40458 0.435078,0.65315"
+         id="path18885-1-3-1-0-6-5-9-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.324319,278.53248 c 0.466944,0.0602 2.359511,2.70466 2.359511,2.70466"
+         id="path18887-2-5-7-6-3-4-8-8-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.345814,276.59707 c 0.587445,0.32266 1.854903,3.27113 1.854903,3.27113"
+         id="path18889-0-7-1-7-2-0-4-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.860971,275.62423 c 1.182422,0.27114 6.107384,1.04832 6.107384,1.04832"
+         id="path18891-2-1-9-7-0-1-9-3-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 30.648177,272.06906 c 0,0 0.147881,0.12519 0.147881,0.12519"
+         id="path18893-5-2-9-6-1-0-9-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.173529,267.02403 c 0,0 4.997768,-6.35627 4.997768,-6.35627"
+         id="path18895-7-3-0-7-6-0-7-5-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.746524,268.12842 c -0.04519,-0.51213 -2.138007,-5.05841 -2.138007,-5.05841"
+         id="path18903-7-4-9-5-0-1-1-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.294365,267.55467 c 0.04519,-0.3841 2.768961,-8.8332 2.768961,-8.8332"
+         id="path18907-7-1-3-5-3-1-3-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.675222,267.05037 c -0.195815,-0.42928 -5.0281513,-1.19792 -5.0281513,-1.19792"
+         id="path18913-4-1-4-3-2-0-8-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.0663879,268.92927 C 7.637101,268.70332 2.2541658,268.13232 2.2541658,268.13232"
+         id="path18915-8-9-7-8-6-3-0-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.7431098,274.21158 c -0.5196631,-0.13556 -5.1432355,0.46254 -5.1432355,0.46254"
+         id="path18917-0-3-3-6-4-5-1-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.784796,273.90775 c 0,0 -4.6452988,0.40377 -4.6452988,0.40377"
+         id="path18919-6-9-1-4-6-9-4-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.814966,270.88246 C 13.453461,270.7243 3.8753439,268.29565 3.8753439,268.29565"
+         id="path18921-7-2-7-2-6-8-2-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.067121,266.01184 c 0,0 -6.3237575,-4.4463 -6.3237575,-4.4463"
+         id="path18923-4-9-8-9-4-8-7-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.332214,265.2608 c 0,0 -6.49681,-6.34767 -6.49681,-6.34767"
+         id="path18925-9-4-2-6-6-3-4-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 10.732644,266.12889 C 10.325951,265.94814 2.8378938,264.1366 2.8378938,264.1366"
+         id="path18927-6-3-5-9-9-0-5-1-2" />
+    </g>
+    <g
+       id="g62526"
+       clip-path="url(#clipPath5974)">
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.570345,297.07691 c 0,0 0.217125,-10.89776 0.217125,-10.89776"
+         id="path17170-6-5-3-5-4-3-3-6-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.890217,299.38479 c 0,0 0.39441,-5.59419 0.39441,-5.59419"
+         id="path16904-4-2-5-1-5-8-1-1-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.13886,297.72563 c 0,0 2.540093,-6.53485 2.540093,-6.53485"
+         id="path16906-3-0-4-4-5-6-3-4-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.632149,300.01273 c 0,0 -1.079858,-7.91513 -1.079858,-7.91513"
+         id="path16908-8-3-9-8-1-0-5-5-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.4687,295.1957 c 0,0 0.816747,-3.53574 0.816747,-3.53574"
+         id="path16946-6-4-7-1-2-0-6-4-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.71499,299.01194 c 0,0 0.811086,-4.7252 0.811086,-4.7252"
+         id="path16968-0-7-6-3-6-4-5-4-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.401282,296.16805 c 0,0 1.219702,-8.79344 1.219702,-8.79344"
+         id="path16970-2-7-4-7-4-1-6-6-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.864089,295.70149 c 0,0 -1.941926,-1.63471 -1.941926,-1.63471"
+         id="path16972-7-1-6-4-1-6-2-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.757109,301.62316 c 0,0 -0.872433,-4.30343 -0.872433,-4.30343"
+         id="path17076-0-6-6-8-5-8-2-6-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.842069,298.57616 c 0,0 -1.246909,-3.95001 -1.246909,-3.95001"
+         id="path17078-5-5-6-2-2-3-2-7-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.709346,297.77267 c 0,0 2.718997,-1.78289 2.718997,-1.78289"
+         id="path17080-8-5-1-3-6-9-3-5-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.10733,294.91696 c 0,0 -3.881525,-3.67266 -3.881525,-3.67266"
+         id="path17134-8-4-9-0-6-2-2-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.707303,294.82078 c 0,0 0.08504,-4.42092 0.08504,-4.42092"
+         id="path17136-8-6-8-4-5-6-6-2-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.327796,298.22396 c 0,0 0.790176,-5.76861 0.790176,-5.76861"
+         id="path17138-8-8-6-4-7-7-5-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.257206,296.84152 c 0,0 -2.602426,-9.35249 -2.602426,-9.35249"
+         id="path17158-1-1-8-5-3-0-0-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.855698,299.04511 c 0,0 -0.329273,-7.01273 -0.329273,-7.01273"
+         id="path17168-8-0-3-1-4-8-7-7-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.587208,296.95667 c 0,0 2.497995,-5.06448 2.497995,-5.06448"
+         id="path17172-9-1-6-6-9-4-2-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.640625,295.77518 c 0,0 3.465042,-5.17804 3.465042,-5.17804"
+         id="path17176-4-8-6-4-9-1-9-6-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.779096,294.33625 c 0,0 2.491527,-4.47994 2.491527,-4.47994"
+         id="path17178-0-9-7-6-6-8-9-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.119717,300.85702 c 0,0 1.3666,-4.26807 1.3666,-4.26807"
+         id="path17192-0-1-3-3-7-5-9-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.521235,299.61458 c 0,0 -0.272038,-1.87251 -0.272038,-1.87251"
+         id="path17196-3-8-0-4-1-0-2-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.786403,297.86034 c 0,0 -1.260974,-8.48959 -1.260974,-8.48959"
+         id="path17198-0-1-7-3-5-4-9-0-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.106213,295.58568 c 0,0 -1.195273,-2.217 -1.195273,-2.217"
+         id="path17226-7-0-4-1-5-5-9-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.717779,294.64282 c 0,0 -0.829371,-8.40987 -0.829371,-8.40987"
+         id="path17228-4-9-8-9-2-0-9-3-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.330749,296.846 c 0,0 1.18027,-7.30293 1.18027,-7.30293"
+         id="path17234-6-7-2-9-4-0-0-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.74345,293.30938 c -0.0075,-0.80188 0.391221,-7.37673 0.391221,-7.37673"
+         id="path17236-9-3-6-5-7-6-3-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.378755,292.09245 c 0,0 4.393286,-2.21491 4.393286,-2.21491"
+         id="path17240-6-9-2-8-7-9-4-3-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.669597,295.00156 c 0,0 -0.170332,-4.53414 -0.170332,-4.53414"
+         id="path17256-9-1-8-3-0-6-4-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.964656,298.83349 c 0,0 -0.647171,-5.81966 -0.647171,-5.81966"
+         id="path17258-4-2-9-8-8-2-9-2-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.072055,298.4942 c 0,0 -3.571608,-2.70346 -3.571608,-2.70346"
+         id="path17260-7-6-5-0-3-1-3-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.101847,297.36265 c 0,0 1.279445,-6.91711 1.279445,-6.91711"
+         id="path18781-7-4-2-2-4-5-7-3-7-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.915945,294.24441 c 0,0 -4.813526,-6.62504 -4.813526,-6.62504"
+         id="path16948-5-6-2-6-5-5-4-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.157451,299.11005 c 0,0 -3.770461,-6.83992 -3.770461,-6.83992"
+         id="path18807-4-8-6-1-4-0-2-7-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.544245,299.01461 c 0,0 -2.740303,-6.39141 -2.740303,-6.39141"
+         id="path18809-4-6-5-9-1-1-6-8-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.188404,298.54155 c 0,0 0.411626,-10.70696 0.411626,-10.70696"
+         id="path18811-9-8-0-3-4-6-8-1-5-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.088932,298.60013 c 0,0 6.224425,-11.6534 6.224425,-11.6534"
+         id="path18813-5-6-5-8-5-5-2-3-9-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.555011,291.76111 c 0,0 0.814987,-1.03505 0.860175,-1.37396"
+         id="path18815-0-2-4-7-4-9-0-5-8-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.670179,296.227 c 0,0 -1.029522,-5.99736 -1.029522,-5.99736"
+         id="path18817-1-2-3-7-3-3-9-9-1-3" />
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.335958,293.93777 c 0,0 -3.773662,-6.72312 -3.773662,-6.72312"
+         id="path18853-2-4-1-6-0-6-0-5-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.327968,294.18591 c 0,0 -0.844267,-6.34548 -0.919581,-6.75218"
+         id="path18855-2-9-9-5-4-4-0-8-4-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.325224,290.7188 c 0,0 1.142269,-4.06363 1.142269,-4.06363"
+         id="path18859-7-1-8-5-5-5-4-1-1-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.112191,295.48835 c 0.05272,-0.39916 2.256375,-4.9654 2.256375,-5.33443"
+         id="path18897-0-4-7-7-5-2-9-8-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.695368,295.56146 c 0,0 -4.115641,-3.86805 -4.115641,-3.86805"
+         id="path18899-9-3-7-4-4-3-2-2-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.616949,298.97431 c 0,0 -1.083031,-6.44553 -1.083031,-6.44553"
+         id="path18901-0-4-6-3-0-2-0-8-3-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.338662,297.84433 c 0,0 0.46421,-8.75983 0.46421,-8.75983"
+         id="path18905-0-2-8-6-9-1-6-6-5-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.063477,295.2234 c -0.02259,-0.53222 -0.981829,-8.79827 -0.981829,-8.79827"
+         id="path18909-6-2-7-3-2-6-2-2-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.909264,291.39807 c 0,0 -0.756725,-4.48857 -0.756725,-4.48857"
+         id="path18911-5-4-3-9-1-9-8-5-1-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.185308,306.73041 c 0,0 -0.964991,1.48824 -0.964991,1.48824"
+         id="path16888-8-2-2-5-2-1-8-2-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.590569,306.73788 c 0,0 -0.109524,0.94135 -0.109524,0.94135"
+         id="path16890-6-5-9-6-7-5-3-4-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.281454,307.75091 c 0,0 -0.416458,-2.31615 -0.416458,-2.31615"
+         id="path16892-9-4-6-7-5-8-4-5-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.823486,304.08585 c 0,0 1.458719,1.19913 1.458719,1.19913"
+         id="path16894-9-3-8-0-0-8-7-3-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.437911,301.93239 c 0,0 3.476752,4.38382 3.476752,4.38382"
+         id="path16896-1-5-1-2-8-5-6-1-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.243196,301.74293 c 0,0 5.373156,-0.79264 5.373156,-0.79264"
+         id="path16898-6-7-5-3-0-2-6-5-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.506166,300.52571 c 0,0 6.261152,-4.06191 6.261152,-4.06191"
+         id="path16900-6-5-2-4-7-6-8-6-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.579726,298.71043 c 0,0 4.939991,-4.53752 4.939991,-4.53752"
+         id="path16902-3-6-9-1-3-7-5-6-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.580575,298.10359 c 0,0 -1.376241,-5.76804 -1.376241,-5.76804"
+         id="path16910-6-5-9-2-6-2-6-4-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.649946,301.31594 c 0,0 -4.6526772,-4.66921 -4.6526772,-4.66921"
+         id="path16912-9-9-0-9-4-2-1-4-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.915126,303.92944 c 0,0 -5.9089108,-5.84396 -5.9089108,-5.84396"
+         id="path16914-9-5-4-1-0-9-1-2-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.512388,304.22049 c 0,0 -9.2224644,-3.48879 -9.2224644,-3.48879"
+         id="path16916-5-8-7-7-8-0-2-6-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.004801,306.22474 c 0,0 -9.346316,1.78996 -9.346316,1.78996"
+         id="path16918-3-3-9-8-5-6-2-6-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.477308,304.08429 c 0,0 -6.3867229,-4.82891 -6.3867229,-4.82891"
+         id="path16920-4-3-9-2-5-0-4-4-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.33626,306.23488 c 0,0 -7.416985,5.87534 -7.416985,5.87534"
+         id="path16922-3-1-2-4-3-0-5-4-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.7122876,308.96979 c 0,0 -6.1893907,0.98671 -6.1893907,0.98671"
+         id="path16924-7-9-4-6-0-2-9-6-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.037944,306.30121 c 0,0 -5.426737,6.13417 -5.426737,6.13417"
+         id="path16926-5-9-0-8-5-4-1-9-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.348503,309.67935 c 0,0 -1.131288,5.47858 -1.131288,5.47858"
+         id="path16928-2-6-1-5-6-6-5-8-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.770007,309.9239 c 0,0 2.737962,4.63833 2.737962,4.63833"
+         id="path16930-1-1-9-2-8-0-0-1-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.439928,310.3346 c 0,0 2.704214,5.24542 2.704214,5.24542"
+         id="path16932-5-7-1-3-2-9-7-1-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.888906,309.28572 c 0,0 1.338455,5.60328 1.338455,5.60328"
+         id="path16934-7-1-0-1-7-6-1-6-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.104066,311.8376 c 0,0 1.699156,1.44931 1.699156,1.44931"
+         id="path16936-8-4-9-5-1-1-2-4-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.948265,308.12492 c 0,0 3.935194,1.49367 3.935194,1.49367"
+         id="path16938-8-0-7-5-8-9-2-6-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.758252,306.90493 c 0,0 4.088839,-0.12617 4.088839,-0.12617"
+         id="path16940-5-2-5-8-4-6-1-3-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.755528,304.83396 c 0,0 0.65289,-2.89471 0.65289,-2.89471"
+         id="path16942-6-5-4-2-9-5-3-5-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.559444,300.7599 c 0,0 4.342287,-1.6805 4.342287,-1.6805"
+         id="path16944-9-8-7-0-2-9-3-8-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.187539,297.91214 c 0,0 -4.1816759,-3.44409 -4.1816759,-3.44409"
+         id="path16950-7-0-9-4-7-0-3-1-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.4051367,305.49417 c 0,0 -4.460953,1.34749 -4.460953,1.34749"
+         id="path16952-4-1-0-2-1-7-1-9-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.7156159,310.24185 c 0,0 -4.8840699,4.21046 -4.8840699,4.21046"
+         id="path16954-6-6-5-0-5-7-9-5-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.299204,310.35718 c 0,0 -2.196666,2.94309 -2.196666,2.94309"
+         id="path16956-9-9-2-6-5-4-7-9-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.44957,305.26408 c 0,0 -6.7342839,-0.11903 -6.7342839,-0.11903"
+         id="path16958-8-7-9-6-0-7-9-2-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.816118,308.55458 c 0,0 -7.5675049,3.85326 -7.5675049,3.85326"
+         id="path16960-4-0-9-7-8-8-9-7-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.133915,308.70414 c 0,0 -4.6118023,4.86979 -4.6118023,4.86979"
+         id="path16962-7-5-3-4-3-9-1-6-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.850671,300.46708 c 0,0 -3.550332,-4.59718 -3.550332,-4.59718"
+         id="path16964-1-1-7-5-5-5-3-9-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.383106,302.30714 c 0,0 -3.942096,-5.84301 -3.942096,-5.84301"
+         id="path16966-8-3-7-8-0-9-8-2-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.954999,298.53262 c 0,0 1.629983,-2.4597 1.629983,-2.4597"
+         id="path16974-1-2-4-6-1-7-9-9-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.606602,307.01242 c 0,0 5.316528,0.54703 5.316528,0.54703"
+         id="path16976-3-9-4-0-7-7-9-7-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.002557,308.04031 c 0,0 0.490512,2.43176 0.490512,2.43176"
+         id="path16978-4-9-1-2-9-5-6-0-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.060798,310.23356 c 0,0 1.331538,4.49616 1.331538,4.49616"
+         id="path16980-4-9-6-9-6-4-6-6-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.230342,312.32166 c 0,0 1.806558,3.25716 1.806558,3.25716"
+         id="path16982-7-6-4-5-3-1-7-1-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.355446,311.27261 c 0,0 1.426753,3.4844 1.426753,3.4844"
+         id="path16984-7-0-1-3-4-7-9-4-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.211732,313.48834 c 0,0 0.254157,1.34336 0.254157,1.34336"
+         id="path16986-4-6-0-1-8-3-7-0-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.837679,308.55706 c 0,0 -1.331542,5.12873 -1.331542,5.12873"
+         id="path17062-4-4-3-4-3-2-9-8-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.7605,308.41565 c 0,0 -2.963199,0.24574 -2.963199,0.24574"
+         id="path17064-9-3-3-3-1-5-2-2-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.08044,310.30355 c 0,0 -2.739096,3.22207 -2.739096,3.22207"
+         id="path17066-5-0-1-5-3-6-3-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.999995,310.00378 c 0,0 -4.514717,3.07166 -4.514717,3.07166"
+         id="path17068-7-5-5-8-9-2-6-2-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.321775,307.30923 c 0,0 -1.7400138,4.06444 -1.7400138,4.06444"
+         id="path17070-3-4-7-9-3-9-3-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.325503,306.70405 c 0,0 -9.4356729,-1.7025 -9.4356729,-1.7025"
+         id="path17072-3-1-4-3-1-2-7-5-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.030543,301.01394 c 0,0 -2.9789492,-3.61833 -2.9789492,-3.61833"
+         id="path17074-0-4-8-5-7-0-2-0-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.303797,301.05128 c 0,0 3.665782,-1.67208 3.665782,-1.67208"
+         id="path17082-1-5-6-1-1-1-5-1-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.230537,303.08855 c 0,0 3.244539,-1.71702 3.244539,-1.71702"
+         id="path17084-7-8-5-8-3-1-4-8-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.918603,303.63674 c 0,0 2.925561,0.75039 2.925561,0.75039"
+         id="path17086-2-5-8-9-5-6-5-8-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.009201,305.84684 c 0,0 2.746774,2.18893 2.746774,2.18893"
+         id="path17088-0-1-5-8-3-2-7-6-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.907213,305.12963 c 0,0 1.232483,2.00153 1.232483,2.00153"
+         id="path17090-4-9-4-4-2-1-8-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.407651,305.05081 c 0,0 0.319296,2.95705 0.319296,2.95705"
+         id="path17092-1-9-3-9-9-4-8-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.360367,306.59012 c 0,0 -0.754036,1.37078 -0.754036,1.37078"
+         id="path17094-3-6-2-3-2-7-1-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.702075,305.71829 c 0,0 -1.868155,4.70482 -1.868155,4.70482"
+         id="path17096-0-7-1-4-6-2-1-5-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.341598,311.56983 c 0,0 1.282011,3.44472 1.282011,3.44472"
+         id="path17098-3-9-5-3-8-4-1-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.207583,310.38746 c 0,0 -0.243789,4.72586 -0.243789,4.72586"
+         id="path17100-0-0-2-5-3-4-4-2-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.635489,309.92624 c 0,0 4.132517,0.29572 4.132517,0.29572"
+         id="path17102-4-5-6-6-2-9-2-0-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.590497,308.72958 c 0,0 2.871965,1.02927 2.871965,1.02927"
+         id="path17104-0-9-7-0-3-8-0-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.51434,310.95609 c 0,0 2.141978,3.56166 2.141978,3.56166"
+         id="path17106-1-7-1-3-6-1-3-6-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.083768,311.93629 c 0,0 1.902178,2.10319 1.902178,2.10319"
+         id="path17108-0-6-8-4-2-8-3-0-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.069004,308.2674 c 0,0 2.320659,4.33622 2.320659,4.33622"
+         id="path17110-7-6-3-6-8-9-3-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.736785,310.1932 c 0,0 -0.968366,5.18544 -0.968366,5.18544"
+         id="path17112-7-8-0-1-1-8-9-6-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.300753,309.02747 c 0,0 -1.678703,1.56664 -1.678703,1.56664"
+         id="path17114-7-1-5-4-4-9-1-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.05794,307.11173 c 0,0 -5.9540859,3.74888 -5.9540859,3.74888"
+         id="path17116-0-8-7-3-2-6-2-9-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.6475594,308.31234 c 0,0 -2.8743123,3.62673 -2.8743123,3.62673"
+         id="path17118-4-9-6-1-1-5-0-3-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.3261737,307.04653 c 0,0 -3.457285,2.84795 -3.457285,2.84795"
+         id="path17120-4-2-9-8-3-4-7-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 4.7997256,304.12812 c 0,0 -4.60503481,1.18363 -4.60503481,1.18363"
+         id="path17122-8-9-5-4-8-3-0-7-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.210854,302.74765 c 0,0 -5.4784417,-2.05635 -5.4784417,-2.05635"
+         id="path17124-0-5-0-8-4-7-8-4-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.8456313,302.49808 c 0,0 -5.7171387,-4.33129 -5.7171387,-4.33129"
+         id="path17126-3-4-0-3-9-3-7-9-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.168409,299.53704 c 0,0 -6.8667796,-2.63378 -6.8667796,-2.63378"
+         id="path17128-5-6-5-5-7-6-7-7-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.452378,297.9196 c 0,0 0.423794,-2.82426 0.423794,-2.82426"
+         id="path17130-8-2-6-3-0-1-9-2-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.801502,296.03511 c 0,0 -1.781019,-3.33972 -1.781019,-3.33972"
+         id="path17132-6-7-3-7-2-8-1-4-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.797993,299.01413 c 0,0 2.529636,-3.27854 2.529636,-3.27854"
+         id="path17140-3-6-7-2-0-4-3-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.818347,298.55463 c 0,0 3.447902,-0.75891 3.447902,-0.75891"
+         id="path17142-8-7-3-3-9-5-6-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.238183,302.95249 c 0,0 4.514582,-1.82983 4.514582,-1.82983"
+         id="path17144-9-1-2-8-5-8-4-2-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.468528,306.62707 c 0,0 3.33123,1.11372 3.33123,1.11372"
+         id="path17146-2-7-1-7-3-7-0-9-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.12181,306.89607 c 0,0 2.308162,2.60959 2.308162,2.60959"
+         id="path17148-3-1-2-1-8-5-0-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.722889,310.88357 c 0,0 2.844123,-0.30429 2.844123,-0.30429"
+         id="path17150-9-8-9-2-7-9-1-6-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.628137,303.54011 c 0,0 -6.7536596,-2.19183 -6.7536596,-2.19183"
+         id="path17152-9-6-8-6-7-8-4-7-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.824555,299.42033 c 0,0 -5.324615,-4.84869 -5.324615,-4.84869"
+         id="path17154-4-8-2-0-5-1-7-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.610629,302.62828 c 0,0 -4.3956861,-2.79978 -4.3956861,-2.79978"
+         id="path17156-4-0-6-0-0-4-9-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.920744,298.52478 c 0,0 -10.0633196,-10.17376 -10.0633196,-10.17376"
+         id="path17160-0-7-2-0-1-1-2-4-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.1335809,304.14276 c 0,0 -3.514294,0.43333 -3.514294,0.43333"
+         id="path17162-5-8-8-9-4-5-5-0-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.2168686,307.00411 c 0,0 -3.7292942,1.91528 -3.7292942,1.91528"
+         id="path17164-6-6-8-3-4-3-2-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.192294,308.27403 c -0.361505,0.0602 -6.5184731,4.23987 -6.5184731,4.23987"
+         id="path17166-2-6-4-6-7-3-6-1-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.772042,299.02834 c 0,0 7.997707,-5.64875 7.997707,-5.64875"
+         id="path17174-5-9-3-4-4-1-8-5-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.840152,299.90955 c 0.39163,-0.20335 2.132751,-1.48157 2.132751,-1.48157"
+         id="path17180-1-6-0-1-7-8-6-2-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.246358,301.83639 c 0.421755,-0.11297 2.66238,-0.70039 2.66238,-0.70039"
+         id="path17182-8-1-2-5-1-3-0-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.135117,304.96425 c 0.466943,0.007 3.593556,0.93647 3.593556,0.93647"
+         id="path17184-8-8-2-4-8-9-0-9-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.734237,304.91206 c 0,0 -2.743843,0.86643 -2.743843,0.86643"
+         id="path17186-2-5-3-6-5-1-0-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.656478,300.90718 c 0,0 3.271258,-0.77355 3.6177,-0.92418"
+         id="path17188-4-9-2-9-5-3-4-5-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.776981,299.86386 c 0,0 4.05986,-0.79575 4.05986,-0.79575"
+         id="path17190-5-6-5-1-6-8-4-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.805994,300.38328 c 0,0 1.468527,-3.14611 1.468527,-3.14611"
+         id="path17194-2-6-5-7-7-0-1-4-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.208972,302.21686 c 0,0 -1.427475,-3.7441 -1.427475,-3.7441"
+         id="path17200-1-1-8-5-9-2-7-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.855726,303.90641 c 0,0 -4.757925,-0.35781 -4.757925,-0.35781"
+         id="path17202-8-7-5-6-0-7-8-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.071638,304.56704 c 0,0 -1.689838,0.304 -1.689838,0.304"
+         id="path17204-1-5-4-1-8-7-1-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.396821,307.16432 c 0,0 -0.804658,0.90134 -0.804658,0.90134"
+         id="path17206-0-5-7-5-5-8-5-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.377353,307.21672 c 0,0 -2.421315,0.5358 -2.421315,0.5358"
+         id="path17208-1-6-0-0-9-0-9-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.17279,309.14701 c 0,0 -2.77585,3.31245 -2.77585,3.31245"
+         id="path17210-6-3-6-9-4-4-1-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.265875,308.74251 c 0,0 -3.165779,5.44123 -3.165779,5.44123"
+         id="path17212-2-0-9-8-4-1-4-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.799342,307.62705 c 0,0 -4.8261002,3.03231 -4.8261002,3.03231"
+         id="path17214-0-2-6-8-6-8-8-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.341538,306.40462 c 0,0 -2.7290139,1.43932 -2.7290139,1.43932"
+         id="path17216-2-5-2-2-6-7-1-6-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.194732,303.55624 c 0,0 -5.8735784,0.10887 -5.8735784,0.10887"
+         id="path17218-6-9-5-5-9-1-7-0-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.0187487,308.65893 c 0,0 -5.8373313,-2.39115 -5.8373313,-2.39115"
+         id="path17220-1-8-5-2-8-3-1-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9781725,297.23389 c 0,0 -0.6793233,-2.42899 -0.6793233,-2.42899"
+         id="path17222-2-2-6-6-7-2-9-5-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.796236,296.42235 c 0,0 -2.5022316,-5.15159 -2.5022316,-5.15159"
+         id="path17224-3-3-7-4-4-1-1-5-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.557025,300.65861 c 0,0 -4.6672869,3.04509 -4.6672869,3.04509"
+         id="path17230-2-8-8-0-4-2-3-0-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.046175,297.56991 c 0,0 -4.8270614,-3.51115 -4.8270614,-3.51115"
+         id="path17232-6-6-0-7-6-7-1-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.195483,293.94586 c 0,0 2.88841,-1.76672 2.88841,-1.76672"
+         id="path17238-2-1-6-6-1-1-2-1-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.951067,293.01708 c -0.384099,-0.20335 -5.1760555,-3.93071 -5.1760555,-3.93071"
+         id="path17242-1-6-6-8-1-0-7-9-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.9867396,296.11152 c 0,0 -5.0897216,-1.09123 -5.0897216,-1.09123"
+         id="path17244-2-6-2-9-1-0-8-2-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.8348884,303.65945 c 0,0 -3.0923369,0.0256 -3.0923369,0.0256"
+         id="path17246-6-1-5-8-3-7-3-5-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.1159488,310.14273 c 0,0 -4.4596285,3.27999 -4.8738527,3.52099"
+         id="path17248-5-3-0-0-4-4-2-5-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.568946,311.47825 c 0,0 -0.340268,3.27636 -0.340268,3.27636"
+         id="path17250-6-4-0-0-8-7-5-3-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.998654,311.00394 c 0,0 3.898395,2.01313 3.898395,2.01313"
+         id="path17252-1-0-5-4-7-0-5-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.87191,299.0101 c 0.39163,-0.43682 4.015036,-3.23771 4.015036,-3.23771"
+         id="path17254-7-9-6-6-3-7-8-8-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.239586,300.79856 c 0,0 -6.596607,-2.20558 -6.596607,-2.20558"
+         id="path17264-0-6-3-4-2-8-3-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.46732,297.49463 c 0,0 3.81453,-5.31767 3.81453,-5.31767"
+         id="path18729-2-3-8-8-7-7-0-2-6-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.756971,299.25311 c 0,0 6.908703,-3.53035 6.908703,-3.53035"
+         id="path18731-1-0-2-1-3-5-2-0-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.860409,300.08334 c 0,0 6.339297,-0.0444 6.339297,-0.0444"
+         id="path18733-0-1-6-6-1-2-9-5-9-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.959422,301.38051 c 0,0 4.732975,-0.0231 4.732975,-0.0231"
+         id="path18735-0-2-4-3-3-2-2-4-5-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.440473,303.64681 c 0,0 1.877308,0.35106 1.877308,0.35106"
+         id="path18737-4-0-2-3-2-0-7-4-7-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.138528,303.94997 c 0,0 1.481199,1.50217 1.481199,1.50217"
+         id="path18739-6-9-3-1-4-1-0-9-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.838457,305.07831 c 0,0 1.579427,1.12982 1.579427,1.12982"
+         id="path18741-3-9-0-1-1-9-4-7-9-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.700389,306.08676 c 0,0 0.609572,1.02874 0.609572,1.02874"
+         id="path18743-9-3-5-1-9-2-9-2-9-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.773825,306.56712 c 0,0 1.318563,1.82557 1.318563,1.82557"
+         id="path18745-1-1-0-8-2-1-7-0-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.16794,306.63888 c 0,0 -0.705649,0.6934 -0.705649,0.6934"
+         id="path18747-4-8-7-5-2-9-3-8-9-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.495956,306.24516 c 0,0 -0.220076,2.86892 -0.220076,2.86892"
+         id="path18749-6-6-2-0-4-7-9-9-4-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.611523,306.744 c 0,0 0.309922,7.82679 0.309922,7.82679"
+         id="path18751-8-7-8-9-2-0-9-9-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.969693,310.19326 c 0,0 1.5878,4.27137 1.5878,4.27137"
+         id="path18753-4-3-0-1-1-6-0-0-3-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.411612,312.00889 c 0,0 -1.872994,1.43693 -1.872994,1.43693"
+         id="path18755-2-4-2-2-3-3-0-5-3-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.708381,310.77589 c 0,0 -1.06621,4.85841 -1.06621,4.85841"
+         id="path18757-8-0-3-7-2-8-7-9-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.406636,310.18109 c 0,0 4.583173,3.06653 4.583173,3.06653"
+         id="path18759-2-0-5-4-6-2-7-1-1-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.48897,309.14924 c 0,0 2.134506,3.30163 2.134506,3.30163"
+         id="path18761-5-7-4-7-8-2-4-2-3-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.799973,308.71716 c 0.06025,0.44434 3.228278,2.03763 3.710285,2.15059"
+         id="path18763-9-2-3-2-5-9-2-3-3-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.790975,307.23418 c 0.512131,0.15816 4.520151,-0.0783 5.032283,0.0873"
+         id="path18765-7-9-0-0-4-0-2-2-6-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.748928,307.64713 c 0,0 2.89704,0.88922 2.89704,0.88922"
+         id="path18767-8-6-7-4-4-7-5-5-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.055968,302.46951 c 0.135564,0.36904 2.829221,3.8175 2.829221,3.8175"
+         id="path18769-8-2-1-2-7-3-4-6-3-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.282689,303.67534 c 0.61757,0.24101 3.306197,2.7282 3.306197,2.7282"
+         id="path18771-3-2-8-0-3-6-1-3-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.538848,302.30032 c 0,0 0.178096,0.29132 0.178096,0.29132"
+         id="path18773-6-1-8-3-2-0-8-9-3-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.614017,301.70578 c 0.512131,-0.1657 2.878704,-1.0264 2.878704,-1.0264"
+         id="path18775-9-4-7-0-5-6-7-6-4-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.605956,297.53447 c 0,0 3.508505,-0.17999 3.508505,-0.17999"
+         id="path18777-6-3-4-4-2-9-2-1-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.913119,298.42343 c 0,0 5.573991,-2.55797 5.573991,-2.55797"
+         id="path18779-9-9-2-0-1-4-5-3-0-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.90917,308.77177 c 0,0 -2.619259,4.76683 -2.619259,4.76683"
+         id="path18783-9-5-2-0-5-2-1-8-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.019251,308.7107 c 0,0 -1.361335,4.17921 -1.361335,4.17921"
+         id="path18785-0-8-1-5-4-7-1-6-7-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.836804,307.56692 c 0,0 -2.624688,7.7256 -2.624688,7.7256"
+         id="path18787-4-3-2-5-7-1-6-0-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.816979,305.65554 c 0,0 -4.63681,5.73821 -4.63681,5.73821"
+         id="path18789-2-2-1-7-3-5-0-8-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.2561,308.46748 c 0,0 -4.541008,4.3619 -4.541008,4.3619"
+         id="path18791-2-4-7-0-8-0-2-1-7-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.240219,307.78424 c 0,0 -3.6609976,5.92849 -3.6609976,5.92849"
+         id="path18793-5-5-2-3-4-8-6-4-9-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.210868,312.60714 c 0,0 -2.7579132,1.16096 -2.7579132,1.16096"
+         id="path18795-3-5-6-8-7-2-3-0-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.845956,307.82259 c 0,0 -6.5051716,-0.19974 -6.5051716,-0.19974"
+         id="path18797-5-6-3-6-1-4-3-6-8-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.631498,308.75253 c 0,0 -7.2122953,-1.7201 -7.2122953,-1.7201"
+         id="path18799-2-7-6-9-7-1-0-0-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.647369,302.09243 c -0.391631,-0.0226 -9.0560493,1.76167 -9.0560493,1.76167"
+         id="path18801-1-7-0-1-1-5-0-7-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 15.641781,300.511 C 15.24262,300.32271 8.7707306,296.48291 8.7707306,296.48291"
+         id="path18803-8-8-8-0-5-5-3-8-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.800086,299.9951 c 0,0 -5.92853,-6.56498 -5.92853,-6.56498"
+         id="path18805-1-0-8-0-0-2-6-7-6-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.018195,297.2148 c 0,0 -3.516849,-6.14482 -3.622287,-6.51385"
+         id="path18819-3-8-7-5-1-7-2-1-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.933763,298.63355 c -0.233472,-0.37658 -1.724481,-6.17108 -1.724481,-6.17108"
+         id="path18821-2-2-0-8-9-7-2-8-5-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9463922,302.22107 c 0,0 -5.4865795,-4.18815 -5.4865795,-4.18815"
+         id="path18823-9-1-8-5-4-4-0-6-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.6704635,304.00293 c 0,0 -7.1538856,2.63439 -7.1538856,2.63439"
+         id="path18825-2-3-9-7-7-4-1-0-8-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.642906,306.27151 c 0,0 -8.0299013,-1.67627 -8.0299013,-1.67627"
+         id="path18827-1-1-9-9-2-9-1-9-9-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.071493,303.41025 C 13.702456,303.32745 2.7414473,300.2864 2.7414473,300.2864"
+         id="path18829-9-7-8-6-8-0-0-8-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.962178,299.20764 c 0,0 -6.3882554,-3.37176 -6.3882554,-3.37176"
+         id="path18831-3-5-4-9-0-9-4-7-1-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.122443,297.6515 c 0,0 -5.7599764,-7.11696 -5.7599764,-7.11696"
+         id="path18833-7-6-2-6-6-8-1-0-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.332363,300.70967 c -0.436818,-0.25606 -5.181367,-5.71981 -5.181367,-5.71981"
+         id="path18835-7-1-6-2-4-2-7-1-1-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.975522,300.73825 c -0.353973,-0.32385 -5.2353121,1.51868 -5.2353121,1.51868"
+         id="path18837-2-1-8-8-1-4-8-9-6-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.376834,303.62488 c 0,0 -8.0375245,4.43403 -8.0375245,4.43403"
+         id="path18839-3-1-7-8-3-9-3-3-4-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.582997,305.86971 c 0,0 -9.4576966,6.81189 -9.4576966,6.81189"
+         id="path18841-7-0-8-4-0-2-1-3-8-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.042522,310.14482 c -0.3615035,0.0678 -7.6671993,2.77256 -7.6671993,2.77256"
+         id="path18843-1-7-5-3-7-1-3-6-7-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.45889,308.00699 c 0,0 -6.5495492,-1.59565 -6.5495492,-1.59565"
+         id="path18845-4-6-9-2-0-4-0-2-9-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.2398209,301.17104 c -0.3690361,-0.20335 -6.9915531,1.08107 -6.9915531,1.08107"
+         id="path18847-7-8-8-6-3-0-3-6-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.224899,298.41091 c 0,0 -6.3523527,-2.91436 -6.3523527,-2.91436"
+         id="path18849-5-2-3-8-0-3-2-5-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.088849,296.76584 c 0,0 -4.5992641,-7.5798 -4.5992641,-7.5798"
+         id="path18851-7-0-6-2-5-0-7-0-4-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.350351,291.93095 c 0,0 1.929586,-1.27088 1.929586,-1.27088"
+         id="path18857-0-6-4-1-7-0-7-7-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.065487,292.8442 c -0.09316,-0.55448 -4.785401,-5.95045 -4.785401,-5.95045"
+         id="path18861-4-6-7-8-3-7-7-0-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.735815,308.1906 c -0.406692,0.007 -5.7455823,6.83533 -6.3254962,6.63952"
+         id="path18863-3-3-1-3-2-2-8-8-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.565042,309.41089 c -0.3615048,0.26359 -5.7197586,1.09245 -5.7197586,1.09245"
+         id="path18865-7-1-5-6-1-9-0-5-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.20065,308.59149 c 0,0 -6.6990432,2.33183 -6.6990432,2.33183"
+         id="path18867-7-7-9-5-0-1-3-1-6-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.067762,304.49492 c -0.5045983,-0.0226 -9.0374237,-0.33533 -9.0374237,-0.33533"
+         id="path18869-7-3-4-0-8-9-8-8-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.070644,306.90483 c -0.384098,-0.0301 -4.8290133,1.84602 -4.8290133,1.84602"
+         id="path18871-3-7-4-8-1-1-2-8-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.065324,306.65884 c 0,0 -3.76534,5.36998 -3.76534,5.36998"
+         id="path18873-7-7-2-1-6-9-2-7-7-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.685601,309.19782 c 0,0 1.836261,4.41285 1.836261,4.41285"
+         id="path18875-4-9-0-8-7-2-3-8-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.07311,311.11932 c 0,0 -0.242344,3.77173 -0.242344,3.77173"
+         id="path18877-4-1-0-5-5-6-6-6-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.306281,312.0788 c 0,0 -0.819322,2.59109 -0.819322,2.59109"
+         id="path18879-0-0-0-0-5-2-2-8-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.624374,310.66544 c 0,0 -1.340256,4.19345 -1.340256,4.19345"
+         id="path18881-8-0-0-1-0-7-4-5-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.147256,311.53988 c 0,0 -0.682488,3.34385 -0.682488,3.34385"
+         id="path18883-6-4-8-7-2-1-1-6-8-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.633546,313.947 c 0,0 0.408393,0.10041 0.860271,0.34898"
+         id="path18885-1-3-1-0-6-5-9-5-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.140185,309.08418 c 0.466944,0.0602 2.371766,2.69999 2.371766,2.69999"
+         id="path18887-2-5-7-6-3-4-8-8-8-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.874608,307.4464 c 0.587445,0.32266 2.434059,2.95015 2.434059,2.95015"
+         id="path18889-0-7-1-7-2-0-4-4-3-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.288554,306.89997 c 1.182422,0.27114 5.628784,0.29175 5.628784,0.29175"
+         id="path18891-2-1-9-7-0-1-9-3-1-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 30.311469,303.45525 c 0,0 0.583012,-0.73466 0.583012,-0.73466"
+         id="path18893-5-2-9-6-1-0-9-8-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.841339,297.66689 c 0,0 5.244325,-6.47518 5.244325,-6.47518"
+         id="path18895-7-3-0-7-6-0-7-5-3-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.245953,299.12109 c -0.04519,-0.51213 -2.964348,-4.6562 -2.964348,-4.6562"
+         id="path18903-7-4-9-5-0-1-1-1-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.678593,298.25128 c 0.04519,-0.3841 2.884192,-8.48999 2.884192,-8.48999"
+         id="path18907-7-1-3-5-3-1-3-7-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.344239,298.4417 c -0.195815,-0.42928 -4.9331465,-2.0135 -4.9331465,-2.0135"
+         id="path18913-4-1-4-3-2-0-8-6-6-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 7.6487269,300.22071 C 7.21944,299.99476 1.8056914,299.36995 1.8056914,299.36995"
+         id="path18915-8-9-7-8-6-3-0-2-4-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.0179043,304.81042 c -0.5196631,-0.13556 -5.432396,1.38005 -5.432396,1.38005"
+         id="path18917-0-3-3-6-4-5-1-8-6-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.400353,304.60462 c 0,0 -4.1033537,1.19801 -4.1033537,1.19801"
+         id="path18919-6-9-1-4-6-9-4-1-1-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.54995,301.47503 c -0.361505,-0.15816 -9.404833,-1.74184 -9.404833,-1.74184"
+         id="path18921-7-2-7-2-6-8-2-5-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.8118799,297.45834 c 0,0 -5.9025436,-4.40459 -5.9025436,-4.40459"
+         id="path18923-4-9-8-9-4-8-7-4-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.27312,295.78086 c 0,0 -6.1202229,-5.46491 -6.1202229,-5.46491"
+         id="path18925-9-4-2-6-6-3-4-3-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.841159,297.63353 c -0.406693,-0.18075 -7.7258053,-2.89632 -7.7258053,-2.89632"
+         id="path18927-6-3-5-9-9-0-5-1-2-5" />
+    </g>
+    <g
+       id="g70002"
+       clip-path="url(#clipPath5978)">
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.08554,329.19924 c 0,0 0.615094,-11.51249 0.615094,-11.51249"
+         id="path17170-6-5-3-5-4-3-3-6-9-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.176533,331.7947 c 0,0 0.220633,-5.51693 0.220633,-5.51693"
+         id="path16904-4-2-5-1-5-8-1-1-0-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.980106,329.2515 c 0,0 2.407528,-5.65435 2.407528,-5.65435"
+         id="path16906-3-0-4-4-5-6-3-4-9-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.154976,331.86338 c 0,0 -0.634403,-7.26679 -0.634403,-7.26679"
+         id="path16908-8-3-9-8-1-0-5-5-8-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.777533,326.80248 c 0,0 0.724151,-2.6917 0.724151,-2.6917"
+         id="path16946-6-4-7-1-2-0-6-4-3-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.214129,331.04126 c 0,0 -0.0026,-4.36582 -0.0026,-4.36582"
+         id="path16968-0-7-6-3-6-4-5-4-8-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.244162,327.69338 c 0,0 1.792119,-8.59721 1.792119,-8.59721"
+         id="path16970-2-7-4-7-4-1-6-6-4-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.326495,327.8917 c 0,0 -1.927842,-1.97644 -1.927842,-1.97644"
+         id="path16972-7-1-6-4-1-6-2-3-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.720923,333.12447 c 0,0 -1.040614,-4.26107 -1.040614,-4.26107"
+         id="path17076-0-6-6-8-5-8-2-6-4-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.332645,330.47954 c 0,0 -1.403055,-4.22508 -1.403055,-4.22508"
+         id="path17078-5-5-6-2-2-3-2-7-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.141768,329.52165 c 0,0 2.276069,-1.03198 2.276069,-1.03198"
+         id="path17080-8-5-1-3-6-9-3-5-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.647179,327.11256 c 0,0 -3.779338,-3.51917 -3.779338,-3.51917"
+         id="path17134-8-4-9-0-6-2-2-1-5-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.122091,326.54158 c 0,0 -0.627986,-4.54304 -0.627986,-4.54304"
+         id="path17136-8-6-8-4-5-6-6-2-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.683099,329.87217 c 0,0 0.06451,-5.75273 0.06451,-5.75273"
+         id="path17138-8-8-6-4-7-7-5-2-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.947029,329.23368 c 0,0 -1.899023,-9.43582 -1.899023,-9.43582"
+         id="path17158-1-1-8-5-3-0-0-8-9-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.389206,331.22507 c 0,0 -0.206433,-7.55587 -0.206433,-7.55587"
+         id="path17168-8-0-3-1-4-8-7-7-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.133158,329.16605 c 0,0 3.211139,-5.70149 3.211139,-5.70149"
+         id="path17172-9-1-6-6-9-4-2-7-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.120761,327.91471 c 0,0 2.976625,-4.81764 2.976625,-4.81764"
+         id="path17176-4-8-6-4-9-1-9-6-9-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.339868,326.09734 c 0,0 3.056762,-3.75717 3.056762,-3.75717"
+         id="path17178-0-9-7-6-6-8-9-4-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.709134,333.14236 c 0,0 1.87954,-4.064 1.87954,-4.064"
+         id="path17192-0-1-3-3-7-5-9-1-6-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.868668,331.97415 c 0,0 -0.654825,-1.73333 -0.654825,-1.73333"
+         id="path17196-3-8-0-4-1-0-2-7-5-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.088326,330.25889 c 0,0 -2.040616,-8.74055 -2.040616,-8.74055"
+         id="path17198-0-1-7-3-5-4-9-0-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.039966,327.09009 c 0,0 -0.902607,-1.27561 -0.902607,-1.27561"
+         id="path17226-7-0-4-1-5-5-9-3-7-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.837772,327.12821 c 0,0 -1.44334,-8.97264 -1.44334,-8.97264"
+         id="path17228-4-9-8-9-2-0-9-3-6-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.852921,328.99324 c 0,0 2.125308,-7.27208 2.125308,-7.27208"
+         id="path17234-6-7-2-9-4-0-0-7-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.169881,325.04831 c -0.0075,-0.80188 -0.528683,-7.19619 -0.528683,-7.19619"
+         id="path17236-9-3-6-5-7-6-3-6-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.622487,323.65588 c 0,0 3.712707,-2.02158 3.712707,-2.02158"
+         id="path17240-6-9-2-8-7-9-4-3-2-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.160184,327.09812 c 0,0 -0.465196,-5.0908 -0.465196,-5.0908"
+         id="path17256-9-1-8-3-0-6-4-0-8-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.015406,330.33607 c 0,0 -1.114893,-5.04632 -1.114893,-5.04632"
+         id="path17258-4-2-9-8-8-2-9-2-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.628184,330.72437 c 0,0 -3.612232,-2.81008 -3.612232,-2.81008"
+         id="path17260-7-6-5-0-3-1-3-2-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.610607,329.26947 c 0,0 2.113052,-7.18833 2.113052,-7.18833"
+         id="path18781-7-4-2-2-4-5-7-3-7-6-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.772492,325.76543 c 0,0 -4.410237,-5.71888 -4.410237,-5.71888"
+         id="path16948-5-6-2-6-5-5-4-8-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.940932,330.65936 c 0,0 -3.185043,-6.72674 -3.185043,-6.72674"
+         id="path18807-4-8-6-1-4-0-2-7-5-5-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.38278,331.48782 c 0,0 -2.506976,-7.35943 -2.506976,-7.35943"
+         id="path18809-4-6-5-9-1-1-6-8-2-5-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.461905,330.96012 c 0,0 0.01036,-11.60893 0.01036,-11.60893"
+         id="path18811-9-8-0-3-4-6-8-1-5-7-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.588991,330.59248 c 0,0 7.082445,-11.29678 7.082445,-11.29678"
+         id="path18813-5-6-5-8-5-5-2-3-9-9-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.06718,323.87075 c 0,0 1.801262,-1.18411 1.84645,-1.52302"
+         id="path18815-0-2-4-7-4-9-0-5-8-5-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.121116,328.443 c 0,0 -1.976333,-6.27746 -1.976333,-6.27746"
+         id="path18817-1-2-3-7-3-3-9-9-1-3-1" />
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.929352,326.22875 c 0,0 -3.583239,-6.56325 -3.583239,-6.56325"
+         id="path18853-2-4-1-6-0-6-0-5-5-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.898147,325.93046 c 0,0 -0.395303,-5.5904 -0.470617,-5.9971"
+         id="path18855-2-9-9-5-4-4-0-8-4-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.234756,322.22705 c 0,0 1.004638,-4.01682 1.004638,-4.01682"
+         id="path18859-7-1-8-5-5-5-4-1-1-9-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.67906,327.73814 c 0.05272,-0.39916 2.987516,-4.81371 2.987516,-5.18274"
+         id="path18897-0-4-7-7-5-2-9-8-0-9-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.077233,327.23869 c 0,0 -4.116202,-3.86871 -4.116202,-3.86871"
+         id="path18899-9-3-7-4-4-3-2-2-8-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.269648,331.33401 c 0,0 -0.777689,-7.30347 -0.777689,-7.30347"
+         id="path18901-0-4-6-3-0-2-0-8-3-2-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.843795,329.77287 c 0,0 0.929035,-8.18927 0.929035,-8.18927"
+         id="path18905-0-2-8-6-9-1-6-6-5-6-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.563723,327.20773 c -0.02259,-0.53222 -0.03909,-8.55073 -0.03909,-8.55073"
+         id="path18909-6-2-7-3-2-6-2-2-6-8-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.361643,323.61103 c 0,0 -1.489331,-4.28744 -1.489331,-4.28744"
+         id="path18911-5-4-3-9-1-9-8-5-1-8-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.375782,338.26811 c 0,0 -1.448669,2.35555 -1.448669,2.35555"
+         id="path16888-8-2-2-5-2-1-8-2-6-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.853049,338.31232 c 0,0 -0.05516,1.75371 -0.05516,1.75371"
+         id="path16890-6-5-9-6-7-5-3-4-9-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.785862,339.81715 c 0,0 -0.388356,-2.55974 -0.388356,-2.55974"
+         id="path16892-9-4-6-7-5-8-4-5-7-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.621176,336.54309 c 0,0 1.961763,0.34244 1.961763,0.34244"
+         id="path16894-9-3-8-0-0-8-7-3-2-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.445298,334.43234 c 0,0 3.963704,3.9589 3.963704,3.9589"
+         id="path16896-1-5-1-2-8-5-6-1-4-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.995984,334.17754 c 0,0 5.315243,-1.62335 5.315243,-1.62335"
+         id="path16898-6-7-5-3-0-2-6-5-2-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.996079,332.62564 c 0,0 5.456044,-3.7737 5.456044,-3.7737"
+         id="path16900-6-5-2-4-7-6-8-6-9-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.878542,330.30954 c 0,0 4.332643,-3.74317 4.332643,-3.74317"
+         id="path16902-3-6-9-1-3-7-5-6-0-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.836502,330.53313 c 0,0 -1.668814,-6.69624 -1.668814,-6.69624"
+         id="path16910-6-5-9-2-6-2-6-4-2-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.444585,332.86006 c 0,0 -4.4988029,-4.71067 -4.4988029,-4.71067"
+         id="path16912-9-9-0-9-4-2-1-4-9-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.102227,336.39311 c 0,0 -6.1733262,-5.81364 -6.1733262,-5.81364"
+         id="path16914-9-5-4-1-0-9-1-2-4-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.335598,336.68819 c 0,0 -9.2153043,-4.42684 -9.2153043,-4.42684"
+         id="path16916-5-8-7-7-8-0-2-6-1-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.347378,338.58894 c 0,0 -9.4924029,1.88553 -9.4924029,1.88553"
+         id="path16918-3-3-9-8-5-6-2-6-0-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.325225,335.60798 c 0,0 -6.0922006,-3.87332 -6.0922006,-3.87332"
+         id="path16920-4-3-9-2-5-0-4-4-2-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.032745,337.83754 c 0,0 -7.1519707,5.77416 -7.1519707,5.77416"
+         id="path16922-3-1-2-4-3-0-5-4-9-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.0045897,340.56413 c 0,0 -6.9652989,1.51935 -6.9652989,1.51935"
+         id="path16924-7-9-4-6-0-2-9-6-9-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.052546,338.801 c 0,0 -5.546934,6.1231 -5.546934,6.1231"
+         id="path16926-5-9-0-8-5-4-1-9-9-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.682705,342.05125 c 0,0 -0.993654,4.94124 -0.993654,4.94124"
+         id="path16928-2-6-1-5-6-6-5-8-6-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.543476,341.47816 c 0,0 3.417066,5.29662 3.417066,5.29662"
+         id="path16930-1-1-9-2-8-0-0-1-7-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.90746,342.51184 c 0,0 2.69976,4.87961 2.69976,4.87961"
+         id="path16932-5-7-1-3-2-9-7-1-0-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.178859,341.69306 c 0,0 0.626578,4.92765 0.626578,4.92765"
+         id="path16934-7-1-0-1-7-6-1-6-1-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.512191,343.54875 c 0,0 1.248173,1.24 1.248173,1.24"
+         id="path16936-8-4-9-5-1-1-2-4-0-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.739689,339.6705 c 0,0 4.617994,1.78962 4.617994,1.78962"
+         id="path16938-8-0-7-5-8-9-2-6-5-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.563418,338.44445 c 0,0 4.563253,0.74884 4.563253,0.74884"
+         id="path16940-5-2-5-8-4-6-1-3-3-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.655944,336.34398 c 0,0 0.335584,-2.12868 0.335584,-2.12868"
+         id="path16942-6-5-4-2-9-5-3-5-2-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.06099,332.79919 c 0,0 4.872042,-1.22077 4.872042,-1.22077"
+         id="path16944-9-8-7-0-2-9-3-8-4-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.00532,330.37775 c 0,0 -4.3671133,-3.57084 -4.3671133,-3.57084"
+         id="path16950-7-0-9-4-7-0-3-1-2-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.8918565,337.3797 c 0,0 -4.5732683,1.79335 -4.5732683,1.79335"
+         id="path16952-4-1-0-2-1-7-1-9-6-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.085163,341.90505 c 0,0 -5.0673165,5.01126 -5.0673165,5.01126"
+         id="path16954-6-6-5-0-5-7-9-5-3-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.805711,342.27678 c 0,0 -1.390228,2.63353 -1.390228,2.63353"
+         id="path16956-9-9-2-6-5-4-7-9-0-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.762731,336.8743 c 0,0 -7.2395132,0.73239 -7.2395132,0.73239"
+         id="path16958-8-7-9-6-0-7-9-2-4-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.34486,340.72166 c 0,0 -6.7255569,3.35064 -6.7255569,3.35064"
+         id="path16960-4-0-9-7-8-8-9-7-9-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.563022,340.44749 c 0,0 -4.8489535,5.58812 -4.8489535,5.58812"
+         id="path16962-7-5-3-4-3-9-1-6-0-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.611682,332.90627 c 0,0 -3.701759,-4.724 -3.701759,-4.724"
+         id="path16964-1-1-7-5-5-5-3-9-2-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.760099,334.63559 c 0,0 -4.286086,-6.67037 -4.286086,-6.67037"
+         id="path16966-8-3-7-8-0-9-8-2-3-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.511592,330.30156 c 0,0 1.971871,-1.73905 1.971871,-1.73905"
+         id="path16974-1-2-4-6-1-7-9-9-6-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.945463,338.64476 c 0,0 5.322512,1.27674 5.322512,1.27674"
+         id="path16976-3-9-4-0-7-7-9-7-6-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.499897,340.09182 c 0,0 0.332953,2.01344 0.332953,2.01344"
+         id="path16978-4-9-1-2-9-5-6-0-3-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.309777,342.66716 c 0,0 1.387352,3.6662 1.387352,3.6662"
+         id="path16980-4-9-6-9-6-4-6-6-9-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.474933,343.88557 c 0,0 2.049342,3.5816 2.049342,3.5816"
+         id="path16982-7-6-4-5-3-1-7-1-8-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.774739,343.00023 c 0,0 0.81119,3.29691 0.81119,3.29691"
+         id="path16984-7-0-1-3-4-7-9-4-4-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.846947,345.83029 c 0,0 0.346222,1.42048 0.346222,1.42048"
+         id="path16986-4-6-0-1-8-3-7-0-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.225819,340.87225 c 0,0 -2.158874,4.57456 -2.158874,4.57456"
+         id="path17062-4-4-3-4-3-2-9-8-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.260371,340.42701 c 0,0 -3.230073,0.67677 -3.230073,0.67677"
+         id="path17064-9-3-3-3-1-5-2-2-4-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.46567,341.98481 c 0,0 -3.261453,4.02164 -3.261453,4.02164"
+         id="path17066-5-0-1-5-3-6-3-4-9-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.513012,342.11713 c 0,0 -4.513768,2.84096 -4.513768,2.84096"
+         id="path17068-7-5-5-8-9-2-6-2-0-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.391352,338.81409 c 0,0 -1.3314918,4.41322 -1.3314918,4.41322"
+         id="path17070-3-4-7-9-3-9-3-8-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.890649,338.45727 c 0,0 -9.0306556,-1.95483 -9.0306556,-1.95483"
+         id="path17072-3-1-4-3-1-2-7-5-9-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.484423,332.80419 c 0,0 -3.2114573,-3.8569 -3.2114573,-3.8569"
+         id="path17074-0-4-8-5-7-0-2-0-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.501637,332.59209 c 0,0 3.959065,-1.30669 3.959065,-1.30669"
+         id="path17082-1-5-6-1-1-1-5-1-3-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.756823,334.92857 c 0,0 4.211854,-1.63678 4.211854,-1.63678"
+         id="path17084-7-8-5-8-3-1-4-8-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.121389,335.17971 c 0,0 2.63523,0.71514 2.63523,0.71514"
+         id="path17086-2-5-8-9-5-6-5-8-0-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.624759,338.16653 c 0,0 2.883853,2.30376 2.883853,2.30376"
+         id="path17088-0-1-5-8-3-2-7-6-3-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.125173,336.67964 c 0,0 1.322903,2.8451 1.322903,2.8451"
+         id="path17090-4-9-4-4-2-1-8-4-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.907651,337.05114 c 0,0 1.306146,2.8428 1.306146,2.8428"
+         id="path17092-1-9-3-9-9-4-8-1-5-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.554184,338.12921 c 0,0 -1.088847,2.3114 -1.088847,2.3114"
+         id="path17094-3-6-2-3-2-7-1-3-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.301976,337.41842 c 0,0 -1.118889,4.6468 -1.118889,4.6468"
+         id="path17096-0-7-1-4-6-2-1-5-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.173171,343.09905 c 0,0 1.518297,3.42013 1.518297,3.42013"
+         id="path17098-3-9-5-3-8-4-1-4-7-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.355535,341.90985 c 0,0 -0.344509,4.70571 -0.344509,4.70571"
+         id="path17100-0-0-2-5-3-4-4-2-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.937317,341.52762 c 0,0 3.353672,0.54449 3.353672,0.54449"
+         id="path17102-4-5-6-6-2-9-2-0-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.694818,340.24058 c 0,0 3.168194,1.21901 3.168194,1.21901"
+         id="path17104-0-9-7-0-3-8-0-4-9-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.165461,343.31426 c 0,0 2.030961,3.39969 2.030961,3.39969"
+         id="path17106-1-7-1-3-6-1-3-6-0-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.150464,344.43182 c 0,0 1.43835,1.91145 1.43835,1.91145"
+         id="path17108-0-6-8-4-2-8-3-0-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.905573,340.73994 c 0,0 2.918162,4.11184 2.918162,4.11184"
+         id="path17110-7-6-3-6-8-9-3-0-1-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.794775,342.68983 c 0,0 -1.128675,5.17823 -1.128675,5.17823"
+         id="path17112-7-8-0-1-1-8-9-6-4-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.874018,341.28804 c 0,0 -1.696769,1.53444 -1.696769,1.53444"
+         id="path17114-7-1-5-4-4-9-1-4-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.58042,338.96349 c 0,0 -5.114114,4.24155 -5.114114,4.24155"
+         id="path17116-0-8-7-3-2-6-2-9-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.1836717,340.49891 c 0,0 -1.9104376,3.44377 -1.9104376,3.44377"
+         id="path17118-4-9-6-1-1-5-0-3-0-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.501769,338.57838 c 0,0 -3.1387646,3.39258 -3.1387646,3.39258"
+         id="path17120-4-2-9-8-3-4-7-5-6-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 4.9189821,335.64255 c 0,0 -4.43343667,1.2625 -4.43343667,1.2625"
+         id="path17122-8-9-5-4-8-3-0-7-9-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.264155,335.2448 c 0,0 -6.0167398,-2.67506 -6.0167398,-2.67506"
+         id="path17124-0-5-0-8-4-7-8-4-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.81785,333.99885 c 0,0 -5.2110128,-3.97762 -5.2110128,-3.97762"
+         id="path17126-3-4-0-3-9-3-7-9-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.642605,331.69559 c 0,0 -7.0263686,-2.40371 -7.0263686,-2.40371"
+         id="path17128-5-6-5-5-7-6-7-7-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.451826,329.4196 c 0,0 0.01296,-2.60844 0.01296,-2.60844"
+         id="path17130-8-2-6-3-0-1-9-2-0-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.276357,328.19168 c 0,0 -1.75676,-3.46653 -1.75676,-3.46653"
+         id="path17132-6-7-3-7-2-8-1-4-5-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.242625,330.78543 c 0,0 1.624943,-3.24566 1.624943,-3.24566"
+         id="path17140-3-6-7-2-0-4-3-1-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.943117,330.07045 c 0,0 3.447329,-0.75906 3.447329,-0.75906"
+         id="path17142-8-7-3-3-9-5-6-6-2-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.780512,335.15383 c 0,0 5.454072,-1.89756 5.454072,-1.89756"
+         id="path17144-9-1-2-8-5-8-4-2-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.613753,338.4651 c 0,0 3.195765,0.90685 3.195765,0.90685"
+         id="path17146-2-7-1-7-3-7-0-9-5-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.635808,338.77859 c 0,0 3.030384,3.16775 3.030384,3.16775"
+         id="path17148-3-1-2-1-8-5-0-8-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.979337,343.3128 c 0,0 2.08797,-0.75069 2.08797,-0.75069"
+         id="path17150-9-8-9-2-7-9-1-6-4-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.938134,335.14781 c 0,0 -6.9889993,-1.30514 -6.9889993,-1.30514"
+         id="path17152-9-6-8-6-7-8-4-7-6-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.324322,331.43558 c 0,0 -6.3136656,-4.76098 -6.3136656,-4.76098"
+         id="path17154-4-8-2-0-5-1-7-7-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.103797,334.71065 c 0,0 -5.1926263,-3.27929 -5.1926263,-3.27929"
+         id="path17156-4-0-6-0-0-4-9-2-9-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.45106,330.69624 c 0,0 -10.0924453,-10.31074 -10.0924453,-10.31074"
+         id="path17160-0-7-2-0-1-1-2-4-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.133021,335.64276 c 0,0 -3.0476316,0.75236 -3.0476316,0.75236"
+         id="path17162-5-8-8-9-4-5-5-0-6-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.9895201,338.55879 c 0,0 -3.1334706,2.69857 -3.1334706,2.69857"
+         id="path17164-6-6-8-3-4-3-2-7-7-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.398184,339.81839 c -0.361505,0.0602 -7.0576767,5.06821 -7.0576767,5.06821"
+         id="path17166-2-6-4-6-7-3-6-1-9-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.405487,330.54426 c 0,0 8.367565,-5.23506 8.367565,-5.23506"
+         id="path17174-5-9-3-4-4-1-8-5-5-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.363353,331.75901 c 0.39163,-0.20335 2.889266,-1.74547 2.889266,-1.74547"
+         id="path17180-1-6-0-1-7-8-6-2-2-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.594745,334.19504 c 0.421755,-0.11297 1.815004,-1.09083 1.815004,-1.09083"
+         id="path17182-8-1-2-5-1-3-0-3-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.62569,336.86762 c 0.466943,0.007 2.72116,1.35592 2.72116,1.35592"
+         id="path17184-8-8-2-4-8-9-0-9-6-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.601243,337.39405 c 0,0 -2.435266,0.8526 -2.435266,0.8526"
+         id="path17186-2-5-3-6-5-1-0-8-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.17012,332.79118 c 0,0 3.732904,-1.15694 4.079346,-1.30757"
+         id="path17188-4-9-2-9-5-3-4-5-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.276272,331.89048 c 0,0 3.721137,-1.29589 3.721137,-1.29589"
+         id="path17190-5-6-5-1-6-8-4-1-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.2413,332.62927 c 0,0 0.990741,-3.89029 0.990741,-3.89029"
+         id="path17194-2-6-5-7-7-0-1-4-8-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.641172,333.96546 c 0,0 -2.16525,-3.88846 -2.16525,-3.88846"
+         id="path17200-1-1-8-5-9-2-7-0-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.340511,335.784 c 0,0 -5.5875635,-0.59744 -5.5875635,-0.59744"
+         id="path17202-8-7-5-6-0-7-8-0-8-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.243843,336.09763 c 0,0 -1.468267,0.46529 -1.468267,0.46529"
+         id="path17204-1-5-4-1-8-7-1-7-8-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.505329,339.6524 c 0,0 -1.412681,0.43528 -1.412681,0.43528"
+         id="path17206-0-5-7-5-5-8-5-5-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.859668,339.08492 c 0,0 -2.836731,0.1721 -2.836731,0.1721"
+         id="path17208-1-6-0-0-9-0-9-8-9-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.616581,340.91669 c 0,0 -2.722084,3.59214 -2.722084,3.59214"
+         id="path17210-6-3-6-9-4-4-1-4-9-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.694634,340.48528 c 0,0 -4.080512,5.81606 -4.080512,5.81606"
+         id="path17212-2-0-9-8-4-1-4-6-6-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.047803,339.19315 c 0,0 -5.1534276,2.97247 -5.1534276,2.97247"
+         id="path17214-0-2-6-8-6-8-8-7-5-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.299691,337.90637 c 0,0 -3.1686289,2.07246 -3.1686289,2.07246"
+         id="path17216-2-5-2-2-6-7-1-6-1-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.611874,335.83191 c 0,0 -6.1511052,-0.64691 -6.1511052,-0.64691"
+         id="path17218-6-9-5-5-9-1-7-0-3-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.6591509,341.00633 c 0,0 -5.2404792,-2.29842 -5.2404792,-2.29842"
+         id="path17220-1-8-5-2-8-3-1-1-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.2192029,329.67196 c 0,0 -0.9946589,-3.36151 -0.9946589,-3.36151"
+         id="path17222-2-2-6-6-7-2-9-5-3-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.787069,327.92243 c 0,0 -2.0675508,-4.91423 -2.0675508,-4.91423"
+         id="path17224-3-3-7-4-4-1-1-5-4-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.091646,332.47579 c 0,0 -3.7814672,2.9573 -3.7814672,2.9573"
+         id="path17230-2-8-8-0-4-2-3-0-6-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.055968,330.06981 c 0,0 -5.1649242,-4.38837 -5.1649242,-4.38837"
+         id="path17232-6-6-0-7-6-7-1-3-4-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.697325,325.90298 c 0,0 3.187746,-2.18261 3.187746,-2.18261"
+         id="path17238-2-1-6-6-1-1-2-1-0-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.68162,325.43827 c -0.384099,-0.20335 -5.4016652,-4.42203 -5.4016652,-4.42203"
+         id="path17242-1-6-6-8-1-0-7-9-5-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.7648589,327.66345 c 0,0 -5.1131247,-0.20746 -5.1131247,-0.20746"
+         id="path17244-2-6-2-9-1-0-8-2-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.3364878,335.69941 c 0,0 -2.7915249,-0.47366 -2.7915249,-0.47366"
+         id="path17246-6-1-5-8-3-7-3-5-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.6626419,341.93175 c 0,0 -4.4568481,3.27412 -4.8710723,3.51512"
+         id="path17248-5-3-0-0-4-4-2-5-0-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.068984,343.48441 c 0,0 0.337464,2.80287 0.337464,2.80287"
+         id="path17250-6-4-0-0-8-7-5-3-1-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.566869,343.25606 c 0,0 4.657811,1.38331 4.657811,1.38331"
+         id="path17252-1-0-5-4-7-0-5-2-9-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.840439,330.51109 c 0.39163,-0.43682 3.67698,-2.40188 3.67698,-2.40188"
+         id="path17254-7-9-6-6-3-7-8-8-1-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.560551,333.18194 c 0,0 -7.3976375,-2.44918 -7.3976375,-2.44918"
+         id="path17264-0-6-3-4-2-8-3-0-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.873242,329.78657 c 0,0 3.897257,-5.71555 3.897257,-5.71555"
+         id="path18729-2-3-8-8-7-7-0-2-6-3-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.150953,330.94525 c 0,0 6.744182,-3.66673 6.744182,-3.66673"
+         id="path18731-1-0-2-1-3-5-2-0-2-9-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.429489,332.33693 c 0,0 6.733377,-0.79663 6.733377,-0.79663"
+         id="path18733-0-1-6-6-1-2-9-5-9-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.499737,333.18381 c 0,0 5.679669,0.28683 5.679669,0.28683"
+         id="path18735-0-2-4-3-3-2-2-4-5-8-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.9246,335.77179 c 0,0 1.107711,0.63658 1.107711,0.63658"
+         id="path18737-4-0-2-3-2-0-7-4-7-6-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.241764,336.4392 c 0,0 0.927687,1.23031 0.927687,1.23031"
+         id="path18739-6-9-3-1-4-1-0-9-2-3-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.837636,336.57831 c 0,0 2.079737,1.60722 2.079737,1.60722"
+         id="path18741-3-9-0-1-1-9-4-7-9-6-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.924629,338.53366 c 0,0 0.123969,1.00809 0.123969,1.00809"
+         id="path18743-9-3-5-1-9-2-9-2-9-6-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.430015,338.22296 c 0,0 1.832432,1.93272 1.832432,1.93272"
+         id="path18745-1-1-0-8-2-1-7-0-4-3-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.343152,339.10718 c 0,0 -0.603337,0.64101 -0.603337,0.64101"
+         id="path18747-4-8-7-5-2-9-3-8-9-7-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.745436,337.81185 c 0,0 -0.867251,3.60528 -0.867251,3.60528"
+         id="path18749-6-6-2-0-4-7-9-9-4-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.142816,338.91811 c 0,0 0.964115,8.117 0.964115,8.117"
+         id="path18751-8-7-8-9-2-0-9-9-2-4-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.880018,342.68515 c 0,0 2.108057,4.03364 2.108057,4.03364"
+         id="path18753-4-3-0-1-1-6-0-0-3-6-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.419483,344.50883 c 0,0 -2.380837,0.93169 -2.380837,0.93169"
+         id="path18755-2-4-2-2-3-3-0-5-3-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.218047,342.67805 c 0,0 -0.264817,4.56479 -0.264817,4.56479"
+         id="path18757-8-0-3-7-2-8-7-9-2-9-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.591422,341.71649 c 0,0 4.46658,4.02646 4.46658,4.02646"
+         id="path18759-2-0-5-4-6-2-7-1-1-9-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.185939,341.54695 c 0,0 2.876146,2.66387 2.876146,2.66387"
+         id="path18761-5-7-4-7-8-2-4-2-3-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.226614,340.45644 c 0.06025,0.44434 3.184404,2.62005 3.666411,2.73301"
+         id="path18763-9-2-3-2-5-9-2-3-3-1-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.898296,339.72253 c 0.512131,0.15816 4.298799,-0.0798 4.810931,0.0858"
+         id="path18765-7-9-0-0-4-0-2-2-6-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.639274,339.1593 c 0,0 2.522353,1.5012 2.522353,1.5012"
+         id="path18767-8-6-7-4-4-7-5-5-0-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.515939,334.27348 c 0.135564,0.36904 2.753807,4.33309 2.753807,4.33309"
+         id="path18769-8-2-1-2-7-3-4-6-3-9-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.771739,335.77941 c 0.61757,0.24101 2.688834,2.14087 2.688834,2.14087"
+         id="path18771-3-2-8-0-3-6-1-3-0-9-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.250868,333.89158 c 0,0 0.378594,0.20777 0.378594,0.20777"
+         id="path18773-6-1-8-3-2-0-8-9-3-3-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.115245,333.7408 c 0.512131,-0.1657 3.811727,-1.30926 3.811727,-1.30926"
+         id="path18775-9-4-7-0-5-6-7-6-4-4-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.59268,330.03429 c 0,0 3.364009,-0.20535 3.364009,-0.20535"
+         id="path18777-6-3-4-4-2-9-2-1-2-4-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.354069,330.18771 c 0,0 4.635781,-2.37453 4.635781,-2.37453"
+         id="path18779-9-9-2-0-1-4-5-3-0-3-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.553624,340.42022 c 0,0 -1.784163,4.97685 -1.784163,4.97685"
+         id="path18783-9-5-2-0-5-2-1-8-2-5-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.48248,340.8989 c 0,0 -1.465147,3.64342 -1.465147,3.64342"
+         id="path18785-0-8-1-5-4-7-1-6-7-8-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.179419,339.20276 c 0,0 -2.766059,8.54747 -2.766059,8.54747"
+         id="path18787-4-3-2-5-7-1-6-0-3-4-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.2619,337.88367 c 0,0 -5.114874,5.01118 -5.114874,5.01118"
+         id="path18789-2-2-1-7-3-5-0-8-0-6-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.78141,340.62454 c 0,0 -4.099966,3.70597 -4.099966,3.70597"
+         id="path18791-2-4-7-0-8-0-2-1-7-6-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.730316,339.88326 c 0,0 -3.6678883,5.95797 -3.6678883,5.95797"
+         id="path18793-5-5-2-3-4-8-6-4-9-7-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.8313608,344.93268 c 0,0 -1.8884051,0.73593 -1.8884051,0.73593"
+         id="path18795-3-5-6-8-7-2-3-0-2-7-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.478424,340.16159 c 0,0 -6.1206209,-1.03845 -6.1206209,-1.03845"
+         id="path18797-5-6-3-6-1-4-3-6-8-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.165077,340.93267 c 0,0 -7.1535017,-1.61069 -7.1535017,-1.61069"
+         id="path18799-2-7-6-9-7-1-0-0-6-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.77685,334.57537 c -0.391631,-0.0226 -8.8513095,0.90685 -8.8513095,0.90685"
+         id="path18801-1-7-0-1-1-5-0-7-2-5-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.179547,332.32037 c -0.399161,-0.18829 -6.2251867,-4.30252 -6.2251867,-4.30252"
+         id="path18803-8-8-8-0-5-5-3-8-0-6-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.094269,331.5908 c 0,0 -6.034919,-6.62407 -6.034919,-6.62407"
+         id="path18805-1-0-8-0-0-2-6-7-6-4-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.515912,329.16708 c 0,0 -4.447873,-5.84761 -4.553311,-6.21664"
+         id="path18819-3-8-7-5-1-7-2-1-1-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.336671,330.92963 c -0.233472,-0.37658 -1.627389,-6.46664 -1.627389,-6.46664"
+         id="path18821-2-2-0-8-9-7-2-8-5-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.6581172,334.6296 c 0,0 -5.3706926,-4.12734 -5.3706926,-4.12734"
+         id="path18823-9-1-8-5-4-4-0-6-7-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.170452,335.99953 c 0,0 -8.1519294,2.68185 -8.1519294,2.68185"
+         id="path18825-2-3-9-7-7-4-1-0-8-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.285012,338.62067 c 0,0 -7.2635226,-2.31377 -7.2635226,-2.31377"
+         id="path18827-1-1-9-9-2-9-1-9-9-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.63263,335.17067 C 13.263593,335.08787 2.2736418,332.10988 2.2736418,332.10988"
+         id="path18829-9-7-8-6-8-0-0-8-0-9-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.383548,331.4768 c 0,0 -7.1062874,-3.23844 -7.1062874,-3.23844"
+         id="path18831-3-5-4-9-0-9-4-7-1-8-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.167899,329.15357 c 0,0 -5.9098474,-6.13005 -5.9098474,-6.13005"
+         id="path18833-7-6-2-6-6-8-1-0-1-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.534891,332.25252 c -0.436818,-0.25606 -4.911917,-5.42769 -4.911917,-5.42769"
+         id="path18835-7-1-6-2-4-2-7-1-1-8-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.494435,332.87447 c -0.353973,-0.32385 -5.1894497,1.13633 -5.1894497,1.13633"
+         id="path18837-2-1-8-8-1-4-8-9-6-4-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.011394,335.28363 c 0,0 -8.1063146,4.5274 -8.1063146,4.5274"
+         id="path18839-3-1-7-8-3-9-3-3-4-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.082237,337.84215 c 0,0 -9.5857516,6.50445 -9.5857516,6.50445"
+         id="path18841-7-0-8-4-0-2-1-3-8-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.8469886,342.605 c -0.3615035,0.0678 -7.4698506,1.81238 -7.4698506,1.81238"
+         id="path18843-1-7-5-3-7-1-3-6-7-8-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9601421,340.04235 c 0,0 -5.699365,-1.27535 -5.699365,-1.27535"
+         id="path18845-4-6-9-2-0-4-0-2-9-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.7264127,333.05603 c -0.3690361,-0.20335 -6.9959011,1.32814 -6.9959011,1.32814"
+         id="path18847-7-8-8-6-3-0-3-6-0-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.39635,329.94122 c 0,0 -6.6388708,-1.95809 -6.6388708,-1.95809"
+         id="path18849-5-2-3-8-0-3-2-5-0-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.76143,328.38796 c 0,0 -4.1863393,-6.70929 -4.1863393,-6.70929"
+         id="path18851-7-0-6-2-5-0-7-0-4-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.82655,323.77852 c 0,0 1.569389,-0.63209 1.569389,-0.63209"
+         id="path18857-0-6-4-1-7-0-7-7-2-6-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.582494,324.9735 c -0.09316,-0.55448 -4.6972646,-5.77301 -4.6972646,-5.77301"
+         id="path18861-4-6-7-8-3-7-7-0-1-6-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.325957,339.90421 c -0.406692,0.007 -4.8438094,7.21127 -5.4237233,7.01546"
+         id="path18863-3-3-1-3-2-2-8-8-6-9-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.9043109,341.04361 c -0.3615048,0.26359 -5.6367371,1.72744 -5.6367371,1.72744"
+         id="path18865-7-1-5-6-1-9-0-5-0-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.559079,340.9401 c 0,0 -6.5743066,1.85457 -6.5743066,1.85457"
+         id="path18867-7-7-9-5-0-1-3-1-6-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.5755092,336.5826 C 9.0709109,336.56 1.4175488,336.47593 1.4175488,336.47593"
+         id="path18869-7-3-4-0-8-9-8-8-6-5-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.8438,339.35041 c -0.384098,-0.0301 -5.0973739,1.33136 -5.0973739,1.33136"
+         id="path18871-3-7-4-8-1-1-2-8-7-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.081922,339.15856 c 0,0 -3.89292,5.35779 -3.89292,5.35779"
+         id="path18873-7-7-2-1-6-9-2-7-7-8-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.658822,341.6971 c 0,0 1.57237,4.3204 1.57237,4.3204"
+         id="path18875-4-9-0-8-7-2-3-8-1-3-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.573295,343.13293 c 0,0 -0.163148,4.02845 -0.163148,4.02845"
+         id="path18877-4-1-0-5-5-6-6-6-6-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.234515,344.57362 c 0,0 -0.692861,1.59927 -0.692861,1.59927"
+         id="path18879-0-0-0-0-5-2-2-8-6-5-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.340707,342.2537 c 0,0 -1.552816,4.54388 -1.552816,4.54388"
+         id="path18881-8-0-0-1-0-7-4-5-5-0-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.83847,343.14662 c 0,0 0.125512,3.70909 0.125512,3.70909"
+         id="path18883-6-4-8-7-2-1-1-6-8-4-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.992819,346.29474 c 0,0 0.08786,0.25117 0.539742,0.49974"
+         id="path18885-1-3-1-0-6-5-9-5-2-9-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.057051,340.59114 c 0.466944,0.0602 1.972321,3.0622 1.972321,3.0622"
+         id="path18887-2-5-7-6-3-4-8-8-8-2-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.160543,339.03623 c 0.587445,0.32266 1.662509,3.24125 1.662509,3.24125"
+         id="path18889-0-7-1-7-2-0-4-4-3-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.483236,338.43943 c 1.182422,0.27114 4.947638,0.86784 4.947638,0.86784"
+         id="path18891-2-1-9-7-0-1-9-3-1-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.962826,335.09685 c 0,0 0.656872,-0.79398 0.656872,-0.79398"
+         id="path18893-5-2-9-6-1-0-9-8-6-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.952976,329.17951 c 0,0 5.614207,-5.85312 5.614207,-5.85312"
+         id="path18895-7-3-0-7-6-0-7-5-3-3-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.986879,330.69344 c -0.04519,-0.51213 -2.319137,-3.91091 -2.319137,-3.91091"
+         id="path18903-7-4-9-5-0-1-1-1-1-1-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.094121,330.52937 c 0.04519,-0.3841 1.974223,-8.84243 1.974223,-8.84243"
+         id="path18907-7-1-3-5-3-1-3-7-7-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.116441,329.99661 c -0.195815,-0.42928 -5.1720702,-1.74777 -5.1720702,-1.74777"
+         id="path18913-4-1-4-3-2-0-8-6-6-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.1422859,332.30071 C 7.712999,332.07476 1.305753,331.3621 1.305753,331.3621"
+         id="path18915-8-9-7-8-6-3-0-2-4-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 6.5678754,336.59253 C 6.0482123,336.45697 1.583968,337.69047 1.583968,337.69047"
+         id="path18917-0-3-3-6-4-5-1-8-6-3-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.89949,336.63398 c 0,0 -4.1165807,1.28651 -4.1165807,1.28651"
+         id="path18919-6-9-1-4-6-9-4-1-1-0-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.610899,332.97876 C 13.249394,332.8206 4.5859505,331.96913 4.5859505,331.96913"
+         id="path18921-7-2-7-2-6-8-2-5-2-2-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.461683,329.81522 c 0,0 -5.2496133,-5.15941 -5.2496133,-5.15941"
+         id="path18923-4-9-8-9-4-8-7-4-3-4-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.854597,328.05443 c 0,0 -6.1845261,-5.8684 -6.1845261,-5.8684"
+         id="path18925-9-4-2-6-6-3-4-3-0-8-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.617774,330.08085 c -0.406693,-0.18075 -7.8538571,-3.6993 -7.8538571,-3.6993"
+         id="path18927-6-3-5-9-9-0-5-1-2-5-4" />
+    </g>
+    <use
+       height="1024"
+       width="32"
+       transform="translate(0,96.055389)"
+       id="use71299"
+       xlink:href="#g62526"
+       y="0"
+       x="0"
+       clip-path="url(#clipPath5986)" />
+    <use
+       height="1024"
+       width="32"
+       transform="translate(0,160.05531)"
+       id="use71303"
+       xlink:href="#g62272"
+       y="0"
+       x="0"
+       clip-path="url(#clipPath5990)" />
+    <use
+       height="1024"
+       width="32"
+       transform="translate(0,224.05169)"
+       id="use71305"
+       xlink:href="#g61766"
+       y="0"
+       x="0"
+       clip-path="url(#clipPath5994)" />
+    <use
+       height="1024"
+       width="32"
+       transform="translate(0,288.05169)"
+       id="use71307"
+       xlink:href="#g37704"
+       y="0"
+       x="0"
+       clip-path="url(#clipPath5998)" />
+    <use
+       height="1024"
+       width="32"
+       transform="translate(0,351.99638)"
+       id="use71309"
+       xlink:href="#g37450"
+       y="0"
+       x="0"
+       clip-path="url(#clipPath6002)" />
+    <use
+       height="1024"
+       width="32"
+       transform="translate(0,414.93926)"
+       id="use71311"
+       xlink:href="#g36944"
+       y="0"
+       x="0"
+       clip-path="url(#clipPath6006)" />
+    <use
+       height="1024"
+       width="32"
+       transform="translate(0,479.00181)"
+       id="use71313"
+       xlink:href="#g24438"
+       y="0"
+       x="0"
+       clip-path="url(#clipPath6010)" />
+    <use
+       height="1024"
+       width="32"
+       transform="translate(0,544)"
+       id="use71315"
+       xlink:href="#g18977"
+       y="0"
+       x="0"
+       clip-path="url(#clipPath6014)" />
+    <g
+       id="g78559"
+       clip-path="url(#clipPath5982)">
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.230733,360.72079 c 0,0 0.234682,-11.47526 0.234682,-11.47526"
+         id="path17170-6-5-3-5-4-3-3-6-9-6-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.514531,363.42625 c 0,0 0.251619,-5.4859 0.251619,-5.4859"
+         id="path16904-4-2-5-1-5-8-1-1-0-9-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.1611,360.78541 c 0,0 1.845077,-5.51151 1.845077,-5.51151"
+         id="path16906-3-0-4-4-5-6-3-4-9-0-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.737486,364.13852 c 0,0 -0.348722,-7.05962 -0.348722,-7.05962"
+         id="path16908-8-3-9-8-1-0-5-5-8-2-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.160229,359.12426 c 0,0 0.789011,-3.2364 0.789011,-3.2364"
+         id="path16946-6-4-7-1-2-0-6-4-3-6-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.704639,363.13821 c 0,0 -0.622158,-3.97971 -0.622158,-3.97971"
+         id="path16968-0-7-6-3-6-4-5-4-8-1-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.086373,360.16783 c 0,0 2.43837,-8.96486 2.43837,-8.96486"
+         id="path16970-2-7-4-7-4-1-6-6-4-9-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.826723,359.90681 c 0,0 -1.901004,-2.15383 -1.901004,-2.15383"
+         id="path16972-7-1-6-4-1-6-2-3-4-1-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.502487,364.67471 c 0,0 -0.74046,-4.30459 -0.74046,-4.30459"
+         id="path17076-0-6-6-8-5-8-2-6-4-5-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.247853,361.98678 c 0,0 -0.901622,-4.00874 -0.901622,-4.00874"
+         id="path17078-5-5-6-2-2-3-2-7-6-6-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.661114,361.65939 c 0,0 3.214619,-1.37055 3.214619,-1.37055"
+         id="path17080-8-5-1-3-6-9-3-5-2-9-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.188331,359.3112 c 0,0 -3.016553,-4.11483 -3.016553,-4.11483"
+         id="path17134-8-4-9-0-6-2-2-1-5-5-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.372959,358.10907 c 0,0 -1.292564,-4.39132 -1.292564,-4.39132"
+         id="path17136-8-6-8-4-5-6-6-2-0-8-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.203675,362.01413 c 0,0 0.606348,-5.3986 0.606348,-5.3986"
+         id="path17138-8-8-6-4-7-7-5-2-7-8-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.444965,361.18829 c 0,0 -2.747692,-9.74678 -2.747692,-9.74678"
+         id="path17158-1-1-8-5-3-0-0-8-9-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.613522,363.67193 c 0,0 -0.454558,-8.50216 -0.454558,-8.50216"
+         id="path17168-8-0-3-1-4-8-7-7-4-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.630485,361.11442 c 0,0 2.476738,-6.09008 2.476738,-6.09008"
+         id="path17172-9-1-6-6-9-4-2-7-7-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.148727,359.41549 c 0,0 2.913045,-3.81969 2.913045,-3.81969"
+         id="path17176-4-8-6-4-9-1-9-6-9-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.847527,358.01016 c 0,0 3.962151,-3.95176 3.962151,-3.95176"
+         id="path17178-0-9-7-6-6-8-9-4-7-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.372162,364.77297 c 0,0 1.743551,-3.85681 1.743551,-3.85681"
+         id="path17192-0-1-3-3-7-5-9-1-6-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.391919,364.12485 c 0,0 -0.470422,-2.28966 -0.470422,-2.28966"
+         id="path17196-3-8-0-4-1-0-2-7-5-2-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.693292,362.5654 c 0,0 -1.148269,-8.9953 -1.148269,-8.9953"
+         id="path17198-0-1-7-3-5-4-9-0-4-1-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.51717,359.23934 c 0,0 -1.372251,-0.92492 -1.372251,-0.92492"
+         id="path17226-7-0-4-1-5-5-9-3-7-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.895921,358.6316 c 0,0 -1.262502,-8.03684 -1.262502,-8.03684"
+         id="path17228-4-9-8-9-2-0-9-3-6-0-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.369548,361.12111 c 0,0 2.890804,-6.98715 2.890804,-6.98715"
+         id="path17234-6-7-2-9-4-0-0-7-8-3-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.149952,357.54791 c -0.0075,-0.80188 -0.795999,-7.28653 -0.795999,-7.28653"
+         id="path17236-9-3-6-5-7-6-3-6-8-4-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.022345,355.35569 c 0,0 3.520773,-2.17611 3.520773,-2.17611"
+         id="path17240-6-9-2-8-7-9-4-3-2-2-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.899547,358.67143 c 0,0 0.244285,-4.44379 0.244285,-4.44379"
+         id="path17256-9-1-8-3-0-6-4-0-8-8-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.614024,362.63422 c 0,0 -1.168774,-5.13775 -1.168774,-5.13775"
+         id="path17258-4-2-9-8-8-2-9-2-8-9-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.16206,362.90528 c 0,0 -3.244021,-2.50067 -3.244021,-2.50067"
+         id="path17260-7-6-5-0-3-1-3-2-5-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.520874,360.77759 c 0,0 2.439965,-6.25628 2.439965,-6.25628"
+         id="path18781-7-4-2-2-4-5-7-3-7-6-7-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.434488,357.39698 c 0,0 -3.872389,-5.80876 -3.872389,-5.80876"
+         id="path16948-5-6-2-6-5-5-4-8-7-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.959562,363.15901 c 0,0 -2.787189,-6.94973 -2.787189,-6.94973"
+         id="path18807-4-8-6-1-4-0-2-7-5-5-3-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.727162,363.12533 c 0,0 -3.182678,-7.37141 -3.182678,-7.37141"
+         id="path18809-4-6-5-9-1-1-6-8-2-5-7-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.168314,363.36485 c 0,0 0.08495,-12.46314 0.08495,-12.46314"
+         id="path18811-9-8-0-3-4-6-8-1-5-7-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.059735,362.42396 c 0,0 6.115918,-11.19306 6.115918,-11.19306"
+         id="path18813-5-6-5-8-5-5-2-3-9-9-9-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.134248,355.37527 c 0,0 1.376544,-0.33922 1.421732,-0.67813"
+         id="path18815-0-2-4-7-4-9-0-5-8-5-1-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.859914,360.86935 c 0,0 -1.320596,-6.39666 -1.320596,-6.39666"
+         id="path18817-1-2-3-7-3-3-9-9-1-3-1-7" />
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.408464,358.08574 c 0,0 -3.651793,-6.13486 -3.651793,-6.13486"
+         id="path18853-2-4-1-6-0-6-0-5-5-5-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.398163,357.92645 c 0,0 -0.153347,-5.15811 -0.228661,-5.56481"
+         id="path18855-2-9-9-5-4-4-0-8-4-1-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.912635,354.60946 c 0,0 0.837119,-4.29798 0.837119,-4.29798"
+         id="path18859-7-1-8-5-5-5-4-1-1-9-0-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.237998,359.50263 c 0.05272,-0.39916 3.923696,-4.5085 3.923696,-4.87753"
+         id="path18897-0-4-7-7-5-2-9-8-0-9-0-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.253353,358.77074 c 0,0 -3.799046,-3.48248 -3.799046,-3.48248"
+         id="path18899-9-3-7-4-4-3-2-2-8-7-1-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.512708,363.77096 c 0,0 -1.519866,-7.71072 -1.519866,-7.71072"
+         id="path18901-0-4-6-3-0-2-0-8-3-2-8-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.294779,361.98877 c 0,0 0.664958,-7.94142 0.664958,-7.94142"
+         id="path18905-0-2-8-6-9-1-6-6-5-6-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.257818,358.81223 c -0.02259,-0.53222 0.38584,-8.64086 0.38584,-8.64086"
+         id="path18909-6-2-7-3-2-6-2-2-6-8-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.830096,355.43624 c 0,0 -1.46432,-4.03207 -1.46432,-4.03207"
+         id="path18911-5-4-3-9-1-9-8-5-1-8-2-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.04294,369.89499 c 0,0 -1.233208,3.2147 -1.233208,3.2147"
+         id="path16888-8-2-2-5-2-1-8-2-6-9-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.815996,369.81369 c 0,0 -0.453,2.49905 -0.453,2.49905"
+         id="path16890-6-5-9-6-7-5-3-4-9-1-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.600995,372.28172 c 0,0 -0.681531,-2.87776 -0.681531,-2.87776"
+         id="path16892-9-4-6-7-5-8-4-5-7-0-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.500383,368.0579 c 0,0 1.588812,0.90648 1.588812,0.90648"
+         id="path16894-9-3-8-0-0-8-7-3-2-3-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.643734,365.9734 c 0,0 3.509321,4.84736 3.509321,4.84736"
+         id="path16896-1-5-1-2-8-5-6-1-4-5-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.147591,365.70108 c 0,0 5.499849,-1.51697 5.499849,-1.51697"
+         id="path16898-6-7-5-3-0-2-6-5-2-3-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.075508,364.13199 c 0,0 5.398404,-3.77958 5.398404,-3.77958"
+         id="path16900-6-5-2-4-7-6-8-6-9-9-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.640978,361.86958 c 0,0 4.070901,-3.32954 4.070901,-3.32954"
+         id="path16902-3-6-9-1-3-7-5-6-0-5-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.126206,362.12561 c 0,0 -2.064986,-6.77725 -2.064986,-6.77725"
+         id="path16910-6-5-9-2-6-2-6-4-2-6-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.613066,364.3893 c 0,0 -4.6071378,-3.74354 -4.6071378,-3.74354"
+         id="path16912-9-9-0-9-4-2-1-4-9-3-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.485065,368.0715 c 0,0 -6.2563596,-5.89218 -6.2563596,-5.89218"
+         id="path16914-9-5-4-1-0-9-1-2-4-9-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.760789,368.42511 c 0,0 -9.1424595,-4.20804 -9.1424595,-4.20804"
+         id="path16916-5-8-7-7-8-0-2-6-1-5-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.892068,370.38232 c 0,0 -8.6741683,1.74822 -8.6741683,1.74822"
+         id="path16918-3-3-9-8-5-6-2-6-0-3-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.320234,368.10796 c 0,0 -5.5992221,-4.26436 -5.5992221,-4.26436"
+         id="path16920-4-3-9-2-5-0-4-4-2-1-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.460465,369.57859 c 0,0 -7.1265018,6.24434 -7.1265018,6.24434"
+         id="path16922-3-1-2-4-3-0-5-4-9-4-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.498452,372.64223 c 0,0 -7.2687984,1.90359 -7.2687984,1.90359"
+         id="path16924-7-9-4-6-0-2-9-6-9-2-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.686364,370.46054 c 0,0 -4.985345,6.00333 -4.985345,6.00333"
+         id="path16926-5-9-0-8-5-4-1-9-9-4-3" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.276607,373.75956 c 0,0 -1.012295,5.49674 -1.012295,5.49674"
+         id="path16928-2-6-1-5-6-6-5-8-6-4-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.337272,373.02266 c 0,0 4.04814,5.48852 4.04814,5.48852"
+         id="path16930-1-1-9-2-8-0-0-1-7-4-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.618287,374.10394 c 0,0 3.10575,5.77367 3.10575,5.77367"
+         id="path16932-5-7-1-3-2-9-7-1-0-3-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.239884,373.1968 c 0,0 0.226331,5.79124 0.226331,5.79124"
+         id="path16934-7-1-0-1-7-6-1-6-1-5-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.783551,375.12879 c 0,0 1.238071,2.08627 1.238071,2.08627"
+         id="path16936-8-4-9-5-1-1-2-4-0-6-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.34667,371.97959 c 0,0 5.37638,1.82186 5.37638,1.82186"
+         id="path16938-8-0-7-5-8-9-2-6-5-6-0" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.795484,370.00157 c 0,0 4.808707,1.04348 4.808707,1.04348"
+         id="path16940-5-2-5-8-4-6-1-3-3-1-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.365843,367.93674 c 0,0 0.903212,-2.13735 0.903212,-2.13735"
+         id="path16942-6-5-4-2-9-5-3-5-2-8-1" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.164612,364.31005 c 0,0 4.270811,-0.68279 4.270811,-0.68279"
+         id="path16944-9-8-7-0-2-9-3-8-4-8-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.392923,362.6936 c 0,0 -4.2774662,-4.0358 -4.2774662,-4.0358"
+         id="path16950-7-0-9-4-7-0-3-1-2-5-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.9616109,369.87481 c 0,0 -4.6383671,1.79822 -4.6383671,1.79822"
+         id="path16952-4-1-0-2-1-7-1-9-6-6-5" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.6502783,373.65832 c 0,0 -4.9330682,4.85847 -4.9330682,4.85847"
+         id="path16954-6-6-5-0-5-7-9-5-3-0-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.023984,374.72662 c 0,0 -1.562019,2.68152 -1.562019,2.68152"
+         id="path16956-9-9-2-6-5-4-7-9-0-2-9" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.263226,368.85205 c 0,0 -6.5792444,1.22809 -6.5792444,1.22809"
+         id="path16958-8-7-9-6-0-7-9-2-4-1-6" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.849437,372.78916 c 0,0 -5.8224118,3.57256 -5.8224118,3.57256"
+         id="path16960-4-0-9-7-8-8-9-7-9-1-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.42355,372.92764 c 0,0 -4.2523947,5.31063 -4.2523947,5.31063"
+         id="path16962-7-5-3-4-3-9-1-6-0-3-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.10285,364.81271 c 0,0 -4.428823,-4.18959 -4.428823,-4.18959"
+         id="path16964-1-1-7-5-5-5-3-9-2-1-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.417198,366.99948 c 0,0 -4.347566,-6.74019 -4.347566,-6.74019"
+         id="path16966-8-3-7-8-0-9-8-2-3-4-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.822753,362.69294 c 0,0 1.609136,-1.6331 1.609136,-1.6331"
+         id="path16974-1-2-4-6-1-7-9-9-6-1-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.736726,371.0991 c 0,0 5.110949,1.09323 5.110949,1.09323"
+         id="path16976-3-9-4-0-7-7-9-7-6-4-7" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.009813,372.1909 c 0,0 1.311238,1.80638 1.311238,1.80638"
+         id="path16978-4-9-1-2-9-5-6-0-3-4-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.502827,374.20593 c 0,0 1.085646,4.61548 1.085646,4.61548"
+         id="path16980-4-9-6-9-6-4-6-6-9-8-4" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.955915,375.74898 c 0,0 1.859743,4.12451 1.859743,4.12451"
+         id="path16982-7-6-4-5-3-1-7-1-8-3-2" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.214625,374.76253 c 0,0 0.467444,3.04394 0.467444,3.04394"
+         id="path16984-7-0-1-3-4-7-9-4-4-9-8" />
+      <path
+         style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.506285,377.4643 c 0,0 0.730654,2.28455 0.730654,2.28455"
+         id="path16986-4-6-0-1-8-3-7-0-5-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.21348,372.3724 c 0,0 -1.888098,5.50244 -1.888098,5.50244"
+         id="path17062-4-4-3-4-3-2-9-8-1-8-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.077071,372.8922 c 0,0 -2.913448,-0.27032 -2.913448,-0.27032"
+         id="path17064-9-3-3-3-1-5-2-2-4-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.502256,373.48615 c 0,0 -2.843601,4.31177 -2.843601,4.31177"
+         id="path17066-5-0-1-5-3-6-3-4-9-9-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.600238,374.60946 c 0,0 -4.230995,2.01233 -4.230995,2.01233"
+         id="path17068-7-5-5-8-9-2-6-2-0-4-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.484065,371.30542 c 0,0 -0.9571946,4.1005 -0.9571946,4.1005"
+         id="path17070-3-4-7-9-3-9-3-8-4-7-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.089465,369.9985 c 0,0 -9.3438236,-1.00931 -9.3438236,-1.00931"
+         id="path17072-3-1-4-3-1-2-7-5-9-6-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.225204,365.23175 c 0,0 -2.6555874,-3.88197 -2.6555874,-3.88197"
+         id="path17074-0-4-8-5-7-0-2-0-6-8-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.806905,364.98808 c 0,0 4.040345,-1.38554 4.040345,-1.38554"
+         id="path17082-1-5-6-1-1-1-5-1-3-1-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.910207,367.40446 c 0,0 4.046816,-2.61253 4.046816,-2.61253"
+         id="path17084-7-8-5-8-3-1-4-8-1-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.876616,367.6157 c 0,0 3.327329,0.50253 3.327329,0.50253"
+         id="path17086-2-5-8-9-5-6-5-8-0-3-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.105774,370.03006 c 0,0 2.901211,2.48053 2.901211,2.48053"
+         id="path17088-0-1-5-8-3-2-7-6-3-9-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.678491,368.90431 c 0,0 2.073289,2.22324 2.073289,2.22324"
+         id="path17090-4-9-4-4-2-1-8-4-7-7-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.233004,368.67148 c 0,0 0.540185,3.45882 0.540185,3.45882"
+         id="path17092-1-9-3-9-9-4-8-1-5-7-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.053794,370.14896 c 0,0 -1.888914,2.69131 -1.888914,2.69131"
+         id="path17094-3-6-2-3-2-7-1-3-7-7-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.883889,369.69265 c 0,0 -0.203395,4.32171 -0.203395,4.32171"
+         id="path17096-0-7-1-4-6-2-1-5-3-7-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.676735,375.03946 c 0,0 1.515327,3.45535 1.515327,3.45535"
+         id="path17098-3-9-5-3-8-4-1-4-7-2-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.769177,373.62896 c 0,0 -0.344983,5.26819 -0.344983,5.26819"
+         id="path17100-0-0-2-5-3-4-4-2-5-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.017759,373.70715 c 0,0 4.228951,1.02543 4.228951,1.02543"
+         id="path17102-4-5-6-6-2-9-2-0-6-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.271994,372.50745 c 0,0 4.023363,1.20329 4.023363,1.20329"
+         id="path17104-0-9-7-0-3-8-0-4-9-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.74983,375.03632 c 0,0 2.033789,3.95975 2.033789,3.95975"
+         id="path17106-1-7-1-3-6-1-3-6-0-7-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.712953,376.67386 c 0,0 1.974584,1.17925 1.974584,1.17925"
+         id="path17108-0-6-8-4-2-8-3-0-7-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.552648,372.38576 c 0,0 3.091312,3.99946 3.091312,3.99946"
+         id="path17110-7-6-3-6-8-9-3-0-1-0-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.229621,374.93663 c 0,0 -1.309858,4.50055 -1.309858,4.50055"
+         id="path17112-7-8-0-1-1-8-9-6-4-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.25524,373.61157 c 0,0 -1.730464,1.57039 -1.730464,1.57039"
+         id="path17114-7-1-5-4-4-9-1-4-1-5-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.888855,371.35702 c 0,0 -5.7318726,4.24085 -5.7318726,4.24085"
+         id="path17116-0-8-7-3-2-6-2-9-0-1-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.6869739,372.55628 c 0,0 -0.9229496,3.48192 -0.9229496,3.48192"
+         id="path17118-4-9-6-1-1-5-0-3-0-4-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.8878371,370.26065 c 0,0 -3.1260907,3.40864 -3.1260907,3.40864"
+         id="path17120-4-2-9-8-3-4-7-5-6-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 4.5496729,367.97961 c 0,0 -4.13331392,1.42063 -4.13331392,1.42063"
+         id="path17122-8-9-5-4-8-3-0-7-9-9-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.98438,367.6592 c 0,0 -5.2877816,-2.86984 -5.2877816,-2.86984"
+         id="path17124-0-5-0-8-4-7-8-4-8-9-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.259823,366.23264 c 0,0 -5.5148094,-4.69194 -5.5148094,-4.69194"
+         id="path17126-3-4-0-3-9-3-7-9-0-1-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.009366,364.03542 c 0,0 -7.5860291,-3.20483 -7.5860291,-3.20483"
+         id="path17128-5-6-5-5-7-6-7-7-4-7-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.951797,361.41425 c 0,0 -0.954648,-2.42613 -0.954648,-2.42613"
+         id="path17130-8-2-6-3-0-1-9-2-0-9-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.857274,360.46439 c 0,0 -1.573495,-3.29834 -1.573495,-3.29834"
+         id="path17132-6-7-3-7-2-8-1-4-5-7-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.734386,362.87582 c 0,0 1.090708,-2.83786 1.090708,-2.83786"
+         id="path17140-3-6-7-2-0-4-3-1-4-9-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.244923,362.46909 c 0,0 3.606163,-1.35215 3.606163,-1.35215"
+         id="path17142-8-7-3-3-9-5-6-6-2-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.611104,366.6834 c 0,0 6.09128,-1.60366 6.09128,-1.60366"
+         id="path17144-9-1-2-8-5-8-4-2-1-4-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.14367,370.29474 c 0,0 3.562159,1.56634 3.562159,1.56634"
+         id="path17146-2-7-1-7-3-7-0-9-5-7-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.292611,370.41498 c 0,0 3.868835,3.60009 3.868835,3.60009"
+         id="path17148-3-1-2-1-8-5-0-8-9-2-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.888207,375.80443 c 0,0 2.436313,-1.67109 2.436313,-1.67109"
+         id="path17150-9-8-9-2-7-9-1-6-4-8-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.295509,367.4975 c 0,0 -7.7803393,-1.90317 -7.7803393,-1.90317"
+         id="path17152-9-6-8-6-7-8-4-7-6-8-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.014474,363.04316 c 0,0 -6.3805325,-4.0398 -6.3805325,-4.0398"
+         id="path17154-4-8-2-0-5-1-7-7-1-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.094483,366.21074 c 0,0 -5.6057415,-2.51188 -5.6057415,-2.51188"
+         id="path17156-4-0-6-0-0-4-9-2-9-7-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.041838,362.40895 c 0,0 -10.180705,-10.07357 -10.180705,-10.07357"
+         id="path17160-0-7-2-0-1-1-2-4-5-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.3988012,367.21925 c 0,0 -3.2002382,0.68885 -3.2002382,0.68885"
+         id="path17162-5-8-8-9-4-5-5-0-6-5-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.5715243,370.28442 c 0,0 -2.4195897,2.56989 -2.4195897,2.56989"
+         id="path17164-6-6-8-3-4-3-2-7-7-7-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.365546,372.31732 c -0.361505,0.0602 -7.5165178,4.66119 -7.5165178,4.66119"
+         id="path17166-2-6-4-6-7-3-6-1-9-5-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.892103,362.42935 c 0,0 7.564715,-5.50744 7.564715,-5.50744"
+         id="path17174-5-9-3-4-4-1-8-5-5-9-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.023499,364.12575 c 0.39163,-0.20335 3.23978,-1.61232 3.23978,-1.61232"
+         id="path17180-1-6-0-1-7-8-6-2-2-5-1" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 30.055734,366.38866 c 0.421755,-0.11297 1.490341,-1.76551 1.490341,-1.76551"
+         id="path17182-8-1-2-5-1-3-0-3-7-5-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.015003,368.55388 c 0.466943,0.007 2.753144,1.40039 2.753144,1.40039"
+         id="path17184-8-8-2-4-8-9-0-9-6-3-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.211677,369.08062 c 0,0 -1.830966,1.61757 -1.830966,1.61757"
+         id="path17186-2-5-3-6-5-1-0-8-4-2-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.611036,365.02696 c 0,0 3.777455,-1.27305 4.123897,-1.42368"
+         id="path17188-4-9-2-9-5-3-4-5-7-8-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.776745,363.86873 c 0,0 3.743277,-1.12547 3.743277,-1.12547"
+         id="path17190-5-6-5-1-6-8-4-1-8-5-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.002074,364.19021 c 0,0 1.022998,-2.99608 1.022998,-2.99608"
+         id="path17194-2-6-5-7-7-0-1-4-8-2-5" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.310677,366.34066 c 0,0 -2.332852,-4.22008 -2.332852,-4.22008"
+         id="path17200-1-1-8-5-9-2-7-0-8-3-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.430481,368.27584 c 0,0 -5.9582208,-0.6755 -5.9582208,-0.6755"
+         id="path17202-8-7-5-6-0-7-8-0-8-6-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.825954,368.37216 c 0,0 -1.215152,-0.28131 -1.215152,-0.28131"
+         id="path17204-1-5-4-1-8-7-1-7-8-8-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.843365,372.02082 c 0,0 -1.306531,-0.1627 -1.306531,-0.1627"
+         id="path17206-0-5-7-5-5-8-5-5-6-7-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.213635,370.73178 c 0,0 -3.690358,0.50681 -3.690358,0.50681"
+         id="path17208-1-6-0-0-9-0-9-8-9-8-3" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.431049,372.45239 c 0,0 -2.835496,4.45723 -2.835496,4.45723"
+         id="path17210-6-3-6-9-4-4-1-4-9-8-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.194483,372.47301 c 0,0 -4.29395,6.23817 -4.29395,6.23817"
+         id="path17212-2-0-9-8-4-1-4-6-6-0-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.867731,371.6596 c 0,0 -4.625144,2.86484 -4.625144,2.86484"
+         id="path17214-0-2-6-8-6-8-8-7-5-7-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.748988,369.68698 c 0,0 -3.513696,2.78087 -3.513696,2.78087"
+         id="path17216-2-5-2-2-6-7-1-6-1-7-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.955182,367.4684 c 0,0 -6.6381334,-0.7623 -6.6381334,-0.7623"
+         id="path17218-6-9-5-5-9-1-7-0-3-7-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.772013,373.49343 c 0,0 -5.0590467,-3.18974 -5.0590467,-3.18974"
+         id="path17220-1-8-5-2-8-3-1-1-1-6-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9216249,361.27015 c 0,0 -1.1413542,-2.73031 -1.1413542,-2.73031"
+         id="path17222-2-2-6-6-7-2-9-5-3-3-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.287037,359.92809 c 0,0 -2.9973938,-4.66453 -2.9973938,-4.66453"
+         id="path17224-3-3-7-4-4-1-1-5-4-4-6" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.051521,364.97418 c 0,0 -3.4386665,2.85689 -3.4386665,2.85689"
+         id="path17230-2-8-8-0-4-2-3-0-6-3-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.860022,362.52982 c 0,0 -4.9280562,-5.3467 -4.9280562,-5.3467"
+         id="path17232-6-6-0-7-6-7-1-3-4-6-2" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.19733,357.90531 c 0,0 3.276236,-2.46895 3.276236,-2.46895"
+         id="path17238-2-1-6-6-1-1-2-1-0-2-0" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 12.927654,357.87355 C 12.543555,357.6702 7.5265911,353.45118 7.5265911,353.45118"
+         id="path17242-1-6-6-8-1-0-7-9-5-4-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.2593028,359.58912 c 0,0 -6.0923492,-0.25555 -6.0923492,-0.25555"
+         id="path17244-2-6-2-9-1-0-8-2-5-6-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.4139299,367.20544 c 0,0 -2.5188452,0.37726 -2.5188452,0.37726"
+         id="path17246-6-1-5-8-3-7-3-5-0-1-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 7.1638643,373.96669 c 0,0 -4.4057012,3.01641 -4.8199254,3.25741"
+         id="path17248-5-3-0-0-4-4-2-5-0-2-4" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.8570256,375.03156 c 0,0 0.073666,3.40952 0.073666,3.40952"
+         id="path17250-6-4-0-0-8-7-5-3-1-1-7" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.748263,375.722 c 0,0 4.386405,0.42554 4.386405,0.42554"
+         id="path17252-1-0-5-4-7-0-5-2-9-0-9" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.953045,362.99824 c 0.39163,-0.43682 3.557669,-2.38907 3.557669,-2.38907"
+         id="path17254-7-9-6-6-3-7-8-8-1-9-8" />
+      <path
+         style="fill:none;stroke:#c0c0c0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.137815,365.44895 c 0,0 -6.5528473,-2.4481 -6.5528473,-2.4481"
+         id="path17264-0-6-3-4-2-8-3-0-8-0-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.937487,361.29071 c 0,0 3.826106,-5.71964 3.826106,-5.71964"
+         id="path18729-2-3-8-8-7-7-0-2-6-3-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.518696,363.28402 c 0,0 6.205477,-4.47536 6.205477,-4.47536"
+         id="path18731-1-0-2-1-3-5-2-0-2-9-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.722999,364.74172 c 0,0 6.398765,-1.69973 6.398765,-1.69973"
+         id="path18733-0-1-6-6-1-2-9-5-9-5-5-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.504735,364.68383 c 0,0 6.030333,0.43538 6.030333,0.43538"
+         id="path18735-0-2-4-3-3-2-2-4-5-8-9-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.423894,367.74524 c 0,0 0.335789,1.08227 0.335789,1.08227"
+         id="path18737-4-0-2-3-2-0-7-4-7-6-4-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.184338,368.93589 c 0,0 0.675789,1.12645 0.675789,1.12645"
+         id="path18739-6-9-3-1-4-1-0-9-2-3-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.33741,368.56329 c 0,0 1.378616,2.07991 1.378616,2.07991"
+         id="path18741-3-9-0-1-1-9-4-7-9-6-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.474748,370.75185 c 0,0 0.875569,1.1886 0.875569,1.1886"
+         id="path18743-9-3-5-1-9-2-9-2-9-6-0-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 21.98871,370.01627 c 0,0 2.607216,2.07021 2.607216,2.07021"
+         id="path18745-1-1-0-8-2-1-7-0-4-3-1-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 22.445572,371.59658 c 0,0 -0.419979,0.56189 -0.419979,0.56189"
+         id="path18747-4-8-7-5-2-9-3-8-9-7-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.251205,369.88758 c 0,0 -0.830775,3.3284 -0.830775,3.3284"
+         id="path18749-6-6-2-0-4-7-9-9-4-2-7-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.639705,370.86242 c 0,0 0.694131,7.72714 0.694131,7.72714"
+         id="path18751-8-7-8-9-2-0-9-9-2-4-9-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 19.335451,374.4788 c 0,0 2.052444,4.54023 2.052444,4.54023"
+         id="path18753-4-3-0-1-1-6-0-0-3-6-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.486386,376.01333 c 0,0 -2.663912,1.87804 -2.663912,1.87804"
+         id="path18755-2-4-2-2-3-3-0-5-3-0-9-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.302782,374.18528 c 0,0 -0.217413,5.53978 -0.217413,5.53978"
+         id="path18757-8-0-3-7-2-8-7-9-2-9-7-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.249422,374.23555 c 0,0 5.124669,4.00379 5.124669,4.00379"
+         id="path18759-2-0-5-4-6-2-7-1-1-9-1-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.955785,373.10307 c 0,0 2.609061,3.16023 2.609061,3.16023"
+         id="path18761-5-7-4-7-8-2-4-2-3-6-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.187429,372.68105 c 0.06025,0.44434 4.11594,2.51769 4.597947,2.63065"
+         id="path18763-9-2-3-2-5-9-2-3-3-1-5-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.410388,371.61323 c 0.512131,0.15816 4.291128,0.0958 4.80326,0.26144"
+         id="path18765-7-9-0-0-4-0-2-2-6-2-5-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.222787,371.43596 c 0,0 2.688872,1.65757 2.688872,1.65757"
+         id="path18767-8-6-7-4-4-7-5-5-0-2-2-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.104283,366.55727 c 0.135564,0.36904 3.661146,3.98374 3.661146,3.98374"
+         id="path18769-8-2-1-2-7-3-4-6-3-9-9-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 29.008991,368.21954 c 0.61757,0.24101 2.009952,1.93518 2.009952,1.93518"
+         id="path18771-3-2-8-0-3-6-1-3-0-9-3-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.762104,365.78618 c 0,0 0.378554,0.20795 0.378554,0.20795"
+         id="path18773-6-1-8-3-2-0-8-9-3-3-6-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.84485,365.32022 c 0.512131,-0.1657 4.568005,-1.00665 4.568005,-1.00665"
+         id="path18775-9-4-7-0-5-6-7-6-4-4-5-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.518028,362.52869 c 0,0 3.044217,-0.39248 3.044217,-0.39248"
+         id="path18777-6-3-4-4-2-9-2-1-2-4-9-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.448246,361.69666 c 0,0 4.294658,-2.31824 4.294658,-2.31824"
+         id="path18779-9-9-2-0-1-4-5-3-0-3-8-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.525785,372.91944 c 0,0 -1.261294,4.54795 -1.261294,4.54795"
+         id="path18783-9-5-2-0-5-2-1-8-2-5-7-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.979318,372.95504 c 0,0 -2.380936,3.86019 -2.380936,3.86019"
+         id="path18785-0-8-1-5-4-7-1-6-7-8-2-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.351634,371.67217 c 0,0 -3.122208,7.61312 -3.122208,7.61312"
+         id="path18787-4-3-2-5-7-1-6-0-3-4-0-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.565731,369.48657 c 0,0 -4.953328,5.22546 -4.953328,5.22546"
+         id="path18789-2-2-1-7-3-5-0-8-0-6-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.241394,372.82054 c 0,0 -4.185952,3.84182 -4.185952,3.84182"
+         id="path18791-2-4-7-0-8-0-2-1-7-6-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.704743,372.38261 c 0,0 -3.4049667,5.89869 -3.4049667,5.89869"
+         id="path18793-5-5-2-3-4-8-6-4-9-7-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.4899049,377.29793 c 0,0 -1.2041514,0.007 -1.2041514,0.007"
+         id="path18795-3-5-6-8-7-2-3-0-2-7-5-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.033238,372.38921 c 0,0 -5.1980967,-1.41489 -5.1980967,-1.41489"
+         id="path18797-5-6-3-6-1-4-3-6-8-1-1-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.687442,372.7848 c 0,0 -6.4962319,-1.92944 -6.4962319,-1.92944"
+         id="path18799-2-7-6-9-7-1-0-0-6-5-5-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.362781,366.29511 c -0.391631,-0.0226 -8.1325657,0.79066 -8.1325657,0.79066"
+         id="path18801-1-7-0-1-1-5-0-7-2-5-9-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.310735,364.80285 c -0.399161,-0.18829 -6.8346733,-4.93071 -6.8346733,-4.93071"
+         id="path18803-8-8-8-0-5-5-3-8-0-6-4-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.670277,363.32579 c 0,0 -5.13185,-6.50219 -5.13185,-6.50219"
+         id="path18805-1-0-8-0-0-2-6-7-6-4-9-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.107099,361.45495 c 0,0 -4.030774,-6.63541 -4.1362118,-7.00444"
+         id="path18819-3-8-7-5-1-7-2-1-1-1-1-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 12.674955,362.56144 c -0.233472,-0.37658 -2.421459,-6.30402 -2.421459,-6.30402"
+         id="path18821-2-2-0-8-9-7-2-8-5-1-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.1574638,366.60405 c 0,0 -5.9731398,-3.61254 -5.9731398,-3.61254"
+         id="path18823-9-1-8-5-4-4-0-6-7-1-3-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.7472129,368.26574 c 0,0 -8.2143894,2.29691 -8.2143894,2.29691"
+         id="path18825-2-3-9-7-7-4-1-0-8-5-0-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.409681,371.10488 c 0,0 -6.902944,-2.91854 -6.902944,-2.91854"
+         id="path18827-1-1-9-9-2-9-1-9-9-5-5-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 14.018891,366.85318 C 13.649854,366.77038 2.7732041,364.1308 2.7732041,364.1308"
+         id="path18829-9-7-8-6-8-0-0-8-0-9-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.650086,363.05377 c 0,0 -6.8764133,-2.8752 -6.8764133,-2.8752"
+         id="path18831-3-5-4-9-0-9-4-7-1-8-9-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.363989,361.61351 c 0,0 -6.6058739,-6.59796 -6.6058739,-6.59796"
+         id="path18833-7-6-2-6-6-8-1-0-1-7-4-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.860275,364.63216 c -0.436818,-0.25606 -5.519857,-5.39482 -5.519857,-5.39482"
+         id="path18835-7-1-6-2-4-2-7-1-1-8-6-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.337177,365.3491 c -0.353973,-0.32385 -5.390966,0.31345 -5.390966,0.31345"
+         id="path18837-2-1-8-8-1-4-8-9-6-4-8-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.72431,366.87426 c 0,0 -8.2543792,5.18303 -8.2543792,5.18303"
+         id="path18839-3-1-7-8-3-9-3-3-4-8-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 17.974562,369.35388 c 0,0 -9.1967449,7.40606 -9.1967449,7.40606"
+         id="path18841-7-0-8-4-0-2-1-3-8-2-3-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.346205,374.63299 c -0.361504,0.0678 -7.4786077,1.8816 -7.4786077,1.8816"
+         id="path18843-1-7-5-3-7-1-3-6-7-8-0-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 9.0615203,371.55274 c 0,0 -5.9246404,-0.30133 -5.9246404,-0.30133"
+         id="path18845-4-6-9-2-0-4-0-2-9-7-1-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.9690222,364.61883 c -0.3690361,-0.20335 -7.0360678,1.30816 -7.0360678,1.30816"
+         id="path18847-7-8-8-6-3-0-3-6-0-1-6-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.627262,361.49773 c 0,0 -7.0241641,-1.03903 -7.0241641,-1.03903"
+         id="path18849-5-2-3-8-0-3-2-5-0-1-7-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.326369,360.14154 c 0,0 -3.890085,-5.98252 -3.890085,-5.98252"
+         id="path18851-7-0-6-2-5-0-7-0-4-2-6-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.591396,356.21977 c 0,0 2.134613,-1.44891 2.134613,-1.44891"
+         id="path18857-0-6-4-1-7-0-7-7-2-6-7-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.135308,357.19716 c -0.09316,-0.55448 -4.4787216,-6.44133 -4.4787216,-6.44133"
+         id="path18861-4-6-7-8-3-7-7-0-1-6-7-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.086743,371.46515 c -0.406692,0.007 -5.0491371,7.8792 -5.629051,7.68339"
+         id="path18863-3-3-1-3-2-2-8-8-6-9-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.3764267,373.20825 c -0.3615048,0.26359 -6.5772264,1.7378 -6.5772264,1.7378"
+         id="path18865-7-1-5-6-1-9-0-5-0-6-9-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.367229,372.47837 c 0,0 -6.5138422,1.83387 -6.5138422,1.83387"
+         id="path18867-7-7-9-5-0-1-3-1-6-0-9-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 9.5098137,368.08693 C 9.0052154,368.06433 1.5164243,367.9858 1.5164243,367.9858"
+         id="path18869-7-3-4-0-8-9-8-8-6-5-3-7" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.000198,370.8755 c -0.384098,-0.0301 -5.7515942,1.75965 -5.7515942,1.75965"
+         id="path18871-3-7-4-8-1-1-2-8-7-2-3-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 14.672217,370.87196 c 0,0 -3.078716,5.35048 -3.078716,5.35048"
+         id="path18873-7-7-2-1-6-9-2-7-7-8-5-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.612861,373.19922 c 0,0 1.177998,5.05515 1.177998,5.05515"
+         id="path18875-4-9-0-8-7-2-3-8-1-3-8-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 18.119935,375.3438 c 0,0 -0.178148,3.64254 -0.178148,3.64254"
+         id="path18877-4-1-0-5-5-6-6-6-6-6-5-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 20.751912,376.70436 c 0,0 -0.705938,1.53411 -0.705938,1.53411"
+         id="path18879-0-0-0-0-5-2-2-8-6-5-3-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 23.913509,373.99389 c 0,0 -1.623303,4.75563 -1.623303,4.75563"
+         id="path18881-8-0-0-1-0-7-4-5-5-0-0-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.534595,375.54368 c 0,0 0.799259,3.64847 0.799259,3.64847"
+         id="path18883-6-4-8-7-2-1-1-6-8-4-1-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.612184,378.61896 c 0,0 0.217685,0.35949 0.669567,0.60806"
+         id="path18885-1-3-1-0-6-5-9-5-2-9-4-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 28.57302,372.46578 c 0.466944,0.0602 2.956304,3.1806 2.956304,3.1806"
+         id="path18887-2-5-7-6-3-4-8-8-8-2-1-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 27.858996,370.63739 c 0.587445,0.32266 2.442336,3.78586 2.442336,3.78586"
+         id="path18889-0-7-1-7-2-0-4-4-3-8-7-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.025579,370.23806 c 1.182422,0.27114 5.755624,1.42596 5.755624,1.42596"
+         id="path18891-2-1-9-7-0-1-9-3-1-2-7-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 30.365398,366.80031 c 0,0 0.585168,-0.12257 0.585168,-0.12257"
+         id="path18893-5-2-9-6-1-0-9-8-6-9-2-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.695986,361.60841 c 0,0 5.371786,-6.30629 5.371786,-6.30629"
+         id="path18895-7-3-0-7-6-0-7-5-3-3-5-0" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 15.551512,362.93932 c -0.04519,-0.51213 -1.558963,-3.77666 -1.558963,-3.77666"
+         id="path18903-7-4-9-5-0-1-1-1-1-1-4-1" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 24.601732,362.44246 c 0.04519,-0.3841 2.197806,-8.33392 2.197806,-8.33392"
+         id="path18907-7-1-3-5-3-1-3-7-7-7-1-2" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 11.859984,361.56739 c -0.195815,-0.42928 -5.4123836,-1.26181 -5.4123836,-1.26181"
+         id="path18913-4-1-4-3-2-0-8-6-6-0-9-6" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 8.5818124,364.06235 C 8.1525255,363.8364 1.4836623,363.82938 1.4836623,363.82938"
+         id="path18915-8-9-7-8-6-3-0-2-4-9-2-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 6.124696,368.82403 c -0.5196631,-0.13556 -4.6853671,1.34506 -4.6853671,1.34506"
+         id="path18917-0-3-3-6-4-5-1-8-6-3-9-9" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.905198,369.13395 c 0,0 -4.455767,0.41399 -4.455767,0.41399"
+         id="path18919-6-9-1-4-6-9-4-1-1-0-1-4" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="M 13.825785,365.43023 C 13.46428,365.27207 4.4737462,364.45638 4.4737462,364.45638"
+         id="path18921-7-2-7-2-6-8-2-5-2-2-6-8" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 8.97916,361.68418 c 0,0 -4.2932858,-4.86865 -4.2932858,-4.86865"
+         id="path18923-4-9-8-9-4-8-7-4-3-4-2-3" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 13.218329,360.3975 c 0,0 -6.1160374,-5.9601 -6.1160374,-5.9601"
+         id="path18925-9-4-2-6-6-3-4-3-0-8-2-5" />
+      <path
+         style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 10.59921,362.58051 c -0.406693,-0.18075 -7.3581411,-4.04954 -7.3581411,-4.04954"
+         id="path18927-6-3-5-9-9-0-5-1-2-5-4-2" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer10"
+     inkscape:label="yellow filter. Layers: Blend mode: Multiply (enable-background)"
+     style="display:none;filter:url(#filter25876)"
+     sodipodi:insensitive="true">
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.09999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter25882)"
+       id="rect25880"
+       width="32"
+       height="1024"
+       x="0"
+       y="0.000252" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="beak"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <g
+       style="display:inline"
+       id="g24670-5"
+       transform="translate(-0.11175591,-0.94384727)"
+       inkscape:tile-cx="25"
+       inkscape:tile-cy="23.5"
+       inkscape:tile-w="8"
+       inkscape:tile-h="5"
+       inkscape:tile-x0="21"
+       inkscape:tile-y0="21">
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="rect24158-09"
+         d="m 26.111756,23.943847 -1,3 h -4 z"
+         style="fill:#7e0000;fill-opacity:1;stroke:none" />
+      <g
+         id="g7394">
+        <path
+           sodipodi:nodetypes="cccc"
+           inkscape:connector-curvature="0"
+           id="path7392"
+           d="m 22.111756,23.943847 h 4 l -5,3 z"
+           style="fill:#000000;fill-opacity:1;stroke:none" />
+      </g>
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="rect24156-6"
+         d="m 21.111756,22.943847 3,-1 5,2 -8,3 z"
+         style="fill:#ff0000;fill-opacity:1;stroke:none" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       id="use7625"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,32)"
+       id="use7627"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,65)"
+       id="use7629"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,96)"
+       id="use7631"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,128)"
+       id="use7633"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,160)"
+       id="use7635"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,192)"
+       id="use7637"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,225)"
+       id="use7639"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,256)"
+       id="use7641"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,288)"
+       id="use7643"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,320)"
+       id="use7645"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,352)"
+       id="use7647"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,385)"
+       id="use7649"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,416)"
+       id="use7651"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,448)"
+       id="use7653"
+       width="100%"
+       height="100%" />
+    <g
+       inkscape:tile-y0="21"
+       inkscape:tile-x0="21"
+       transform="translate(-0.11175591,479.05615)"
+       id="use7655"
+       style="display:inline">
+      <g
+         id="g6150">
+        <g
+           id="g6155"
+           inkscape:transform-center-x="-2.915459"
+           inkscape:transform-center-y="0.009995863"
+           transform="rotate(31.160198,21.111756,26.943847)">
+          <path
+             inkscape:transform-center-y="-1.5"
+             inkscape:transform-center-x="-2.5"
+             style="fill:#7e0000;fill-opacity:1;stroke:none"
+             d="m 26.111756,23.943847 -1,3 h -4 z"
+             id="path6132"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc" />
+          <g
+             id="g6134">
+            <path
+               style="fill:#000000;fill-opacity:1;stroke:none"
+               d="m 22.111756,23.943847 h 4 l -5,3 z"
+               id="path6136"
+               inkscape:connector-curvature="0"
+               sodipodi:nodetypes="cccc" />
+          </g>
+        </g>
+      </g>
+      <path
+         style="fill:#ff0000;fill-opacity:1;stroke:none"
+         d="m 21.111756,22.943847 3,-1 5,2 -8,3 z"
+         id="path6138"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+    </g>
+    <g
+       inkscape:tile-y0="21"
+       inkscape:tile-x0="21"
+       transform="translate(-0.11175591,510.05615)"
+       id="use7657"
+       style="display:inline">
+      <g
+         id="g6140"
+         inkscape:transform-center-x="-2.7372366"
+         inkscape:transform-center-y="1.0037622"
+         transform="rotate(51.102069,21.111756,26.943848)">
+        <path
+           sodipodi:nodetypes="cccc"
+           inkscape:connector-curvature="0"
+           id="path6122"
+           d="m 26.111756,23.943847 -1,3 h -4 z"
+           style="fill:#7e0000;fill-opacity:1;stroke:none" />
+        <g
+           id="g6124">
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6126"
+             d="m 22.111756,23.943847 h 4 l -5,3 z"
+             style="fill:#000000;fill-opacity:1;stroke:none" />
+        </g>
+      </g>
+      <path
+         style="fill:#ff0000;fill-opacity:1;stroke:none"
+         d="m 21.111756,22.943847 3,-1 5,2 -8,3 z"
+         id="path6128"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+    </g>
+    <g
+       inkscape:tile-y0="21"
+       inkscape:tile-x0="21"
+       transform="translate(-0.11175591,543.05615)"
+       id="use7659"
+       style="display:inline">
+      <g
+         id="g6145"
+         inkscape:transform-center-x="-2.9153786"
+         inkscape:transform-center-y="0.023872732"
+         transform="rotate(31.432913,21.111756,26.943848)">
+        <path
+           sodipodi:nodetypes="cccc"
+           inkscape:connector-curvature="0"
+           id="path7665"
+           d="m 26.111756,23.943847 -1,3 h -4 z"
+           style="fill:#7e0000;fill-opacity:1;stroke:none" />
+        <g
+           id="g7667">
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path7669"
+             d="m 22.111756,23.943847 h 4 l -5,3 z"
+             style="fill:#000000;fill-opacity:1;stroke:none" />
+        </g>
+      </g>
+      <path
+         style="fill:#ff0000;fill-opacity:1;stroke:none"
+         d="m 21.111756,22.943847 3,-1 5,2 -8,3 z"
+         id="path7671"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g24670-5"
+       xlink:href="#g24670-5"
+       transform="translate(0,576)"
+       id="use7661"
+       width="100%"
+       height="100%" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/Sleepwalker.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,895 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="Sleepwalker.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="Sleepwalker.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title53563">sleep walker</title>
+  <defs
+     id="defs4">
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect3152"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect3148"
+       is_visible="true" />
+    <filter
+       inkscape:collect="always"
+       id="filter4140">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.23186517"
+         id="feGaussianBlur4142" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="7.9925262"
+     inkscape:cx="19.568446"
+     inkscape:cy="651.05899"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="false"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>sleep walker</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat sleep walker</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="hat"
+     style="display:inline"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <g
+       id="g3926"
+       inkscape:tile-cx="19.208056"
+       inkscape:tile-cy="21.976933"
+       inkscape:tile-w="16.625632"
+       inkscape:tile-h="15.539236"
+       inkscape:tile-x0="10.89524"
+       inkscape:tile-y0="13.953539"
+       transform="translate(0,0.0308)">
+      <path
+         sodipodi:nodetypes="czczc"
+         id="path2933-4"
+         d="m 18.759578,50.28572 c 0,0 2.83408,-1.416905 2.50386,-2.135662 -0.33021,-0.718757 -3.22291,0.44478 -3.22291,0.44478 0,0 2.88818,-1.496357 2.45892,-2.155749 -0.42926,-0.659391 -3.28071,0.626136 -3.28071,0.626136"
+         style="fill:#700000;fill-opacity:0;stroke:#a10e71;stroke-width:1;stroke-opacity:1" />
+      <use
+         height="1052.3622"
+         width="744.09448"
+         transform="translate(4.2464729,-1.5943438)"
+         id="use3729-01"
+         xlink:href="#path2933-4"
+         y="0"
+         x="0" />
+      <path
+         transform="matrix(1.201662,0,0,1.0751837,-6.3604726,-560.32283)"
+         d="m 28.195403,567.27802 a 6.9177656,6.7797933 0 1 1 -13.835531,0 6.9177656,6.7797933 0 1 1 13.835531,0 z"
+         sodipodi:ry="6.7797933"
+         sodipodi:rx="6.9177656"
+         sodipodi:cy="567.27802"
+         sodipodi:cx="21.277637"
+         id="path3134"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4140)"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="czzzsz"
+         id="path3731"
+         d="m 25.723288,51.020956 c 0.47017,0.731622 0.0417,1.751826 -3.00076,3.150972 -3.04247,1.399146 -0.5276,3.484057 -2.19277,3.672301 -1.66518,0.188244 -0.52752,-2.167715 -2.11644,-1.811138 -1.58891,0.356577 -4.59898,-1.265929 2.77847,-4.400385 1.64616,-0.699405 4.05106,-1.359364 4.5315,-0.61175 z"
+         style="fill:#ffffff;fill-opacity:1;stroke:#a10e71;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0" />
+      <path
+         inkscape:transform-center-x="-0.015941867"
+         inkscape:transform-center-y="-0.46846867"
+         inkscape:original-d="m 22.278376,46.997248 2.654511,-1.137684"
+         inkscape:path-effect="#path-effect3152"
+         id="path3150"
+         d="m 22.278376,46.997248 2.654511,-1.137684"
+         style="fill:#700000;fill-opacity:0;fill-rule:nonzero;stroke:#a10e71;display:inline" />
+      <path
+         sodipodi:nodetypes="cc"
+         inkscape:original-d="m 18.005713,48.63101 2.651702,-1.255375"
+         inkscape:path-effect="#path-effect3148"
+         id="path3146"
+         d="m 18.005713,48.63101 2.651702,-1.255375"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a10e71;stroke-opacity:1;display:inline" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3926"
+       xlink:href="#g3926"
+       id="use4092"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <g
+       transform="translate(0,65.000882)"
+       inkscape:tile-y0="13.953539"
+       inkscape:tile-x0="10.89524"
+       id="use4094">
+      <path
+         style="fill:#700000;fill-opacity:0;stroke:#a10e71;stroke-width:1;stroke-opacity:1"
+         d="m 18.759578,50.28572 c 0,0 2.83408,-1.416905 2.50386,-2.135662 -0.33021,-0.718757 -3.22291,0.44478 -3.22291,0.44478 0,0 2.88818,-1.496357 2.45892,-2.155749 -0.42926,-0.659391 -3.28071,0.626136 -3.28071,0.626136"
+         id="path4146"
+         sodipodi:nodetypes="czczc" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path2933-4"
+         id="use4148"
+         transform="translate(4.2464729,-1.5943438)"
+         width="744.09448"
+         height="1052.3622" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4140)"
+         id="path4150"
+         sodipodi:cx="21.277637"
+         sodipodi:cy="567.27802"
+         sodipodi:rx="6.9177656"
+         sodipodi:ry="6.7797933"
+         d="m 28.195403,567.27802 a 6.9177656,6.7797933 0 1 1 -13.835531,0 6.9177656,6.7797933 0 1 1 13.835531,0 z"
+         transform="matrix(1.201662,0,0,1.0751837,-6.3604726,-560.32283)" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:#a10e71;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0"
+         d="m 25.723288,51.020956 c 0.47017,0.731622 0.0417,1.751826 -3.00076,3.150972 -3.04247,1.399146 -0.83322,2.292922 -2.49839,2.481166 -1.66518,0.188244 -0.2219,-0.97658 -1.81082,-0.620003 -1.58891,0.356577 -4.59898,-1.265929 2.77847,-4.400385 1.64616,-0.699405 4.05106,-1.359364 4.5315,-0.61175 z"
+         id="path4152"
+         sodipodi:nodetypes="czzzsz" />
+      <path
+         style="fill:#700000;fill-opacity:0;fill-rule:nonzero;stroke:#a10e71;display:inline"
+         d="m 22.278376,46.997248 2.654511,-1.137684"
+         id="path4154"
+         inkscape:path-effect="#path-effect3152"
+         inkscape:original-d="m 22.278376,46.997248 2.654511,-1.137684"
+         inkscape:transform-center-y="-0.46846867"
+         inkscape:transform-center-x="-0.015941867" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a10e71;stroke-opacity:1;display:inline"
+         d="m 18.005713,48.63101 2.651702,-1.255375"
+         id="path4156"
+         inkscape:path-effect="#path-effect3148"
+         inkscape:original-d="m 18.005713,48.63101 2.651702,-1.255375"
+         sodipodi:nodetypes="cc" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3926"
+       xlink:href="#g3926"
+       transform="translate(0,95.99976)"
+       id="use4096"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3926"
+       xlink:href="#g3926"
+       transform="translate(0,127.98424)"
+       id="use4098"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3926"
+       xlink:href="#g3926"
+       transform="translate(0,159.99953)"
+       id="use4100"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3926"
+       xlink:href="#g3926"
+       transform="translate(0,191.98401)"
+       id="use4102"
+       width="32"
+       height="1024" />
+    <g
+       transform="translate(0,225.01569)"
+       inkscape:tile-y0="13.953539"
+       inkscape:tile-x0="10.89524"
+       id="use4104">
+      <path
+         style="fill:#700000;fill-opacity:0;stroke:#a10e71;stroke-width:1;stroke-opacity:1"
+         d="m 18.759578,50.28572 c 0,0 2.83408,-1.416905 2.50386,-2.135662 -0.33021,-0.718757 -3.22291,0.44478 -3.22291,0.44478 0,0 2.88818,-1.496357 2.45892,-2.155749 -0.42926,-0.659391 -3.28071,0.626136 -3.28071,0.626136"
+         id="path4160"
+         sodipodi:nodetypes="czczc" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path2933-4"
+         id="use4162"
+         transform="translate(4.2464729,-1.5943438)"
+         width="744.09448"
+         height="1052.3622" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4140)"
+         id="path4164"
+         sodipodi:cx="21.277637"
+         sodipodi:cy="567.27802"
+         sodipodi:rx="6.9177656"
+         sodipodi:ry="6.7797933"
+         d="m 28.195403,567.27802 a 6.9177656,6.7797933 0 1 1 -13.835531,0 6.9177656,6.7797933 0 1 1 13.835531,0 z"
+         transform="matrix(1.201662,0,0,1.0751837,-6.3604726,-560.32283)" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:#a10e71;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0"
+         d="m 25.723288,51.020956 c 0.47017,0.731622 0.0417,1.751826 -3.00076,3.150972 -3.04247,1.399146 -0.778365,2.324268 -2.443535,2.512512 -1.66518,0.188244 -0.276755,-1.007926 -1.865675,-0.651349 -1.58891,0.356577 -4.59898,-1.265929 2.77847,-4.400385 1.64616,-0.699405 4.05106,-1.359364 4.5315,-0.61175 z"
+         id="path4166"
+         sodipodi:nodetypes="czzzsz" />
+      <path
+         style="fill:#700000;fill-opacity:0;fill-rule:nonzero;stroke:#a10e71;display:inline"
+         d="m 22.278376,46.997248 2.654511,-1.137684"
+         id="path4168"
+         inkscape:path-effect="#path-effect3152"
+         inkscape:original-d="m 22.278376,46.997248 2.654511,-1.137684"
+         inkscape:transform-center-y="-0.46846867"
+         inkscape:transform-center-x="-0.015941867" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a10e71;stroke-opacity:1;display:inline"
+         d="m 18.005713,48.63101 2.651702,-1.255375"
+         id="path4170"
+         inkscape:path-effect="#path-effect3148"
+         inkscape:original-d="m 18.005713,48.63101 2.651702,-1.255375"
+         sodipodi:nodetypes="cc" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3926"
+       xlink:href="#g3926"
+       transform="translate(0,255.98777)"
+       id="use4106"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3926"
+       xlink:href="#g3926"
+       transform="translate(0,288.00305)"
+       id="use4108"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3926"
+       xlink:href="#g3926"
+       transform="translate(0,320.01834)"
+       id="use4110"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3926"
+       xlink:href="#g3926"
+       transform="translate(0,352.00482)"
+       id="use4112"
+       width="32"
+       height="1024" />
+    <g
+       transform="matrix(0.99862953,0.05233596,-0.05233596,0.99862953,2.6224619,384.09721)"
+       inkscape:tile-y0="13.953539"
+       inkscape:tile-x0="10.89524"
+       id="use4114">
+      <path
+         style="fill:#700000;fill-opacity:0;stroke:#a10e71;stroke-width:1;stroke-opacity:1"
+         d="m 18.759578,50.28572 c 0,0 2.83408,-1.416905 2.50386,-2.135662 -0.33021,-0.718757 -3.22291,0.44478 -3.22291,0.44478 0,0 2.88818,-1.496357 2.45892,-2.155749 -0.42926,-0.659391 -3.28071,0.626136 -3.28071,0.626136"
+         id="path4174"
+         sodipodi:nodetypes="czczc" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path2933-4"
+         id="use4176"
+         transform="translate(4.2464729,-1.5943438)"
+         width="744.09448"
+         height="1052.3622" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4140)"
+         id="path4178"
+         sodipodi:cx="21.277637"
+         sodipodi:cy="567.27802"
+         sodipodi:rx="6.9177656"
+         sodipodi:ry="6.7797933"
+         d="m 28.195403,567.27802 a 6.9177656,6.7797933 0 1 1 -13.835531,0 6.9177656,6.7797933 0 1 1 13.835531,0 z"
+         transform="matrix(1.201662,0,0,1.0751837,-6.3604726,-560.32283)" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:#a10e71;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0"
+         d="m 25.723288,51.020956 c 0.47017,0.731622 0.0417,1.751826 -3.00076,3.150972 -3.04247,1.399146 -0.801874,2.355613 -2.467044,2.543857 -1.66518,0.188244 -0.253246,-1.039271 -1.842166,-0.682694 -1.58891,0.356577 -4.59898,-1.265929 2.77847,-4.400385 1.64616,-0.699405 4.05106,-1.359364 4.5315,-0.61175 z"
+         id="path4180"
+         sodipodi:nodetypes="czzzsz" />
+      <path
+         style="fill:#700000;fill-opacity:0;fill-rule:nonzero;stroke:#a10e71;display:inline"
+         d="m 22.278376,46.997248 2.654511,-1.137684"
+         id="path4182"
+         inkscape:path-effect="#path-effect3152"
+         inkscape:original-d="m 22.278376,46.997248 2.654511,-1.137684"
+         inkscape:transform-center-y="-0.46846867"
+         inkscape:transform-center-x="-0.015941867" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a10e71;stroke-opacity:1;display:inline"
+         d="m 18.005713,48.63101 2.651702,-1.255375"
+         id="path4184"
+         inkscape:path-effect="#path-effect3148"
+         inkscape:original-d="m 18.005713,48.63101 2.651702,-1.255375"
+         sodipodi:nodetypes="cc" />
+    </g>
+    <g
+       transform="matrix(0.99452189,0.10452847,-0.10452847,0.99452189,5.3371202,414.30056)"
+       inkscape:tile-y0="13.953539"
+       inkscape:tile-x0="10.89524"
+       id="use4116">
+      <path
+         style="fill:#700000;fill-opacity:0;stroke:#a10e71;stroke-width:1;stroke-opacity:1"
+         d="m 18.759578,50.28572 c 0,0 2.83408,-1.416905 2.50386,-2.135662 -0.33021,-0.718757 -3.22291,0.44478 -3.22291,0.44478 0,0 2.88818,-1.496357 2.45892,-2.155749 -0.42926,-0.659391 -3.28071,0.626136 -3.28071,0.626136"
+         id="path4286"
+         sodipodi:nodetypes="czczc" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path2933-4"
+         id="use4288"
+         transform="translate(4.2464729,-1.5943438)"
+         width="744.09448"
+         height="1052.3622" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4140)"
+         id="path4290"
+         sodipodi:cx="21.277637"
+         sodipodi:cy="567.27802"
+         sodipodi:rx="6.9177656"
+         sodipodi:ry="6.7797933"
+         d="m 28.195403,567.27802 a 6.9177656,6.7797933 0 1 1 -13.835531,0 6.9177656,6.7797933 0 1 1 13.835531,0 z"
+         transform="matrix(1.201662,0,0,1.0751837,-6.3604726,-560.32283)" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:#a10e71;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0"
+         d="m 25.723288,51.020956 c 0.47017,0.731622 0.0417,1.751826 -3.00076,3.150972 -3.04247,1.399146 -0.5276,3.484057 -2.19277,3.672301 -1.66518,0.188244 -0.52752,-2.167715 -2.11644,-1.811138 -1.58891,0.356577 -4.59898,-1.265929 2.77847,-4.400385 1.64616,-0.699405 4.05106,-1.359364 4.5315,-0.61175 z"
+         id="path4292"
+         sodipodi:nodetypes="czzzsz" />
+      <path
+         style="fill:#700000;fill-opacity:0;fill-rule:nonzero;stroke:#a10e71;stroke-width:1;display:inline"
+         d="m 22.278376,46.997248 2.654511,-1.137684"
+         id="path4294"
+         inkscape:path-effect="#path-effect3152"
+         inkscape:original-d="m 22.278376,46.997248 2.654511,-1.137684"
+         inkscape:transform-center-y="-0.46846867"
+         inkscape:transform-center-x="-0.015941867" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a10e71;stroke-width:1;stroke-opacity:1;display:inline"
+         d="m 18.005713,48.63101 2.651702,-1.255375"
+         id="path4296"
+         inkscape:path-effect="#path-effect3148"
+         inkscape:original-d="m 18.005713,48.63101 2.651702,-1.255375"
+         sodipodi:nodetypes="cc" />
+    </g>
+    <g
+       transform="matrix(0.98768833,0.15643447,-0.15643447,0.98768833,8.0677638,445.66045)"
+       inkscape:tile-y0="13.953539"
+       inkscape:tile-x0="10.89524"
+       id="use4118">
+      <path
+         style="fill:#700000;fill-opacity:0;stroke:#a10e71;stroke-width:1;stroke-opacity:1"
+         d="m 18.759578,50.28572 c 0,0 2.83408,-1.416905 2.50386,-2.135662 -0.33021,-0.718757 -3.22291,0.44478 -3.22291,0.44478 0,0 2.88818,-1.496357 2.45892,-2.155749 -0.42926,-0.659391 -3.28071,0.626136 -3.28071,0.626136"
+         id="path4272"
+         sodipodi:nodetypes="czczc" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path2933-4"
+         id="use4274"
+         transform="translate(4.2464729,-1.5943438)"
+         width="744.09448"
+         height="1052.3622" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4140)"
+         id="path4276"
+         sodipodi:cx="21.277637"
+         sodipodi:cy="567.27802"
+         sodipodi:rx="6.9177656"
+         sodipodi:ry="6.7797933"
+         d="m 28.195403,567.27802 a 6.9177656,6.7797933 0 1 1 -13.835531,0 6.9177656,6.7797933 0 1 1 13.835531,0 z"
+         transform="matrix(1.201662,0,0,1.0751837,-6.3604726,-560.32283)" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:#a10e71;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0"
+         d="m 25.723288,51.020956 c 0.47017,0.731622 0.0417,1.751826 -3.00076,3.150972 -3.04247,1.399146 -0.06838,3.609063 -2.053886,3.924941 -1.985505,0.315879 -0.666404,-2.420355 -2.255324,-2.063778 -1.58891,0.356577 -4.59898,-1.265929 2.77847,-4.400385 1.64616,-0.699405 4.05106,-1.359364 4.5315,-0.61175 z"
+         id="path4278"
+         sodipodi:nodetypes="czzzsz" />
+      <path
+         style="fill:#700000;fill-opacity:0;fill-rule:nonzero;stroke:#a10e71;stroke-width:1;display:inline"
+         d="m 22.278376,46.997248 2.654511,-1.137684"
+         id="path4280"
+         inkscape:path-effect="#path-effect3152"
+         inkscape:original-d="m 22.278376,46.997248 2.654511,-1.137684"
+         inkscape:transform-center-y="-0.46846867"
+         inkscape:transform-center-x="-0.015941867" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a10e71;stroke-width:1;stroke-opacity:1;display:inline"
+         d="m 18.005713,48.63101 2.651702,-1.255375"
+         id="path4282"
+         inkscape:path-effect="#path-effect3148"
+         inkscape:original-d="m 18.005713,48.63101 2.651702,-1.255375"
+         sodipodi:nodetypes="cc" />
+    </g>
+    <g
+       transform="matrix(0.97814759,0.2079117,-0.2079117,0.97814759,10.8291,477.13007)"
+       inkscape:tile-y0="13.953539"
+       inkscape:tile-x0="10.89524"
+       id="use4120">
+      <path
+         style="fill:#700000;fill-opacity:0;stroke:#a10e71;stroke-width:1;stroke-opacity:1"
+         d="m 18.759578,50.28572 c 0,0 2.83408,-1.416905 2.50386,-2.135662 -0.33021,-0.718757 -3.22291,0.44478 -3.22291,0.44478 0,0 2.88818,-1.496357 2.45892,-2.155749 -0.42926,-0.659391 -3.28071,0.626136 -3.28071,0.626136"
+         id="path4230"
+         sodipodi:nodetypes="czczc" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path2933-4"
+         id="use4232"
+         transform="translate(4.2464729,-1.5943438)"
+         width="744.09448"
+         height="1052.3622" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4140)"
+         id="path4234"
+         sodipodi:cx="21.277637"
+         sodipodi:cy="567.27802"
+         sodipodi:rx="6.9177656"
+         sodipodi:ry="6.7797933"
+         d="m 28.195403,567.27802 a 6.9177656,6.7797933 0 1 1 -13.835531,0 6.9177656,6.7797933 0 1 1 13.835531,0 z"
+         transform="matrix(1.201662,0,0,1.0751837,-6.3604726,-560.32283)" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:#a10e71;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0"
+         d="m 25.723288,51.020956 c 0.47017,0.731622 0.0417,1.751826 -3.00076,3.150972 -3.04247,1.399146 0.405329,3.906945 -1.969589,4.356977 -2.374918,0.450032 -0.750701,-2.852391 -2.339621,-2.495814 -1.58891,0.356577 -4.59898,-1.265929 2.77847,-4.400385 1.64616,-0.699405 4.05106,-1.359364 4.5315,-0.61175 z"
+         id="path4236"
+         sodipodi:nodetypes="czzzsz" />
+      <path
+         style="fill:#700000;fill-opacity:0;fill-rule:nonzero;stroke:#a10e71;stroke-width:1;display:inline"
+         d="m 22.278376,46.997248 2.654511,-1.137684"
+         id="path4238"
+         inkscape:path-effect="#path-effect3152"
+         inkscape:original-d="m 22.278376,46.997248 2.654511,-1.137684"
+         inkscape:transform-center-y="-0.46846867"
+         inkscape:transform-center-x="-0.015941867" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a10e71;stroke-width:1;stroke-opacity:1;display:inline"
+         d="m 18.005713,48.63101 2.651702,-1.255375"
+         id="path4240"
+         inkscape:path-effect="#path-effect3148"
+         inkscape:original-d="m 18.005713,48.63101 2.651702,-1.255375"
+         sodipodi:nodetypes="cc" />
+    </g>
+    <g
+       transform="matrix(0.96592582,0.25881905,-0.25881905,0.96592582,13.904143,507.76764)"
+       inkscape:tile-y0="13.953539"
+       inkscape:tile-x0="10.89524"
+       id="use4122">
+      <path
+         sodipodi:type="arc"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4140)"
+         id="path4192"
+         sodipodi:cx="21.277637"
+         sodipodi:cy="567.27802"
+         sodipodi:rx="6.9177656"
+         sodipodi:ry="6.7797933"
+         d="m 28.195403,567.27802 a 6.9177656,6.7797933 0 1 1 -13.835531,0 6.9177656,6.7797933 0 1 1 13.835531,0 z"
+         transform="matrix(1.201662,0,0,1.0751837,-6.3604726,-560.32283)" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:#a10e71;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0"
+         d="m 25.723288,51.020956 c 0.47017,0.731622 0.0417,1.751826 -3.00076,3.150972 -3.04247,1.399146 2.987261,4.456841 -1.20085,5.792669 -4.188111,1.335828 -1.51944,-4.288083 -3.10836,-3.931506 -1.58891,0.356577 -4.59898,-1.265929 2.77847,-4.400385 1.64616,-0.699405 4.05106,-1.359364 4.5315,-0.61175 z"
+         id="path4194"
+         sodipodi:nodetypes="czzzsz" />
+      <path
+         style="fill:#700000;fill-opacity:0;fill-rule:nonzero;stroke:#a10e71;stroke-width:1;display:inline"
+         d="m 22.278376,46.997248 2.654511,-1.137684"
+         id="path4196"
+         inkscape:path-effect="#path-effect3152"
+         inkscape:original-d="m 22.278376,46.997248 2.654511,-1.137684"
+         inkscape:transform-center-y="-0.46846867"
+         inkscape:transform-center-x="-0.015941867" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a10e71;stroke-width:1;stroke-opacity:1;display:inline"
+         d="m 18.005713,48.63101 2.651702,-1.255375"
+         id="path4198"
+         inkscape:path-effect="#path-effect3148"
+         inkscape:original-d="m 18.005713,48.63101 2.651702,-1.255375"
+         sodipodi:nodetypes="cc" />
+      <path
+         style="fill:#700000;fill-opacity:0;stroke:#a10e71;stroke-width:1;stroke-opacity:1"
+         d="m 18.759578,50.28572 c 0,0 2.83408,-1.416905 2.50386,-2.135662 -0.33021,-0.718757 -3.22291,0.44478 -3.22291,0.44478 0,0 2.88818,-1.496357 2.45892,-2.155749 -0.42926,-0.659391 -3.28071,0.626136 -3.28071,0.626136"
+         id="path4188"
+         sodipodi:nodetypes="czczc" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path2933-4"
+         id="use4190"
+         transform="translate(4.2464729,-1.5943438)"
+         width="744.09448"
+         height="1052.3622" />
+    </g>
+    <g
+       transform="matrix(0.99452189,0.10452847,-0.10452847,0.99452189,5.3371575,542.30338)"
+       inkscape:tile-y0="13.953539"
+       inkscape:tile-x0="10.89524"
+       id="use4124">
+      <path
+         sodipodi:type="arc"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4140)"
+         id="path4206"
+         sodipodi:cx="21.277637"
+         sodipodi:cy="567.27802"
+         sodipodi:rx="6.9177656"
+         sodipodi:ry="6.7797933"
+         d="m 28.195403,567.27802 a 6.9177656,6.7797933 0 1 1 -13.835531,0 6.9177656,6.7797933 0 1 1 13.835531,0 z"
+         transform="matrix(1.201662,0,0,1.0751837,-6.3604726,-560.32283)" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:#a10e71;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0"
+         d="m 25.723288,51.020956 c 0.47017,0.731622 0.0417,1.751826 -3.00076,3.150972 -3.04247,1.399146 -0.5276,3.484057 -2.19277,3.672301 -1.66518,0.188244 -0.52752,-2.167715 -2.11644,-1.811138 -1.58891,0.356577 -4.59898,-1.265929 2.77847,-4.400385 1.64616,-0.699405 4.05106,-1.359364 4.5315,-0.61175 z"
+         id="path4208"
+         sodipodi:nodetypes="czzzsz" />
+      <path
+         style="fill:#700000;fill-opacity:0;fill-rule:nonzero;stroke:#a10e71;stroke-width:1;display:inline"
+         d="m 22.278376,46.997248 2.654511,-1.137684"
+         id="path4210"
+         inkscape:path-effect="#path-effect3152"
+         inkscape:original-d="m 22.278376,46.997248 2.654511,-1.137684"
+         inkscape:transform-center-y="-0.46846867"
+         inkscape:transform-center-x="-0.015941867" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a10e71;stroke-width:1;stroke-opacity:1;display:inline"
+         d="m 18.005713,48.63101 2.651702,-1.255375"
+         id="path4212"
+         inkscape:path-effect="#path-effect3148"
+         inkscape:original-d="m 18.005713,48.63101 2.651702,-1.255375"
+         sodipodi:nodetypes="cc" />
+      <path
+         style="fill:#700000;fill-opacity:0;stroke:#a10e71;stroke-width:1;stroke-opacity:1"
+         d="m 18.759578,50.28572 c 0,0 2.83408,-1.416905 2.50386,-2.135662 -0.33021,-0.718757 -3.22291,0.44478 -3.22291,0.44478 0,0 2.88818,-1.496357 2.45892,-2.155749 -0.42926,-0.659391 -3.28071,0.626136 -3.28071,0.626136"
+         id="path4202"
+         sodipodi:nodetypes="czczc" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path2933-4"
+         id="use4204"
+         transform="translate(4.2464729,-1.5943438)"
+         width="744.09448"
+         height="1052.3622" />
+    </g>
+    <g
+       transform="matrix(0.99862953,0.05233596,-0.05233596,0.99862953,2.6452131,575.1155)"
+       inkscape:tile-y0="13.953539"
+       inkscape:tile-x0="10.89524"
+       id="use4126">
+      <path
+         sodipodi:type="arc"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4140)"
+         id="path4220"
+         sodipodi:cx="21.277637"
+         sodipodi:cy="567.27802"
+         sodipodi:rx="6.9177656"
+         sodipodi:ry="6.7797933"
+         d="m 28.195403,567.27802 a 6.9177656,6.7797933 0 1 1 -13.835531,0 6.9177656,6.7797933 0 1 1 13.835531,0 z"
+         transform="matrix(1.201662,0,0,1.0751837,-6.3604726,-560.32283)" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:#a10e71;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0"
+         d="m 25.723288,51.020956 c 0.47017,0.731622 0.0417,1.751826 -3.00076,3.150972 -3.04247,1.399146 -0.828443,2.304659 -2.493613,2.492903 -1.66518,0.188244 -0.226677,-0.988317 -1.815597,-0.63174 -1.58891,0.356577 -4.59898,-1.265929 2.77847,-4.400385 1.64616,-0.699405 4.05106,-1.359364 4.5315,-0.61175 z"
+         id="path4222"
+         sodipodi:nodetypes="czzzsz" />
+      <path
+         style="fill:#700000;fill-opacity:0;fill-rule:nonzero;stroke:#a10e71;display:inline"
+         d="m 22.278376,46.997248 2.654511,-1.137684"
+         id="path4224"
+         inkscape:path-effect="#path-effect3152"
+         inkscape:original-d="m 22.278376,46.997248 2.654511,-1.137684"
+         inkscape:transform-center-y="-0.46846867"
+         inkscape:transform-center-x="-0.015941867" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a10e71;stroke-opacity:1;display:inline"
+         d="m 18.005713,48.63101 2.651702,-1.255375"
+         id="path4226"
+         inkscape:path-effect="#path-effect3148"
+         inkscape:original-d="m 18.005713,48.63101 2.651702,-1.255375"
+         sodipodi:nodetypes="cc" />
+      <path
+         style="fill:#700000;fill-opacity:0;stroke:#a10e71;stroke-width:1;stroke-opacity:1"
+         d="m 18.759578,50.28572 c 0,0 2.83408,-1.416905 2.50386,-2.135662 -0.33021,-0.718757 -3.22291,0.44478 -3.22291,0.44478 0,0 2.88818,-1.496357 2.45892,-2.155749 -0.42926,-0.659391 -3.28071,0.626136 -3.28071,0.626136"
+         id="path4216"
+         sodipodi:nodetypes="czczc" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path2933-4"
+         id="use4218"
+         transform="translate(4.2464729,-1.5943438)"
+         width="744.09448"
+         height="1052.3622" />
+    </g>
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4324"
+       d="m 38.706002,405.38678 c 0.232235,-0.25215 0.572849,-0.32823 0.902146,-0.34716 0.303328,-7.2e-4 0.603958,0.0426 0.907735,0.0346 0.382651,-0.0131 0.764692,-0.0155 1.147263,10e-4 0.533203,0.0427 1.068352,0.032 1.602373,0.0164 0.517485,-0.0153 1.034279,-0.0478 1.552002,-0.0571 0.373886,-0.0142 0.747502,0.015 1.121066,0.0245 0.22545,0.0346 0.491344,-0.0231 0.703411,0.0784 0.008,0.0106 0.02655,0.0187 0.02408,0.0317 -0.140539,0.74088 -0.118642,0.6995 -0.201088,0.32546 -0.004,-5.3e-4 0.0034,-0.0575 0.0074,-0.057 l 0,0 c 0.242594,-0.51767 0.02292,-0.13093 0.0697,0.3544 -0.220701,0.0939 -0.489143,0.0272 -0.720496,0.0464 -0.353335,-0.0107 -0.705524,0.009 -1.056395,0.0523 -0.535337,0.0735 -1.071505,0.14896 -1.612789,0.15798 -0.554178,-0.005 -1.103284,-0.0541 -1.65092,-0.13909 -0.369526,-0.043 -0.739773,-0.0677 -1.111471,-0.0838 -0.273206,-0.0319 -0.547094,-0.0694 -0.822615,-0.0677 -0.220501,0.0268 -0.423296,0.092 -0.631404,0.16673 -0.03805,0.0163 -0.268059,-0.52193 -0.230003,-0.53819 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4326"
+       d="m 39.897146,432.17044 c 0.328079,-0.19077 0.704685,-0.27571 1.076633,-0.3299 0.460883,-0.0593 0.927683,-0.0311 1.391006,-0.0274 0.649491,-0.002 1.298116,0.0305 1.946849,0.0559 0.476088,0.0291 0.950857,0.069 1.42055,0.15368 0.02437,0.005 0.280734,0.051 0.286671,0.0814 0.0026,0.0132 -0.01443,0.0235 -0.01694,0.0367 -0.01589,0.0839 -0.02534,0.16895 -0.03801,0.25343 -0.0027,-4.7e-4 0.0039,-0.0383 0.0066,-0.0379 l 0,0 c 0.0067,0.0856 0.02398,0.17096 0.02005,0.2567 -0.0034,0.0739 -0.31752,0.10562 -0.360824,0.11318 -0.487205,0.0629 -0.977174,0.0935 -1.468618,0.0909 -0.653194,-0.0239 -1.306166,-0.0626 -1.951244,-0.17502 -0.406419,-0.0554 -0.815135,-0.10451 -1.222837,-0.0285 -0.346414,0.0694 -0.70312,0.15279 -1.057777,0.10996 -0.03911,0.002 -0.07124,-0.55083 -0.03213,-0.5531 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4328"
+       d="m 40.544092,432.54642 c 0.227363,-0.0931 0.46129,-0.0632 0.686308,0.0165 0.152749,0.0458 0.280007,0.15306 0.432526,0.19769 0.102603,0.023 0.2025,0.0542 0.301396,0.0903 0.09301,0.0589 0.19878,0.0873 0.303978,0.11535 0.14347,0.0503 0.292542,0.0757 0.441441,0.10297 0.119084,0.0195 0.238974,0.0352 0.355608,0.0669 0.101096,0.0273 0.205655,0.0263 0.309255,0.0356 0.140279,0.0131 0.28142,0.0208 0.418025,0.0572 0.07949,0.0233 0.155571,0.0565 0.237679,0.0697 0.143891,-0.006 0.279086,0.0419 0.40922,0.0977 0.07779,0.0286 0.138877,0.0954 0.221462,0.10968 0.08391,0.0163 0.169967,0.0184 0.254022,0.0329 0.05395,0.0105 0.109998,0.005 0.163886,0.0145 0.08071,-0.008 0.158643,0.0119 0.237595,0.0236 0.06506,0.0245 0.129328,0.01 0.196058,0.0105 0.0997,-0.009 0.197518,0.0217 0.295809,0.0243 0.05676,0.003 0.109153,0.0197 0.163256,0.0329 0.06762,0.0488 0.0036,0.0422 -0.0365,0.14898 -0.01014,0.027 -0.008,0.0571 -0.01208,0.0857 0.0019,-3.5e-4 0.0068,0.0263 0.0049,0.0267 l 0,0 c -0.02849,0.0793 -0.08063,0.16625 -0.108103,0.2346 -0.01644,0.0163 -0.06835,0.007 -0.09599,0.0161 -0.105109,-0.004 -0.209978,5.6e-4 -0.313908,-0.0219 -0.08508,-0.0108 -0.167347,-0.0373 -0.252305,-0.0497 -0.03052,-0.01 -0.06386,-0.0184 -0.09547,-0.0173 -0.0902,0.0258 -0.187757,0.0247 -0.280255,0.0151 -0.103557,-0.0115 -0.203145,-0.0437 -0.303374,-0.071 -0.09619,-0.0292 -0.190172,-0.0658 -0.286538,-0.0948 -0.113223,-0.0402 -0.227178,-0.0782 -0.34074,-0.11731 -0.06298,-0.0214 -0.116739,-0.0401 -0.184499,-0.0288 -0.1495,0.004 -0.298119,-0.0174 -0.444418,-0.0469 -0.09081,-0.0222 -0.175032,-0.0689 -0.268793,-0.0682 -0.132073,0.005 -0.264546,-0.003 -0.395345,-0.0216 -0.183405,-0.0271 -0.361981,-0.0796 -0.530553,-0.15734 -0.09661,-0.049 -0.191427,-0.10316 -0.281427,-0.1616 -0.08532,-0.0441 -0.203786,-0.008 -0.289731,-0.0561 -0.147264,-0.0514 -0.281822,-0.11989 -0.419107,-0.19321 -0.173474,-0.0336 -0.354919,-0.0263 -0.522291,-0.0888 -0.03049,-0.002 -0.0015,-0.43329 0.029,-0.43124 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4330"
+       d="m 38.452834,467.22681 c 0.421651,-0.10824 0.866064,-0.10707 1.299145,-0.11063 0.554908,0.01 1.108642,-0.0231 1.660191,-0.0813 0.722913,-0.0729 1.445209,-0.14909 2.172082,-0.16415 0.48448,-0.0125 0.966156,0.042 1.447719,0.0853 0.341548,0.0248 0.684089,0.0293 1.016608,0.11696 0.146409,0.0506 0.158609,0.18466 0.21772,0.30704 0.0049,8e-4 -0.0064,0.0696 -0.01131,0.0688 l 0,0 c -0.101124,0.11429 -0.165871,0.25061 -0.333198,0.27501 -0.336037,0.0293 -0.666407,-0.027 -1.00258,-0.0334 -0.471589,0.0139 -0.935339,0.10164 -1.404189,0.1491 -0.729525,0.0797 -1.462613,0.12657 -2.19689,0.10914 -0.56103,-0.0275 -1.122042,-0.0552 -1.683276,-0.0779 -0.424705,-0.0319 -0.868412,-0.0685 -1.259673,-0.24896 -0.02794,-0.005 0.04972,-0.40057 0.07766,-0.39507 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4332"
+       d="m 39.472143,467.52043 c 0.392101,-0.031 0.781946,0.0796 1.156524,0.18389 0.367228,0.0955 0.73837,0.16958 1.11355,0.22508 0.36557,0.0488 0.730222,0.10583 1.096225,0.15321 0.401123,0.0596 0.800225,0.13091 1.20092,0.1932 0.32855,0.0747 0.662923,0.0937 0.997318,0.11792 0.319443,-8.3e-4 0.637898,0.0217 0.942171,0.12262 0.255557,0.12627 0.293412,0.22836 0.02261,0.51197 -0.02187,0.0229 -0.03443,-0.0532 -0.05164,-0.0797 -0.0045,-1.3e-4 -0.0027,-0.0643 0.0018,-0.0642 l 0,0 c 0.12667,-0.25722 -0.04662,0.0901 -0.09104,0.23228 -0.0191,0.0611 0.07864,0.0634 -0.07728,0.0719 -0.292521,-0.004 -0.585002,-0.0125 -0.876735,-0.0354 -0.354982,-0.0121 -0.707699,-0.0621 -1.061392,-0.0929 -0.408047,-0.0512 -0.814737,-0.11142 -1.21792,-0.19326 -0.350786,-0.0705 -0.701228,-0.14441 -1.057658,-0.1793 -0.409851,-0.0366 -0.818964,-0.0903 -1.216373,-0.20075 -0.363719,-0.0874 -0.733546,-0.19682 -1.046334,-0.40862 -0.03945,-0.0117 0.125803,-0.56961 0.165254,-0.55792 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4334"
+       d="m 39.297797,467.90428 c 0.332265,-0.0192 0.628432,0.13453 0.895065,0.31598 0.187806,0.13508 0.326772,0.31974 0.50265,0.46757 0.1446,0.0589 0.300602,0.0841 0.452115,0.1213 0.24289,0.0815 0.482812,0.17036 0.7292,0.24142 0.245276,0.0837 0.489535,0.17039 0.716397,0.29688 0.06788,0.0457 0.130001,0.0955 0.180742,0.16013 0.0212,0.027 0.04018,0.0557 0.06032,0.0834 0.0039,0.005 0.01543,0.0219 0.01192,0.0162 -0.0093,-0.0151 -0.01954,-0.0296 -0.02931,-0.0445 0.04116,-0.0649 0.418627,0.0961 0.480543,0.11988 0.17688,0.0552 0.319849,0.16767 0.469825,0.27027 0.07695,0.10592 0.192815,0.13379 0.309363,0.17883 0.176195,0.0801 0.366918,0.14216 0.523346,0.25875 0.167725,0.11976 0.0714,0.0917 -0.109787,0.34487 -0.0018,-10e-4 0.01549,-0.0272 0.01733,-0.026 l 0,0 c -0.0701,0.13518 -0.06746,0.3267 -0.211415,0.30294 -0.22026,-0.0351 -0.424986,-0.13871 -0.612148,-0.25643 -0.107571,-0.0786 -0.239108,-0.18363 -0.310134,-0.27688 -0.132701,-0.0318 -0.27476,-0.0546 -0.400956,-0.11649 -0.209569,-0.0871 -0.419915,-0.17952 -0.575081,-0.3515 -0.02306,-0.0271 -0.04736,-0.0532 -0.06918,-0.0813 -0.0034,-0.004 -0.01007,-0.0194 -0.006,-0.0156 0.07201,0.0682 0.04753,0.0784 -0.03536,0.0587 -0.2419,-0.0626 -0.480712,-0.13571 -0.715153,-0.22243 -0.227062,-0.0945 -0.452633,-0.19197 -0.677221,-0.29219 -0.202631,-0.0753 -0.422157,-0.11377 -0.598745,-0.2472 -0.18296,-0.12252 -0.326382,-0.2915 -0.503074,-0.42201 -0.221217,-0.13747 -0.464889,-0.23879 -0.670072,-0.39957 -0.03431,-0.0124 0.140529,-0.49759 0.174839,-0.48522 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4336"
+       d="m 38.719368,499.45596 c 0.469192,-0.29003 1.042327,-0.28157 1.575061,-0.27674 0.642415,0.0383 1.277749,0.14934 1.921716,0.16087 0.624295,0.0116 1.242959,-0.0817 1.860774,-0.15734 0.63595,-0.0851 1.275235,-0.0827 1.906092,0.0334 0.281083,0.0558 0.554707,0.14199 0.825854,0.23355 0.0872,0.0578 0.07744,0.16126 0.08904,0.2563 0.0043,-3e-4 0.0085,0.0601 0.0042,0.0605 l 0,0 c -0.04137,0.14664 -0.0601,0.24038 -0.2217,0.27557 -0.285579,0.0116 -0.5715,-0.0283 -0.857561,-0.0131 -0.595411,0.0155 -1.191089,0.0327 -1.78308,0.10619 -0.65223,0.0554 -1.306117,0.0953 -1.961111,0.0774 -0.647148,-0.0347 -1.291489,-0.087 -1.933799,-0.17662 -0.461598,-0.0504 -0.928415,-0.0597 -1.386081,-0.13634 -0.03137,0.003 -0.07082,-0.44087 -0.03945,-0.44366 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4338"
+       d="m 39.65148,499.72191 c 0.491627,-0.11368 1.004595,0.009 1.485226,0.12379 0.480753,0.12016 0.959388,0.24775 1.441036,0.36468 0.414402,0.10192 0.836125,0.16279 1.256749,0.23026 0.477319,0.0542 0.954277,0.11037 1.427551,0.19374 0.288908,0.0356 0.565319,0.12 0.83688,0.22006 0.04772,0.0167 0.291076,0.1561 0.236765,0.23838 -0.05865,0.0888 -0.147511,0.15355 -0.221266,0.23033 -0.0046,10e-4 -0.02319,-0.0632 -0.01862,-0.0645 l 0,0 c -0.04379,0.061 -0.0959,0.11686 -0.131375,0.18306 -0.03524,0.0658 0.06267,0.0931 -0.09678,0.0804 -0.266958,-0.0273 -0.539503,0.0236 -0.806674,-0.0146 -0.491969,-0.0332 -0.979535,-0.10604 -1.462722,-0.20406 -0.429166,-0.0771 -0.853748,-0.17783 -1.281808,-0.26131 -0.494344,-0.094 -0.988472,-0.18671 -1.475585,-0.31428 -0.441232,-0.10686 -0.897062,-0.2091 -1.299925,-0.42417 -0.04114,-0.008 0.06941,-0.58961 0.110547,-0.58179 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4340"
+       d="m 39.903403,499.97793 c 0.430864,0.21485 0.826122,0.49344 1.239537,0.73986 0.410193,0.24489 0.846957,0.43661 1.291387,0.60907 0.390585,0.13485 0.763755,0.31043 1.133192,0.49381 0.265438,0.12059 0.508276,0.27815 0.75287,0.43452 0.14659,0.11682 0.326551,0.16301 0.507201,0.19528 0.05908,0.0107 0.412528,0.0669 0.392249,0.17417 -0.02556,0.13518 -0.0862,0.2613 -0.129299,0.39195 -0.03057,-0.0132 -0.06114,-0.0265 -0.09172,-0.0397 -0.0077,-5.2e-4 -3.59e-4,-0.10954 0.0074,-0.10902 l 0,0 c 0.02439,-0.0171 0.04877,-0.0341 0.07316,-0.0512 -0.0175,0.12503 -0.02911,0.25102 -0.0525,0.37508 -0.0034,0.0181 -0.01162,0.0383 -0.02727,0.048 -0.106773,0.0658 -0.325598,-0.0202 -0.436284,-0.0295 -0.23388,-0.0715 -0.447944,-0.17854 -0.657858,-0.3016 -0.244158,-0.12459 -0.512456,-0.19688 -0.758186,-0.3192 -0.351955,-0.16192 -0.701353,-0.33019 -1.070053,-0.4517 -0.507965,-0.16804 -1.021439,-0.33245 -1.480715,-0.61416 -0.443832,-0.29028 -0.884564,-0.62346 -1.133842,-1.10479 -0.03117,-0.0312 0.40962,-0.47196 0.440788,-0.44079 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4342"
+       d="m 39.483711,500.12194 c 0.300453,0.15663 0.475843,0.45156 0.587264,0.76074 0.06026,0.17064 0.08051,0.35011 0.148112,0.51801 0.113118,0.13333 0.212034,0.27875 0.325214,0.41249 0.138047,0.1843 0.285999,0.36443 0.453149,0.52316 0.147509,0.15613 0.296325,0.31129 0.429888,0.47977 0.100246,0.11924 0.192773,0.24211 0.30352,0.35198 0.161131,0.1316 0.313768,0.27389 0.478379,0.40089 0.157847,0.12708 0.277789,0.28345 0.386058,0.45247 0.02,0.0743 0.0781,0.12097 -0.0256,0.0474 0.03818,0.0297 -0.38223,0.56962 -0.420407,0.5399 l 0,0 c -0.05862,-0.0419 -0.10362,-0.0924 -0.156792,-0.13995 -0.09298,-0.10747 -0.233107,-0.17007 -0.333289,-0.27064 -0.173152,-0.16276 -0.367574,-0.30548 -0.507025,-0.50184 -0.09348,-0.1128 -0.169005,-0.23961 -0.268462,-0.34643 -0.169519,-0.14121 -0.330345,-0.29235 -0.484342,-0.45042 -0.168798,-0.20184 -0.343532,-0.39799 -0.481705,-0.62338 -0.104267,-0.18564 -0.245689,-0.35029 -0.32821,-0.54751 -0.07839,-0.16627 -0.109337,-0.34379 -0.173064,-0.51505 -0.11977,-0.21752 -0.266143,-0.41924 -0.367451,-0.64644 -0.03148,-0.0307 0.403281,-0.47591 0.434759,-0.44517 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4344"
+       d="m 37.371193,529.57867 c 0.49989,-0.0465 1.006262,0.0278 1.504521,0.0734 0.624587,0.0575 1.246441,0.13576 1.867545,0.22234 0.567978,0.1056 1.136927,0.19751 1.710499,0.26671 0.83707,0.0561 1.676466,0.0387 2.514783,0.0563 0.592554,0.0117 1.18564,0.0621 1.757223,0.22298 0.146864,0.0649 0.294004,0.10395 0.451558,0.12193 0.10476,0.0473 0.108667,0.15286 0.129941,0.25371 0.0041,3.7e-4 -0.0012,0.0584 -0.0053,0.0581 l 0,0 c -0.04946,0.1183 -0.07798,0.22701 -0.214041,0.26185 -0.166145,0.003 -0.331613,-0.0407 -0.496806,0.004 -0.585266,0.0826 -1.172753,0.15755 -1.765075,0.1631 -0.879447,0.008 -1.758803,-0.043 -2.615072,-0.26103 -0.546538,-0.12177 -1.085287,-0.29602 -1.64602,-0.34048 -0.637245,-0.0506 -1.278757,-0.0595 -1.910404,-0.16777 -0.490677,-0.10231 -1.01569,-0.20406 -1.429158,-0.50448 -0.03043,-0.0103 0.115366,-0.44072 0.1458,-0.43041 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4346"
+       d="m 38.529563,530.21057 c 0.05949,-0.002 0.119031,-0.01 0.178472,-0.006 0.560375,0.0303 1.183862,0.22674 1.724359,0.37123 0.816303,0.23355 1.626619,0.48675 2.43481,0.74685 0.669391,0.21333 1.344099,0.40773 2.026579,0.57444 0.562164,0.12111 1.115677,0.27464 1.66982,0.42702 0.380362,0.13484 0.78145,0.2015 1.160049,0.34006 0.156097,0.0694 0.189863,0.19241 0.229842,0.34351 0.0057,8.4e-4 -0.0062,0.0811 -0.0119,0.0802 l 0,0 c -0.113482,0.15399 -0.218251,0.2645 -0.424381,0.27153 -0.415354,-0.0245 -0.802717,-0.17733 -1.212572,-0.23984 -0.573656,-0.10446 -1.155763,-0.16295 -1.723212,-0.30185 -0.693371,-0.16966 -1.37888,-0.36922 -2.072601,-0.53781 -0.83667,-0.20723 -1.671916,-0.42528 -2.483755,-0.71731 -0.585031,-0.22749 -1.197502,-0.45341 -1.69208,-0.84975 -0.0355,-0.0139 0.161079,-0.51589 0.196575,-0.50199 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4348"
+       d="m 37.708201,530.56069 c 0.433299,-0.23098 0.913552,-0.09 1.349569,0.0554 0.599253,0.25361 1.190138,0.52463 1.79714,0.75966 0.704415,0.26838 1.417212,0.51473 2.113185,0.80467 0.610188,0.24805 1.118215,0.5477 1.579778,1.01776 0.126957,0.13663 0.229102,0.29299 0.323554,0.45305 0.03851,0.0653 0.06762,0.14082 0.11189,0.20244 0.05257,-0.058 0.19951,-0.0112 0.268845,0.005 0.106154,0.0443 0.103879,0.16189 0.137856,0.25707 0.0026,-7e-5 0.0037,0.0373 0.001,0.0374 l 0,0 c -0.04252,0.11215 -0.05842,0.24107 -0.180773,0.29467 -0.250026,0.0757 -0.486451,0.05 -0.700891,-0.11037 -0.181134,-0.16178 -0.333262,-0.35249 -0.528473,-0.49887 -0.449696,-0.30915 -0.96022,-0.50348 -1.468174,-0.69582 -0.712055,-0.2661 -1.422282,-0.53805 -2.120879,-0.83804 -0.590142,-0.27096 -1.1629,-0.57012 -1.707033,-0.92586 -0.176273,-0.0928 -0.345835,-0.17336 -0.540736,-0.21992 -0.201627,-0.0482 -0.122056,-0.0116 -0.312832,-0.0614 -0.03868,-0.0101 -0.07595,-0.025 -0.113931,-0.0374 -0.03533,6.5e-4 -0.04447,-0.49901 -0.0091,-0.49965 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4350"
+       d="m 38.780433,530.70259 c 0.355199,0.2725 0.667463,0.59772 1.005253,0.89227 0.412964,0.33396 0.854731,0.62951 1.290423,0.93242 0.340096,0.2414 0.664702,0.50364 1.002146,0.7487 0.317801,0.22984 0.644963,0.44587 0.975889,0.65618 0.210597,0.13374 0.438873,0.24413 0.607403,0.43229 0.170673,0.21405 0.190153,0.27322 -0.241869,0.4597 -0.04038,0.0174 -0.02015,-0.0856 -0.03022,-0.12844 -0.0042,-0.002 0.02167,-0.0613 0.02588,-0.0595 l 0,0 c 0.02077,-0.0319 0.09048,-0.12149 0.06231,-0.0958 -0.45945,0.41864 -0.309524,0.15802 -0.238488,0.38606 -0.188074,0.004 -0.49132,-0.1833 -0.661335,-0.2522 -0.3714,-0.20159 -0.725579,-0.43246 -1.053748,-0.69943 -0.310582,-0.2452 -0.617816,-0.49766 -0.968657,-0.68437 -0.509142,-0.29061 -1.034063,-0.56689 -1.456591,-0.98156 -0.348281,-0.35922 -0.70378,-0.75968 -0.818146,-1.26109 -0.02441,-0.0353 0.475337,-0.38055 0.499747,-0.34521 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4352"
+       d="m 37.791482,530.78276 c 0.26963,0.34553 0.385449,0.78037 0.537364,1.18494 0.115128,0.3809 0.395071,0.64746 0.65396,0.93228 0.281578,0.29129 0.480295,0.63401 0.588617,1.02297 0.05774,0.27022 0.111104,0.53102 0.286098,0.75048 0.13723,0.15497 0.330764,0.25211 0.459689,0.41416 -0.173166,0.14687 0.06548,-0.0569 -0.404129,0.49493 -0.01962,0.023 -0.0038,-0.034 0.01604,-0.0702 0.03925,-0.0714 0.08484,-0.13925 0.125594,-0.20985 -0.0017,-9.3e-4 0.01147,-0.0246 0.01314,-0.0237 l 0,0 c 0.02991,-0.0322 0.0564,-0.0679 0.08973,-0.0965 0.428905,-0.36801 0.25971,0.58006 -0.174371,0.49264 -0.298825,-0.0853 -0.544477,-0.28855 -0.735492,-0.52962 -0.223319,-0.31802 -0.316359,-0.57493 -0.374711,-0.95734 -0.01413,-0.046 -0.05587,-0.18797 -0.0769,-0.23306 -0.09172,-0.19667 -0.260877,-0.3473 -0.398853,-0.50968 -0.317982,-0.34261 -0.62612,-0.69972 -0.814496,-1.13299 -0.164597,-0.42324 -0.306356,-0.87083 -0.28082,-1.33065 -0.01406,-0.0346 0.475472,-0.23345 0.489531,-0.19884 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4354"
+       d="m 38.86095,559.00858 c 0.304158,-0.008 0.595001,0.086 0.886235,0.15896 0.315214,0.079 0.349058,0.083 0.675529,0.15237 0.878932,0.17438 1.775418,0.17306 2.667189,0.18752 0.796934,-10e-4 1.593829,-0.0115 2.390576,-0.0299 0.415506,0.0253 1.018517,-0.0941 1.339951,0.24198 0.04329,0.0453 0.06973,0.10407 0.104591,0.1561 0.0112,0.002 -0.01821,0.16053 -0.02941,0.15845 l 0,0 c -0.118494,0.11913 -0.17331,0.19337 -0.33433,0.26773 -0.359172,0.16587 -0.785534,0.1067 -1.164869,0.17073 -0.816755,0.0618 -1.6312,0.16243 -2.450502,0.18533 -0.976824,0.0173 -1.960256,-0.0537 -2.889534,-0.37994 -0.508567,-0.18848 -1.051634,-0.38068 -1.441831,-0.77353 -0.03506,-0.0174 0.211352,-0.5132 0.246408,-0.49578 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4356"
+       d="m 39.91037,559.69316 c 0.385282,0.0617 0.744681,0.22192 1.11432,0.34114 0.433328,0.12801 0.864581,0.25477 1.274505,0.4471 0.297538,0.13801 0.558882,0.33892 0.849694,0.48935 0.30774,0.13418 0.620627,0.25534 0.928264,0.38997 0.176857,0.0925 0.350933,0.19245 0.547306,0.235 0.178951,0.0261 0.350696,0.0766 0.508967,0.165 0.125367,0.0645 0.255044,0.11916 0.382766,0.17916 0.10297,0.0434 0.206416,0.0847 0.309888,0.1267 0.02424,0.0115 0.151354,0.14161 0.130605,0.0675 0.09168,0.007 0.181173,0.0188 0.269819,0.0442 0.237189,0.0912 0.16144,0.12118 -0.05169,0.4744 -0.01109,0.0184 -0.01627,-0.0397 -0.0244,-0.0596 -0.0035,-9.3e-4 0.0097,-0.0502 0.01316,-0.0492 l 0,0 c 0.01723,-0.0157 0.05535,-0.0702 0.05169,-0.0472 -0.0222,0.13949 -0.07337,0.27281 -0.109341,0.40941 -0.01391,0.0528 -0.07175,0.015 -0.114417,0.0196 -0.129442,-0.0202 -0.250936,-0.0619 -0.364874,-0.1272 -0.02858,-0.021 -0.05575,-0.044 -0.08454,-0.0647 -0.0057,-0.004 -0.02446,-0.0143 -0.01852,-0.0105 0.01743,0.0113 0.113522,0.0425 0.03793,0.0484 -0.156805,-0.0262 -0.309019,-0.0679 -0.445521,-0.15349 -0.104635,-0.0602 -0.19853,-0.13593 -0.310644,-0.18222 -0.152471,-0.0247 -0.302146,-0.0615 -0.450301,-0.10479 -0.207653,-0.066 -0.413056,-0.14182 -0.626939,-0.18533 -0.369133,-0.10768 -0.73777,-0.22248 -1.055512,-0.44788 -0.236866,-0.15972 -0.457315,-0.34866 -0.732846,-0.43923 -0.435499,-0.1245 -0.882935,-0.20616 -1.307364,-0.36849 -0.358853,-0.15407 -0.720642,-0.32369 -1.011919,-0.58971 -0.04295,-0.0205 0.246956,-0.62795 0.289909,-0.60745 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4360"
+       d="m 39.626163,593.56928 c 0.566581,-0.0363 1.130172,0.0812 1.690602,0.15213 0.539416,0.049 1.082409,0.046 1.623598,0.0437 0.561859,0.0196 1.12154,0.0763 1.680795,0.13148 0.55439,0.0608 1.101023,0.18569 1.656873,0.23064 0.458535,0.0449 0.914899,-0.0448 1.370116,-0.087 0.287246,-0.0283 0.588649,-0.0634 0.867177,0.0305 0.188342,0.5025 0.05424,1.25215 -0.294671,0.84871 -0.05352,-0.012 0.116304,-0.76895 0.169828,-0.75694 l 0,0 c -0.0088,-0.0223 -0.0227,-0.0433 -0.02626,-0.067 -0.0056,-0.0374 0.0085,-0.0391 0.03081,-0.0521 0.0081,0.31189 0.01629,0.62377 0.02443,0.93566 -0.13614,0.14526 -0.616988,0.16032 -0.799885,0.21035 -0.517405,0.0764 -1.039576,0.10261 -1.562415,0.0872 -0.575952,-0.042 -1.146466,-0.11338 -1.716011,-0.20963 -0.516436,-0.0851 -1.035679,-0.16385 -1.56005,-0.17236 -0.577294,-0.0231 -1.157505,0.0288 -1.732932,-0.0463 -0.574083,-0.0761 -1.17153,-0.18055 -1.66717,-0.49783 -0.05524,-0.0173 0.189929,-0.79851 0.245167,-0.78118 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4362"
+       d="m 59.718136,404.57254 c 0.521068,-0.16062 1.067894,-0.12458 1.592223,-0.004 0.02624,0.007 0.364677,0.15635 0.357021,0.2032 -0.049,0.2999 -0.118344,0.84409 -0.294509,0.63921 -0.03302,-0.0384 -0.03953,-0.0933 -0.0593,-0.13987 -0.01173,-0.0443 -0.02345,-0.0887 -0.03518,-0.13299 -0.0049,-10e-4 0.0094,-0.0708 0.01436,-0.0697 l 0,0 c 0.02402,-0.041 0.04804,-0.082 0.07205,-0.12306 0.02266,-0.0451 0.04393,-0.0909 0.06798,-0.13528 0.0084,-0.0155 0.03141,-0.0616 0.0292,-0.0441 -0.02817,0.22264 -0.0723,0.44297 -0.107703,0.66457 -0.0019,0.0116 0.0059,0.0288 -0.0041,0.035 -0.07042,0.0441 -0.180083,-0.002 -0.24512,0.0454 -0.489938,0.0122 -0.988449,0.002 -1.46367,-0.12979 -0.05719,-0.005 0.01952,-0.81415 0.07671,-0.80873 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4364"
+       d="m 62.21208,402.59838 c 0.522784,-0.20401 1.071649,-0.10334 1.579414,0.0915 0.245906,0.11573 0.59287,0.27162 0.69811,0.55374 0.02653,0.0711 0.03667,0.14734 0.05501,0.22101 -0.286084,0.37708 -0.270958,0.4762 -0.629489,0.33429 -0.01956,-0.008 0.03705,0.0232 0.05802,0.0248 0.07035,0.005 0.141081,-0.003 0.211622,-0.004 0.05995,-0.0491 0.110642,-0.1124 0.179863,-0.14719 0.06029,-0.0303 -0.04611,0.12742 -0.07866,0.18653 -0.126811,0.23028 -0.322223,0.40414 -0.51634,0.57674 -0.195704,0.15651 -0.427771,0.33506 -0.690312,0.31348 -5.82e-4,-0.25764 -0.04961,-0.51977 -0.0017,-0.77292 0.0099,-0.0525 0.102944,-0.0291 0.155352,-0.0395 0.296037,-0.0587 0.583448,-0.0455 0.882248,-0.024 0.365717,0.0439 0.734287,0.11481 1.064634,0.28218 0.363722,0.23154 0.445275,0.60991 0.443352,1.01369 -0.0081,0.4498 -0.130029,0.87681 -0.329275,1.27684 -0.223996,0.45365 -0.62799,0.7321 -1.064808,0.9524 -0.571927,0.25472 -1.189701,0.27301 -1.803809,0.24402 -0.353672,-0.0597 -0.731499,-0.0582 -0.877008,-0.45097 -0.0285,-0.0769 -0.02921,-0.16144 -0.04381,-0.24217 -0.0096,-0.006 0.07625,-0.14147 0.08583,-0.1354 l 0,0 c 0.05722,-0.0417 0.2877,-0.21427 0.350352,-0.23984 0.203278,-0.083 0.439323,-0.004 0.648622,-0.0394 0.48102,-1.6e-4 0.96618,-0.0241 1.4375,-0.12553 0.125299,-0.0349 0.158127,-0.0374 0.268034,-0.0899 0.108556,-0.0518 0.116337,-0.0943 -0.01323,0.066 -0.04004,0.0495 0.190114,-0.22144 0.110498,-0.15589 0.133721,-0.33276 0.205674,-0.68343 0.299954,-1.02852 0.02523,-0.0975 0.03342,-0.15443 0.07585,-0.24089 0.02492,-0.0508 0.108801,-0.008 0.03153,-0.0284 -0.288997,-0.0606 -0.584173,-0.0586 -0.877555,-0.0817 -0.06391,-0.006 -0.827151,-0.0845 -0.831959,-0.0981 -0.08431,-0.2401 -0.110831,-0.49672 -0.166246,-0.74509 -0.07366,-0.0756 0.361665,-0.37272 0.427095,-0.42565 0.388154,-0.32598 0.0055,-0.0249 0.07189,-0.027 0.102001,-0.003 0.437853,-0.42651 0.480449,-0.42402 0.277832,-0.0376 0.175082,-0.0599 0.354006,-0.002 0.0046,10e-4 -0.09634,-0.0279 -0.116566,-0.006 -0.106717,0.11375 -0.185311,0.25094 -0.277967,0.37642 0.01872,0.0573 0.03918,0.11399 0.05617,0.1718 0.0025,0.009 0.01078,0.0241 0.0022,0.0269 -0.07237,0.024 -0.414929,-0.13297 -0.492624,-0.1331 -0.398124,-0.0877 -0.79856,-0.15494 -1.196826,-0.24093 -0.05398,10e-4 -0.07339,-0.76209 -0.01941,-0.76347 z"
+       transform="translate(0,28.362183)" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4366"
+       d="m 66.246371,401.66999 c 0.143215,0.18457 0.12172,0.51041 0.336797,0.63361 0.141782,-0.0201 0.280237,-0.0979 0.408864,-0.16121 -0.02222,0.0934 0.07721,-0.06 0.05825,-0.0446 -0.178161,0.14509 -0.138144,0.18227 -0.119095,-0.0595 0.02788,-0.23646 0.03528,-0.46913 0.01536,-0.70598 -0.05806,-0.14139 -0.208635,-0.15205 -0.341182,-0.19071 -0.03859,-0.0128 -0.0778,-0.0239 -0.115759,-0.0385 -0.01334,-0.005 -0.322796,-0.14974 -0.260938,-0.12761 0.06359,0.0116 0.177476,-0.0288 0.05739,0.054 -0.07371,0.0508 -0.0857,0.0685 -0.151911,0.1334 -0.121835,0.0831 -0.429366,0.39482 -0.564751,0.39859 -0.45535,0.0127 0.233112,-0.2886 -0.347231,0.0273 -0.0076,0.0175 -0.25547,-0.0896 -0.247895,-0.10713 l 0,0 c 0.109748,-0.58018 0.318734,-0.98068 0.871215,-1.22176 0.178717,-0.0599 0.359147,-0.11781 0.549391,-0.12356 0.204067,0.0281 0.403538,0.0681 0.594547,0.14938 0.375527,0.1573 0.704878,0.38523 0.820228,0.79853 0.07878,0.34011 0.04378,0.69123 -0.08049,1.01821 -0.12234,0.32212 -0.245998,0.56841 -0.566404,0.74484 -0.335897,0.14775 -0.674404,0.22271 -1.021145,0.0487 -0.389362,-0.28825 -0.58446,-0.60559 -0.498496,-1.10262 -0.0087,-0.0427 0.594532,-0.16609 0.60326,-0.12343 z"
+       transform="translate(0,28.362183)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/SunWukong.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,1167 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="SunWukong.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="SunWukong.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title57951">Sun Wukong monkey king</title>
+  <defs
+     id="defs4">
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect4152"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect4150"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect4589"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect4565"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect4563"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect4215"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect4211"
+       is_visible="true" />
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="12.591455"
+     inkscape:cx="15.640266"
+     inkscape:cy="1005.5152"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer4"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>Sun Wukong monkey king</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat Sun Wukong monkey king</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="frame"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       id="rect20004"
+       width="32"
+       height="32"
+       x="-2.6098915e-15"
+       y="0"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833"
+       inkscape:connector-curvature="0" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="47.098183"
+       id="text4913"><tspan
+         sodipodi:role="line"
+         id="tspan4915"
+         x="-15"
+         y="47.098183"
+         style="font-size:8px;line-height:1.25">01-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="79.098183"
+       id="text4917"><tspan
+         sodipodi:role="line"
+         id="tspan4919"
+         x="-15"
+         y="79.098183"
+         style="font-size:8px;line-height:1.25">02-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="111.09818"
+       id="text4921"><tspan
+         sodipodi:role="line"
+         id="tspan4923"
+         x="-15"
+         y="111.09818"
+         style="font-size:8px;line-height:1.25">03v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="143.09818"
+       id="text4925"><tspan
+         sodipodi:role="line"
+         id="tspan4927"
+         x="-15"
+         y="143.09818"
+         style="font-size:8px;line-height:1.25">04-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="175.09818"
+       id="text4929"><tspan
+         sodipodi:role="line"
+         id="tspan4931"
+         x="-15"
+         y="175.09818"
+         style="font-size:8px;line-height:1.25">05-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="207.09818"
+       id="text4933"><tspan
+         sodipodi:role="line"
+         id="tspan4935"
+         x="-15"
+         y="207.09818"
+         style="font-size:8px;line-height:1.25">06-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="239.09818"
+       id="text4937"><tspan
+         sodipodi:role="line"
+         id="tspan4939"
+         x="-15"
+         y="239.09818"
+         style="font-size:8px;line-height:1.25">07-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="271.09824"
+       id="text4941"><tspan
+         sodipodi:role="line"
+         id="tspan4943"
+         x="-15"
+         y="271.09824"
+         style="font-size:8px;line-height:1.25">08v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="303.09824"
+       id="text4945"><tspan
+         sodipodi:role="line"
+         id="tspan4947"
+         x="-15"
+         y="303.09824"
+         style="font-size:8px;line-height:1.25">09-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="335.09824"
+       id="text4949"><tspan
+         sodipodi:role="line"
+         id="tspan4951"
+         x="-15"
+         y="335.09824"
+         style="font-size:8px;line-height:1.25">10-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="367.09824"
+       id="text4953"><tspan
+         sodipodi:role="line"
+         id="tspan4955"
+         x="-15"
+         y="367.09824"
+         style="font-size:8px;line-height:1.25">11-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="399.16223"
+       id="text4957"><tspan
+         sodipodi:role="line"
+         id="tspan4959"
+         x="-15"
+         y="399.16223"
+         style="font-size:8px;line-height:1.25">12-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="431.09824"
+       id="text4961"><tspan
+         sodipodi:role="line"
+         id="tspan4963"
+         x="-15"
+         y="431.09824"
+         style="font-size:8px;line-height:1.25">13v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="463.10223"
+       id="text4965"><tspan
+         sodipodi:role="line"
+         id="tspan4967"
+         x="-15"
+         y="463.10223"
+         style="font-size:8px;line-height:1.25">14-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="495.09824"
+       id="text4969"><tspan
+         sodipodi:role="line"
+         id="tspan4971"
+         x="-15"
+         y="495.09824"
+         style="font-size:8px;line-height:1.25">15-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="527.09821"
+       id="text4973"><tspan
+         sodipodi:role="line"
+         id="tspan4975"
+         x="-15"
+         y="527.09821"
+         style="font-size:8px;line-height:1.25">16-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="559.09821"
+       id="text4977"><tspan
+         sodipodi:role="line"
+         id="tspan4979"
+         x="-15"
+         y="559.09821"
+         style="font-size:8px;line-height:1.25">17^</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="591.09821"
+       id="text4981"><tspan
+         sodipodi:role="line"
+         id="tspan4983"
+         x="-15"
+         y="591.09821"
+         style="font-size:8px;line-height:1.25">18-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="623.09821"
+       id="text4985"><tspan
+         sodipodi:role="line"
+         id="tspan4987"
+         x="-15"
+         y="623.09821"
+         style="font-size:8px;line-height:1.25">19x</tspan></text>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline">
+    <g
+       id="g3918"
+       inkscape:tile-cx="15.440367"
+       inkscape:tile-cy="20.725597"
+       inkscape:tile-w="28.229488"
+       inkscape:tile-h="23.971678"
+       inkscape:tile-x0="1.4506229"
+       inkscape:tile-y0="8.9897581">
+      <path
+         transform="matrix(1.2484076,0,0,1.2484076,-11.360841,-8.4683318)"
+         d="m 32.530806,24.721148 a 8.4649429,8.4649429 0 1 1 -16.929886,0 8.4649429,8.4649429 0 1 1 16.929886,0 z"
+         sodipodi:ry="8.4649429"
+         sodipodi:rx="8.4649429"
+         sodipodi:cy="24.721148"
+         sodipodi:cx="24.065863"
+         id="path3124"
+         style="opacity:0;fill:#ff921d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="zzzzzzzzzzsz"
+         id="path3900"
+         d="m 29.632895,22.935231 c 0,1.197659 -0.723344,3.186848 -2.844618,5.071075 -2.121275,1.884229 -5.431017,2.629019 -7.154379,0.910202 -1.723364,-1.718815 -0.681313,-3.661232 -0.716273,-3.36651 -0.03496,0.294723 -6.453246,-0.06659 -8.1755,-3.895956 -1.7222545,-3.82937 -0.0077,-6.395094 1.576598,-8.382433 1.58878,-1.992957 7.085534,0.591984 7.804282,0.194367 0.718747,-0.397617 -0.862472,-3.259191 0.971441,-2.976752 1.833912,0.28244 3.723706,1.6024 5.28518,2.673973 1.561473,1.071573 2.027084,2.600749 2.218552,4.515164 0.191467,1.914413 -0.0464,2.758227 0.306897,3.590817 0.353301,0.83259 0.72782,0.468394 0.72782,1.666053 z"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#801800;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 25.862524,23.73572 c -0.852119,-0.793206 -2.552583,-0.410602 -4.142051,-0.05415 -1.589468,0.35646 -4.308279,0.920094 -5.779572,-0.756441 -1.471293,-1.676534 -2.9322,-4.108768 -1.566089,-6.843532 1.36611,-2.734765 7.477114,0.0093 8.038806,-0.301456 0.561692,-0.310734 -0.890281,-4.507472 1.240153,-3.408349 2.130435,1.099122 2.753102,1.833457 3.386104,2.774475 0.633003,0.941019 1.647658,3.822268 0.840046,4.909806 -0.807611,1.087539 -2.230673,2.610508 -2.017397,3.679647 z"
+         id="path3903"
+         sodipodi:nodetypes="czzzzzzzc"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="czc"
+         inkscape:original-d="m 21.4092,25.739968 c 0,0 3.087548,1.39669 3.941514,0.789016 0.853967,-0.607668 2.612898,-3.364174 2.612898,-3.364174"
+         inkscape:path-effect="#path-effect4589"
+         id="path3913"
+         d="m 21.4092,25.739968 c 0.522257,0.470815 1.172936,0.79775 1.862407,0.935768 0.689471,0.138019 1.41586,0.08675 2.079107,-0.146752 0.707611,-0.249118 1.340861,-0.705488 1.801023,-1.297959 0.460163,-0.592472 0.745623,-1.318965 0.811875,-2.066215"
+         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="cc"
+         inkscape:original-d="m 24.099355,23.46958 0.967236,0.06257"
+         inkscape:path-effect="#path-effect4152"
+         id="path3917"
+         d="m 24.099355,23.46958 0.967236,0.06257"
+         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         inkscape:connector-curvature="0"
+         inkscape:transform-center-x="-0.47733805"
+         inkscape:transform-center-y="-0.337842" />
+      <path
+         sodipodi:nodetypes="cc"
+         inkscape:original-d="m 26.591965,22.071774 -0.417904,0.814399"
+         inkscape:path-effect="#path-effect4150"
+         id="path3921"
+         d="m 26.591965,22.071774 -0.417904,0.814399"
+         style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="cc"
+         inkscape:original-d="M 19.89202,14.532322 14.717509,13.646944"
+         inkscape:path-effect="#path-effect4565"
+         id="path3927"
+         d="M 19.89202,14.532322 14.717509,13.646944"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#00ff00;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="cc"
+         inkscape:original-d="M 21.432507,13.478594 21.259693,11.747572"
+         inkscape:path-effect="#path-effect4563"
+         id="path3931"
+         d="M 21.432507,13.478594 21.259693,11.747572"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#00ff00;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#ff4500;fill-opacity:1;fill-rule:nonzero;stroke:#801c00;stroke-width:0.75374609;stroke-opacity:1"
+         id="path3174"
+         sodipodi:cx="11.770411"
+         sodipodi:cy="25.395805"
+         sodipodi:rx="3.1144807"
+         sodipodi:ry="3.1144807"
+         d="m 14.884891,25.395805 a 3.1144807,3.1144807 0 1 1 -6.2289612,0 3.1144807,3.1144807 0 1 1 6.2289612,0 z"
+         transform="matrix(1.3323364,0,0,1.3211009,-9.0712739,-10.472117)" />
+      <path
+         transform="matrix(0.64199549,0,0,0.63658158,-0.9456783,6.9118017)"
+         d="m 8.6559298,25.395805 a 3.1144807,3.1144807 0 1 1 5.3167512,2.202271"
+         sodipodi:ry="3.1144807"
+         sodipodi:rx="3.1144807"
+         sodipodi:cy="25.395805"
+         sodipodi:cx="11.770411"
+         id="path3777"
+         style="fill:#000000;fill-opacity:0.25098039;stroke:#000000;stroke-width:1.56425297;stroke-miterlimit:4;stroke-opacity:0.50196078;stroke-dasharray:none"
+         sodipodi:type="arc"
+         sodipodi:start="3.1415927"
+         sodipodi:end="7.0685835"
+         sodipodi:open="true" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#000000;stroke:#000000;stroke-width:2.16306806000000007;stroke-linecap:butt;stroke-miterlimit:4;stroke-opacity:0.50196078000000000;stroke-dasharray:none;fill-opacity:0.25098041"
+         id="path4547"
+         sodipodi:cx="11.770411"
+         sodipodi:cy="25.395805"
+         sodipodi:rx="3.1144807"
+         sodipodi:ry="3.1144807"
+         d="M 9.8960691,27.88314 A 3.1144807,3.1144807 0 0 1 11.770411,22.281325"
+         transform="matrix(0.46426804,0,0,0.4603529,2.8740322,12.373377)"
+         sodipodi:start="2.2165682"
+         sodipodi:end="4.712389"
+         sodipodi:open="true" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#da0000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 24.84375,15.375 c -0.956576,0 -1.770311,0.499722 -2.25,1.25 -0.34147,-0.117967 -0.680931,-0.21875 -1.0625,-0.21875 -1.842198,0 -3.34375,1.501552 -3.34375,3.34375 0,1.842198 1.501552,3.34375 3.34375,3.34375 1.486223,0 2.725105,-1.000759 3.15625,-2.34375 0.05453,0.0033 0.100899,0.03125 0.15625,0.03125 1.491304,0 2.71875,-1.196196 2.71875,-2.6875 0,-1.491304 -1.227446,-2.71875 -2.71875,-2.71875 z"
+         id="path4174"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4176"
+         sodipodi:cx="21.041887"
+         sodipodi:cy="19.68891"
+         sodipodi:rx="0.78179407"
+         sodipodi:ry="0.78179407"
+         d="m 21.823681,19.68891 a 0.78179407,0.78179407 0 1 1 -1.563588,0 0.78179407,0.78179407 0 1 1 1.563588,0 z"
+         transform="matrix(1.6917065,0,0,1.6917065,-9.8301721,-15.621189)"
+         inkscape:transform-center-x="-1.6337581" />
+      <path
+         inkscape:transform-center-x="-1.6337581"
+         transform="matrix(2.0897551,0,0,2.0897551,-21.327721,-21.883018)"
+         d="m 21.823681,19.68891 a 0.78179407,0.78179407 0 1 1 -1.563588,0 0.78179407,0.78179407 0 1 1 1.563588,0 z"
+         sodipodi:ry="0.78179407"
+         sodipodi:rx="0.78179407"
+         sodipodi:cy="19.68891"
+         sodipodi:cx="21.041887"
+         id="path3909"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       id="use3969"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,65.042908)"
+       id="use3971"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,96.033032)"
+       id="use3973"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,128.02121)"
+       id="use3975"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,160.00928)"
+       id="use3977"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,192.02585)"
+       id="use3979"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,224.9876)"
+       id="use3981"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,255.98993)"
+       id="use3983"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,288.00649)"
+       id="use3985"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,319.98249)"
+       id="use3987"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,352.01113)"
+       id="use3989"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,385.00137)"
+       id="use3991"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,416.0037)"
+       id="use3993"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,448.03234)"
+       id="use3995"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,480.00834)"
+       id="use3997"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,510.99859)"
+       id="use3999"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,544.01298)"
+       id="use4001"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,576.02955)"
+       id="use4003"
+       width="32"
+       height="1024" />
+    <g
+       inkscape:tile-y0="8.9897581"
+       inkscape:tile-x0="1.4506229"
+       inkscape:tile-h="23.971678"
+       inkscape:tile-w="28.229488"
+       inkscape:tile-cy="20.725597"
+       inkscape:tile-cx="15.440367"
+       id="g4179"
+       transform="translate(-0.51711622,575.0851)" />
+    <g
+       id="g3380">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         d="m 26.235062,24.313254 c -0.778595,-0.724765 -2.332336,-0.375173 -3.784659,-0.04948 -1.452323,0.325703 -3.936544,0.840705 -5.280888,-0.691172 -1.344344,-1.531877 -2.679199,-3.754248 -1.430961,-6.253046 1.248237,-2.498799 6.83196,0.0085 7.345187,-0.275445 0.513227,-0.283923 -0.813464,-4.11855 1.133148,-3.114264 1.946613,1.004286 2.515553,1.675259 3.093938,2.535083 0.578385,0.859824 1.505491,3.492468 0.767563,4.486169 -0.737927,0.993702 -2.038202,2.385263 -1.843328,3.362153 z"
+         id="path4185"
+         sodipodi:nodetypes="czzzzzzzc"
+         transform="translate(-0.51711622,575.0851)" />
+      <path
+         transform="translate(-0.51711622,-0.9149)"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccc"
+         inkscape:original-d="m 16.979909,595.41868 7.153075,1.32299 -1.472413,2.86364"
+         inkscape:path-effect="#path-effect4211"
+         id="path4209"
+         d="m 16.979909,595.41868 7.153075,1.32299 -1.472413,2.86364"
+         style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+      <path
+         transform="translate(-0.51711622,-0.9149)"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccc"
+         inkscape:original-d="m 25.847467,591.55811 -0.189142,4.05273 2.169688,-0.0914"
+         inkscape:path-effect="#path-effect4215"
+         id="path4213"
+         d="m 25.847467,591.55811 -0.189142,4.05273 2.169688,-0.0914"
+         style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+      <path
+         sodipodi:nodetypes="ssszs"
+         inkscape:connector-curvature="0"
+         id="path4595"
+         d="m 28.754404,601.29041 c 0.32371,1.08327 0.0071,-1.99449 2.511331,-0.28986 1.584616,1.07865 -0.383222,5.88363 -4.186792,4.20966 -6.555749,-2.88521 -2.700253,-1.29635 -0.335916,-2.91628 2.364337,-1.61993 1.010459,-4.35301 2.011377,-1.00352 z"
+         style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         sodipodi:nodetypes="cc"
+         inkscape:connector-curvature="0"
+         id="path4604"
+         d="m 28.915708,601.27945 c 0,0 -2.297105,2.38338 0.441131,2.03128"
+         style="fill:none;stroke:#6b0000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;display:inline" />
+    </g>
+    <g
+       id="g3387"
+       transform="translate(0,-32)">
+      <path
+         transform="translate(-0.51711622,575.0851)"
+         sodipodi:nodetypes="czzzzzzzc"
+         id="path3389"
+         d="m 26.235062,24.313254 c -0.778595,-0.724765 -2.332336,-0.375173 -3.784659,-0.04948 -1.452323,0.325703 -3.936544,0.840705 -5.280888,-0.691172 -1.344344,-1.531877 -2.679199,-3.754248 -1.430961,-6.253046 1.248237,-2.498799 6.83196,0.0085 7.345187,-0.275445 0.513227,-0.283923 -0.813464,-4.11855 1.133148,-3.114264 1.946613,1.004286 2.515553,1.675259 3.093938,2.535083 0.578385,0.859824 1.505491,3.492468 0.767563,4.486169 -0.737927,0.993702 -2.038202,2.385263 -1.843328,3.362153 z"
+         style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 16.979909,595.41868 7.153075,1.32299 -1.472413,2.86364"
+         id="path3391"
+         inkscape:path-effect="#path-effect4211"
+         inkscape:original-d="m 16.979909,595.41868 7.153075,1.32299 -1.472413,2.86364"
+         sodipodi:nodetypes="ccc"
+         inkscape:connector-curvature="0"
+         transform="translate(-0.51711622,-0.9149)" />
+      <path
+         style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 25.847467,591.55811 -0.189142,4.05273 2.169688,-0.0914"
+         id="path3393"
+         inkscape:path-effect="#path-effect4215"
+         inkscape:original-d="m 25.847467,591.55811 -0.189142,4.05273 2.169688,-0.0914"
+         sodipodi:nodetypes="ccc"
+         inkscape:connector-curvature="0"
+         transform="translate(-0.51711622,-0.9149)" />
+      <path
+         style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 28.754404,601.29041 c 0.32371,1.08327 2.105503,2.07741 1.320043,3.60167 -0.637967,1.23803 -1.568558,0.94614 -2.995508,0.31813 -6.555746,-2.88522 -2.700253,-1.29635 -0.335916,-2.91628 2.364337,-1.61993 1.010459,-4.35301 2.011381,-1.00352 z"
+         id="path3395"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ssszs" />
+    </g>
+    <g
+       transform="translate(0,-64.967553)"
+       id="g3399">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         d="m 26.235062,24.313254 c -0.778595,-0.724765 -2.332336,-0.375173 -3.784659,-0.04948 -1.452323,0.325703 -3.936544,0.840705 -5.280888,-0.691172 -1.344344,-1.531877 -2.679199,-3.754248 -1.430961,-6.253046 1.248237,-2.498799 6.83196,0.0085 7.345187,-0.275445 0.513227,-0.283923 -0.813464,-4.11855 1.133148,-3.114264 1.946613,1.004286 2.515553,1.675259 3.093938,2.535083 0.578385,0.859824 1.505491,3.492468 0.767563,4.486169 -0.737927,0.993702 -2.038202,2.385263 -1.843328,3.362153 z"
+         id="path3401"
+         sodipodi:nodetypes="czzzzzzzc"
+         transform="translate(-0.51711622,575.0851)" />
+      <path
+         transform="translate(-0.51711622,-0.9149)"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccc"
+         inkscape:original-d="m 16.979909,595.41868 7.153075,1.32299 -1.472413,2.86364"
+         inkscape:path-effect="#path-effect4211"
+         id="path3403"
+         d="m 16.979909,595.41868 7.153075,1.32299 -1.472413,2.86364"
+         style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+      <path
+         transform="translate(-0.51711622,-0.9149)"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccc"
+         inkscape:original-d="m 25.847467,591.55811 -0.189142,4.05273 2.169688,-0.0914"
+         inkscape:path-effect="#path-effect4215"
+         id="path3405"
+         d="m 25.847467,591.55811 -0.189142,4.05273 2.169688,-0.0914"
+         style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+      <path
+         sodipodi:nodetypes="ssszs"
+         inkscape:connector-curvature="0"
+         id="path3407"
+         d="m 28.754404,601.29041 c 0.32371,1.08327 -0.570691,1.78281 -1.539035,2.25154 -1.230614,0.59569 -0.693623,1.26071 -2.439575,0.39756 -2.91493,-1.44107 -0.397104,-0.0257 1.967233,-1.64558 2.364337,-1.61993 1.010459,-4.35301 2.011377,-1.00352 z"
+         style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/Zombi.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,2560 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="Zombi.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="Zombi.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1"
+   style="display:inline">
+  <title
+     id="title68011">zombie</title>
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient3655">
+      <stop
+         id="stop3657"
+         offset="0"
+         style="stop-color:#ff003a;stop-opacity:1;" />
+      <stop
+         id="stop3661"
+         offset="1"
+         style="stop-color:#290003;stop-opacity:1;" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter5117"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.23423133"
+         id="feGaussianBlur5119" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3655"
+       id="linearGradient5000"
+       gradientUnits="userSpaceOnUse"
+       x1="382.75586"
+       y1="46.715397"
+       x2="382.81461"
+       y2="46.428913" />
+    <filter
+       inkscape:collect="always"
+       id="filter4652">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4654" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4656">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4658" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4660">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4662" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4664">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4666" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4668">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4670" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4672">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4674" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4676">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4678" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4680">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4682" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4684">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4686" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4688">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4690" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4692">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4694" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4696">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4698" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4700">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4702" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4704">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4706" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4708">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4710" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4712">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4714" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4716">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4718" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4720">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3651332"
+         id="feGaussianBlur4722" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4329">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.29565278"
+         id="feGaussianBlur4331" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4543"
+       x="-0.12840381"
+       width="1.2568076"
+       y="-0.22701211"
+       height="1.4540242">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.83524877"
+         id="feGaussianBlur4545" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4562">
+      <path
+         sodipodi:type="arc"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         id="path4564"
+         sodipodi:cx="18.911203"
+         sodipodi:cy="22.87653"
+         sodipodi:rx="7.8053856"
+         sodipodi:ry="7.8053856"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-20.378287)"
+         sodipodi:start="3.0194196"
+         sodipodi:end="6.4053584"
+         sodipodi:open="true" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4567">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-22.378287)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4569"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4572">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-24.378288)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4574"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155837;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4577">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-26.378289)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4579"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4582">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-28.378288)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4584"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155837;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4587">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-30.37828)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4589"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4592">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-32.37829)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4594"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155837;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4597">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-34.37829)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4599"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4602">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-36.37828)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4604"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4607">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-38.37829)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4609"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4612">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-40.37829)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4614"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4617">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-42.37829)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4619"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4622">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-44.37829)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4624"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4627">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-46.37829)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4629"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4632">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-48.37829)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4634"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4637">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-50.37829)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4639"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155837;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4647">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-54.3783)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4649"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4652">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="6.4053584"
+         sodipodi:start="3.0194196"
+         transform="matrix(1.2623037,0,0,2.5121544,37.401675,-56.3783)"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         sodipodi:ry="7.8053856"
+         sodipodi:rx="7.8053856"
+         sodipodi:cy="22.87653"
+         sodipodi:cx="18.911203"
+         id="path4654"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.56155843;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4657">
+      <path
+         sodipodi:type="arc"
+         style="fill:#ffaf0c;fill-opacity:1;stroke:#ff0e0e;stroke-width:0.57477331;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.57913669;stroke-dasharray:none;stroke-dashoffset:0"
+         id="path4659"
+         sodipodi:cx="18.911203"
+         sodipodi:cy="22.87653"
+         sodipodi:rx="7.8053856"
+         sodipodi:ry="7.8053856"
+         d="m 11.163998,23.827767 a 7.8053856,7.8053856 0 1 1 15.494411,0"
+         transform="matrix(1.2623037,0,0,2.3979655,37.401675,-49.65742)"
+         sodipodi:start="3.0194196"
+         sodipodi:end="6.4053584"
+         sodipodi:open="true" />
+    </clipPath>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="8.4209989"
+     inkscape:cx="18.082573"
+     inkscape:cy="1007.2999"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="false"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>zombie</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat zombie</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z" />
+    <g
+       id="g3695"
+       transform="translate(-18.506326,5.0267183)">
+      <text
+         id="text4875"
+         y="47.356853"
+         x="61.680714"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="47.356853"
+           x="61.680714"
+           id="tspan4877"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">0</tspan></text>
+      <text
+         id="text4879"
+         y="79.189247"
+         x="61.469776"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="79.189247"
+           x="61.469776"
+           id="tspan4881"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">1</tspan></text>
+      <text
+         id="text4883"
+         y="111.34976"
+         x="61.665089"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="111.34976"
+           x="61.665089"
+           id="tspan4885"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">2</tspan></text>
+      <text
+         id="text4887"
+         y="143.34619"
+         x="61.602589"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="143.34619"
+           x="61.602589"
+           id="tspan4889"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">3</tspan></text>
+      <text
+         id="text4891"
+         y="175.1786"
+         x="61.110401"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="175.1786"
+           x="61.110401"
+           id="tspan4893"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">4</tspan></text>
+      <text
+         id="text4895"
+         y="207.17506"
+         x="61.469776"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="207.17506"
+           x="61.469776"
+           id="tspan4897"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">5</tspan></text>
+      <text
+         id="text4899"
+         y="239.33557"
+         x="61.602589"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="239.33557"
+           x="61.602589"
+           id="tspan4901"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">6</tspan></text>
+      <text
+         id="text4903"
+         y="271.16794"
+         x="61.727589"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="271.16794"
+           x="61.727589"
+           id="tspan4905"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">7</tspan></text>
+      <text
+         id="text4907"
+         y="303.32846"
+         x="61.516651"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="303.32846"
+           x="61.516651"
+           id="tspan4909"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">8</tspan></text>
+      <text
+         id="text4911"
+         y="335.32489"
+         x="61.618214"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="335.32489"
+           x="61.618214"
+           id="tspan4913"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">9</tspan></text>
+      <text
+         id="text4915"
+         y="367.32135"
+         x="52.774464"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="367.32135"
+           x="52.774464"
+           id="tspan4917"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">10</tspan></text>
+      <text
+         id="text4919"
+         y="399.15372"
+         x="53.438526"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="399.15372"
+           x="53.438526"
+           id="tspan4921"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">11</tspan></text>
+      <text
+         id="text4923"
+         y="431.31427"
+         x="52.758839"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="431.31427"
+           x="52.758839"
+           id="tspan4925"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">12</tspan></text>
+      <text
+         id="text4927"
+         y="463.3107"
+         x="52.696339"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="463.3107"
+           x="52.696339"
+           id="tspan4929"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">13</tspan></text>
+      <text
+         id="text4931"
+         y="495.14307"
+         x="52.204151"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="495.14307"
+           x="52.204151"
+           id="tspan4933"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">14</tspan></text>
+      <text
+         id="text4935"
+         y="527.13953"
+         x="52.563526"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="527.13953"
+           x="52.563526"
+           id="tspan4937"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">15</tspan></text>
+      <text
+         id="text4939"
+         y="559.29999"
+         x="52.696339"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="559.29999"
+           x="52.696339"
+           id="tspan4941"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">16</tspan></text>
+      <text
+         id="text4943"
+         y="591.13239"
+         x="52.821339"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="591.13239"
+           x="52.821339"
+           id="tspan4945"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">17</tspan></text>
+      <text
+         id="text4947"
+         y="623.29291"
+         x="52.610401"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           y="623.29291"
+           x="52.610401"
+           id="tspan4949"
+           sodipodi:role="line"
+           style="font-size:16px;line-height:1">18</tspan></text>
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter5117)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.64197142,-0.53594998,4.3365172)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="mouth"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <g
+       style="display:inline"
+       id="g3857"
+       inkscape:tile-cx="382.59437"
+       inkscape:tile-cy="17.097623"
+       inkscape:tile-w="7.0028247"
+       inkscape:tile-h="6.4429857"
+       inkscape:tile-x0="379.09295"
+       inkscape:tile-y0="13.87613"
+       transform="translate(-358.99967,-20.577313)">
+      <path
+         transform="matrix(0.50953002,0.12172053,-0.38792491,0.56241023,193.58549,-9.1009487)"
+         d="m 387.26722,14.362856 c 0,3.096678 -2.41083,5.607031 -5.38474,5.607031 -2.97391,0 -5.38475,-2.510353 -5.38475,-5.607031 0,-3.096678 2.41084,-5.6070314 5.38475,-5.6070314 2.97391,0 5.38474,2.5103534 5.38474,5.6070314 z"
+         sodipodi:ry="5.6070313"
+         sodipodi:rx="5.3847427"
+         sodipodi:cy="14.362856"
+         sodipodi:cx="381.88248"
+         id="path3061"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="czz"
+         id="path2870"
+         d="m 382.5398,48.211699 c -4.31896,1.733886 -0.94668,-2.783724 0.0307,-3.357319 0.96151,-0.564301 4.28831,1.623434 -0.0307,3.357319 z"
+         style="fill:url(#linearGradient5000);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       id="use5031"
+       width="32"
+       height="1024"
+       transform="translate(0,32)" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,64.97064)"
+       id="use5033"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,95.965023)"
+       id="use5035"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,127.95637)"
+       id="use5037"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,159.96514)"
+       id="use5039"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,191.98006)"
+       id="use5041"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,224.95692)"
+       id="use5043"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,255.96876)"
+       id="use5045"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,287.97754)"
+       id="use5047"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,320.0038)"
+       id="use5049"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,447.97508)"
+       id="use5057"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,479.96457)"
+       id="use5059"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,511.06264)"
+       id="use5061"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,543.94312)"
+       id="use5063"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(0,575.94051)"
+       id="use5065"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="mouth savage"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       transform="translate(-3.1843205,-1.0902392)"
+       style="fill:#ffffff;fill-opacity:1;stroke:#a71878;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+       d="m 23.274677,24.928701 c -1.893367,0.290101 -2.928523,1.054571 -3.032092,2.217363 -0.103569,1.162792 1.977089,3.764001 3.864404,3.286761 1.887316,-0.477241 3.846557,-1.544513 4.691903,-1.889374 0.836208,-0.341134 1.50474,-1.725877 1.491294,-2.422744 -0.01344,-0.696867 -0.543278,-1.40035 -1.297948,-1.129436 -0.754669,0.270914 -3.824195,-0.35267 -5.717561,-0.06257 z"
+       id="path3977"
+       sodipodi:nodetypes="czzzzzz" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 17.495443,26.320072 0.978333,-0.683956 0.717154,2.342011 1.455096,-2.432089 4.084661,-0.374167 0.689438,1.451631 0.648167,-1.555766 0.574772,0.347524"
+       id="path4003"
+       sodipodi:nodetypes="cccccccc" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="head"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#5757d7;fill-opacity:1;stroke:none;display:inline;filter:url(#filter4543)"
+       id="path4111"
+       sodipodi:cx="18.911203"
+       sodipodi:cy="22.87653"
+       sodipodi:rx="7.8053856"
+       sodipodi:ry="7.8053856"
+       d="m 11.173289,23.900604 a 7.8053856,7.8053856 0 1 1 15.48062,-0.03688"
+       transform="matrix(1.2623037,0,0,1.2623037,-5.02995,-6.074951)"
+       sodipodi:start="3.0100123"
+       sodipodi:end="6.4100009"
+       inkscape:tile-cx="18.841227"
+       inkscape:tile-cy="18.475664"
+       inkscape:tile-w="19.706545"
+       inkscape:tile-h="11.054528"
+       inkscape:tile-x0="8.9879545"
+       inkscape:tile-y0="12.9484"
+       sodipodi:open="true" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       id="use4273"
+       width="32"
+       height="1024"
+       transform="translate(0,32)" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,65.014785)"
+       id="use4275"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,96.013594)"
+       id="use4277"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,128.00644)"
+       id="use4279"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,160.02716)"
+       id="use4281"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,192.03196)"
+       id="use4283"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,225.01891)"
+       id="use4285"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,256.01762)"
+       id="use4287"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,288.01048)"
+       id="use4289"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,320.03129)"
+       id="use4291"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,352.02415)"
+       id="use4293"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,384.99492)"
+       id="use4295"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,416.00973)"
+       id="use4297"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,447.98649)"
+       id="use4299"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,480.0073)"
+       id="use4301"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,510.99432)"
+       id="use4303"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,543.99303)"
+       id="use4305"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path4111"
+       xlink:href="#path4111"
+       transform="translate(0,576.01383)"
+       id="use4307"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="crestfallen"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <g
+       clip-path="url(#clipPath4562)"
+       transform="translate(-42.431625,-16.547815)"
+       id="g4759"
+       style="display:inline;filter:url(#filter4329)">
+      <path
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         id="path4053" />
+      <path
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         id="path4055" />
+      <path
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         id="path4057" />
+      <g
+         id="g4739"
+         transform="translate(-8,0)">
+        <path
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z"
+           id="path4097"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        <text
+           id="text4099"
+           y="16.211838"
+           x="48.242844"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           xml:space="preserve"><tspan
+             y="16.211838"
+             x="48.242844"
+             id="tspan4101"
+             sodipodi:role="line"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         id="path4687" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4720)"
+       id="g4823"
+       transform="translate(-42.431625,17.452185)"
+       clip-path="url(#clipPath4567)">
+      <path
+         id="path4825"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path4827"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path4829"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g4831">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path4833"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text4835"><tspan
+             sodipodi:role="line"
+             id="tspan4837"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path4839"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4716)"
+       id="g4851"
+       transform="translate(-42.431625,52.460926)"
+       clip-path="url(#clipPath4572)">
+      <path
+         id="path4853"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path4855"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path4857"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g4859">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path4861"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text4863"><tspan
+             sodipodi:role="line"
+             id="tspan4865"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path4867"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4712)"
+       id="g4955"
+       transform="translate(-42.431625,85.458522)"
+       clip-path="url(#clipPath4577)">
+      <path
+         id="path4957"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path4959"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path4961"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g4963">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path4965"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text4967"><tspan
+             sodipodi:role="line"
+             id="tspan4969"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path4971"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4708)"
+       id="g4983"
+       transform="translate(-42.431625,119.44742)"
+       clip-path="url(#clipPath4582)">
+      <path
+         id="path4985"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path4987"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path4989"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g4991">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path4993"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text4995"><tspan
+             sodipodi:role="line"
+             id="tspan4997"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path4999"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4704)"
+       id="g5011"
+       transform="translate(-42.431625,153.46471)"
+       clip-path="url(#clipPath4587)">
+      <path
+         id="path5013"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5015"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5017"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5019">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5021"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5023"><tspan
+             sodipodi:role="line"
+             id="tspan5025"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5027"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4700)"
+       id="g5039"
+       transform="translate(-42.431625,187.46499)"
+       clip-path="url(#clipPath4592)">
+      <path
+         id="path5041"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5043"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5045"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5047">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5049"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5051"><tspan
+             sodipodi:role="line"
+             id="tspan5053"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5055"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4696)"
+       id="g5067"
+       transform="translate(-42.431625,222.46252)"
+       clip-path="url(#clipPath4597)">
+      <path
+         id="path5069"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5071"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5073"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5075">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5077"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5079"><tspan
+             sodipodi:role="line"
+             id="tspan5081"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5083"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4692)"
+       id="g5095"
+       transform="translate(-42.431625,255.47137)"
+       clip-path="url(#clipPath4602)">
+      <path
+         id="path5097"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5099"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5101"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5103">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5105"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5107"><tspan
+             sodipodi:role="line"
+             id="tspan5109"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5111"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4688)"
+       id="g5123"
+       transform="translate(-42.431625,289.46033)"
+       clip-path="url(#clipPath4607)">
+      <path
+         id="path5125"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5127"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5129"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5131">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5133"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5135"><tspan
+             sodipodi:role="line"
+             id="tspan5137"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5139"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4684)"
+       id="g5151"
+       transform="translate(-42.431625,323.47763)"
+       clip-path="url(#clipPath4612)">
+      <path
+         id="path5153"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5155"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5157"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5159">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5161"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5163"><tspan
+             sodipodi:role="line"
+             id="tspan5165"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5167"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4680)"
+       id="g5179"
+       transform="translate(-42.431625,357.46659)"
+       clip-path="url(#clipPath4617)">
+      <path
+         id="path5181"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5183"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5185"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5187">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5189"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5191"><tspan
+             sodipodi:role="line"
+             id="tspan5193"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5195"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4676)"
+       id="g5207"
+       transform="translate(-42.431625,392.44711)"
+       clip-path="url(#clipPath4622)">
+      <path
+         id="path5209"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5211"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5213"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5215">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5217"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5219"><tspan
+             sodipodi:role="line"
+             id="tspan5221"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5223"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4672)"
+       id="g5235"
+       transform="translate(-42.431625,425.45595)"
+       clip-path="url(#clipPath4627)">
+      <path
+         id="path5237"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5239"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5241"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5243">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5245"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5247"><tspan
+             sodipodi:role="line"
+             id="tspan5249"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5251"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4668)"
+       id="g5267"
+       transform="translate(-42.431625,459.44482)"
+       clip-path="url(#clipPath4632)">
+      <path
+         id="path5269"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5271"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5273"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5275">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5277"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5279"><tspan
+             sodipodi:role="line"
+             id="tspan5281"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5283"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4664)"
+       id="g5295"
+       transform="translate(-42.431625,493.45085)"
+       clip-path="url(#clipPath4637)">
+      <path
+         id="path5297"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5299"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5301"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5303">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5305"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5307"><tspan
+             sodipodi:role="line"
+             id="tspan5309"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5311"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4660)"
+       id="g5323"
+       transform="translate(-42.431625,526.45964)"
+       clip-path="url(#clipPath4657)">
+      <path
+         id="path5325"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5327"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5329"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5331">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5333"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5335"><tspan
+             sodipodi:role="line"
+             id="tspan5337"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5339"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4656)"
+       id="g5351"
+       transform="translate(-42.431625,561.44015)"
+       clip-path="url(#clipPath4647)">
+      <path
+         id="path5353"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5355"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5357"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5359">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5361"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5363"><tspan
+             sodipodi:role="line"
+             id="tspan5365"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5367"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       style="display:inline;filter:url(#filter4652)"
+       id="g5379"
+       transform="translate(-42.431625,595.45747)"
+       clip-path="url(#clipPath4652)">
+      <path
+         id="path5381"
+         d="m 58.9375,-25.28125 c -0.360687,0.02193 -0.707748,0.23249 -0.875,0.71875 -0.104821,0.275629 -0.19124,0.5567 -0.25,0.84375 -0.06493,0.325328 -0.0687,0.671837 -0.0625,1 0.0057,0.152675 0.0054,0.315738 0,0.46875 -0.01016,0.160234 -0.02935,0.308478 -0.03125,0.46875 0.0016,0.204485 0.03506,0.392394 0.0625,0.59375 0.02357,0.147931 0.04785,0.319512 0.0625,0.46875 0.02577,0.314602 0.109455,0.599163 0.25,0.875 0.09346,0.177721 0.242086,0.327554 0.34375,0.5 -0.01339,0.01972 -0.0607,0.14965 -0.0625,0.15625 -0.06583,0.225411 -0.07584,0.457512 -0.0625,0.6875 0.0075,0.10219 0.0043,0.209654 0,0.3125 -0.01012,0.04267 -0.004,0.0054 -0.03125,0.0625 -0.05959,0.11325 -0.10141,0.228083 -0.15625,0.34375 -0.121164,0.269595 -0.16535,0.556302 -0.15625,0.84375 0.0131,0.188389 0.0685,0.344956 0.09375,0.53125 0.01918,0.160214 0.04289,0.339849 0.0625,0.5 0.02748,0.25324 0.09168,0.486376 0.1875,0.71875 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419873 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.1603085 -0.0416,0.3084043 -0.0625,0.46875 -0.01945,0.1148359 -0.02967,0.2310646 -0.0625,0.34375 -0.01821,0.025628 6e-5,-0.038774 -0.03125,0 -0.05842,0.080892 -0.10189,0.166415 -0.15625,0.25 -0.06583,0.089692 -0.10604,0.182528 -0.15625,0.28125 -0.04109,0.095082 -0.08869,0.215669 -0.125,0.3125 -0.09025,0.2149282 -0.11013,0.4275103 -0.125,0.65625 -0.0021,0.3164701 0.108793,0.6040342 0.25,0.875 0.07134,0.1239452 0.131,0.2433586 0.1875,0.375 0.04446,0.1074834 0.06193,0.2317611 0.09375,0.34375 0.05458,0.1883224 0.12697,0.3762031 0.1875,0.5625 0.05878,0.1885303 0.11675,0.3786078 0.1875,0.5625 0.04089,0.085634 0.04949,0.156508 0.0625,0.25 0.02084,0.1964952 0.04856,0.3964367 0.0625,0.59375 0.02026,0.1830642 0.0091,0.3781169 0,0.5625 -0.01501,0.2209528 -0.03205,0.4353934 -0.03125,0.65625 0.0044,0.1625326 -0.003,0.3384647 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.143169 -0.0625,0.21875 -0.05752,0.1069605 -0.12351,0.2092234 -0.1875,0.3125 -0.09474,0.1404819 -0.20254,0.2878458 -0.28125,0.4375 -0.08381,0.16198752 -0.11391,0.32475161 -0.15625,0.5 -0.03447,0.1404433 -0.07122,0.2950886 -0.09375,0.4375 -0.03155,0.1986523 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.1750991 0.04284,0.3571072 0.0625,0.53125 0.01595,0.2336365 0.06319,0.4635653 0.125,0.6875 0.05918,0.2259767 0.15975,0.412849 0.25,0.625 -0.0023,0.039315 0.0038,0.10119 0,0.15625 C 58.20734,2.5418219 58.19229,2.6808222 58.15625,2.8125 58.121214,2.9384497 58.05334,3.0681465 58,3.1875 57.902733,3.4122141 57.82824,3.6436367 57.75,3.875 57.662113,4.1328331 57.59005,4.3875917 57.5625,4.65625 57.53655,4.9576536 57.633573,5.2310642 57.75,5.5 c 0.05938,0.1293937 0.10705,0.271994 0.15625,0.40625 0.03058,0.072221 0.0599,0.140704 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.2733593 -0.0625,0.40625 -0.04081,0.2431126 -0.07302,0.4737604 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -7.27e-4,0.01128 0.04379,0.06974 0.0625,0.09375 0.03814,0.174455 0.08827,0.33514 0.15625,0.5 0.06564,0.155275 0.16251,0.309332 0.21875,0.46875 0.02591,0.08777 0.02285,0.1587 0.03125,0.25 0.01145,0.234045 0.06738,0.462622 0.125,0.6875 0.05209,0.203185 0.14219,0.419913 0.1875,0.625 0.02074,0.109907 0.0075,0.200328 0,0.3125 -0.0181,0.151944 -0.03742,0.317597 -0.0625,0.46875 -0.02886,0.171835 -0.0682,0.327756 -0.09375,0.5 -0.02467,0.156536 -0.03896,0.31207 -0.0625,0.46875 -0.01862,0.136427 -0.04022,0.270257 -0.0625,0.40625 -0.01673,0.113574 -0.03733,0.23149 -0.0625,0.34375 -0.034,0.138779 -0.06128,0.298362 -0.09375,0.4375 -0.03918,0.178127 -0.06895,0.351108 -0.09375,0.53125 -0.0214,0.160309 -0.0416,0.308404 -0.0625,0.46875 -0.01945,0.114836 -0.02967,0.231065 -0.0625,0.34375 -0.01821,0.02567 6e-5,-0.03877 -0.03125,0 -0.05842,0.08089 -0.10189,0.16641 -0.15625,0.25 -0.06583,0.08969 -0.10604,0.18253 -0.15625,0.28125 -0.04109,0.09508 -0.08869,0.21567 -0.125,0.3125 -0.09025,0.214928 -0.11013,0.42751 -0.125,0.65625 -0.0021,0.31647 0.108793,0.604034 0.25,0.875 0.07134,0.123945 0.131,0.243358 0.1875,0.375 0.04446,0.107483 0.06193,0.231761 0.09375,0.34375 0.05458,0.188322 0.12697,0.376203 0.1875,0.5625 0.05878,0.18853 0.11675,0.378608 0.1875,0.5625 0.04089,0.08563 0.04949,0.15651 0.0625,0.25 0.02084,0.196495 0.04856,0.396438 0.0625,0.59375 0.02026,0.183064 0.0091,0.378117 0,0.5625 -0.01501,0.220953 -0.03205,0.435393 -0.03125,0.65625 0.0044,0.162532 -0.003,0.338465 -0.03125,0.5 -0.0135,0.08447 -0.02311,0.14317 -0.0625,0.21875 -0.05752,0.106961 -0.12351,0.209224 -0.1875,0.3125 -0.09474,0.140482 -0.20254,0.287846 -0.28125,0.4375 -0.08381,0.161988 -0.11391,0.324752 -0.15625,0.5 -0.03447,0.140443 -0.07122,0.295088 -0.09375,0.4375 -0.03155,0.198652 -0.03625,0.394211 -0.03125,0.59375 0.0125,0.175099 0.04284,0.357107 0.0625,0.53125 0.01595,0.233636 0.06319,0.463565 0.125,0.6875 0.05918,0.225976 0.15975,0.412849 0.25,0.625 -0.0023,0.03931 0.0038,0.10119 0,0.15625 -0.01141,0.135572 -0.02646,0.274572 -0.0625,0.40625 -0.03504,0.125949 -0.10291,0.255647 -0.15625,0.375 -0.09727,0.224714 -0.17176,0.456137 -0.25,0.6875 -0.08789,0.257833 -0.15995,0.512591 -0.1875,0.78125 -0.02595,0.301403 0.07107,0.574814 0.1875,0.84375 0.05938,0.129394 0.10705,0.271994 0.15625,0.40625 0.03058,0.07222 0.0599,0.1407 0.0625,0.21875 1.5e-4,0.133846 -0.04379,0.273359 -0.0625,0.40625 -0.04081,0.243112 -0.07302,0.473761 -0.09375,0.71875 -0.02479,0.265688 0.0078,0.549523 0.03125,0.8125 0.0224,0.221054 0.01036,0.433629 0,0.65625 -0.01842,0.302989 -0.04883,0.603151 -0.0625,0.90625 -0.02085,0.336716 0.02922,0.65118 0.125,0.96875 0.07532,0.236987 0.210558,0.462396 0.3125,0.6875 0.07986,0.183845 0.14346,0.376653 0.21875,0.5625 0.06199,0.157427 0.14763,0.315662 0.21875,0.46875 0.02492,0.06171 0.02505,0.12136 0.03125,0.1875 0.01177,0.169144 0.0073,0.33016 0,0.5 -0.0093,0.191291 -0.02757,0.404396 -0.0625,0.59375 -0.04928,0.220995 -0.12059,0.433081 -0.15625,0.65625 -0.0387,0.256399 -0.04205,0.523531 -0.0625,0.78125 -0.016,0.212044 -0.03977,0.413348 -0.0625,0.625 -0.01654,0.171215 -0.03415,0.33 -0.0625,0.5 -0.02936,0.168052 -0.06019,0.36385 -0.09375,0.53125 -0.03149,0.167464 -0.06108,0.332728 -0.09375,0.5 -0.0315,0.173066 -0.08567,0.328272 -0.125,0.5 -0.05393,0.212727 -0.08188,0.441487 -0.125,0.65625 -0.04565,0.214202 -0.07465,0.407914 -0.09375,0.625 -0.0176,0.218992 -0.01249,0.43823 0,0.65625 0.0093,0.176602 0.02825,0.359086 0.0625,0.53125 0.01942,0.103673 0.04761,0.207974 0.0625,0.3125 0.01381,0.110365 0.02106,0.232823 0.03125,0.34375 0.0041,0.06116 0.0014,0.12609 0,0.1875 -0.0063,0.127852 -0.0056,0.247543 0,0.375 0.0044,0.181912 0.04771,0.358346 0.09375,0.53125 0.01968,0.08908 0.03996,0.16174 0.0625,0.25 0.0043,0.0163 0.0314,0.04549 0.03125,0.0625 -0.0046,0.07151 -0.02535,0.14728 -0.03125,0.21875 -0.01858,0.1713 -0.01866,0.330365 0,0.5 0.01808,0.13512 0.0565,0.275993 0.09375,0.40625 0.0064,0.01939 0.02605,0.04273 0.03125,0.0625 0.34438,1.300069 2.188129,0.737569 1.84375,-0.5625 C 60.02268,60.81161 60.0097,60.7818 60,60.75 c -0.01056,-0.03647 -0.02215,-0.08901 -0.03125,-0.125 -0.0013,-0.0116 -0.0067,-0.06443 0,-0.09375 C 59.98028,60.389841 60.004,60.235364 60,60.09375 59.99319,59.933268 59.97993,59.779279 59.9375,59.625 59.91261,59.53002 59.89742,59.43944 59.875,59.34375 c -0.0138,-0.05019 -0.0528,-0.08897 -0.0625,-0.125 -0.0052,-0.08242 0.02905,-0.16726 0.03125,-0.25 0.003,-0.139738 -0.01766,-0.298794 -0.03125,-0.4375 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,55.304649 60.03176,55.164296 60.0625,55 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 -0.07228,-0.157711 -0.15769,-0.305911 -0.21875,-0.46875 -0.0427,-0.101754 -0.03475,-0.201993 -0.03125,-0.3125 0.01292,-0.30243 0.04606,-0.603889 0.0625,-0.90625 0.01357,-0.308278 -8.7e-4,-0.631432 -0.03125,-0.9375 -0.01386,-0.155009 -0.01357,-0.311929 0,-0.46875 0.01575,-0.208257 0.03081,-0.418172 0.0625,-0.625 0.0357,-0.258627 0.07541,-0.521303 0.0625,-0.78125 C 59.85668,43.665072 59.81973,43.408858 59.71875,43.15625 59.65608,42.997644 59.58042,42.837517 59.5,42.6875 c 0.01375,-0.08953 0.0459,-0.16409 0.0625,-0.25 0.0571,-0.171513 0.11722,-0.364271 0.1875,-0.53125 0.09601,-0.214986 0.19071,-0.428586 0.25,-0.65625 0.07091,-0.26766 0.1089,-0.537261 0.125,-0.8125 0.01325,-0.348708 0.01534,-0.680164 -0.125,-1 -0.06048,-0.134335 -0.12765,-0.271774 -0.1875,-0.40625 -0.04142,-0.119796 -0.04764,-0.249285 -0.0625,-0.375 -0.01416,-0.125473 -0.04341,-0.250404 -0.0625,-0.375 -0.0071,-0.07728 0.02275,-0.17277 0.03125,-0.25 0.0138,-0.09013 0.0094,-0.16116 0.03125,-0.25 0.0072,-0.02967 0.02995,-0.04236 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.211899 0.1875,-0.3125 0.09719,-0.156917 0.19708,-0.304626 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.517012 0.0625,-0.78125 -9e-4,-0.18644 -0.0129,-0.375973 0,-0.5625 0.01277,-0.26105 0.0253,-0.521937 0,-0.78125 C 60.54515,33.755194 60.5318,33.493021 60.5,33.25 60.465334,33.020482 60.43356,32.807173 60.34375,32.59375 60.284777,32.440588 60.20487,32.282183 60.15625,32.125 60.102879,31.960729 60.04833,31.790988 60,31.625 c -0.05398,-0.19002 -0.10871,-0.381609 -0.1875,-0.5625 -0.07534,-0.173684 -0.15618,-0.335887 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.04221 0,-0.09375 -0.0085,0.01411 0.02297,-0.01605 0.03125,-0.03125 -4.9e-5,-0.0016 0.0089,-0.052 0,-0.03125 0.0086,-0.01289 0.02481,-0.02389 0.03125,-0.03125 0.04705,-0.07319 0.1068,-0.11589 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.423288 0.3125,-0.65625 0.04388,-0.186292 0.07055,-0.373168 0.09375,-0.5625 0.0196,-0.155415 0.01254,-0.31327 0.03125,-0.46875 0.01603,-0.121063 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 -0.0068,0.02483 -0.01905,0.03957 -0.03125,0.0625 -0.01566,-0.04573 -0.01615,-0.107517 -0.03125,-0.15625 -7.16e-4,-0.0801 -0.02345,-0.170438 -0.03125,-0.25 -0.01437,-0.136763 -0.01183,-0.270306 -0.03125,-0.40625 -0.01998,-0.138092 -0.03435,-0.269711 -0.0625,-0.40625 -0.01739,-0.08726 -0.0556,-0.16076 -0.0625,-0.25 -0.0077,-0.125868 -0.0086,-0.248456 0,-0.375 0.01197,-0.144809 0.03145,-0.294735 0.0625,-0.4375 0.03968,-0.197924 0.07516,-0.397741 0.125,-0.59375 0.04368,-0.191945 0.08999,-0.400339 0.125,-0.59375 C 60.0007,17.304649 60.03176,17.164296 60.0625,17 c 0.03768,-0.188431 0.06107,-0.404544 0.09375,-0.59375 0.03433,-0.207054 0.07321,-0.416531 0.09375,-0.625 0.02456,-0.229401 0.04509,-0.45768 0.0625,-0.6875 0.01651,-0.208392 0.0323,-0.41756 0.0625,-0.625 0.0324,-0.212419 0.0831,-0.414038 0.125,-0.625 0.04633,-0.27298 0.08304,-0.536923 0.09375,-0.8125 0.01116,-0.266811 0.02617,-0.547517 0,-0.8125 -0.03136,-0.268747 -0.103792,-0.536864 -0.21875,-0.78125 -0.05874,-0.126037 -0.10469,-0.245543 -0.15625,-0.375 -0.0859,-0.20855 -0.15626,-0.419872 -0.25,-0.625 C 59.896471,10.279789 59.81106,10.131589 59.75,9.96875 59.7073,9.866996 59.71525,9.766757 59.71875,9.65625 59.73167,9.35382 59.76481,9.052361 59.78125,8.75 59.79482,8.441722 59.78038,8.118568 59.75,7.8125 59.73614,7.657491 59.73643,7.500571 59.75,7.34375 59.76575,7.1354931 59.78081,6.9255785 59.8125,6.71875 59.8482,6.4601234 59.88791,6.1974471 59.875,5.9375 59.856677,5.6650726 59.819732,5.4088579 59.71875,5.15625 59.656083,4.9976435 59.58042,4.8375169 59.5,4.6875 59.51375,4.597974 59.5459,4.5234103 59.5625,4.4375 59.619599,4.2659874 59.67972,4.0732294 59.75,3.90625 59.846014,3.6912643 59.94071,3.477664 60,3.25 60.070915,2.98234 60.1089,2.7127391 60.125,2.4375 60.138253,2.0887921 60.140342,1.7573367 60,1.4375 59.939524,1.3031653 59.87235,1.1657262 59.8125,1.03125 59.77108,0.91145421 59.76486,0.7819642 59.75,0.65625 59.73584,0.5307769 59.70659,0.4058464 59.6875,0.28125 c -0.0071,-0.0772799 0.02275,-0.172772 0.03125,-0.25 0.0138,-0.0901284 0.0094,-0.161163 0.03125,-0.25 0.0072,-0.029675 0.02995,-0.042356 0.03125,-0.0625 0.04268,-0.10574 0.13501,-0.2118987 0.1875,-0.3125 0.09719,-0.15691699 0.19708,-0.30462648 0.28125,-0.46875 0.126046,-0.258637 0.20586,-0.529296 0.25,-0.8125 0.03874,-0.262866 0.0721,-0.5170119 0.0625,-0.78125 -9e-4,-0.1864396 -0.0129,-0.3759731 0,-0.5625 0.01277,-0.2610505 0.0253,-0.5219374 0,-0.78125 C 60.54515,-4.2448066 60.5318,-4.506979 60.5,-4.75 60.465334,-4.9795181 60.43356,-5.1928265 60.34375,-5.40625 60.284777,-5.5594113 60.20487,-5.7178175 60.15625,-5.875 60.102879,-6.0392717 60.04833,-6.2090112 60,-6.375 c -0.05398,-0.1900195 -0.10871,-0.3816085 -0.1875,-0.5625 -0.07534,-0.1736841 -0.15618,-0.3358875 -0.25,-0.5 0.0025,-0.0067 -0.0185,-0.042211 0,-0.09375 -0.0085,0.014106 0.02297,-0.016054 0.03125,-0.03125 -4.9e-5,-0.00162 0.0089,-0.052004 0,-0.03125 0.0086,-0.012888 0.02481,-0.023889 0.03125,-0.03125 0.04705,-0.073196 0.1068,-0.115888 0.15625,-0.1875 0.13231,-0.20002 0.25613,-0.4232879 0.3125,-0.65625 0.04388,-0.1862925 0.07055,-0.3731682 0.09375,-0.5625 0.0196,-0.1554146 0.01254,-0.3132702 0.03125,-0.46875 0.01603,-0.1210627 0.03771,-0.255111 0.0625,-0.375 0.03258,-0.144211 0.09355,-0.261776 0.125,-0.40625 0.03289,-0.148401 0.07128,-0.318732 0.09375,-0.46875 0.02379,-0.145266 0.04248,-0.291786 0.0625,-0.4375 0.0231,-0.157195 0.03903,-0.311598 0.0625,-0.46875 0.02388,-0.161237 0.06674,-0.3079 0.09375,-0.46875 0.03722,-0.22475 0.07754,-0.460722 0.09375,-0.6875 0.01238,-0.294392 0.0044,-0.589427 -0.0625,-0.875 -0.05363,-0.213883 -0.14526,-0.417859 -0.21875,-0.625 -0.03459,-0.128928 -0.059,-0.271107 -0.0625,-0.40625 -0.02521,-0.25327 -0.06854,-0.480506 -0.15625,-0.71875 -0.06891,-0.181597 -0.13504,-0.356422 -0.21875,-0.53125 -0.03245,-0.07426 -0.0561,-0.16706 -0.0625,-0.25 -0.02103,-0.170815 -0.04078,-0.32929 -0.0625,-0.5 -0.01904,-0.133364 -0.03256,-0.275212 -0.0625,-0.40625 0.04882,-0.09224 0.08627,-0.183493 0.125,-0.28125 0.109438,-0.253474 0.21285,-0.537056 0.21875,-0.8125 0.0042,-0.161878 -0.01819,-0.307878 -0.03125,-0.46875 -0.0069,-0.09606 -0.01337,0.04274 0,-0.0625 0.06125,-0.225445 0.1281,-0.453726 0.125,-0.6875 -0.0153,-0.31789 -0.08673,-0.633806 -0.25,-0.90625 -0.0923,-0.15552 -0.184,-0.285257 -0.28125,-0.4375 -0.03723,-0.0613 -0.0598,-0.11259 -0.0625,-0.1875 -0.0174,-0.172072 -0.0349,-0.360658 -0.0625,-0.53125 -0.01531,-0.112245 -0.02315,-0.230461 -0.03125,-0.34375 -6.7e-4,-0.142054 -0.0049,-0.264163 0,-0.40625 0.0065,-0.188774 0.0065,-0.405378 0,-0.59375 -0.0045,-0.188037 0.02615,-0.375662 0.0625,-0.5625 0.03855,-0.201681 0.08254,-0.40076 0.15625,-0.59375 0.278754,-0.810433 -0.336355,-1.3178 -0.9375,-1.28125 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5383"
+         d="m 63.09375,-25.6875 c -0.357752,-0.03373 -0.759606,0.136417 -1,0.59375 -0.100444,0.189831 -0.17489,0.362357 -0.25,0.5625 -0.0605,0.156197 -0.12274,0.336989 -0.15625,0.5 -0.03254,0.162533 -0.008,0.305261 0,0.46875 0.01216,0.129335 0.03311,0.280629 0.0625,0.40625 0.02433,0.10726 0.06208,0.207797 0.09375,0.3125 0.01761,0.08682 0.03789,0.16504 0.0625,0.25 0.04896,0.153927 0.11795,0.292738 0.1875,0.4375 0.02897,0.06289 0.07723,0.11952 0.09375,0.1875 0.0043,0.02148 0.0084,0.07908 0,0.0625 -0.0014,0.0635 0.0013,0.12399 0,0.1875 -0.0023,0.0779 -10e-7,0.14096 0,0.21875 -5e-4,0.06397 -0.02905,0.1235 -0.03125,0.1875 -0.0042,0.117378 0.0044,0.226371 0,0.34375 -0.0048,0.128053 0.0048,0.278195 0,0.40625 -0.004,0.106073 -0.02725,0.206426 -0.03125,0.3125 -0.0065,0.112944 0.0076,0.230834 0,0.34375 -0.0066,0.1084 -0.04478,0.205044 -0.0625,0.3125 -0.02598,0.138757 -0.03696,0.267424 -0.0625,0.40625 -0.03288,0.18242 -0.07535,0.378655 -0.09375,0.5625 -0.02166,0.20733 -0.0095,0.418036 0,0.625 0.02094,0.303325 0.114227,0.579804 0.25,0.84375 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353533 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.2317301 -0.01276,0.4569062 0,0.6875 0.01509,0.2070075 0.0543,0.4173114 0.0625,0.625 0.0049,0.1461162 -0.02435,0.2910842 -0.03125,0.4375 0.0052,0.030516 -0.02106,0.12075 0,0.03125 -0.0312,0.036086 -0.0623,0.087663 -0.09375,0.125 -0.09275,0.1161527 -0.17256,0.2485893 -0.25,0.375 -0.04745,0.083634 -0.04374,0.089172 -0.09375,0.15625 -0.111431,0.1434319 -0.18632,0.3012564 -0.25,0.46875 -0.08414,0.2162969 -0.09429,0.4292803 -0.09375,0.65625 0.0014,0.1908166 0.0093,0.4050859 0.03125,0.59375 0.02067,0.1574655 0.04469,0.3108334 0.0625,0.46875 0.01941,0.1791546 0.04192,0.3522778 0.0625,0.53125 0.02042,0.1785796 0.04192,0.3526947 0.0625,0.53125 0.01653,0.1260811 -0.0012,0.2473576 0,0.375 -0.0024,0.1913551 0.02695,0.4026889 0.03125,0.59375 0.0067,0.1978662 -0.0057,0.3958318 0,0.59375 0.0052,0.2463689 0.04608,0.4790038 0.09375,0.71875 0.05324,0.2791286 0.149808,0.5339988 0.28125,0.78125 0.06891,0.138839 0.16898,0.2580075 0.21875,0.40625 0.0058,0.028658 0.0065,0.064926 0,0.09375 -0.0087,0.0632065 -0.01505,0.125596 -0.03125,0.1875 -0.04462,0.1551847 -0.06888,0.3101356 -0.09375,0.46875 C 63.0763,-0.0649071 63.0266,0.0663466 63,0.1875 62.97177,0.3163253 62.93764,0.4343236 62.90625,0.5625 62.874461,0.698189 62.84436,0.8330852 62.8125,0.96875 62.76047,1.187141 62.76804,1.4051473 62.78125,1.625 c 0.009,0.099673 0.0049,0.2120538 0,0.3125 C 62.77055,2.0658722 62.76378,2.1843104 62.75,2.3125 62.72808,2.5005837 62.70805,2.6868179 62.6875,2.875 62.67081,3.0676609 62.62998,3.2471466 62.59375,3.4375 62.551714,3.6522724 62.52364,3.876867 62.5,4.09375 c -0.02786,0.2569797 -0.03195,0.5279676 0,0.78125 0.02856,0.1804625 0.08127,0.3481595 0.09375,0.53125 0.0074,0.1797418 0.0031,0.3510363 0,0.53125 -0.007,0.2011687 -0.0033,0.4241906 0,0.625 0.005,0.1706951 0.0036,0.3289795 0,0.5 -0.0075,0.2464334 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.095718 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.0094,0.07289 0.004,0.146025 0,0.21875 -0.0046,0.04139 -0.02711,0.08359 -0.03125,0.125 -0.0016,0.103809 -0.0079,0.208738 0,0.3125 -0.0032,0.103555 -0.0048,0.209018 0,0.3125 0.01284,0.18606 0.05904,0.361902 0.125,0.53125 3.24e-4,0.02041 -7.9e-5,0.04209 0,0.0625 0.01848,0.01926 0.04431,0.04179 0.0625,0.0625 0.0276,0.06137 0.03171,0.127636 0.0625,0.1875 0.09346,0.1698 0.21398,0.333353 0.3125,0.5 0.02933,0.03965 0.057,0.07796 0.0625,0.125 0.01638,0.114679 0.03954,0.230476 0.0625,0.34375 0.02151,0.105374 0.04197,0.206913 0.0625,0.3125 0.01669,0.07404 -9.66e-4,0.1427 0,0.21875 0.0011,0.114606 0.008,0.229121 0,0.34375 -0.0075,0.117144 -0.01368,0.227275 -0.03125,0.34375 -0.0314,0.170617 -0.07257,0.359464 -0.09375,0.53125 -0.02214,0.199715 -0.01969,0.393583 -0.03125,0.59375 -0.01373,0.216132 -0.0064,0.44052 0,0.65625 0.0085,0.324883 0.08806,0.615911 0.21875,0.90625 0.08619,0.179215 0.19272,0.353535 0.28125,0.53125 0.02507,0.05501 0.02175,0.09677 0.03125,0.15625 0.02361,0.153514 0.07541,0.314322 0.09375,0.46875 0.01795,0.158029 -0.0028,0.309307 0,0.46875 0.0019,0.179514 0.0058,0.382817 0,0.5625 -0.01232,0.23173 -0.01276,0.456906 0,0.6875 0.01509,0.207008 0.0543,0.417312 0.0625,0.625 0.0049,0.146117 -0.02435,0.291084 -0.03125,0.4375 0.0052,0.03052 -0.02106,0.12075 0,0.03125 -0.0312,0.03608 -0.0623,0.08766 -0.09375,0.125 -0.09275,0.116152 -0.17256,0.248589 -0.25,0.375 -0.04745,0.08363 -0.04374,0.08917 -0.09375,0.15625 -0.111431,0.143432 -0.18632,0.301256 -0.25,0.46875 -0.08414,0.216296 -0.09429,0.42928 -0.09375,0.65625 0.0014,0.190817 0.0093,0.405086 0.03125,0.59375 0.02067,0.157465 0.04469,0.310833 0.0625,0.46875 0.01941,0.179155 0.04192,0.352278 0.0625,0.53125 0.02042,0.178579 0.04192,0.352695 0.0625,0.53125 0.01653,0.126081 -0.0012,0.247357 0,0.375 -0.0024,0.191355 0.02695,0.402689 0.03125,0.59375 0.0067,0.197867 -0.0057,0.395832 0,0.59375 0.0052,0.246369 0.04608,0.479004 0.09375,0.71875 0.05324,0.279129 0.149808,0.533999 0.28125,0.78125 0.06891,0.138839 0.16898,0.258008 0.21875,0.40625 0.0058,0.02866 0.0065,0.06493 0,0.09375 -0.0087,0.06321 -0.01505,0.1256 -0.03125,0.1875 -0.04462,0.155184 -0.06888,0.310136 -0.09375,0.46875 -0.01745,0.122593 -0.06715,0.253847 -0.09375,0.375 -0.02823,0.128826 -0.06236,0.246824 -0.09375,0.375 -0.03179,0.135689 -0.06189,0.270585 -0.09375,0.40625 -0.05203,0.218391 -0.04446,0.436398 -0.03125,0.65625 0.009,0.09967 0.0049,0.212054 0,0.3125 -0.0107,0.128373 -0.01747,0.246811 -0.03125,0.375 -0.02192,0.188084 -0.04195,0.374318 -0.0625,0.5625 -0.01669,0.192661 -0.05752,0.372147 -0.09375,0.5625 -0.04204,0.214773 -0.07011,0.439367 -0.09375,0.65625 -0.02786,0.25698 -0.03195,0.527967 0,0.78125 0.02856,0.180462 0.08127,0.348159 0.09375,0.53125 0.0074,0.179742 0.0031,0.351037 0,0.53125 -0.007,0.201169 -0.0033,0.424191 0,0.625 0.005,0.170695 0.0036,0.328979 0,0.5 -0.0075,0.246433 0.02261,0.478082 0.0625,0.71875 0.02993,0.177656 0.06939,0.352492 0.09375,0.53125 0.01496,0.09572 -0.0122,0.18671 -0.03125,0.28125 -0.0452,0.19708 -0.08089,0.396456 -0.125,0.59375 -0.04171,0.199451 -0.09156,0.424267 -0.125,0.625 -0.05093,0.295601 0.0073,0.565181 0.09375,0.84375 0.04231,0.128758 0.08749,0.25989 0.15625,0.375 0.0102,0.01704 0.02165,0.01389 0.03125,0.03125 -0.01761,-0.02415 3.89e-4,0.0529 0,0.0625 -0.0041,0.123751 -0.02275,0.25132 -0.03125,0.375 -0.01632,0.180431 -0.02895,0.350636 -0.03125,0.53125 8.3e-4,0.207265 -0.0029,0.417835 0,0.625 -3.6e-4,0.15939 0.02534,0.310176 0,0.46875 -0.0376,0.194186 -0.09475,0.398485 -0.125,0.59375 -0.02564,0.19343 -0.05268,0.402197 -0.09375,0.59375 -0.05835,0.225322 -0.0913,0.426926 -0.125,0.65625 -0.02841,0.210029 -0.03925,0.445854 -0.0625,0.65625 -0.0014,0.06715 -0.02817,0.10108 -0.0625,0.15625 -0.120057,0.211618 -0.22739,0.429617 -0.3125,0.65625 -0.102521,0.283187 -0.14361,0.578912 -0.15625,0.875 -0.009,0.250021 0.04708,0.5077 0.09375,0.75 0.03749,0.174879 0.07871,0.352381 0.09375,0.53125 0.01582,0.145179 0.01285,0.291313 0,0.4375 -0.02824,0.219156 -0.04793,0.437855 -0.03125,0.65625 0.02293,0.20604 0.08552,0.391032 0.125,0.59375 0.02049,0.09965 -3.97e-4,0.210472 0,0.3125 -0.0052,0.153068 0.01872,0.316823 0.03125,0.46875 0.01164,0.08847 -2.62e-4,0.16046 0,0.25 -0.0016,0.10125 0.0043,0.211207 0,0.3125 -0.009,0.111464 -0.02125,0.232327 -0.03125,0.34375 -0.01678,0.175027 -7.8e-5,0.325006 0,0.5 -0.0021,0.182322 -0.0082,0.380751 0,0.5625 0.0061,0.123668 0.01613,0.252464 0.03125,0.375 0.166796,1.339805 2.073045,1.027304 1.90625,-0.3125 -0.0093,-0.07368 -0.02745,-0.14438 -0.03125,-0.21875 -0.0073,-0.152941 -0.0017,-0.315312 0,-0.46875 -2e-4,-0.118076 -0.0109,-0.225621 0,-0.34375 0.0127,-0.144801 0.0557,-0.292454 0.0625,-0.4375 0.0043,-0.129059 -2.07e-4,-0.277278 0,-0.40625 -0.0013,-0.139628 -0.01443,-0.26808 -0.03125,-0.40625 -0.0099,-0.102713 -0.0013,-0.208991 0,-0.3125 -0.0024,-0.218441 -0.01923,-0.443045 -0.0625,-0.65625 -0.02699,-0.138605 -0.07118,-0.266682 -0.09375,-0.40625 -0.01653,-0.109014 0.02555,-0.233762 0.03125,-0.34375 0.02018,-0.253774 0.02564,-0.498115 0,-0.75 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,50.371212 64.59615,50.191303 64.59375,50 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 -0.009,-0.02045 -0.13629,-0.3111 -0.15625,-0.3125 0.0248,-0.141674 0.06724,-0.264858 0.09375,-0.40625 0.04839,-0.219454 0.11088,-0.467464 0.15625,-0.6875 0.0541,-0.301003 0.07605,-0.574077 0.03125,-0.875 -0.02808,-0.19319 -0.0587,-0.401975 -0.09375,-0.59375 -0.02099,-0.125635 -0.067,-0.24599 -0.0625,-0.375 0.0038,-0.194336 0.0055,-0.399768 0,-0.59375 -0.0031,-0.179229 -0.0067,-0.351685 0,-0.53125 0.0041,-0.240249 0.01461,-0.479455 0,-0.71875 -0.01775,-0.21685 -0.05262,-0.443438 -0.09375,-0.65625 -0.01521,-0.104126 -0.0099,-0.206359 0,-0.3125 0.01584,-0.163239 0.03262,-0.307091 0.0625,-0.46875 0.04589,-0.241102 0.10279,-0.506124 0.125,-0.75 0.02059,-0.188835 0.0406,-0.373762 0.0625,-0.5625 0.01853,-0.171671 0.05249,-0.327895 0.0625,-0.5 0.0059,-0.164219 -0.01686,-0.336916 -0.03125,-0.5 -0.0019,-0.03089 0.0071,-0.08268 0,-0.09375 0.02833,-0.128363 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.142619 0.06354,-0.262779 0.09375,-0.40625 0.03516,-0.160268 0.07065,-0.337839 0.09375,-0.5 0.01493,-0.09656 0.0334,-0.18715 0.0625,-0.28125 0.04824,-0.189936 0.11404,-0.367638 0.125,-0.5625 0.0099,-0.295434 -0.01927,-0.600474 -0.125,-0.875 -0.08626,-0.213694 -0.196347,-0.426795 -0.3125,-0.625 -0.04778,-0.08701 -0.1063,-0.15029 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.298417 -0.0625,-0.4375 -0.0059,-0.193408 0.0068,-0.369146 0,-0.5625 -0.0043,-0.185566 -0.0018,-0.376666 0,-0.5625 C 64.52813,33.683325 64.52441,33.501983 64.5,33.3125 64.4794,33.133869 64.45795,32.959905 64.4375,32.78125 64.41695,32.603885 64.39445,32.427536 64.375,32.25 c -0.01831,-0.162119 -0.04118,-0.338357 -0.0625,-0.5 -0.01397,-0.111123 -0.02884,-0.231343 -0.03125,-0.34375 0.06633,-0.08947 0.101597,-0.184221 0.15625,-0.28125 0.0391,-0.06489 0.1077,-0.12879 0.15625,-0.1875 0.128242,-0.169924 0.22469,-0.337467 0.3125,-0.53125 0.0972,-0.239007 0.1799,-0.49355 0.1875,-0.75 0.0093,-0.202208 0.0074,-0.39201 0,-0.59375 -0.0092,-0.21797 -0.01362,-0.439124 -0.03125,-0.65625 -0.0106,-0.17366 -0.04105,-0.356667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.07537,-0.125847 -0.141093,-0.250621 -0.21875,-0.375 0.0021,-0.03709 -0.0021,-0.05573 0,-0.09375 -0.01865,-0.09578 -0.04492,-0.185228 -0.0625,-0.28125 -0.0037,-0.0203 0.0035,-0.04217 0,-0.0625 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 C 63.86436,19.05852 63.85441,19.03443 63.84375,19 c 0.01328,-0.221918 0.02244,-0.435851 0,-0.65625 -0.02153,-0.244216 -0.07461,-0.47975 -0.125,-0.71875 -0.01997,-0.103287 -0.02885,-0.206271 -0.03125,-0.3125 1.2e-4,-0.08895 0.0049,-0.19493 0.03125,-0.28125 0.05298,-0.151019 0.14125,-0.265688 0.21875,-0.40625 0.136577,-0.273763 0.2238,-0.571186 0.25,-0.875 0.02021,-0.187552 0.04093,-0.375054 0.0625,-0.5625 0.02729,-0.19182 0.07821,-0.373779 0.125,-0.5625 0.04509,-0.224237 0.07065,-0.460768 0.09375,-0.6875 0.0304,-0.20151 0.06108,-0.392535 0.09375,-0.59375 0.03538,-0.259115 0.0668,-0.521102 0.0625,-0.78125 C 64.6222,12.371212 64.59615,12.191303 64.59375,12 c 9.8e-4,-0.143924 0.01929,-0.293696 0.03125,-0.4375 0.01138,-0.165939 0.02795,-0.333977 0.03125,-0.5 -0.0019,-0.266483 -0.02607,-0.534667 -0.125,-0.78125 C 64.52225,10.2608 64.39496,9.97015 64.375,9.96875 64.3998,9.8270764 64.44224,9.7038921 64.46875,9.5625 64.517137,9.343046 64.57963,9.095036 64.625,8.875 64.6791,8.573997 64.70105,8.300923 64.65625,8 64.62817,7.80681 64.59755,7.598025 64.5625,7.40625 64.54151,7.280615 64.4955,7.1602601 64.5,7.03125 64.5038,6.8369141 64.5055,6.6314818 64.5,6.4375 64.4969,6.2582713 64.4933,6.0858159 64.5,5.90625 64.5041,5.6660018 64.51461,5.4267951 64.5,5.1875 64.48225,4.9706502 64.44738,4.7440621 64.40625,4.53125 c -0.01521,-0.1041267 -0.0099,-0.2063599 0,-0.3125 0.01584,-0.1632391 0.03262,-0.3070908 0.0625,-0.46875 0.04589,-0.2411017 0.10279,-0.5061231 0.125,-0.75 0.02059,-0.1888342 0.0406,-0.3737618 0.0625,-0.5625 0.01853,-0.1716705 0.05249,-0.3278948 0.0625,-0.5 0.0059,-0.1642186 -0.01686,-0.3369157 -0.03125,-0.5 -0.0019,-0.030892 0.0071,-0.082682 0,-0.09375 0.02833,-0.1283621 0.06593,-0.277733 0.09375,-0.40625 0.0343,-0.1426191 0.06354,-0.2627796 0.09375,-0.40625 0.03516,-0.1602683 0.07065,-0.3378389 0.09375,-0.5 0.01493,-0.0965643 0.0334,-0.187151 0.0625,-0.28125 0.04824,-0.1899356 0.11404,-0.36763781 0.125,-0.5625 0.0099,-0.2954343 -0.01927,-0.6004741 -0.125,-0.875 -0.08626,-0.2136944 -0.196347,-0.4267955 -0.3125,-0.625 -0.04778,-0.087013 -0.1063,-0.150295 -0.125,-0.25 -0.02791,-0.134966 -0.0602,-0.2984166 -0.0625,-0.4375 -0.0059,-0.1934072 0.0068,-0.3691459 0,-0.5625 -0.0043,-0.1855662 -0.0018,-0.3766664 0,-0.5625 C 64.52813,-4.3166747 64.52441,-4.4980167 64.5,-4.6875 64.4794,-4.8661306 64.45795,-5.0400951 64.4375,-5.21875 64.41695,-5.3961156 64.39445,-5.572464 64.375,-5.75 c -0.01831,-0.1621191 -0.04118,-0.3383575 -0.0625,-0.5 -0.01397,-0.1111229 -0.02884,-0.2313429 -0.03125,-0.34375 0.06633,-0.089465 0.101597,-0.1842215 0.15625,-0.28125 0.0391,-0.064895 0.1077,-0.128791 0.15625,-0.1875 0.128242,-0.1699248 0.22469,-0.3374669 0.3125,-0.53125 0.0972,-0.2390076 0.1799,-0.4935499 0.1875,-0.75 0.0093,-0.2022079 0.0074,-0.3920097 0,-0.59375 -0.0092,-0.2179698 -0.01362,-0.4391239 -0.03125,-0.65625 -0.0106,-0.1736596 -0.04105,-0.3566667 -0.03125,-0.53125 0.0068,-0.211963 0.03405,-0.413263 0.03125,-0.625 -0.0043,-0.223474 -0.005,-0.466155 -0.03125,-0.6875 -0.02169,-0.17974 -0.0659,-0.352586 -0.09375,-0.53125 -0.04107,-0.252984 -0.100236,-0.491892 -0.21875,-0.71875 -0.08192,-0.157289 -0.15687,-0.318148 -0.25,-0.46875 -0.03644,-0.05761 -0.06,-0.11773 -0.0625,-0.1875 -0.0079,-0.1559 -0.0067,-0.312481 0,-0.46875 0.0091,-0.159168 0.04596,-0.309875 0.0625,-0.46875 0.01891,-0.157494 0.03524,-0.312198 0.0625,-0.46875 0.02339,-0.165168 0.02175,-0.333948 0.03125,-0.5 0.01142,-0.171924 0.03405,-0.359423 0.03125,-0.53125 -0.0047,-0.185175 -0.02486,-0.350677 -0.0625,-0.53125 -0.02161,-0.109057 -0.03739,-0.235619 -0.0625,-0.34375 -0.02524,-0.124423 -0.03948,-0.250077 -0.0625,-0.375 -0.05543,-0.236136 -0.152401,-0.451344 -0.28125,-0.65625 -0.08283,-0.138313 -0.16505,-0.269284 -0.25,-0.40625 -0.0081,-0.01426 -0.05147,-0.12665 -0.0625,-0.09375 -0.02169,-0.101425 0.03435,-0.209665 0.03125,-0.3125 0.01272,-0.13069 0.0085,-0.276525 0.03125,-0.40625 0.0276,-0.151582 0.06752,-0.285702 0.09375,-0.4375 0.02701,-0.167546 0.052,-0.331097 0.0625,-0.5 0.0089,-0.132223 0.02435,-0.27398 0.03125,-0.40625 0.004,-0.106044 -0.004,-0.206459 0,-0.3125 0.0048,-0.127929 -0.0048,-0.247071 0,-0.375 0.0045,-0.119076 0.02695,-0.255924 0.03125,-0.375 0.0031,-0.09033 1.36e-4,-0.19097 0,-0.28125 -6e-4,-0.06282 3.6e-4,-0.1247 0,-0.1875 9e-4,-0.100622 0.005,-0.180788 0,-0.28125 -0.0083,-0.165365 -0.01552,-0.342169 -0.0625,-0.5 -0.04916,-0.163895 -0.11097,-0.316388 -0.1875,-0.46875 -0.02755,-0.05733 -0.06432,-0.13474 -0.09375,-0.1875 -0.02147,-0.07763 -0.04204,-0.13995 -0.0625,-0.21875 -0.02227,-0.0743 -0.0376,-0.1454 -0.0625,-0.21875 -0.004,-0.01713 -0.04793,-0.218192 -0.03125,-0.09375 0.0075,-0.05731 0.01338,-0.10136 0.03125,-0.15625 0.04511,-0.121577 0.0957,-0.228367 0.15625,-0.34375 0.400656,-0.762223 -0.09125,-1.381288 -0.6875,-1.4375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         id="path5385"
+         d="m 66.65625,-25.875 c -0.476644,-0.04344 -0.98185,0.230427 -1.0625,0.90625 -0.0199,0.172861 -0.05237,0.357856 -0.0625,0.53125 -0.0078,0.1214 0.0061,0.253581 0,0.375 -0.005,0.103256 -0.02012,0.178305 -0.03125,0.28125 -0.02406,0.157719 -0.02585,0.341003 -0.03125,0.5 -0.01013,0.327264 0.0949,0.597002 0.25,0.875 0.103217,0.155931 0.209018,0.313035 0.3125,0.46875 0.107443,0.179657 0.224392,0.359531 0.34375,0.53125 0.06121,0.123323 0.20899,0.209045 0.25,0.34375 -0.03521,-0.04911 -0.03151,0.1194 -0.03125,0.125 0.003,0.212087 0.02803,0.416804 0.0625,0.625 0.0033,0.104154 0.05143,0.238185 0.03125,0.34375 -0.0208,0.09774 -0.03344,0.18536 -0.0625,0.28125 -0.04508,0.149341 -0.1044,0.290225 -0.15625,0.4375 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326431 0.1875,0.5 0.01984,0.06879 0.02685,0.14723 0.03125,0.21875 0.0054,0.089671 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.1981128 -0.047,0.3932225 -0.0625,0.59375 -0.02336,0.2693195 0.0092,0.5202946 0.0625,0.78125 0.03005,0.1741826 0.09556,0.3572233 0.125,0.53125 0.0105,0.086679 0.0012,0.162634 0,0.25 -0.01013,0.2033303 0.0045,0.39331 0.03125,0.59375 0.01952,0.1323734 0.04684,0.273221 0.0625,0.40625 0.0052,0.047922 0.0061,0.10925 0,0.15625 -0.05184,0.1369639 -0.07329,0.2617956 -0.09375,0.40625 -0.02554,0.2344049 0.0044,0.4877238 0.03125,0.71875 0.01534,0.091086 0.01755,0.159537 0,0.25 -0.04538,0.2283539 -0.11685,0.4652835 -0.1875,0.6875 -0.09869,0.3063171 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.3182059 -0.1305,0.6712121 -0.125,1 0.0091,0.2146529 0.03663,0.4123537 0.0625,0.625 0.02915,0.2329211 0.08356,0.4567945 0.125,0.6875 0.04803,0.24494372 0.09814,0.5075173 0.15625,0.75 0.05015,0.1929417 0.06537,0.3645609 0.09375,0.5625 0.02023,0.1637865 0.03285,0.3346857 0.03125,0.5 -0.0036,0.21116249 0.0063,0.4450775 0,0.65625 -0.0062,0.2038077 -0.02535,0.3899422 -0.03125,0.59375 -0.0062,0.2165525 -0.02505,0.4396977 -0.03125,0.65625 -0.009,0.2791442 -0.0015,0.5647751 0,0.84375 0.0031,0.2449648 -0.0024,0.4737575 0,0.71875 -0.0035,0.2993903 0.02718,0.6104541 0.0625,0.90625 0.036,0.262426 0.07258,0.5147654 0.0625,0.78125 -0.02561,0.2811597 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.4270637 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0042,0.103335 0.02624,0.209225 0.03125,0.3125 -0.018,0.05354 -0.04373,0.102938 -0.0625,0.15625 -0.06663,0.177019 -0.09219,0.377448 -0.125,0.5625 -0.02615,0.158808 -0.0567,0.308755 -0.0625,0.46875 -0.0031,0.07279 0.02179,0.14785 0,0.21875 -0.03745,0.148815 -0.08917,0.288316 -0.125,0.4375 -0.06569,0.255421 -0.06149,0.523903 -0.03125,0.78125 0.01854,0.138128 0.04122,0.268745 0.0625,0.40625 0.01318,0.1072 0.02945,0.204292 0.03125,0.3125 7e-5,0.156092 -0.02155,0.312754 -0.03125,0.46875 -0.02245,0.235207 -0.0063,0.488201 0.03125,0.71875 0.02791,0.150289 0.08061,0.284558 0.09375,0.4375 0.0073,0.139301 -0.02039,0.298273 -0.03125,0.4375 -0.02581,0.236709 -0.0226,0.452277 0,0.6875 0.0292,0.228898 0.08994,0.459677 0.125,0.6875 0.02813,0.172068 0.02705,0.356489 0.03125,0.53125 0.0014,0.210995 0.01414,0.415079 0.03125,0.625 0.02434,0.291825 0.12132,0.571345 0.21875,0.84375 0.05987,0.17172 0.13261,0.326433 0.1875,0.5 0.01984,0.0688 0.02685,0.14723 0.03125,0.21875 0.0054,0.08967 -0.01672,0.19259 -0.03125,0.28125 -0.03896,0.198113 -0.047,0.393222 -0.0625,0.59375 -0.02336,0.269319 0.0092,0.520294 0.0625,0.78125 0.03005,0.174182 0.09556,0.357224 0.125,0.53125 0.0105,0.08668 0.0012,0.16263 0,0.25 -0.01013,0.203331 0.0045,0.39331 0.03125,0.59375 0.01952,0.132373 0.04684,0.273221 0.0625,0.40625 0.0052,0.04792 0.0061,0.10925 0,0.15625 -0.05184,0.136963 -0.07329,0.261796 -0.09375,0.40625 -0.02554,0.234405 0.0044,0.487724 0.03125,0.71875 0.01534,0.09109 0.01755,0.15954 0,0.25 -0.04538,0.228354 -0.11685,0.465284 -0.1875,0.6875 -0.09869,0.306317 -0.21897,0.598437 -0.3125,0.90625 -0.09915,0.318206 -0.1305,0.671212 -0.125,1 0.0091,0.214653 0.03663,0.412354 0.0625,0.625 0.02915,0.232921 0.08356,0.456794 0.125,0.6875 0.04803,0.244944 0.09814,0.507517 0.15625,0.75 0.05015,0.192941 0.06537,0.364561 0.09375,0.5625 0.02023,0.163786 0.03285,0.334686 0.03125,0.5 -0.0036,0.211162 0.0063,0.445078 0,0.65625 -0.0062,0.203808 -0.02535,0.389942 -0.03125,0.59375 -0.0062,0.216552 -0.02505,0.439698 -0.03125,0.65625 -0.009,0.279144 -0.0015,0.564775 0,0.84375 0.0031,0.244965 -0.0024,0.473758 0,0.71875 -0.0035,0.29939 0.02718,0.610454 0.0625,0.90625 0.036,0.262426 0.07258,0.514765 0.0625,0.78125 -0.02561,0.281159 -0.13467,0.543161 -0.21875,0.8125 -0.142702,0.427063 -0.23324,0.868009 -0.28125,1.3125 -0.04112,0.389667 0.03037,0.782338 0.125,1.15625 0.04883,0.16368 0.08704,0.333158 0.125,0.5 0.04175,0.188475 0.07064,0.370392 0.09375,0.5625 0.02525,0.250634 0.02063,0.497989 0.03125,0.75 0.01153,0.269453 0.03455,0.542421 0.03125,0.8125 -0.0058,0.25058 -0.01973,0.499477 -0.03125,0.75 -0.01013,0.245814 -0.01946,0.504209 -0.03125,0.75 -0.0093,0.2343 -0.03754,0.453854 -0.0625,0.6875 -0.0232,0.193055 -0.05929,0.402201 -0.09375,0.59375 -0.04528,0.252116 -0.06979,0.495584 -0.09375,0.75 -0.02356,0.234819 -0.02268,0.454768 0,0.6875 0.01865,0.138894 0.03485,0.297104 0.03125,0.4375 -0.0087,0.191555 -0.01891,0.371046 -0.03125,0.5625 -0.01424,0.201777 -0.02655,0.423066 -0.03125,0.625 -0.0043,0.202288 -0.0073,0.391922 0,0.59375 0.0067,0.164951 0.02315,0.335151 0.03125,0.5 0.0061,0.120863 0.0046,0.222478 0,0.34375 -0.0049,0.103376 -0.01581,0.209953 -0.03125,0.3125 -0.02702,0.15649 -0.04872,0.310968 -0.0625,0.46875 -0.01344,0.151136 -0.01668,0.317685 -0.03125,0.46875 -0.0057,0.06844 -0.02925,0.03865 -0.03125,0.03125 -0.07084,0.153513 -0.09233,0.335517 -0.125,0.5 -0.02196,0.121133 -0.02088,0.221691 -0.03125,0.34375 -0.0089,0.05044 -0.02102,0.10603 -0.03125,0.15625 -0.0378,0.172479 -0.04239,0.357158 -0.03125,0.53125 0.0117,0.171315 0.07242,0.309054 0.125,0.46875 0.05755,0.182767 0.148955,0.370307 0.25,0.53125 0.05046,0.07716 0.10904,0.1394 0.15625,0.21875 -0.03732,-0.07554 -0.0055,0.01461 0,0.03125 0,0 -0.03125,-0.03125 -0.03125,-0.03125 -0.0013,0.0042 -1.61e-4,0.01054 0,0.03125 -0.0018,0.09187 0.0088,0.18967 0,0.28125 -0.01368,0.13054 -0.02895,0.275364 -0.03125,0.40625 0.0032,0.353867 0.07958,0.409259 0.28125,0.75 0.801057,0.793976 1.899488,-0.05326 1.65625,-0.90625 0.0026,-0.03915 -0.0041,-0.08589 0,-0.125 0.01597,-0.165756 0.03345,-0.333775 0.03125,-0.5 C 68.58895,60.896413 68.56414,60.717814 68.5,60.53125 68.45176,60.390157 68.39088,60.251923 68.3125,60.125 68.25637,60.03487 68.22019,59.92845 68.15625,59.84375 68.13949,59.82112 68.10382,59.78837 68.09375,59.75 c -0.0074,-0.02202 -0.0226,-0.03563 -0.03125,-0.0625 0.0213,-0.105489 0.05351,-0.205398 0.0625,-0.3125 0.0038,-0.04736 0.0027,-0.15537 0,-0.1875 -0.02423,0.06623 0.02485,-0.0592 0.03125,-0.0625 0.0857,-0.203175 0.1393,-0.405655 0.15625,-0.625 0.01463,-0.157074 0.01868,-0.311573 0.03125,-0.46875 0.0097,-0.117727 0.04231,-0.22704 0.0625,-0.34375 0.02594,-0.176199 0.02485,-0.353668 0.03125,-0.53125 0.005,-0.173159 0.0098,-0.358685 0,-0.53125 -0.0077,-0.156921 -0.02475,-0.311738 -0.03125,-0.46875 -0.006,-0.163755 -0.0034,-0.335862 0,-0.5 0.004,-0.175497 0.01887,-0.355888 0.03125,-0.53125 0.01411,-0.218596 0.02295,-0.437509 0.03125,-0.65625 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,48.602737 68.7205,48.301551 68.6875,48 68.65509,47.743904 68.61964,47.469952 68.5625,47.21875 68.51996,47.035094 68.46217,46.867233 68.40625,46.6875 68.36391,46.532789 68.35637,46.38193 68.375,46.21875 c 0.02928,-0.315824 0.08756,-0.63456 0.1875,-0.9375 0.137996,-0.44246 0.29651,-0.879761 0.3125,-1.34375 C 68.8811,43.579532 68.83475,43.227568 68.78125,42.875 68.75379,42.648332 68.7457,42.417127 68.75,42.1875 68.74759,41.945219 68.72205,41.710997 68.71875,41.46875 68.71712,41.211585 68.7418,40.944825 68.75,40.6875 c 0.0062,-0.216269 -0.0062,-0.43998 0,-0.65625 0.0059,-0.203123 0.02515,-0.390627 0.03125,-0.59375 0.0069,-0.224626 -0.0035,-0.462887 0,-0.6875 0.0022,-0.264558 0.0059,-0.519856 -0.03125,-0.78125 -0.03814,-0.252844 -0.09127,-0.503332 -0.15625,-0.75 -0.04997,-0.207733 -0.08303,-0.415295 -0.125,-0.625 C 68.43328,36.398912 68.40008,36.196725 68.375,36 c -0.01844,-0.151466 -0.02087,-0.316236 -0.03125,-0.46875 -0.0054,-0.123912 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.299854 0.18608,-0.607748 0.28125,-0.90625 0.09916,-0.313376 0.19213,-0.614527 0.25,-0.9375 0.04041,-0.266058 0.06806,-0.546644 0.03125,-0.8125 -0.0075,-0.064 -0.02705,-0.2483 -0.03125,-0.25 -0.0019,-0.132515 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.204645 0.02608,-0.390168 0,-0.59375 -0.01823,-0.144399 -0.03924,-0.293973 -0.0625,-0.4375 -0.0177,-0.103 -0.0038,-0.207687 0,-0.3125 0.0029,-0.220283 -0.02051,-0.440282 -0.0625,-0.65625 -0.03691,-0.17818 -0.07863,-0.355683 -0.125,-0.53125 -0.01876,-0.0885 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.148028 0.03532,-0.291304 0.0625,-0.4375 0.03549,-0.233366 0.04835,-0.452732 0.03125,-0.6875 C 68.79507,27.680337 68.75819,27.464785 68.6875,27.25 68.62436,27.061225 68.57123,26.873114 68.5,26.6875 c -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.0084,-0.150011 -0.03441,-0.291474 -0.0625,-0.4375 0.0043,-0.216611 -0.005,-0.410478 -0.03125,-0.625 -0.01113,-0.112928 -0.01175,-0.229504 0,-0.34375 0.01729,-0.198956 0.05957,-0.39659 0.09375,-0.59375 0.04266,-0.23826 0.06815,-0.47826 0.09375,-0.71875 0.02787,-0.270114 0.0525,-0.541644 0.0625,-0.8125 0.01179,-0.247141 0.02112,-0.502835 0.03125,-0.75 0.0122,-0.271765 0.02585,-0.54067 0.03125,-0.8125 0.0036,-0.304838 0.01312,-0.602119 0,-0.90625 C 68.73711,10.602737 68.7205,10.301551 68.6875,10 68.655089,9.743904 68.61964,9.469952 68.5625,9.21875 68.519965,9.035094 68.46217,8.867233 68.40625,8.6875 68.36391,8.532789 68.35637,8.38193 68.375,8.21875 68.404277,7.902926 68.46256,7.58419 68.5625,7.28125 68.700496,6.8387902 68.85901,6.4014893 68.875,5.9375 68.88111,5.5795325 68.83475,5.2275676 68.78125,4.875 68.75379,4.6483321 68.7457,4.4171265 68.75,4.1875 68.74759,3.9452186 68.72205,3.7109972 68.71875,3.46875 68.71712,3.2115847 68.7418,2.9448247 68.75,2.6875 c 0.0062,-0.2162692 -0.0062,-0.4399806 0,-0.65625 0.0059,-0.2031235 0.02515,-0.3906277 0.03125,-0.59375 0.0069,-0.2246268 -0.0035,-0.4628864 0,-0.6875 0.0022,-0.2645576 0.0059,-0.5198555 -0.03125,-0.78125 -0.03814,-0.2528434 -0.09127,-0.50333151 -0.15625,-0.75 -0.04997,-0.2077329 -0.08303,-0.4152948 -0.125,-0.625 C 68.43328,-1.6010879 68.40008,-1.8032748 68.375,-2 c -0.01844,-0.1514653 -0.02087,-0.3162366 -0.03125,-0.46875 -0.0054,-0.1239119 -0.008,-0.223491 0.03125,-0.34375 0.09047,-0.2998547 0.18608,-0.6077475 0.28125,-0.90625 0.09916,-0.3133754 0.19213,-0.6145266 0.25,-0.9375 0.04041,-0.2660579 0.06806,-0.5466434 0.03125,-0.8125 -0.0075,-0.064001 -0.02705,-0.24834 -0.03125,-0.25 -0.0019,-0.1325148 0.09985,-0.295385 0.09375,-0.4375 0.02183,-0.2046448 0.02608,-0.3901677 0,-0.59375 -0.01823,-0.1443992 -0.03924,-0.2939731 -0.0625,-0.4375 -0.0177,-0.1030002 -0.0038,-0.2076866 0,-0.3125 0.0029,-0.2202828 -0.02051,-0.4402825 -0.0625,-0.65625 -0.03691,-0.1781806 -0.07863,-0.3556832 -0.125,-0.53125 -0.01876,-0.088497 -0.03895,-0.18924 -0.03125,-0.28125 0.0094,-0.1480278 0.03532,-0.2913041 0.0625,-0.4375 0.03549,-0.2333668 0.04835,-0.4527317 0.03125,-0.6875 -0.01743,-0.225913 -0.05431,-0.441465 -0.125,-0.65625 -0.06314,-0.188775 -0.11627,-0.376886 -0.1875,-0.5625 -0.0436,-0.120439 -0.11193,-0.245801 -0.125,-0.375 -0.01802,-0.170585 0.0069,-0.359777 0,-0.53125 -0.0073,-0.256093 -0.02152,-0.497777 -0.0625,-0.75 -0.0308,-0.195211 -0.09122,-0.399152 -0.125,-0.59375 -0.01481,-0.12053 0.01776,-0.222119 0.03125,-0.34375 0.01962,-0.252278 0.02379,-0.529665 0,-0.78125 -0.02054,-0.194227 -0.05118,-0.372445 -0.09375,-0.5625 -0.01567,-0.08799 -0.01406,-0.19053 0,-0.28125 0.01294,-0.207963 0.0021,-0.385708 0,-0.59375 -0.0041,-0.198149 -0.0014,-0.398257 -0.03125,-0.59375 -0.01949,-0.117693 -0.03522,-0.259065 -0.0625,-0.375 -0.0058,-0.02477 -0.02135,-0.0146 0,-0.0625 0.03739,-0.159511 0.08869,-0.30898 0.125,-0.46875 0.03907,-0.18724 0.06268,-0.403061 0.0625,-0.59375 0.0026,-0.07512 -0.0089,-0.14387 0,-0.21875 0.01057,-0.07627 0.0353,-0.14634 0.0625,-0.21875 0.06192,-0.175922 0.13357,-0.352899 0.1875,-0.53125 0.08288,-0.276994 0.15345,-0.554545 0.15625,-0.84375 -0.0036,-0.216845 -0.02051,-0.444245 -0.0625,-0.65625 -0.02474,-0.13589 -0.02835,-0.267591 -0.03125,-0.40625 -0.01687,-0.300022 -0.05435,-0.60429 -0.1875,-0.875 -0.106802,-0.204193 -0.237554,-0.378001 -0.375,-0.5625 -0.113117,-0.162237 -0.209089,-0.331265 -0.3125,-0.5 -0.08619,-0.128342 -0.179744,-0.259456 -0.28125,-0.375 0.0096,-0.07245 0.02921,-0.146312 0.03125,-0.21875 0.01478,-0.140197 0.02465,-0.265645 0.03125,-0.40625 0.0055,-0.11494 0.02475,-0.228823 0.03125,-0.34375 0.0077,-0.134214 0.01622,-0.272421 0.03125,-0.40625 0.08065,-0.675824 -0.367106,-1.050306 -0.84375,-1.09375 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <g
+         transform="translate(-8,0)"
+         id="g5387">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path5389"
+           d="m 52.242794,16.078342 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+           x="48.242844"
+           y="16.211838"
+           id="text5391"><tspan
+             sodipodi:role="line"
+             id="tspan5393"
+             x="48.242844"
+             y="16.211838"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+      <path
+         id="path5395"
+         d="m 54.3125,-26.03125 c -0.35605,0.06483 -0.711134,0.343001 -0.8125,0.84375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.3375282 0,0.5 -0.0077,0.098415 -0.01895,0.1834623 -0.03125,0.28125 -0.0075,0.020461 -0.0046,0.024298 0,0.03125 -0.05365,0.061184 -0.129679,0.099029 -0.1875,0.15625 -0.106414,0.1017906 -0.208575,0.2081288 -0.3125,0.3125 -0.155644,0.1545709 -0.28146,0.3350489 -0.375,0.53125 -0.09746,0.2226754 -0.13632,0.4483951 -0.15625,0.6875 -0.01858,0.2772956 0.03954,0.5529608 0.125,0.8125 0.07843,0.2217985 0.174563,0.4163937 0.28125,0.625 0.06471,0.1300372 0.12053,0.2645639 0.15625,0.40625 0.03981,0.2022997 0.07903,0.4240547 0.125,0.625 0.06211,0.2566292 0.16474,0.5009787 0.25,0.75 0.0567,0.1778499 0.09329,0.3474197 0.125,0.53125 0.0456,0.2445237 0.07767,0.5011467 0.09375,0.75 0.01334,0.2018542 -0.02137,0.3948279 -0.0625,0.59375 -0.04278,0.1837131 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.2332707 -0.22944,0.4728653 -0.3125,0.71875 -0.09389,0.25994712 -0.1205,0.539439 -0.125,0.8125 0.0047,0.2483259 0.04908,0.4759223 0.09375,0.71875 0.05476,0.279457 0.1556,0.5450457 0.25,0.8125 0.08617,0.2366238 0.19185,0.4834418 0.28125,0.71875 0.06233,0.1569602 0.07144,0.3324677 0.09375,0.5 0.02025,0.1729023 0.03175,0.3255211 0.03125,0.5 0.0054,0.1376738 -0.02124,0.2759687 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.4319084 -0.25,0.65625 C 53.81484,4.321117 53.75726,4.6102744 53.6875,4.875 53.60593,5.1897209 53.53637,5.4906555 53.5,5.8125 c -0.04242,0.3446469 0.04955,0.6769286 0.15625,1 0.07811,0.2016298 0.11104,0.4134521 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.0097,0.246623 -0.0687,0.674057 -0.1875,1.4375 -0.0091,0.0323 -0.02426,0.05922 -0.03125,0.09375 -0.03349,0.166073 -0.04375,0.332044 -0.0625,0.5 -0.01478,0.120493 -0.02655,0.253923 -0.03125,0.375 -0.0059,0.148451 0.0099,0.291496 0.03125,0.4375 0.01124,0.07158 0.02855,0.14623 0.03125,0.21875 0.0029,0.04444 0.0024,0.08081 0,0.125 -0.0062,0.113793 -0.02835,0.229903 -0.03125,0.34375 -0.0032,0.13041 0.0027,0.244591 0,0.375 -0.0013,0.09285 0.0061,0.18852 0,0.28125 -0.0041,0.06166 -0.02675,0.12617 -0.03125,0.1875 -0.01657,0.100934 -0.02066,0.210904 -0.03125,0.3125 -0.01414,0.149002 -0.02245,0.288231 -0.03125,0.4375 -0.005,0.110116 -0.01896,0.23405 -0.03125,0.34375 -0.01204,0.119618 -0.01554,0.224509 -0.03125,0.34375 -0.02196,0.150792 -0.02395,0.316954 -0.03125,0.46875 -0.01527,0.205811 -0.0052,0.392371 0.03125,0.59375 0.04251,0.217441 0.12821,0.424395 0.21875,0.625 0.05523,0.104736 0.0813,0.233816 0.125,0.34375 0.0361,0.0726 0.04651,0.13988 0.0625,0.21875 0.04009,0.204518 0.0955,0.394996 0.15625,0.59375 0.01303,0.104852 0.10469,0.235112 0.09375,0.34375 -0.0062,0.0532 -0.01355,0.10553 -0.03125,0.15625 -0.06833,0.181468 -0.15147,0.349343 -0.21875,0.53125 -0.08126,0.228254 -0.12469,0.454142 -0.1875,0.6875 -0.06426,0.221149 -0.12121,0.460601 -0.15625,0.6875 -0.04342,0.286724 -0.05557,0.556813 -0.03125,0.84375 0.03678,0.33071 0.134894,0.660231 0.25,0.96875 0.06563,0.168107 0.12892,0.320379 0.15625,0.5 0.02597,0.204864 0.03015,0.418382 0.03125,0.625 -0.0059,0.296914 0.03012,0.580877 0.0625,0.875 0.02936,0.26812 0.07473,0.547991 0.125,0.8125 0.04063,0.1963 0.03965,0.394488 0.0625,0.59375 0.02199,0.176893 0.0534,0.352937 0.0625,0.53125 0.0079,0.162212 0.0047,0.337529 0,0.5 -0.0077,0.09841 -0.01895,0.183462 -0.03125,0.28125 -0.0075,0.02046 -0.0046,0.0243 0,0.03125 -0.05365,0.06118 -0.129679,0.09903 -0.1875,0.15625 -0.106414,0.10179 -0.208575,0.208129 -0.3125,0.3125 -0.155644,0.154571 -0.28146,0.335049 -0.375,0.53125 -0.09746,0.222675 -0.13632,0.448395 -0.15625,0.6875 -0.01858,0.277296 0.03954,0.552961 0.125,0.8125 0.07843,0.221799 0.174563,0.416394 0.28125,0.625 0.06471,0.130038 0.12053,0.264564 0.15625,0.40625 0.03981,0.2023 0.07903,0.424055 0.125,0.625 0.06211,0.256629 0.16474,0.500979 0.25,0.75 0.0567,0.17785 0.09329,0.347419 0.125,0.53125 0.0456,0.244523 0.07767,0.501147 0.09375,0.75 0.01334,0.201854 -0.02137,0.394828 -0.0625,0.59375 -0.04278,0.183713 -0.10756,0.360831 -0.1875,0.53125 -0.115609,0.23327 -0.22944,0.472865 -0.3125,0.71875 -0.09389,0.259947 -0.1205,0.539439 -0.125,0.8125 0.0047,0.248325 0.04908,0.475922 0.09375,0.71875 0.05476,0.279457 0.1556,0.545046 0.25,0.8125 0.08617,0.236624 0.19185,0.483442 0.28125,0.71875 0.06233,0.15696 0.07144,0.332467 0.09375,0.5 0.02025,0.172902 0.03175,0.325521 0.03125,0.5 0.0054,0.137674 -0.02124,0.275969 -0.0625,0.40625 -0.07664,0.224408 -0.17312,0.431908 -0.25,0.65625 -0.09141,0.258617 -0.14899,0.547775 -0.21875,0.8125 -0.08157,0.314721 -0.15113,0.615655 -0.1875,0.9375 -0.04242,0.344647 0.04955,0.676929 0.15625,1 0.07811,0.20163 0.11104,0.413452 0.15625,0.625 0.05734,0.31019 0.08845,0.621594 0.09375,0.9375 2e-5,0.344835 -0.05241,0.688649 -0.09375,1.03125 -0.0413,0.306683 -0.07656,0.62912 -0.09375,0.9375 -0.01733,0.313944 -0.01359,0.624267 0,0.9375 0.01086,0.277217 0.03654,0.56786 0.0625,0.84375 0.02509,0.202838 0.054,0.389262 0.0625,0.59375 0.0118,0.256293 0.0091,0.524451 0,0.78125 -0.01346,0.259327 -0.03531,0.522795 -0.0625,0.78125 -0.02918,0.25006 -0.0548,0.498764 -0.0625,0.75 -0.0074,0.305196 0.05269,0.582403 0.125,0.875 0.04417,0.161673 0.10397,0.333056 0.125,0.5 0.01649,0.139463 0.02535,0.26574 0.03125,0.40625 0.0039,0.0997 -0.0161,0.21383 -0.03125,0.3125 -0.02262,0.131395 -0.08412,0.248099 -0.125,0.375 -0.08505,0.249359 -0.13889,0.523482 -0.1875,0.78125 -0.03472,0.186818 -0.04175,0.379086 -0.09375,0.5625 -0.02946,0.113677 -0.07398,0.207112 -0.125,0.3125 -0.111091,0.196376 -0.19392,0.407834 -0.25,0.625 -0.07468,0.355292 -0.02106,0.687248 0.0625,1.03125 0.04031,0.186045 0.10705,0.379295 0.15625,0.5625 0.0038,0.03902 -0.0011,0.08556 0,0.125 0.0027,0.152042 0.01558,0.286625 0.03125,0.4375 0.01221,0.161455 0.02781,0.311162 0.0625,0.46875 0.05274,0.222376 0.15095,0.451998 0.25,0.65625 0.02842,0.03876 0.07192,0.141147 0.09375,0.1875 0.440107,1.072233 2.109574,0.589644 1.8125,-0.65625 -0.05163,-0.14524 -0.10642,-0.276285 -0.1875,-0.40625 -0.03683,-0.07216 -0.06893,-0.14134 -0.09375,-0.21875 -0.02133,-0.08262 -0.02215,-0.1651 -0.03125,-0.25 -0.01079,-0.102799 0.0013,-0.208848 0,-0.3125 -0.0057,-0.198714 -0.03805,-0.40274 -0.09375,-0.59375 -0.04687,-0.160126 -0.08353,-0.306927 -0.125,-0.46875 -0.0021,-0.0083 -0.04161,-0.23894 -0.0625,-0.1875 -0.06499,0.12661 0.09035,-0.189 0.09375,-0.1875 0.103669,-0.214906 0.189,-0.456825 0.25,-0.6875 0.06178,-0.233468 0.11777,-0.44959 0.15625,-0.6875 0.03317,-0.177654 0.0647,-0.359803 0.125,-0.53125 0.07405,-0.230011 0.15281,-0.448354 0.1875,-0.6875 0.03117,-0.219115 0.04222,-0.466681 0.03125,-0.6875 -0.0091,-0.198518 -0.03763,-0.396854 -0.0625,-0.59375 -0.03306,-0.233902 -0.05856,-0.461374 -0.125,-0.6875 -0.03158,-0.12659 -0.08545,-0.243844 -0.09375,-0.375 0.0034,-0.20085 0.04228,-0.393774 0.0625,-0.59375 0.03193,-0.303899 0.04861,-0.601252 0.0625,-0.90625 0.0098,-0.30556 0.01425,-0.632546 0,-0.9375 -0.0103,-0.237471 -0.03325,-0.451934 -0.0625,-0.6875 -0.02331,-0.243659 -0.02145,-0.50515 -0.03125,-0.75 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 0.01456,-0.266903 0.02643,-0.51586 0.0625,-0.78125 C 55.77073,47.193277 55.817,46.746992 55.8125,46.3125 55.802794,45.874033 55.77386,45.429394 55.6875,45 55.626565,44.720028 55.56971,44.455454 55.46875,44.1875 55.44314,44.114078 55.4276,44.08456 55.4375,44 c 0.02422,-0.227593 0.03759,-0.464809 0.09375,-0.6875 0.0574,-0.218897 0.14278,-0.442584 0.21875,-0.65625 0.0836,-0.244028 0.16897,-0.473902 0.25,-0.71875 0.09579,-0.316856 0.16355,-0.637278 0.15625,-0.96875 -0.0014,-0.26316 -0.02842,-0.520794 -0.0625,-0.78125 -0.04506,-0.305812 -0.105993,-0.61886 -0.21875,-0.90625 -0.08473,-0.222355 -0.16621,-0.433527 -0.25,-0.65625 -0.06222,-0.173025 -0.11771,-0.350816 -0.15625,-0.53125 -0.02359,-0.126476 -0.04801,-0.246934 -0.0625,-0.375 -0.005,-0.06714 0.0052,-0.12288 0.03125,-0.1875 C 55.496419,37.354865 55.54078,37.166588 55.625,37 55.773703,36.680873 55.93228,36.346057 56,36 56.06514,35.638441 56.09017,35.27193 56.0625,34.90625 56.039806,34.593231 55.99596,34.307744 55.9375,34 55.888662,33.717168 55.84424,33.427695 55.75,33.15625 55.68556,32.968282 55.61418,32.786024 55.5625,32.59375 55.50842,32.364074 55.49756,32.103299 55.4375,31.875 55.36179,31.615712 55.250176,31.363984 55.125,31.125 55.05882,30.995629 54.99142,30.885325 54.9375,30.75 c -0.0089,-0.02127 -0.02355,-0.04166 -0.03125,-0.0625 0.09136,-0.09346 0.190507,-0.187068 0.28125,-0.28125 0.1464,-0.144884 0.284172,-0.302201 0.40625,-0.46875 0.168907,-0.234447 0.30169,-0.461756 0.34375,-0.75 0.02725,-0.190635 0.02995,-0.401763 0.03125,-0.59375 0.0064,-0.215905 0.01116,-0.409508 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 C 55.87799,27.066215 55.8621,26.805209 55.8125,26.5625 55.77092,26.346624 55.74294,26.125149 55.71875,25.90625 55.69305,25.67888 55.6818,25.479667 55.6875,25.25 55.6857,24.935452 55.67555,24.591628 55.625,24.28125 55.57069,23.989229 55.487561,23.711735 55.375,23.4375 55.31703,23.283485 55.25078,23.131138 55.21875,22.96875 55.20048,22.839266 55.23547,22.723795 55.25,22.59375 55.27195,22.439172 55.30044,22.275418 55.34375,22.125 55.39139,21.947796 55.44208,21.768198 55.5,21.59375 55.58029,21.373243 55.67979,21.161536 55.75,20.9375 55.83614,20.635599 55.87901,20.313019 55.84375,20 55.81433,19.773013 55.76183,19.559517 55.6875,19.34375 55.64318,19.200629 55.59106,19.053791 55.5625,18.90625 55.5233,18.721575 55.48165,18.54801 55.40625,18.375 55.35089,18.236052 55.31818,18.101897 55.25,17.96875 55.21977,17.90464 55.17087,17.82013 55.15625,17.75 c -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.01126,-0.05564 -0.0041,-0.104105 0,-0.15625 0.161406,-0.819926 0.259066,-1.617238 0.25,-1.84375 -0.011,-0.250036 -0.01357,-0.499344 0,-0.75 C 55.67081,10.139347 55.68268,9.89039 55.71875,9.625 55.77073,9.193277 55.817,8.746992 55.8125,8.3125 55.802794,7.874033 55.77386,7.4293942 55.6875,7 55.626565,6.7200277 55.56971,6.455454 55.46875,6.1875 55.44314,6.1140787 55.4276,6.084559 55.4375,6 55.461724,5.7724067 55.47509,5.5351908 55.53125,5.3125 55.588653,5.0936026 55.67403,4.8699155 55.75,4.65625 55.833605,4.4122216 55.91897,4.1823487 56,3.9375 56.095794,3.6206441 56.16355,3.3002212 56.15625,2.96875 56.15488,2.70559 56.12783,2.4479557 56.09375,2.1875 56.048692,1.8816882 55.987757,1.5686398 55.875,1.28125 55.79027,1.0588953 55.70879,0.8477229 55.625,0.625 55.562777,0.451975 55.50729,0.2741849 55.46875,0.09375 c -0.02359,-0.1264759 -0.04801,-0.2469343 -0.0625,-0.375 -0.005,-0.0671392 0.0052,-0.122876 0.03125,-0.1875 C 55.496419,-0.64513499 55.54078,-0.83341198 55.625,-1 55.773703,-1.3191269 55.93228,-1.6539423 56,-2 56.06514,-2.3615586 56.09017,-2.7280708 56.0625,-3.09375 56.039806,-3.4067695 55.99596,-3.6922556 55.9375,-4 55.888662,-4.2828314 55.84424,-4.5723044 55.75,-4.84375 55.68556,-5.0317176 55.61418,-5.2139761 55.5625,-5.40625 55.50842,-5.6359262 55.49756,-5.8967013 55.4375,-6.125 55.36179,-6.3842881 55.250176,-6.6360155 55.125,-6.875 55.05882,-7.0043704 54.99142,-7.1146757 54.9375,-7.25 c -0.0089,-0.021272 -0.02355,-0.041659 -0.03125,-0.0625 0.09136,-0.093465 0.190507,-0.187063 0.28125,-0.28125 0.1464,-0.1448846 0.284172,-0.3022006 0.40625,-0.46875 0.168907,-0.2344469 0.30169,-0.4617555 0.34375,-0.75 0.02725,-0.1906343 0.02995,-0.4017635 0.03125,-0.59375 0.0064,-0.2159055 0.01116,-0.4095077 0,-0.625 -0.0121,-0.216561 -0.03507,-0.441388 -0.0625,-0.65625 -0.02826,-0.246285 -0.04415,-0.507291 -0.09375,-0.75 -0.04158,-0.215876 -0.06956,-0.437351 -0.09375,-0.65625 -0.0257,-0.22737 -0.03695,-0.426583 -0.03125,-0.65625 -0.0018,-0.314548 -0.01195,-0.658372 -0.0625,-0.96875 -0.05431,-0.292021 -0.137439,-0.569515 -0.25,-0.84375 -0.05797,-0.154015 -0.12422,-0.306362 -0.15625,-0.46875 -0.01827,-0.129484 0.01672,-0.244955 0.03125,-0.375 0.02195,-0.154578 0.05044,-0.318332 0.09375,-0.46875 0.04764,-0.177204 0.09833,-0.356802 0.15625,-0.53125 0.08029,-0.220507 0.17979,-0.432214 0.25,-0.65625 0.08614,-0.301901 0.12901,-0.624481 0.09375,-0.9375 -0.02942,-0.226987 -0.08192,-0.440483 -0.15625,-0.65625 -0.04432,-0.143121 -0.09644,-0.289959 -0.125,-0.4375 -0.0392,-0.184675 -0.08085,-0.35824 -0.15625,-0.53125 -0.05536,-0.138948 -0.08807,-0.273103 -0.15625,-0.40625 -0.03023,-0.06411 -0.07913,-0.14862 -0.09375,-0.21875 -0.0142,-0.04906 -0.0037,-0.10246 0,-0.15625 0.0045,-0.09858 0.01621,-0.18339 0.03125,-0.28125 0.01717,-0.132776 0.01833,-0.273028 0.03125,-0.40625 0.01532,-0.142533 0.02515,-0.294452 0.03125,-0.4375 0.007,-0.121387 0.02035,-0.222543 0.03125,-0.34375 0.0094,-0.09765 0.01873,-0.18391 0.03125,-0.28125 0.0088,-0.08827 0.02605,-0.19278 0.03125,-0.28125 0.008,-0.121737 0.02935,-0.253119 0.03125,-0.375 0.0027,-0.127384 -0.0031,-0.247618 0,-0.375 0.0023,-0.09418 -0.005,-0.18711 0,-0.28125 0.006,-0.106364 0.0051,-0.206227 0,-0.3125 -0.0061,-0.139456 -0.01016,-0.268485 -0.03125,-0.40625 -0.006,-0.04017 3e-6,-0.08922 0,-0.125 0.0027,-0.06871 -0.0077,-0.11884 0,-0.1875 0.01217,-0.110733 0.04115,-0.234149 0.0625,-0.34375 0.168945,-0.834581 -0.500333,-1.295553 -1.09375,-1.1875 z"
+         style="fill:#060cb0;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       id="g4749"
+       transform="translate(0,-1.0699558)">
+      <path
+         d="m 97.619332,-24.737229 c -0.02135,0.109601 -0.03401,0.220462 -0.04618,0.331195 -0.0077,0.06866 -0.01599,0.137853 -0.01867,0.206567 3e-6,0.03578 0.0072,0.06552 0.01317,0.105687 0.02109,0.137765 0.03242,0.27679 0.03855,0.416246 0.0051,0.106273 0.0019,0.212691 -0.0041,0.319055 -0.005,0.09414 -0.0072,0.188341 -0.0095,0.282523 -0.0031,0.127382 -0.0056,0.254765 -0.0083,0.382149 -0.0019,0.121881 -0.0084,0.243726 -0.01643,0.365463 -0.0052,0.08847 -0.0098,0.176838 -0.01863,0.265105 -0.01252,0.09734 -0.02853,0.194188 -0.03796,0.291837 -0.0109,0.121207 -0.01696,0.242624 -0.02394,0.364011 -0.0061,0.143048 -0.01683,0.285818 -0.03215,0.428351 -0.01292,0.133222 -0.03436,0.26557 -0.05153,0.398346 -0.01504,0.09786 -0.02115,0.196428 -0.02564,0.295005 -0.0037,0.05379 -0.0064,0.109588 0.0078,0.158647 0.01462,0.07013 0.04204,0.134752 0.07227,0.198861 0.06818,0.133147 0.122213,0.272814 0.177569,0.411762 0.0754,0.17301 0.122813,0.355702 0.162011,0.540377 0.02856,0.147541 0.07132,0.291435 0.115638,0.434556 0.07433,0.215767 0.126704,0.436158 0.15612,0.663145 0.03526,0.313019 -0.02376,0.621908 -0.109901,0.923809 -0.07021,0.224036 -0.169669,0.437556 -0.249962,0.658063 -0.05792,0.174448 -0.101225,0.352926 -0.148866,0.53013 -0.04331,0.150418 -0.07976,0.301962 -0.10171,0.45654 -0.01453,0.130045 -0.02862,0.260891 -0.01035,0.390375 0.03203,0.162388 0.09266,0.317125 0.150633,0.47114 0.112561,0.274235 0.192644,0.558472 0.246956,0.850493 0.05055,0.310378 0.05219,0.626296 0.05394,0.940844 -0.0057,0.229667 0.0087,0.458006 0.0344,0.685376 0.02419,0.218899 0.05739,0.436331 0.09897,0.652207 0.0496,0.242709 0.07783,0.489232 0.106089,0.735517 0.02743,0.214862 0.04801,0.430508 0.06011,0.6470692 0.01116,0.215493 0.007,0.431543 6.05e-4,0.647448 -0.0013,0.191987 -0.01109,0.382824 -0.03834,0.573458 -0.04206,0.288244 -0.179389,0.54106 -0.348296,0.775507 -0.122078,0.16655 -0.26778,0.312919 -0.41418,0.457804 -0.09605,0.0997 -0.206219,0.185247 -0.301343,0.28574 -0.02737,0.04348 0.02199,-0.02899 0.03207,-0.0464 0.01366,-0.03203 0.004,0.0248 0.0056,0.03388 0.0077,0.02084 0.01812,0.04011 0.027,0.06138 0.05392,0.135324 0.122966,0.263671 0.189143,0.393041 0.125176,0.238985 0.221299,0.490544 0.29701,0.749833 0.06006,0.228298 0.08906,0.46346 0.143143,0.693137 0.05168,0.192274 0.121732,0.378569 0.186174,0.566537 0.09424,0.271446 0.137737,0.556567 0.186575,0.839398 0.05846,0.307745 0.09831,0.618317 0.121004,0.931337 0.02767,0.365679 -0.0053,0.730672 -0.07044,1.09223 -0.06772,0.346058 -0.206252,0.671487 -0.354955,0.99061397 -0.08422,0.166588 -0.151163,0.339985 -0.210082,0.51637 -0.02603,0.06462 -0.0371,0.125674 -0.03214,0.192813 0.01449,0.128065 0.0367,0.254902 0.06029,0.381378 0.03854,0.180435 0.09493,0.355971 0.157153,0.528996 0.08379,0.222722 0.177287,0.44130403 0.262017,0.66365803 0.112757,0.28739 0.181555,0.587943 0.226613,0.893754 0.03408,0.260456 0.04786,0.523309 0.04923,0.786469 0.0073,0.331471 -0.06756,0.654546 -0.163354,0.971402 -0.08103,0.244849 -0.169639,0.487215 -0.253244,0.731244 -0.07597,0.213665 -0.13762,0.43148 -0.195023,0.650378 -0.05616,0.22269 -0.09294,0.44935 -0.117164,0.676944 -0.0099,0.08456 0.01541,0.109656 0.04102,0.183077 0.10096,0.267954 0.167959,0.547349 0.228894,0.827321 0.08636,0.429394 0.113528,0.868379 0.123234,1.306846 0.0045,0.434492 -0.04636,0.867685 -0.09834,1.299408 -0.03607,0.26539 -0.05919,0.5317868 -0.07375,0.7986898 -0.01357,0.250656 -0.0063,0.501064 0.0047,0.7511 0.0098,0.24485 0.02426,0.489297 0.04757,0.732956 0.02925,0.235566 0.04735,0.472155 0.05765,0.709626 0.01425,0.304954 0.01524,0.61033 0.0054,0.91589 -0.01389,0.304998 -0.0456,0.609183 -0.07753,0.913082 -0.02022,0.199976 -0.0474,0.399749 -0.05083,0.600599 0.0083,0.131156 0.04581,0.258484 0.07739,0.385074 0.06644,0.226126 0.116868,0.45575 0.149928,0.689652 0.02487,0.196896 0.04023,0.394938 0.04933,0.593456 0.01097,0.220819 -0.0117,0.441408 -0.04287,0.660523 -0.03469,0.239146 -0.107332,0.470713 -0.181381,0.700724 -0.0603,0.171447 -0.09543,0.348776 -0.128603,0.52643 -0.03848,0.23791 -0.08378,0.47407 -0.145556,0.707538 -0.061,0.230675 -0.155447,0.449941 -0.259116,0.664847 -0.0034,-0.0015 -0.161897,0.329457 -0.09691,0.202847 0.02089,-0.05144 0.05507,0.157258 0.0572,0.165552 0.04147,0.161823 0.09779,0.318918 0.144665,0.479044 0.0557,0.19101 0.0702,0.389731 0.07587,0.588445 0.0013,0.103652 0.01224,0.206564 0.02303,0.309363 0.0091,0.0849 0.01319,0.170811 0.03452,0.253435 0.02482,0.07741 0.05803,0.151614 0.09486,0.223771 0.08108,0.129965 0.127126,0.268437 0.17876,0.413677 0.313278,1.313852 -1.554711,1.795191 -1.867987,0.481339 l 0,0 c 0.157815,0.409593 0.01999,0.05814 -0.03684,-0.01937 -0.09905,-0.204252 -0.188335,-0.414179 -0.241079,-0.636555 -0.03469,-0.157588 -0.05951,-0.316847 -0.07172,-0.478302 -0.01567,-0.150875 -0.02994,-0.302054 -0.03259,-0.454096 -0.0011,-0.03944 4.32e-4,-0.07922 -0.0034,-0.118242 -0.0492,-0.183205 -0.122106,-0.359542 -0.16242,-0.545587 -0.08356,-0.344002 -0.139407,-0.695341 -0.06473,-1.050633 0.05608,-0.217166 0.132094,-0.424092 0.243185,-0.620468 0.05102,-0.105388 0.102562,-0.210683 0.132021,-0.32436 0.052,-0.183414 0.07679,-0.371872 0.111506,-0.55869 0.04861,-0.257768 0.103835,-0.514507 0.188885,-0.763866 0.04088,-0.126901 0.08546,-0.253751 0.108077,-0.385146 0.01515,-0.09867 0.02852,-0.198099 0.02459,-0.297796 -0.0059,-0.14051 -0.01719,-0.280572 -0.03368,-0.420035 -0.02103,-0.166944 -0.06735,-0.327596 -0.111517,-0.489269 -0.07231,-0.292597 -0.140083,-0.588831 -0.132665,-0.894027 0.0077,-0.251236 0.03155,-0.501488 0.06073,-0.751548 0.02719,-0.258455 0.05459,-0.517103 0.06805,-0.77643 0.0091,-0.256799 0.0071,-0.513391 -0.0047,-0.769684 -0.0085,-0.204488 -0.02576,-0.407874 -0.05085,-0.610712 -0.02596,-0.27589 -0.04342,-0.552549 -0.05428,-0.829766 -0.01359,-0.313233 -0.02093,-0.627005 -0.0036,-0.940949 0.01719,-0.30838 0.04335,-0.6162748 0.08465,-0.9229578 0.04134,-0.342601 0.0849,-0.686217 0.08488,-1.031052 -0.0053,-0.315906 -0.02348,-0.632305 -0.08082,-0.942495 -0.04521,-0.211548 -0.09496,-0.422707 -0.173069,-0.624337 -0.106698,-0.323071 -0.17048,-0.655023 -0.128064,-0.99967 0.03637,-0.321844 0.08766,-0.642529 0.169233,-0.95725 0.06976,-0.264726 0.144847,-0.528115 0.236256,-0.786732 0.07688,-0.224341 0.15732,-0.447489 0.23396,-0.671897 0.04126,-0.130281 0.08314,-0.260662 0.0777,-0.398336 4.96e-4,-0.174479 -0.0099,-0.348625 -0.03015,-0.521527 -0.02231,-0.167532 -0.05968,-0.331117 -0.122014,-0.488078 -0.0894,-0.235308 -0.190132,-0.465852 -0.276303,-0.702476 -0.0944,-0.267454 -0.179994,-0.53867303 -0.234752,-0.81813003 -0.04467,-0.242828 -0.08736,-0.487307 -0.09207,-0.735633 0.0045,-0.273061 0.03958,-0.543052 0.133467,-0.802999 0.08306,-0.24588497 0.17658,-0.48818097 0.292189,-0.72145197 0.07994,-0.170419 0.162153,-0.341681 0.204929,-0.525394 0.04113,-0.198922 0.05497,-0.400632 0.04163,-0.602486 -0.01608,-0.248854 -0.05224,-0.494813 -0.09784,-0.739337 -0.03171,-0.18383 -0.05541,-0.370379 -0.112106,-0.548229 -0.08526,-0.249022 -0.177354,-0.496155 -0.239466,-0.752784 -0.04597,-0.200945 -0.08103,-0.403915 -0.120845,-0.606215 -0.03572,-0.141686 -0.09677,-0.274164 -0.16148,-0.404201 -0.106687,-0.208606 -0.215114,-0.417162 -0.293546,-0.63896 -0.08546,-0.25954 -0.14379,-0.526639 -0.125209,-0.803934 0.01993,-0.239105 0.06191,-0.475917 0.159373,-0.698593 0.09354,-0.196201 0.208144,-0.379178 0.363788,-0.533748 0.103925,-0.104372 0.213481,-0.202553 0.319895,-0.304344 0.07359,-0.07283 0.149972,-0.14355 0.213448,-0.225694 0.03761,-0.04452 -0.02248,0.06385 -0.01087,0.08123 0.01948,-0.107666 0.0069,-0.220109 0.01549,-0.329338 0.0047,-0.162472 0.0092,-0.325057 0.0013,-0.487269 -0.0091,-0.178314 -0.02846,-0.3555342 -0.05045,-0.5324272 -0.02285,-0.199262 -0.04404,-0.399003 -0.08467,-0.595303 -0.05027,-0.264509 -0.09174,-0.530679 -0.121102,-0.798799 -0.03238,-0.294123 -0.05201,-0.589571 -0.04611,-0.886485 -0.0011,-0.206618 0.0011,-0.414249 -0.02487,-0.619113 -0.02733,-0.179621 -0.09025,-0.34878 -0.155883,-0.516887 -0.115106,-0.308519 -0.22511,-0.621788 -0.261886,-0.952498 -0.02432,-0.286937 -0.02057,-0.574362 0.02285,-0.861086 0.03504,-0.226899 0.08259,-0.451339 0.146853,-0.672488 0.06281,-0.233358 0.12048,-0.468346 0.20174,-0.6966 0.06728,-0.181907 0.143021,-0.360462 0.211355,-0.54193 0.0177,-0.05072 0.03495,-0.103631 0.04114,-0.156836 0.01094,-0.108638 -0.07152,-0.214178 -0.08455,-0.31903 -0.06075,-0.198754 -0.118957,-0.398604 -0.159043,-0.603122 -0.01599,-0.07887 -0.03217,-0.156174 -0.06827,-0.228775 -0.0437,-0.109934 -0.08545,-0.220676 -0.140677,-0.325412 -0.09054,-0.200605 -0.16608,-0.40766 -0.20859,-0.625101 -0.03643,-0.201379 -0.05547,-0.404901 -0.0402,-0.610712 0.0073,-0.151796 0.01784,-0.303559 0.0398,-0.454351 0.01571,-0.119241 0.03461,-0.238171 0.04665,-0.357789 0.01229,-0.1097 0.01894,-0.219662 0.02392,-0.329778 0.0088,-0.149269 0.01643,-0.298583 0.03057,-0.447585 0.01059,-0.101596 0.02267,-0.20305 0.03924,-0.303984 0.0045,-0.06133 0.0075,-0.123677 0.01162,-0.18534 0.0061,-0.09273 0.01142,-0.185539 0.01274,-0.278385 0.0027,-0.130409 0.0053,-0.26082 0.0085,-0.39123 0.0029,-0.113847 0.0057,-0.227721 0.01194,-0.341514 0.0024,-0.04419 0.0055,-0.08739 0.0026,-0.131829 -0.0027,-0.07252 -0.0084,-0.144699 -0.01964,-0.216283 -0.02138,-0.146004 -0.03875,-0.293125 -0.0329,-0.441576 0.0047,-0.121077 0.01479,-0.241886 0.02957,-0.362379 0.01875,-0.167956 0.03941,-0.335929 0.0729,-0.502002 0.27031,-1.33533 2.151674,-0.991976 1.881362,0.343353 z"
+         id="path4049-8"
+         style="fill:#000595;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+      <path
+         d="m 102.09452,-23.876069 c -0.0737,0.19299 -0.13019,0.390393 -0.16874,0.592074 -0.0363,0.186838 -0.0385,0.375522 -0.034,0.563559 0.007,0.188372 0.005,0.376995 -0.002,0.565769 -0.005,0.142087 -0.0205,0.284164 -0.0199,0.426218 0.008,0.113289 0.0244,0.225552 0.0397,0.337797 0.0276,0.170592 0.0373,0.343785 0.0547,0.515857 0.003,0.07491 0.0315,0.135135 0.0688,0.196431 0.0973,0.152243 0.19873,0.301271 0.29102,0.456791 0.16327,0.272444 0.23178,0.577256 0.24708,0.895146 0.003,0.233774 -0.0584,0.460994 -0.11968,0.686439 -0.0134,0.105244 -0.003,-0.03613 0.004,0.05993 0.0131,0.160872 0.0162,0.322273 0.012,0.484151 -0.006,0.275444 -0.0889,0.538414 -0.19838,0.791888 -0.0475,0.119937 -0.13757,0.256947 -0.18442,0.358954 0.0122,-0.02293 0.0257,-0.04579 0.0325,-0.07062 0.0299,0.131038 0.0505,0.264419 0.0696,0.397783 0.0217,0.17071 0.0387,0.342118 0.0597,0.512933 0.006,0.08294 0.0369,0.156099 0.0694,0.230357 0.0837,0.174828 0.1632,0.351267 0.23211,0.532864 0.0877,0.238244 0.12503,0.49084 0.15024,0.74411 0.003,0.135143 0.0284,0.265449 0.063,0.394377 0.0735,0.207141 0.14269,0.414816 0.19632,0.628699 0.0669,0.285573 0.0777,0.580023 0.0653,0.874415 -0.0162,0.226778 -0.056,0.451706 -0.0932,0.676456 -0.027,0.16085 -0.0525,0.321899 -0.0764,0.483136 -0.0235,0.157152 -0.0535,0.313454 -0.0766,0.470649 -0.02,0.145714 -0.0438,0.291007 -0.0676,0.436273 -0.0225,0.150018 -0.0517,0.299009 -0.0846,0.44741 -0.0314,0.144474 -0.0761,0.2859902 -0.1087,0.4302022 -0.0248,0.119889 -0.045,0.240566 -0.061,0.361629 -0.0187,0.15548 -0.033,0.311261 -0.0526,0.466675 -0.0232,0.189332 -0.056,0.377304 -0.0999,0.563596 -0.0564,0.232963 -0.16793,0.445448 -0.30024,0.645468 -0.0494,0.07161 -0.10157,0.14143 -0.14861,0.214626 -0.0335,0.03828 -0.11706,0.192509 -0.03,0.03385 0.0461,-0.107921 -0.0494,0.144408 -0.0538,0.156013 -0.0384,0.0841 -0.039,0.164043 -0.0169,0.02513 0.0103,-0.118072 -0.0378,-0.202423 0.0459,-0.04453 0.0938,0.164113 0.17525,0.334866 0.2506,0.50855 0.0788,0.180891 0.13234,0.371521 0.18632,0.561541 0.0483,0.165989 0.10136,0.330423 0.15473,0.494695 0.0486,0.157182 0.10869,0.310021 0.16766,0.463182 0.0898,0.213423 0.13663,0.440811 0.17129,0.670329 0.0318,0.243021 0.0418,0.488889 0.0592,0.733696 0.0253,0.259312 0.0194,0.520583 0.007,0.781633 -0.0129,0.186527 -0.0181,0.372975 -0.0172,0.559414 0.01,0.264238 -0.01,0.528005 -0.0486,0.790871 -0.0441,0.283204 -0.14321,0.552166 -0.26925,0.81080297 -0.0842,0.164123 -0.18039,0.321729 -0.27758,0.478646 -0.0525,0.100601 -0.13864,0.187101 -0.18133,0.292841 -10e-4,0.02014 -0.007,0.04166 -0.014,0.07133 -0.0219,0.08884 -0.04,0.178119 -0.0538,0.268248 -0.009,0.07723 -0.0217,0.155326 -0.0146,0.232606 0.0191,0.124596 0.0327,0.250407 0.0468,0.37588 0.0149,0.125714 0.0175,0.25486603 0.0589,0.37466203 0.0598,0.134476 0.12897,0.264186 0.18944,0.398521 0.14034,0.319837 0.16108,0.668089 0.14783,1.016797 -0.0161,0.275239 -0.0702,0.546672 -0.14113,0.814332 -0.0593,0.227664 -0.15564,0.443209 -0.25165,0.658194 -0.0703,0.16698 -0.13372,0.336621 -0.19082,0.508134 -0.0211,0.108959 -0.087,0.224565 -0.0781,0.337334 0.018,-0.02601 -0.0174,-0.152237 0.0199,-0.07147 0.0804,0.150017 0.15007,0.305244 0.21274,0.46385 0.10098,0.252608 0.14401,0.521402 0.16233,0.793829 0.0129,0.259947 -0.0176,0.520318 -0.0533,0.778944 -0.0317,0.206829 -0.0686,0.412836 -0.0843,0.621093 -0.0136,0.156821 0.007,0.311988 0.0205,0.466997 0.0304,0.306068 0.0251,0.61486 0.0116,0.923138 -0.0164,0.302361 -0.044,0.604388 -0.0569,0.906818 -0.004,0.110507 -0.004,0.221775 0.0385,0.3235288 0.0611,0.162838 0.14175,0.316995 0.21403,0.474706 0.0937,0.205128 0.16658,0.419436 0.25249,0.627986 0.0516,0.129457 0.11477,0.25332 0.17351,0.379357 0.11496,0.244386 0.16626,0.510354 0.19762,0.779101 0.0262,0.264983 0.0177,0.532726 0.007,0.799537 -0.0107,0.275577 -0.0397,0.550215 -0.086,0.823195 -0.0419,0.210962 -0.0931,0.420157 -0.12548,0.632576 -0.0302,0.20744 -0.0464,0.416033 -0.0629,0.624425 -0.0174,0.22982 -0.0393,0.4594 -0.0639,0.688801 -0.0205,0.208469 -0.0513,0.415961 -0.0856,0.623015 -0.0327,0.189206 -0.0695,0.377807 -0.1072,0.566238 -0.0307,0.164296 -0.0641,0.328163 -0.0961,0.492264 -0.035,0.193411 -0.0734,0.386101 -0.11709,0.578046 -0.0498,0.196009 -0.0915,0.393566 -0.13123,0.59149 -0.0311,0.142765 -0.05,0.28693 -0.062,0.431739 -0.009,0.126544 -0.004,0.252904 0.003,0.378772 0.007,0.08924 0.0277,0.176174 0.0451,0.263438 0.0282,0.136539 0.0425,0.275717 0.0625,0.413809 0.0194,0.135944 0.0399,0.271616 0.0543,0.408379 0.0136,0.138706 0.0131,0.278645 0.0101,0.418383 -0.002,0.08274 -0.008,0.165356 -0.003,0.247779 0.01,0.03603 0.023,0.07372 0.0368,0.123909 0.0224,0.09569 0.0483,0.190357 0.0732,0.285334 0.0424,0.154279 0.0591,0.313812 0.0659,0.474294 0.004,0.141614 -0.0123,0.283181 -0.0238,0.42459 -0.007,0.02932 -0.004,0.107058 -0.003,0.118654 0.009,0.03599 0.0198,0.07367 0.0303,0.110143 0.01,0.0318 0.0182,0.06398 0.0268,0.09612 0.34438,1.300069 -1.51341,1.851197 -1.85779,0.551128 l 0,0 c -0.005,-0.01977 -0.0102,-0.03958 -0.0165,-0.05897 -0.0373,-0.130257 -0.0708,-0.261877 -0.0889,-0.396997 -0.0187,-0.169635 -0.0235,-0.340082 -0.005,-0.511382 0.006,-0.07147 0.0135,-0.142938 0.0181,-0.214444 1.5e-4,-0.01701 -0.002,-0.03418 -0.006,-0.05048 -0.0225,-0.08826 -0.0481,-0.1757 -0.0678,-0.264784 -0.046,-0.172904 -0.0962,-0.345444 -0.10058,-0.527356 -0.006,-0.127457 -0.005,-0.254947 8.6e-4,-0.382799 0.001,-0.06141 0.003,-0.122987 -8.8e-4,-0.184151 -0.0102,-0.110927 -0.031,-0.220197 -0.0448,-0.330562 -0.0149,-0.104526 -0.0259,-0.209769 -0.0454,-0.313442 -0.0343,-0.172164 -0.06885,-0.344733 -0.07815,-0.521335 -0.01249,-0.21802 -0.01708,-0.436994 5.21e-4,-0.655986 0.0191,-0.217086 0.04721,-0.43349 0.09286,-0.647692 0.0431,-0.214763 0.0881,-0.429218 0.14204,-0.641945 0.0393,-0.171728 0.0728,-0.344246 0.10426,-0.517312 0.0327,-0.167272 0.0665,-0.334361 0.098,-0.501825 0.0336,-0.1674 0.0663,-0.334959 0.0956,-0.503011 0.0284,-0.17 0.0539,-0.340332 0.0704,-0.511547 0.0227,-0.211652 0.0429,-0.423476 0.0589,-0.63552 0.0204,-0.257719 0.0416,-0.515625 0.0803,-0.772024 0.0357,-0.223169 0.0817,-0.444481 0.13093,-0.665476 0.0349,-0.189354 0.0495,-0.380766 0.0588,-0.572057 0.007,-0.16984 0.015,-0.340318 0.003,-0.509462 -0.006,-0.06614 -0.0101,-0.134209 -0.035,-0.195921 -0.0711,-0.153088 -0.14725,-0.303771 -0.20923,-0.461198 -0.0753,-0.185847 -0.14281,-0.375066 -0.22267,-0.558911 -0.10194,-0.225104 -0.21831,-0.444178 -0.29364,-0.681165 -0.0958,-0.31757 -0.145952,-0.644069 -0.12514,-0.9807848 0.0137,-0.303099 0.0386,-0.605844 0.057,-0.908833 0.0104,-0.222621 0.0164,-0.44575 -0.006,-0.666804 -0.0235,-0.262977 -0.0465,-0.526831 -0.0217,-0.792519 0.0207,-0.24499 0.0557,-0.488317 0.0965,-0.73143 0.0187,-0.132891 0.0382,-0.266512 0.0381,-0.400358 -0.003,-0.07805 -0.009,-0.154576 -0.0395,-0.226796 -0.0492,-0.134256 -0.1216,-0.257191 -0.180943,-0.386585 -0.116427,-0.268935 -0.19669,-0.550791 -0.17074,-0.852194 0.02755,-0.268658 0.085,-0.532915 0.172887,-0.790749 0.07825,-0.231363 0.162806,-0.460906 0.260076,-0.685621 0.0533,-0.119353 0.11185,-0.237251 0.14689,-0.363201 0.036,-0.131678 0.0652,-0.264676 0.0766,-0.400248 0.004,-0.05506 0.008,-0.128469 0.01,-0.167784 -0.0902,-0.212151 -0.21631,-0.408416 -0.27549,-0.634393 -0.0618,-0.223935 -0.10484,-0.451702 -0.12079,-0.685338 -0.0197,-0.17414303 -0.0452,-0.34748203 -0.05766,-0.52258103 -0.005,-0.199539 0.0051,-0.399179 0.03665,-0.597831 0.0225,-0.142411 0.0503,-0.28391 0.0848,-0.424354 0.0423,-0.175248 0.0933,-0.349002 0.17712,-0.51098897 0.0787,-0.149654 0.16655,-0.293945 0.26129,-0.434427 0.064,-0.103277 0.12814,-0.20639 0.18566,-0.31335 0.0394,-0.07558 0.0732,-0.151976 0.0867,-0.236446 0.0282,-0.161536 0.0302,-0.324081 0.0258,-0.486614 -8e-4,-0.220857 0.005,-0.441775 0.0195,-0.662728 0.009,-0.184383 0.0161,-0.368794 -0.004,-0.551858 -0.0139,-0.197313 -0.0229,-0.395287 -0.0437,-0.591782 -0.013,-0.09349 -0.0258,-0.185416 -0.0666,-0.27105 -0.0708,-0.183892 -0.14191,-0.367733 -0.20068,-0.556264 -0.0605,-0.186296 -0.1204,-0.372876 -0.17498,-0.561199 -0.0318,-0.111989 -0.0604,-0.225408 -0.10489,-0.332892 -0.0565,-0.131641 -0.11969,-0.259795 -0.19103,-0.383741 -0.141172,-0.270965 -0.259977,-0.55225 -0.257925,-0.86872 0.01487,-0.22874 0.05108,-0.451619 0.14133,-0.666547 0.03634,-0.09683 0.06866,-0.195086 0.109675,-0.290168 0.0502,-0.09872 0.10256,-0.195327 0.16839,-0.285018 0.0544,-0.08358 0.11123,-0.165528 0.16965,-0.24642 0.0313,-0.03877 -0.002,0.01977 0.0161,-0.0059 0.0328,-0.112686 0.0399,-0.230772 0.0594,-0.345608 0.0209,-0.160346 0.0332,-0.321368 0.0546,-0.481676 0.0248,-0.180142 0.0541,-0.35991 0.0933,-0.5380372 0.0325,-0.139138 0.0714,-0.276698 0.10538,-0.415477 0.0252,-0.11226 0.0468,-0.225035 0.0636,-0.338609 0.0223,-0.135993 0.0446,-0.272004 0.0633,-0.408431 0.0235,-0.15668 0.0517,-0.312733 0.0764,-0.469269 0.0255,-0.172244 0.0527,-0.3443 0.0816,-0.516135 0.0251,-0.151153 0.0513,-0.302282 0.0694,-0.454226 0.008,-0.112172 0.006,-0.224719 -0.0145,-0.334626 -0.0453,-0.205127 -0.13654,-0.394876 -0.18863,-0.598061 -0.0576,-0.224878 -0.10342,-0.452995 -0.11487,-0.68704 -0.008,-0.0913 -0.0158,-0.18383 -0.0417,-0.271599 -0.0562,-0.159418 -0.13861,-0.307127 -0.20425,-0.462402 -0.0958,-0.232374 -0.17306,-0.472077 -0.20054,-0.725317 -0.0196,-0.160151 -0.0363,-0.320716 -0.0555,-0.48093 -0.0252,-0.186294 -0.0719,-0.368506 -0.085,-0.556895 -0.009,-0.287448 0.0193,-0.572449 0.14043,-0.842044 0.0548,-0.115667 0.11653,-0.227145 0.17612,-0.340395 0.0272,-0.0571 0.0217,-0.01907 0.0318,-0.06174 0.004,-0.102846 -0.002,-0.205001 -0.009,-0.307191 -0.0133,-0.229988 -0.005,-0.461528 0.0609,-0.686939 0.002,-0.0088 0.0564,-0.252457 0.0519,-0.135793 0.008,0.03504 0.0396,0.0812 0.008,0.01003 -0.10395,-0.181265 -0.23466,-0.345337 -0.33217,-0.530746 -0.14054,-0.275837 -0.24779,-0.566065 -0.27355,-0.880667 -0.0146,-0.149238 -0.023,-0.299353 -0.0466,-0.447284 -0.02744,-0.201356 -0.05547,-0.403312 -0.0571,-0.607797 0.0019,-0.160272 0.011,-0.320357 0.02116,-0.480591 0.0054,-0.153012 0.0066,-0.305834 8.66e-4,-0.458509 -0.0062,-0.328163 0.0063,-0.657479 0.07123,-0.982807 0.0588,-0.28705 0.13279,-0.570826 0.23761,-0.846455 0.446,-1.296693 2.26004,-0.729881 1.81404,0.566812 z"
+         id="path4053-0"
+         style="fill:#000595;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+      <path
+         d="m 106.01303,-24.153943 c -0.0606,0.115383 -0.10767,0.236611 -0.15278,0.358188 -0.0179,0.05489 -0.0431,0.109945 -0.0506,0.167254 -0.003,0.0773 5e-4,0.0163 5.8e-4,-0.02529 -0.0167,-0.124442 0.0236,0.07545 0.0276,0.09258 0.0249,0.07335 0.0493,0.146788 0.0716,0.221093 0.0205,0.0788 0.0386,0.159754 0.0601,0.237379 0.0294,0.05276 0.059,0.120821 0.0866,0.178154 0.0765,0.152362 0.1377,0.311387 0.18686,0.475282 0.047,0.157831 0.0689,0.321454 0.0772,0.486819 0.005,0.100462 -0.003,0.201344 -0.004,0.301966 3.6e-4,0.0628 0.003,0.125481 0.004,0.188297 1.4e-4,0.09028 -0.003,0.180629 -0.006,0.270957 -0.004,0.119076 -0.009,0.238153 -0.0133,0.357229 -0.005,0.127929 -0.01,0.255857 -0.0144,0.383786 -0.004,0.106041 -0.008,0.212087 -0.0119,0.318131 -0.007,0.13227 -0.0151,0.264519 -0.024,0.396742 -0.0105,0.168903 -0.0338,0.336973 -0.0608,0.504519 -0.0262,0.151798 -0.0597,0.30245 -0.0873,0.454032 -0.0228,0.129725 -0.0382,0.26042 -0.0509,0.39111 0.003,0.102835 -0.0347,0.215165 -0.013,0.31659 0.011,-0.0329 0.0512,0.07473 0.0593,0.08899 0.085,0.136966 0.17244,0.27224 0.25527,0.410553 0.12885,0.204906 0.20786,0.433384 0.26329,0.66952 0.023,0.124923 0.043,0.250348 0.0682,0.374771 0.0251,0.108131 0.0514,0.215772 0.073,0.324829 0.0376,0.180573 0.051,0.365133 0.0557,0.550308 0.003,0.171827 -0.005,0.343906 -0.016,0.51583 -0.01,0.166052 -0.0255,0.331622 -0.0489,0.49679 -0.0273,0.156552 -0.0533,0.313134 -0.0722,0.470628 -0.0165,0.158875 -0.0269,0.318075 -0.0361,0.477243 -0.007,0.156269 -0.0203,0.312902 -0.0124,0.468802 0.002,0.06977 0.0174,0.131918 0.0538,0.189531 0.0931,0.150602 0.18296,0.302946 0.26488,0.460235 0.11851,0.226858 0.17725,0.476147 0.21832,0.729131 0.0279,0.178664 0.0538,0.357631 0.0755,0.537371 0.0263,0.221345 0.0339,0.444924 0.0381,0.668398 0.003,0.211737 -0.003,0.42378 -0.0101,0.635743 -0.01,0.1745842 -0.007,0.3487912 0.004,0.5224502 0.0176,0.217126 0.0345,0.434261 0.0438,0.652231 0.007,0.201741 0.004,0.404001 -0.005,0.606208 -0.008,0.256451 -0.0734,0.502825 -0.1706,0.741833 -0.0878,0.193783 -0.20769,0.371142 -0.33593,0.541067 -0.0486,0.05871 -0.0903,0.121299 -0.12939,0.186194 -0.0619,0.109965 -0.13698,0.211598 -0.21242,0.312776 -0.0351,0.06707 0.0404,-0.08293 0.0243,-0.02877 0.001,0.04231 0.0126,-0.09693 0.0169,-0.02942 10e-4,0.122648 0.0103,0.24471 0.0255,0.365859 0.0213,0.161643 0.0409,0.323564 0.0592,0.485683 0.0194,0.177536 0.0429,0.354444 0.0635,0.53181 0.0204,0.178655 0.0408,0.35733 0.0614,0.535961 0.0244,0.189483 0.035,0.3806 0.0382,0.572274 -0.002,0.185834 -7.7e-4,0.371517 0.004,0.557084 0.007,0.193354 0.008,0.387075 0.0136,0.580482 0.002,0.139083 0.0236,0.275574 0.0515,0.41054 0.0187,0.09971 0.0679,0.185698 0.11567,0.272711 0.11616,0.198204 0.22028,0.401973 0.30654,0.615668 0.10573,0.274526 0.13313,0.566703 0.1232,0.86213697 -0.011,0.194862 -0.0512,0.387063 -0.0995,0.576999 -0.0291,0.0941 -0.0446,0.190608 -0.0596,0.287172 -0.0231,0.162161 -0.0606,0.322189 -0.0958,0.482458 -0.0302,0.14347 -0.0704,0.284892 -0.10472,0.42751103 -0.0278,0.128517 -0.0678,0.254541 -0.0961,0.382903 0.007,0.01107 0.01,0.07807 0.0117,0.108959 0.0144,0.163085 0.0151,0.327136 0.009,0.491355 -0.01,0.172105 -0.0302,0.343838 -0.0487,0.515508 -0.0219,0.188738 -0.0425,0.377562 -0.0631,0.566396 -0.0222,0.243877 -0.0686,0.485205 -0.11454,0.726307 -0.0299,0.161659 -0.061,0.323386 -0.0769,0.486625 -0.01,0.10614 3.1e-4,0.211692 0.0155,0.315819 0.0411,0.212812 0.0715,0.427064 0.0893,0.643914 0.0146,0.239295 0.0103,0.479943 0.006,0.720191 -0.007,0.179566 -0.004,0.358819 -9.2e-4,0.538047 0.005,0.193982 0.004,0.388275 4.1e-4,0.582611 -0.005,0.12901 0.0188,0.254582 0.0398,0.380217 0.0351,0.191775 0.0713,0.383215 0.0994,0.576405 0.0448,0.300923 0.0183,0.604182 -0.0358,0.905185 -0.0454,0.220036 -0.10454,0.437381 -0.15292,0.656835 -0.0304,0.162185 -0.0736,0.322708 -0.0977,0.4858058 -3.1e-4,0.0078 -0.002,0.01578 -9.3e-4,0.02357 10e-4,0.01371 -0.001,-0.01426 0.01,-0.05671 0.017,0.0013 -0.0239,-0.03998 -0.0104,-0.03897 0.02,0.0014 0.15558,0.298964 0.16457,0.319414 0.0989,0.246583 0.12569,0.511555 0.12759,0.778038 -0.003,0.166023 -0.0134,0.332074 -0.0248,0.498013 -0.012,0.143804 -0.0233,0.287504 -0.0243,0.431428 0.002,0.191303 0.008,0.382389 0.0113,0.573677 0.004,0.260148 -0.0105,0.520008 -0.0459,0.779123 -0.0327,0.201215 -0.0794,0.400107 -0.10978,0.601617 -0.0231,0.226732 -0.0543,0.452126 -0.0994,0.676363 -0.0468,0.188721 -0.0895,0.377479 -0.11674,0.569299 -0.0216,0.187446 -0.0351,0.375377 -0.0553,0.562929 -0.0262,0.303814 -0.13079,0.589154 -0.26737,0.862917 -0.0775,0.140562 -0.15215,0.282111 -0.20513,0.43313 -0.0263,0.08632 -0.0358,0.175434 -0.0359,0.26438 0.002,0.106229 0.0276,0.209458 0.0475,0.312745 0.0504,0.239 0.0847,0.480663 0.10622,0.724879 0.0256,0.251885 0.0251,0.505091 0.005,0.758865 -0.006,0.109988 -0.032,0.221155 -0.0155,0.330169 0.0226,0.139568 0.0509,0.277926 0.0779,0.416531 0.0433,0.213205 0.055,0.431568 0.0573,0.650009 -0.001,0.103509 -0.005,0.2068 0.005,0.309513 0.0168,0.13817 0.0219,0.277672 0.0232,0.4173 -2.1e-4,0.128972 -3.1e-4,0.257897 -0.005,0.386956 -0.007,0.145046 -0.0247,0.289636 -0.0374,0.434437 -0.0109,0.118129 -0.009,0.236441 -0.008,0.354517 -0.002,0.153438 3.3e-4,0.306722 0.008,0.459663 0.004,0.07437 0.0106,0.148465 0.0199,0.22215 0.1668,1.339804 -1.7394,1.646309 -1.90619,0.306504 l 0,0 c -0.0151,-0.122536 -0.0264,-0.245676 -0.0325,-0.369344 -0.008,-0.181749 -0.0117,-0.363815 -0.01,-0.546137 -8e-5,-0.174994 -7e-4,-0.350278 0.0161,-0.525305 0.01,-0.111423 0.0222,-0.222711 0.0312,-0.334175 0.004,-0.101293 0.002,-0.202477 0.003,-0.303727 -2.6e-4,-0.08954 -0.004,-0.178692 -0.0161,-0.267164 -0.0125,-0.151927 -0.0171,-0.304316 -0.0118,-0.457384 -4e-4,-0.102028 -0.002,-0.204478 -0.0226,-0.304125 -0.0395,-0.202718 -0.0824,-0.405058 -0.10532,-0.611098 -0.0167,-0.218395 -0.0135,-0.436642 0.0147,-0.655798 0.0129,-0.146187 0.0114,-0.291404 -0.004,-0.436583 -0.015,-0.178869 -0.0416,-0.355131 -0.0791,-0.53001 -0.0467,-0.2423 -0.0897,-0.486545 -0.0807,-0.736566 0.0126,-0.296088 0.0534,-0.591196 0.1559,-0.874383 0.0851,-0.226633 0.18448,-0.447258 0.30454,-0.658876 0.0343,-0.05517 0.0569,-0.103995 0.0583,-0.171142 0.0233,-0.210396 0.0356,-0.421507 0.064,-0.631536 0.0337,-0.229324 0.0782,-0.456753 0.1365,-0.682075 0.0411,-0.191553 0.0563,-0.385621 0.0819,-0.579051 0.0302,-0.195265 0.0694,-0.388953 0.10704,-0.583139 0.0253,-0.158574 0.026,-0.318312 0.0264,-0.477702 -0.003,-0.207165 -0.0105,-0.414062 -0.0113,-0.621327 0.002,-0.180614 0.0123,-0.361048 0.0286,-0.541479 0.008,-0.12368 0.0161,-0.24739 0.0202,-0.371141 3.9e-4,-0.0096 -0.006,-0.08619 0.0118,-0.06204 0.003,0.0046 0.005,0.01017 0.01,0.01376 0.002,0.0015 -4.4e-4,-0.0049 -0.002,-0.007 -0.01,-0.01736 -0.0205,-0.03401 -0.0307,-0.05105 -0.0688,-0.11511 -0.13514,-0.232 -0.17745,-0.360758 -0.0865,-0.278569 -0.12846,-0.566482 -0.0775,-0.8620828 0.0334,-0.200733 0.0777,-0.399732 0.11942,-0.599183 0.0441,-0.197294 0.0942,-0.393379 0.13936,-0.590459 0.019,-0.09454 0.0368,-0.187662 0.0219,-0.28338 -0.0244,-0.178758 -0.0627,-0.354731 -0.0926,-0.532387 -0.0399,-0.240668 -0.0725,-0.483189 -0.065,-0.729622 0.004,-0.171021 0.004,-0.341993 -5.2e-4,-0.512689 -0.003,-0.200809 -0.006,-0.401673 9.4e-4,-0.602841 0.003,-0.180214 0.007,-0.360681 -8.3e-4,-0.540423 -0.0125,-0.18309 -0.05,-0.361235 -0.0786,-0.541698 -0.032,-0.253282 -0.0492,-0.509278 -0.0213,-0.766258 0.0236,-0.216883 0.0585,-0.432536 0.10057,-0.647308 0.0362,-0.190354 0.075,-0.380655 0.0917,-0.573316 0.0206,-0.188182 0.041,-0.376366 0.0629,-0.56445 0.0138,-0.12819 0.0283,-0.256397 0.039,-0.384769 0.005,-0.100446 0.002,-0.200417 -0.007,-0.30009 -0.0132,-0.219853 -0.0174,-0.441434 0.0346,-0.659825 0.0319,-0.13566503 0.0698,-0.26995703 0.10154,-0.40564603 0.0314,-0.128177 0.0665,-0.255577 0.0948,-0.384402 0.0266,-0.121154 0.0562,-0.241942 0.0737,-0.364535 0.0249,-0.158615 0.053,-0.317014 0.0976,-0.472199 0.0162,-0.0619 0.0318,-0.124133 0.0405,-0.18734 0.007,-0.02882 0.008,-0.05704 0.002,-0.0857 -0.0498,-0.148242 -0.14442,-0.27535497 -0.21333,-0.41419397 -0.13144,-0.247251 -0.24607,-0.503762 -0.29932,-0.782891 -0.0477,-0.239746 -0.0827,-0.482389 -0.0879,-0.728758 -0.006,-0.197918 -0.007,-0.396087 -0.014,-0.593953 -0.004,-0.191061 -0.006,-0.382232 -0.004,-0.573587 -0.001,-0.127642 -0.009,-0.254718 -0.0258,-0.380799 -0.0206,-0.178555 -0.0409,-0.35715 -0.0613,-0.53573 -0.0206,-0.178972 -0.0446,-0.357409 -0.064,-0.536564 -0.0178,-0.157916 -0.0371,-0.315607 -0.0577,-0.473073 -0.022,-0.188664 -0.0374,-0.37829 -0.0388,-0.569106 -5.4e-4,-0.22697 0.0207,-0.453954 0.10486,-0.670251 0.0637,-0.167494 0.13823,-0.331949 0.24966,-0.475381 0.05,-0.06708 0.0593,-0.07269 0.10675,-0.156329 0.0774,-0.12641 0.15985,-0.249674 0.2526,-0.365827 0.0315,-0.03734 0.0551,-0.08184 0.0863,-0.117924 -0.0211,0.0895 0.0141,-0.01899 0.009,-0.04951 0.007,-0.146416 0.01,-0.292857 0.005,-0.438973 -0.008,-0.207689 -0.0272,-0.414242 -0.0422,-0.62125 -0.0128,-0.230593 -0.0185,-0.461818 -0.006,-0.6935482 0.006,-0.179683 0.0114,-0.359439 0.01,-0.538953 -0.003,-0.159443 -0.007,-0.319087 -0.025,-0.477116 -0.0183,-0.154428 -0.0413,-0.308034 -0.0649,-0.461548 -0.01,-0.05948 -0.0122,-0.121412 -0.0372,-0.176424 -0.0885,-0.177717 -0.20676,-0.338072 -0.29295,-0.517287 -0.1307,-0.290339 -0.22124,-0.594299 -0.22971,-0.919182 -0.006,-0.21573 7e-4,-0.431602 0.0144,-0.647734 0.0116,-0.200167 0.025,-0.400394 0.0471,-0.600109 0.0212,-0.171786 0.0466,-0.343099 0.078,-0.513716 0.0176,-0.116475 0.0259,-0.233477 0.0334,-0.350621 0.008,-0.114629 0.0131,-0.229349 0.0121,-0.343955 -9.7e-4,-0.07605 -0.004,-0.151782 -0.0206,-0.225818 -0.0205,-0.105587 -0.0494,-0.208859 -0.0709,-0.314233 -0.023,-0.113274 -0.0448,-0.226823 -0.0612,-0.341502 -0.005,-0.04704 -0.0178,-0.08435 -0.0472,-0.123997 -0.0985,-0.166647 -0.20934,-0.32554 -0.30279,-0.49534 -0.13578,-0.263946 -0.24819,-0.541066 -0.26913,-0.844391 -0.01,-0.206964 -0.003,-0.414038 0.019,-0.621368 0.0184,-0.183845 0.0404,-0.367643 0.0733,-0.550063 0.0255,-0.138826 0.0547,-0.277041 0.0807,-0.415798 0.0177,-0.107456 0.0334,-0.215221 0.04,-0.323621 0.008,-0.112916 0.0144,-0.225845 0.0209,-0.338789 0.004,-0.106074 0.008,-0.212146 0.0119,-0.318219 0.005,-0.128055 0.01,-0.256109 0.0144,-0.384162 0.004,-0.117379 0.009,-0.234758 0.0131,-0.352136 0.002,-0.064 0.005,-0.128004 0.005,-0.191971 0,-0.07779 -0.005,-0.155319 -0.003,-0.233217 0.001,-0.06351 0.004,-0.127004 0.005,-0.190507 0.008,0.01658 4.1e-4,-0.01623 -0.004,-0.03771 -0.0165,-0.06798 -0.0495,-0.129168 -0.0785,-0.192055 -0.0695,-0.144762 -0.1407,-0.289626 -0.18966,-0.443553 -0.0246,-0.08496 -0.0484,-0.170692 -0.0661,-0.257512 -0.0317,-0.104703 -0.0717,-0.206992 -0.096,-0.314252 -0.0294,-0.125621 -0.0599,-0.251511 -0.072,-0.380846 -0.008,-0.163489 -0.003,-0.326945 0.0299,-0.489478 0.0335,-0.163011 0.0784,-0.323662 0.13894,-0.479859 0.0751,-0.200143 0.15549,-0.398827 0.25593,-0.588658 0.64105,-1.219555 2.33437,-0.377255 1.69332,0.842301 z"
+         id="path4055-9"
+         style="fill:#000595;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+      <path
+         d="m 109.71712,-24.677489 c -0.015,0.133829 -0.0246,0.268017 -0.0322,0.402231 -0.007,0.114927 -0.009,0.229904 -0.0144,0.344844 -0.007,0.140605 -0.0184,0.281021 -0.0332,0.421218 -0.003,0.103045 -0.0402,0.206498 -0.0359,0.309236 0.0162,0.02063 -0.008,-0.08302 -0.0132,-0.100097 0.10151,0.115544 0.18912,0.245989 0.27531,0.374331 0.10341,0.168735 0.20945,0.335467 0.32256,0.497704 0.13745,0.184499 0.26258,0.37654 0.36938,0.580733 0.13316,0.27071 0.17051,0.569449 0.18738,0.869471 0.003,0.138659 0.0104,0.276282 0.0351,0.412172 0.042,0.212005 0.0616,0.426581 0.0652,0.643426 -0.003,0.289205 -0.0791,0.570745 -0.16198,0.847739 -0.0539,0.178351 -0.11244,0.355271 -0.17436,0.531193 -0.0272,0.07241 -0.0502,0.146278 -0.0607,0.222548 -0.009,0.07488 -0.0108,0.150189 -0.0134,0.22531 1.8e-4,0.190689 -0.0271,0.379415 -0.0662,0.566655 -0.0363,0.15977 -0.0844,0.316846 -0.12174,0.476357 -0.0213,0.0479 -0.005,0.05346 9.8e-4,0.07823 0.0273,0.115935 0.0503,0.23274 0.0697,0.350433 0.0298,0.195493 0.0381,0.393831 0.0422,0.59198 0.002,0.208042 -0.01,0.416213 -0.0226,0.624176 -0.0141,0.09072 -0.002,0.177058 0.0139,0.265047 0.0426,0.190055 0.0741,0.381908 0.0946,0.576135 0.0238,0.251585 0.005,0.504879 -0.0145,0.757157 -0.0135,0.121631 -0.0182,0.242039 -0.003,0.362569 0.0338,0.194598 0.0715,0.388314 0.10233,0.583525 0.041,0.252223 0.0587,0.507725 0.066,0.763818 0.007,0.171473 -0.003,0.344213 0.0148,0.514798 0.0131,0.129199 0.0599,0.250351 0.10351,0.37079 0.0712,0.185614 0.14621,0.369464 0.20934,0.558239 0.0707,0.214785 0.10118,0.439588 0.11861,0.6655012 0.0171,0.234769 -0.005,0.469686 -0.0405,0.703053 -0.0272,0.146196 -0.0519,0.292841 -0.0613,0.440868 -0.008,0.09201 0.0164,0.180587 0.0352,0.269083 0.0464,0.175567 0.097,0.349197 0.13392,0.527377 0.042,0.215968 0.0443,0.436846 0.0414,0.657128 -0.004,0.104814 -0.007,0.209162 0.0112,0.312162 0.0233,0.143527 0.0462,0.287099 0.0644,0.431498 0.0261,0.203582 0.0171,0.409242 -0.005,0.613887 0.006,0.142115 -0.0955,0.297187 -0.0936,0.429702 10e-4,-0.0038 5.6e-4,-0.01258 0.004,-0.01118 0.004,0.0017 0.0234,0.191072 0.0308,0.255073 0.0368,0.265857 0.0172,0.533093 -0.0232,0.799151 -0.0579,0.322974 -0.15159,0.638629 -0.25075,0.952004 -0.0952,0.298503 -0.19807,0.594731 -0.28854,0.894586 -0.0393,0.120259 -0.0496,0.242362 -0.0442,0.366274 0.0104,0.152513 0.0294,0.303981 0.0479,0.455446 0.0251,0.196725 0.0531,0.392905 0.0885,0.587743 0.042,0.209705 0.0865,0.41880797 0.13649,0.62654097 0.065,0.246668 0.116,0.496663 0.15414,0.749506 0.0372,0.261395 0.0395,0.526618 0.0373,0.791175 -0.004,0.22461403 -0.0107,0.44925503 -0.0176,0.67388203 -0.006,0.203122 -0.0121,0.406244 -0.0179,0.609368 -0.006,0.216269 -0.0124,0.432539 -0.0185,0.648808 -0.008,0.257325 -0.0115,0.514616 -0.01,0.771781 0.003,0.242247 0.008,0.484439 0.0102,0.726721 -0.004,0.229626 0.018,0.456943 0.0455,0.683611 0.0535,0.352567 0.0773,0.707854 0.0711,1.065821 -0.016,0.46399 -0.15705,0.910824 -0.29504,1.353284 -0.0999,0.30294 -0.17423,0.611875 -0.2035,0.927699 -0.0186,0.16318 0.007,0.318883 0.0498,0.473594 0.0559,0.179733 0.10374,0.361897 0.14628,0.545553 0.0571,0.251202 0.0972,0.506211 0.12965,0.7623068 0.033,0.30155 0.0468,0.605333 0.0597,0.908846 0.0131,0.304131 0.0173,0.608753 0.0137,0.913591 -0.005,0.27183 -0.0212,0.543587 -0.0333,0.815352 -0.0101,0.247165 -0.0204,0.49433 -0.0321,0.741471 -0.01,0.270856 -0.0267,0.541434 -0.0546,0.811548 -0.0256,0.24049 -0.0754,0.477995 -0.11802,0.716255 -0.0342,0.19716 -0.0658,0.394835 -0.0831,0.593791 -0.0118,0.114246 0.002,0.227274 0.0131,0.340202 0.0263,0.214522 0.0288,0.431162 0.0246,0.647773 -0.008,0.218741 -0.0231,0.437364 -0.0373,0.65596 -0.0124,0.175362 -0.0204,0.3508 -0.0244,0.526297 -0.003,0.164138 7e-5,0.328031 0.006,0.491786 0.006,0.157012 0.0144,0.313917 0.0221,0.470838 0.01,0.172565 0.0123,0.345376 0.007,0.518535 -0.006,0.177582 -0.0277,0.354499 -0.0536,0.530698 -0.0202,0.11671 -0.0357,0.23374 -0.0453,0.351467 -0.0126,0.157177 -0.0213,0.314465 -0.0359,0.471539 -0.0169,0.219345 -0.0812,0.429614 -0.16693,0.632789 -0.006,0.0033 -0.0444,0.119476 -0.0202,0.05325 0.003,0.03213 -0.007,0.125673 -0.0106,0.173033 -0.0107,0.127832 -0.0374,0.253707 -0.0629,0.379554 -0.006,0.06391 4.1e-4,-0.004 4.7e-4,-0.03327 -0.0377,-0.208989 0.0143,-0.02611 0.0422,0.05706 0.0101,0.03837 0.0269,0.06597 0.0436,0.0886 0.0639,0.0847 0.12272,0.173164 0.17885,0.263295 0.0784,0.126923 0.13192,0.266807 0.18016,0.4079 0.0641,0.186564 0.0811,0.383972 0.0859,0.581309 0.002,0.166225 -0.0131,0.332283 -0.029,0.498039 -0.008,0.07945 -0.0142,0.158927 -0.0153,0.23859 0.005,-0.247808 -0.1115,-0.340776 -0.25596,-0.588381 0.95035,0.94195 -0.42105,2.323818 -1.3714,1.381867 l 0,0 c -0.20167,-0.340741 -0.28936,-0.415787 -0.29257,-0.769654 0.002,-0.130886 0.0102,-0.261649 0.0239,-0.392189 0.009,-0.09158 0.0188,-0.18316 0.0206,-0.275027 -3.2e-4,-0.04142 -0.003,-0.06292 0.0135,-0.01246 -0.005,-0.01664 -0.0398,-0.105366 -0.002,-0.02983 -0.0472,-0.07935 -0.10604,-0.150771 -0.1565,-0.227934 -0.10104,-0.160943 -0.18953,-0.329246 -0.24708,-0.512013 -0.0526,-0.159696 -0.11952,-0.315502 -0.13122,-0.486817 -0.0111,-0.174092 -0.007,-0.348168 0.0312,-0.520647 0.0102,-0.05022 0.0214,-0.10032 0.0303,-0.150759 0.0104,-0.122059 0.0143,-0.244699 0.0362,-0.365832 0.0327,-0.164483 0.0793,-0.325541 0.15014,-0.479054 0.002,0.0074 0.008,0.03026 0.0135,-0.03818 0.0146,-0.151065 0.0209,-0.302503 0.0343,-0.453639 0.0138,-0.157782 0.0323,-0.315081 0.0594,-0.471571 0.0154,-0.102547 0.0288,-0.205464 0.0336,-0.30884 0.005,-0.121272 8e-5,-0.242141 -0.006,-0.363004 -0.008,-0.164849 -0.0164,-0.329682 -0.0231,-0.494633 -0.007,-0.201828 -0.0112,-0.403853 -0.007,-0.606141 0.005,-0.201934 0.0136,-0.403815 0.0278,-0.605592 0.0123,-0.191454 0.0251,-0.382922 0.0337,-0.574477 0.004,-0.140396 0.003,-0.280673 -0.016,-0.419567 -0.0227,-0.232732 -0.0378,-0.466753 -0.0142,-0.701572 0.024,-0.254416 0.0602,-0.507683 0.10551,-0.759799 0.0345,-0.191549 0.0748,-0.38245 0.0981,-0.575505 0.025,-0.233646 0.0369,-0.467845 0.0462,-0.702145 0.0118,-0.245791 0.0218,-0.491608 0.0319,-0.737422 0.0115,-0.250523 0.0257,-0.501029 0.0315,-0.751609 0.003,-0.270079 -5.8e-4,-0.539945 -0.0121,-0.809398 -0.0106,-0.252011 -0.0216,-0.504247 -0.0469,-0.754881 -0.0231,-0.192108 -0.0542,-0.383068 -0.096,-0.5715428 -0.038,-0.166842 -0.085,-0.330928 -0.13382,-0.494608 -0.0946,-0.373912 -0.14152,-0.756809 -0.1004,-1.146476 0.048,-0.444491 0.13923,-0.882502 0.28193,-1.309566 0.0841,-0.269339 0.18151,-0.540038 0.20712,-0.821198 0.0101,-0.266485 -0.0221,-0.529704 -0.0581,-0.79213 -0.0353,-0.295796 -0.0625,-0.592774 -0.059,-0.892164 -0.002,-0.244993 -0.007,-0.489885 -0.0103,-0.73485 -10e-4,-0.278974 0.002,-0.558075 0.0107,-0.83722 0.006,-0.216552 0.0123,-0.433103 0.0185,-0.649656 0.006,-0.203807 0.0118,-0.407616 0.018,-0.611424 0.006,-0.211173 0.0131,-0.422357 0.0167,-0.63352003 0.002,-0.165314 0.003,-0.331297 -0.0169,-0.495084 -0.0284,-0.197939 -0.0722,-0.392405 -0.12236,-0.585347 -0.0581,-0.242483 -0.11049,-0.486437 -0.15852,-0.731381 -0.0414,-0.23070497 -0.0757,-0.46270297 -0.10483,-0.69562397 -0.0259,-0.212647 -0.0522,-0.425505 -0.0613,-0.640158 -0.006,-0.328788 0.0282,-0.656386 0.12731,-0.974592 0.0935,-0.307813 0.19739,-0.612575 0.29608,-0.918893 0.0707,-0.222216 0.13907,-0.445467 0.18445,-0.673821 0.0175,-0.09046 0.0263,-0.179218 0.011,-0.270304 -0.0268,-0.231026 -0.059,-0.463104 -0.0335,-0.697509 0.0205,-0.144454 0.042,-0.294924 0.0938,-0.431888 0.006,-0.047 0.01,-0.09668 0.005,-0.144598 -0.0157,-0.133029 -0.0403,-0.264565 -0.0599,-0.396938 -0.0268,-0.20044 -0.0401,-0.402114 -0.03,-0.605444 0.001,-0.08737 0.005,-0.175152 -0.005,-0.261831 -0.0294,-0.174027 -0.10068,-0.337686 -0.13073,-0.511869 -0.0533,-0.260955 -0.0928,-0.525832 -0.0695,-0.795152 0.0155,-0.200527 0.0404,-0.400371 0.0793,-0.598484 0.0145,-0.08866 0.0277,-0.177321 0.0223,-0.266992 -0.004,-0.07152 -0.009,-0.143418 -0.0292,-0.2122132 -0.0549,-0.173569 -0.13288,-0.338295 -0.19274,-0.510015 -0.0974,-0.272405 -0.18274,-0.550704 -0.20709,-0.842529 -0.0171,-0.209921 -0.0201,-0.420384 -0.0215,-0.631379 -0.004,-0.174761 -0.0158,-0.349115 -0.0439,-0.521183 -0.0351,-0.227823 -0.0858,-0.452541 -0.11502,-0.681439 -0.0226,-0.235223 -0.0266,-0.471094 -8.3e-4,-0.707803 0.0109,-0.139227 0.0255,-0.278938 0.0182,-0.418239 -0.0131,-0.152942 -0.05,-0.301094 -0.078,-0.451383 -0.0375,-0.230549 -0.0587,-0.463788 -0.0362,-0.698995 0.01,-0.155996 0.0194,-0.312111 0.0193,-0.468203 -0.002,-0.108208 -0.005,-0.216545 -0.0181,-0.323745 -0.0213,-0.137505 -0.0598,-0.271136 -0.0784,-0.409264 -0.0302,-0.257347 -0.0298,-0.516916 0.0359,-0.772337 0.0358,-0.149184 0.0773,-0.296989 0.11473,-0.445804 0.0218,-0.0709 0.0186,-0.145385 0.0217,-0.218171 0.006,-0.159995 0.0133,-0.320341 0.0395,-0.479149 0.0328,-0.185052 0.0776,-0.367966 0.14425,-0.544985 0.0519,-0.147275 0.10105,-0.295299 0.14613,-0.44464 0.0291,-0.09589 0.0586,-0.192265 0.0794,-0.29001 0.0202,-0.105565 -0.0348,-0.217942 -0.0382,-0.322096 -0.0345,-0.208196 -0.0565,-0.418018 -0.0594,-0.630105 -2.7e-4,-0.0056 -0.0256,-0.174562 0.01,-0.125457 -0.041,-0.134705 -0.17403,-0.232095 -0.23524,-0.355418 -0.11936,-0.171719 -0.23441,-0.346297 -0.34185,-0.525954 -0.10348,-0.155715 -0.22296,-0.298877 -0.32618,-0.454808 -0.15509,-0.277998 -0.26023,-0.57384 -0.25009,-0.901104 0.005,-0.158997 0.0222,-0.316458 0.0463,-0.474177 0.0111,-0.102945 0.0195,-0.206077 0.0246,-0.309333 0.006,-0.121419 0.008,-0.242933 0.0154,-0.364333 0.0101,-0.173394 0.0227,-0.346752 0.0426,-0.519613 0.1613,-1.351646 2.06787,-1.177872 1.90657,0.173776 z"
+         id="path4057-0"
+         style="fill:#000595;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+      <g
+         id="g4744">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+           id="path4097-8"
+           d="m 94.691977,16.186932 c -0.03622,0.0073 -0.07297,0.01075 -0.109833,0.01232 -0.03749,6.85e-4 -0.07494,-0.0018 -0.112387,-0.0033 -0.04848,-0.0017 -0.09699,-0.0017 -0.145487,-0.0022 -0.07036,-9.73e-4 -0.140733,-0.001 -0.211098,-0.0016 -0.076,-7.29e-4 -0.151982,-0.0026 -0.22797,-0.004 -0.09743,-0.0013 -0.194856,-0.0027 -0.292255,-0.0057 -0.09314,-0.0033 -0.186156,-0.0091 -0.279208,-0.01409 -0.09959,-0.005 -0.199125,-0.01086 -0.298649,-0.01701 -0.116929,-0.0075 -0.233941,-0.01355 -0.351025,-0.01799 -0.125229,-0.0044 -0.250531,-0.0056 -0.375799,-0.0027 -0.122597,0.0032 -0.244742,0.01436 -0.366707,0.02652 -0.103479,0.01087 -0.20735,0.01713 -0.311071,0.02508 -0.0735,0.0058 -0.146808,0.01371 -0.220271,0.01991 -0.04399,0.0043 -0.08813,0.0043 -0.132203,0.0018 -0.04336,-0.0038 -0.08665,-0.0083 -0.129914,-0.013 -0.06401,-0.0072 -0.127812,-0.01618 -0.19177,-0.02388 -0.06976,-0.0079 -0.139233,-0.01795 -0.208674,-0.0282 -0.05374,-0.0072 -0.107038,-0.01675 -0.159856,-0.02894 -0.03957,-0.0087 -0.07866,-0.01945 -0.117675,-0.03035 -0.03273,-0.009 -0.06625,-0.0146 -0.09958,-0.02087 -0.02493,-0.0049 -0.04992,-0.0093 -0.07461,-0.01534 -0.01802,-0.0048 -0.03627,-0.0086 -0.05456,-0.01227 -0.0073,-9.32e-4 -0.01396,-0.0039 -0.02023,-0.0076 -0.0012,-6.86e-4 -0.0021,-0.0017 -0.0031,-0.0026 -0.0099,-0.01015 0.0045,-0.02412 0.01435,-0.01397 l 0,0 c -1.27e-4,-1.02e-4 -5e-4,-4.16e-4 -3.79e-4,-3.07e-4 0.0041,0.0025 0.0085,0.0043 0.0133,0.0048 0.01856,0.0037 0.0371,0.0076 0.05539,0.01246 0.02435,0.0059 0.049,0.01027 0.07357,0.01512 0.0339,0.0064 0.06799,0.01206 0.101269,0.02126 0.03873,0.01082 0.07751,0.02145 0.116791,0.03012 0.0523,0.01207 0.105065,0.02153 0.158276,0.02864 0.06926,0.01022 0.138564,0.02026 0.208144,0.02813 0.06389,0.0077 0.127616,0.01663 0.191556,0.02385 0.04291,0.0047 0.08585,0.0092 0.128854,0.01291 0.04314,0.0024 0.08634,0.0024 0.129397,-0.0018 0.07352,-0.0062 0.146872,-0.01415 0.220425,-0.01993 0.103569,-0.0079 0.207288,-0.01419 0.310616,-0.02504 0.122474,-0.01221 0.245128,-0.02345 0.368235,-0.02662 0.125675,-0.0029 0.251383,-0.0016 0.377018,0.0027 0.117242,0.0044 0.234412,0.01053 0.3515,0.01802 0.09947,0.0061 0.198958,0.01196 0.298492,0.017 0.0929,0.005 0.185759,0.01082 0.27874,0.01407 0.09732,0.003 0.194668,0.0044 0.292027,0.0057 0.07592,0.0015 0.151833,0.0033 0.227763,0.004 0.07038,6.16e-4 0.140764,6.68e-4 0.211141,0.0016 0.04869,5.3e-4 0.0974,4.56e-4 0.14607,0.0022 0.0369,0.0015 0.0738,0.0039 0.11074,0.0033 0.03595,-0.0015 0.07181,-0.0049 0.107131,-0.01202 0.01394,-0.0025 0.01749,0.0172 0.0035,0.01971 z" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+           x="90.465416"
+           y="16.320427"
+           id="text4099-4"><tspan
+             sodipodi:role="line"
+             id="tspan4101-5"
+             x="90.465416"
+             y="16.320427"
+             style="font-size:1.10718906px;line-height:1">repeat</tspan></text>
+      </g>
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="eye savage"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <g
+       id="g4100"
+       transform="matrix(0.86630701,0,0,0.86630701,3.2692516,3.8457201)">
+      <path
+         sodipodi:end="3.7699112"
+         sodipodi:start="0.41015237"
+         sodipodi:open="true"
+         transform="matrix(1,0,0,1.172814,-22.484515,-1.9422536)"
+         d="m 43.523568,19.062064 c -0.630797,0.896603 -2.318211,1.307404 -3.768945,0.91755 -1.450734,-0.389854 -2.115425,-1.432734 -1.484627,-2.329337 0.08314,-0.118177 0.186915,-0.23039 0.309473,-0.334645"
+         sodipodi:ry="1.7702693"
+         sodipodi:rx="2.8643558"
+         sodipodi:cy="18.356171"
+         sodipodi:cx="40.896782"
+         id="path4096"
+         style="fill:#ff0101;fill-opacity:1;stroke:#000000;stroke-width:1.06589293;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+      <path
+         id="path4094"
+         d="m 14.438389,17.649861 6.691112,2.638329"
+         style="fill:#a2045c;fill-opacity:1;stroke:#000000;stroke-width:1.15432513;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.94117647;stroke-dasharray:none;stroke-dashoffset:0" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g4100"
+       id="use4104"
+       transform="matrix(-0.82547613,0.33019655,0.33690606,0.80903671,33.70008,-2.8381257)"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="eye"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <g
+       id="g4054"
+       inkscape:tile-cx="20.793538"
+       inkscape:tile-cy="19.52655"
+       inkscape:tile-w="10.439885"
+       inkscape:tile-h="7.3661746"
+       inkscape:tile-x0="15.573596"
+       inkscape:tile-y0="15.843463"
+       transform="translate(0,0.3416338)">
+      <path
+         transform="matrix(0.84598214,0,0,0.84598214,1.633435,4.086978)"
+         d="m 23.346021,19.170122 c 0,1.89653 -1.537441,3.433971 -3.433971,3.433971 -1.89653,0 -3.433971,-1.537441 -3.433971,-3.433971 0,-1.89653 1.537441,-3.433971 3.433971,-3.433971 1.89653,0 3.433971,1.537441 3.433971,3.433971 z"
+         sodipodi:ry="3.4339712"
+         sodipodi:rx="3.4339712"
+         sodipodi:cy="19.170122"
+         sodipodi:cx="19.91205"
+         id="path4037"
+         style="fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.62834822,0,0,0.62834822,11.34405,5.9556802)"
+         sodipodi:type="arc"
+         style="fill:#e2e2e2;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4052"
+         sodipodi:cx="19.91205"
+         sodipodi:cy="19.170122"
+         sodipodi:rx="3.4339712"
+         sodipodi:ry="3.4339712"
+         d="m 23.346021,19.170122 c 0,1.89653 -1.537441,3.433971 -3.433971,3.433971 -1.89653,0 -3.433971,-1.537441 -3.433971,-3.433971 0,-1.89653 1.537441,-3.433971 3.433971,-3.433971 1.89653,0 3.433971,1.537441 3.433971,3.433971 z" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       id="use4058"
+       width="32"
+       height="1024"
+       transform="translate(0,32)" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,64.971121)"
+       id="use4060"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,95.984946)"
+       id="use4062"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,128.00555)"
+       id="use4064"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,160.01254)"
+       id="use4066"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,192.00155)"
+       id="use4068"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,225.01535)"
+       id="use4070"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,255.98646)"
+       id="use4072"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,287.98237)"
+       id="use4074"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,320.01408)"
+       id="use4076"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,352.00309)"
+       id="use4078"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,384.9811)"
+       id="use4080"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,415.98801)"
+       id="use4082"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,448.01972)"
+       id="use4084"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,479.96603)"
+       id="use4086"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,510.98673)"
+       id="use4088"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4054"
+       xlink:href="#g4054"
+       transform="translate(0,543.99354)"
+       id="use4090"
+       width="32"
+       height="1024" />
+    <g
+       id="g4094"
+       transform="translate(0,0.93949295)">
+      <g
+         transform="translate(0.38151566,574.82958)"
+         id="g4405"
+         style="display:inline">
+        <path
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+           d="m 16.4758,19.16296 3.400571,3.322171"
+           id="path4401" />
+        <path
+           id="path4403"
+           d="M 19.876371,19.16296 16.4758,22.485131"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+      </g>
+      <g
+         transform="matrix(0.75242594,-0.20377202,0.24125187,0.89081985,5.2268491,578.68371)"
+         id="g4409"
+         style="display:inline">
+        <path
+           id="path4411"
+           d="m 16.4758,19.16296 3.400571,3.322171"
+           style="fill:none;stroke:#000000;stroke-width:1.17897284;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+        <path
+           style="fill:none;stroke:#000000;stroke-width:1.17897284;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+           d="M 19.876371,19.16296 16.4758,22.485131"
+           id="path4413" />
+      </g>
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/bubble.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,2450 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="bubble.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="bubble.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title5935">bubble</title>
+  <defs
+     id="defs4">
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4899">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path4901"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4903">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path4905"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4907">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path4909"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4911">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path4913"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4915">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path4917"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4919">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path4921"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4923">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path4925"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4927">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path4929"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4931">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path4933"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4935">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path4937"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4939">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path4941"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4943">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path4945"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4947">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path4949"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4951">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path4953"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4971">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path4973"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4864">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m -69.259487,-36.211321 0,31.4138948 17.660098,0 c -8.245403,-0.8077465 -14.673189,-6.7552818 -14.673189,-13.9652498 0,-7.76127 7.426634,-14.060251 16.577343,-14.060251 9.150709,0 16.577344,6.298981 16.577344,14.060251 0,7.209968 -6.427788,13.1575033 -14.673189,13.9652498 l 15.569262,0 0,-31.4138948 -37.037669,0 z"
+         id="path4866"
+         inkscape:connector-curvature="0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5083">
+      <path
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 6.8685691,3.8209577 0,24.5089273 26.0327989,0 0,-24.5089273 -26.0327989,0 z M 23.948625,9.7577057 29.726636,21.05975 c -1.898459,0.195148 -3.81399,-0.4441 -5.238307,-1.714355 -2.799815,-2.496974 -3.036677,-6.787874 -0.539704,-9.5876893 z m -8.190808,4.7303503 c 3.139853,-0.138182 6.149659,1.744634 7.270136,4.857339 0.701545,1.94891 0.553306,4.104475 -0.412715,5.936748 L 13.599,14.900771 c 0.718316,-0.258572 1.434236,-0.380828 2.158817,-0.412715 z"
+         id="path5085"
+         inkscape:connector-curvature="0" />
+    </clipPath>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask5939">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,320.5 0,31 9.90625,0 C 9.5507391,351.04422 9,350.32095 9,349.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+         id="path5941"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask5943">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 1.1467606,384.93116 0,31 31.0000004,0 0,-31 -31.0000004,0 z m 12.0000004,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5000004,-1.11929 -3.5000004,-2.5 0,-1.38071 1.5670034,-2.5 3.5000004,-2.5 z"
+         id="path5945"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask5947">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 2.7093325,416.5 0,31 8.8125005,0 c -0.190938,-0.30869 -0.3125,-0.64083 -0.3125,-1 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932996,0 3.499999,1.11929 3.499999,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.812501,0 0,-31 -31.0000005,0 z"
+         id="path5949"
+         inkscape:connector-curvature="0" />
+    </mask>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="9.2770036"
+     inkscape:cx="47.352105"
+     inkscape:cy="527.68112"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>bubble</dc:title>
+        <dc:date />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat bubble</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline">
+    <g
+       id="g4861"
+       mask="url(#mask4899)"
+       style="opacity:1">
+      <path
+         sodipodi:type="arc"
+         style="fill:#ffabf9;stroke:none;stroke-width:0.89761239000000004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;fill-opacity:1"
+         id="path3840-1"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(1.0601151,0,0,1.0601151,-1.8659613,0.17707014)" />
+      <g
+         inkscape:tile-y0="2.0282048"
+         inkscape:tile-x0="0.59301574"
+         inkscape:tile-h="30.412348"
+         inkscape:tile-w="31.128467"
+         inkscape:tile-cy="17.234379"
+         inkscape:tile-cx="16.065686"
+         id="g4629"
+         transform="matrix(0.98433516,0,0,0.98433516,0.48902575,0.52014685)">
+        <path
+           sodipodi:type="star"
+           style="fill:#6f7af0;fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-opacity:1"
+           id="path4627"
+           sodipodi:sides="10"
+           sodipodi:cx="-53"
+           sodipodi:cy="-19"
+           sodipodi:r1="15.617478"
+           sodipodi:r2="12.224746"
+           sodipodi:arg1="2.5868862"
+           sodipodi:arg2="2.8570359"
+           inkscape:flatsided="false"
+           inkscape:rounded="1"
+           inkscape:randomized="0"
+           d="m -66.275717,-10.774371 c -2.838133,-4.159878 2.742255,0.09709 1.542575,-4.793751 -1.424243,-5.806339 -4.018953,1.395371 -3.842042,-4.580475 0.149017,-5.033625 2.161461,1.690407 4.065665,-2.971523 2.260644,-5.534576 -4.071579,-1.233402 -0.415941,-5.963978 3.079247,-3.984698 0.755063,2.638043 5.03581,-0.01427 5.082041,-3.148792 -2.569002,-3.391057 3.169034,-5.069443 4.833311,-1.413752 -0.939744,2.578036 4.082446,2.948426 5.962272,0.439722 -0.08515,-4.253444 5.543547,-2.238554 4.741213,1.697199 -2.2756,1.533307 1.569727,4.784929 4.565117,3.860277 2.431222,-3.491161 5.800613,1.447386 2.838133,4.159878 -2.742255,-0.09709 -1.542575,4.793751 1.424243,5.806339 4.018953,-1.395371 3.842042,4.580475 -0.149017,5.033625 -2.161461,-1.690407 -4.065665,2.971523 -2.260644,5.5345759 4.071579,1.233402 0.415941,5.963978 -3.079247,3.9846981 -0.755063,-2.638043 -5.03581,0.014275 -5.082041,3.1487928 2.569002,3.3910575 -3.169034,5.0694436 -4.833311,1.4137522 0.939744,-2.5780362 -4.082446,-2.9484264 -5.962272,-0.4397219 0.08515,4.2534445 -5.543547,2.2385544 -4.741213,-1.6971991 2.2756,-1.5333073 -1.569727,-4.7849287 -4.565117,-3.8602775 -2.431222,3.4911602 -5.800613,-1.4473865 z"
+           transform="matrix(0.85030559,0,0,1.0025289,58.902878,36.282428)"
+           clip-path="url(#clipPath4864)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:none;stroke:#a3086a;stroke-width:0.89761239;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path3840"
+           sodipodi:cx="17.67767"
+           sodipodi:cy="16.549604"
+           sodipodi:rx="13.081475"
+           sodipodi:ry="13.081475"
+           d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+           transform="matrix(1.0769859,0,0,1.0769859,-2.3924646,-0.34850607)" />
+        <g
+           id="g5036"
+           clip-path="url(#clipPath5083)">
+          <path
+             transform="matrix(-0.5518279,1.3706131,1.3706131,0.5518279,11.305948,-17.328573)"
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path4061"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 a 1.502602,1.502602 0 1 1 -3.005204,0 1.502602,1.502602 0 1 1 3.005204,0 z" />
+          <path
+             d="m 18.208001,14.163119 a 1.502602,1.502602 0 1 1 -3.005204,0 1.502602,1.502602 0 1 1 3.005204,0 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path4063"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(-0.29209421,0.72549458,0.72549458,0.29209421,16.488243,-2.7790682)" />
+          <path
+             d="m 18.208001,14.163119 a 1.502602,1.502602 0 1 1 -3.005204,0 1.502602,1.502602 0 1 1 3.005204,0 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path4614"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(1.9405158,0,0,1.9405158,-14.849665,-13.293972)" />
+          <path
+             transform="matrix(0.95232689,0,0,0.95232689,2.8507093,0.50373085)"
+             sodipodi:type="arc"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path4616"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 a 1.502602,1.502602 0 1 1 -3.005204,0 1.502602,1.502602 0 1 1 3.005204,0 z" />
+        </g>
+        <g
+           id="g5042">
+          <path
+             sodipodi:end="6.7683763"
+             sodipodi:start="4.3668611"
+             transform="matrix(1.208831,0,0,1.208831,-9.2359584,-2.5334786)"
+             d="m 18.882416,14.435189 c 3.169196,-1.140811 6.663148,0.50352 7.80396,3.672716 0.580351,1.612227 0.455709,3.394223 -0.343429,4.909962"
+             sodipodi:ry="6.0987959"
+             sodipodi:rx="6.0987959"
+             sodipodi:cy="20.173527"
+             sodipodi:cx="20.948038"
+             id="path4610"
+             style="fill:none;stroke:#a3086a;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             sodipodi:type="arc"
+             sodipodi:open="true" />
+          <path
+             sodipodi:open="true"
+             sodipodi:type="arc"
+             style="fill:none;stroke:#a3086a;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path4065"
+             sodipodi:cx="20.948038"
+             sodipodi:cy="20.173527"
+             sodipodi:rx="6.0987959"
+             sodipodi:ry="6.0987959"
+             d="m 18.882416,14.435189 c 3.169196,-1.140811 6.663148,0.50352 7.80396,3.672716 0.580351,1.612227 0.455709,3.394223 -0.343429,4.909962"
+             transform="matrix(-0.41597446,1.0331845,1.0331845,0.41597446,16.896199,-15.746335)"
+             sodipodi:start="4.3668611"
+             sodipodi:end="6.7683763" />
+        </g>
+      </g>
+    </g>
+    <g
+       id="g4831"
+       mask="url(#mask4903)">
+      <path
+         sodipodi:type="arc"
+         style="fill:#ff98dd;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-8"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(1.0601151,0,0,1.0601151,-1.8659613,32.177084)" />
+      <use
+         height="1024"
+         width="32"
+         id="use4678"
+         transform="translate(0,32.018542)"
+         xlink:href="#g4629"
+         inkscape:tiled-clone-of="#g4629"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g4834"
+       mask="url(#mask4907)">
+      <path
+         sodipodi:type="arc"
+         style="fill:#fe85c2;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-2"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(1.0601151,0,0,1.0601151,-1.8659613,65.248609)" />
+      <use
+         height="1024"
+         width="32"
+         id="use4680"
+         transform="translate(0,65.049728)"
+         xlink:href="#g4629"
+         inkscape:tiled-clone-of="#g4629"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g4837"
+       mask="url(#mask4911)">
+      <path
+         sodipodi:type="arc"
+         style="fill:#fe72a6;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-7"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(1.0601151,0,0,1.0601151,-1.8659613,96.177084)" />
+      <use
+         height="1024"
+         width="32"
+         id="use4682"
+         transform="translate(0,96.080915)"
+         xlink:href="#g4629"
+         inkscape:tiled-clone-of="#g4629"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g4840"
+       mask="url(#mask4915)">
+      <path
+         sodipodi:type="arc"
+         style="fill:#fe5f8a;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-9"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(1.0601151,0,0,1.0601151,-1.8659613,128.17708)" />
+      <use
+         height="1024"
+         width="32"
+         id="use4684"
+         transform="translate(0,127.98695)"
+         xlink:href="#g4629"
+         inkscape:tiled-clone-of="#g4629"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g4843"
+       mask="url(#mask4919)">
+      <path
+         sodipodi:type="arc"
+         style="fill:#fe4c6e;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-84"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(1.0601151,0,0,1.0601151,-1.8659613,160.17708)" />
+      <use
+         height="1024"
+         width="32"
+         id="use4686"
+         transform="translate(0,160.00548)"
+         xlink:href="#g4629"
+         inkscape:tiled-clone-of="#g4629"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g4846"
+       mask="url(#mask4923)">
+      <path
+         sodipodi:type="arc"
+         style="fill:#fe3953;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-0"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(1.0601151,0,0,1.0601151,-1.8659613,192.17708)" />
+      <use
+         height="1024"
+         width="32"
+         id="use4688"
+         transform="translate(0,192.02401)"
+         xlink:href="#g4629"
+         inkscape:tiled-clone-of="#g4629"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g4849"
+       mask="url(#mask4927)">
+      <path
+         sodipodi:type="arc"
+         style="fill:#fe2637;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-1"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(1.0601151,0,0,1.0601151,-1.8659613,225.08765)" />
+      <use
+         height="1024"
+         width="32"
+         id="use4690"
+         transform="translate(0,224.99896)"
+         xlink:href="#g4629"
+         inkscape:tiled-clone-of="#g4629"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g4852"
+       mask="url(#mask4931)">
+      <path
+         sodipodi:type="arc"
+         style="fill:#fe131b;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-21"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(1.0601151,0,0,1.0601151,-1.8659613,256.17708)" />
+      <use
+         height="1024"
+         width="32"
+         id="use4692"
+         transform="translate(0,256.00481)"
+         xlink:href="#g4629"
+         inkscape:tiled-clone-of="#g4629"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g4855"
+       mask="url(#mask4935)">
+      <path
+         sodipodi:type="arc"
+         style="fill:#fe0000;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-25"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(1.0601151,0,0,1.0601151,-1.8659613,288.17708)" />
+      <use
+         height="1024"
+         width="32"
+         id="use4694"
+         transform="translate(0,287.99243)"
+         xlink:href="#g4629"
+         inkscape:tiled-clone-of="#g4629"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g4858"
+       mask="url(#mask4939)"
+       style="opacity:1">
+      <path
+         sodipodi:type="arc"
+         style="fill:#ff5f8a;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-09"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(0.93209742,0,0,0.93209742,1.6530879,323.97038)" />
+      <g
+         transform="matrix(0.86987598,0,0,0.86987598,3.6435543,324.1992)"
+         id="use4696"
+         inkscape:tile-x0="0.59301574"
+         inkscape:tile-y0="2.0282048">
+        <path
+           clip-path="url(#clipPath4864)"
+           transform="matrix(0.85030559,0,0,1.0025289,58.902878,36.282428)"
+           d="m -66.275717,-10.774371 c -2.270507,-3.327902 2.502319,-0.881076 1.542575,-4.793751 -1.139394,-4.645071 -3.98357,0.200202 -3.842042,-4.580475 0.119214,-4.0269 2.542302,0.758021 4.065665,-2.971523 1.808515,-4.427661 -3.340452,-2.179517 -0.415941,-5.963978 2.463398,-3.187758 1.611212,2.107579 5.03581,-0.01427 4.065633,-2.519034 -1.421395,-3.726734 3.169034,-5.069443 3.866649,-1.131002 0.06469,2.652114 4.082446,2.948426 4.769818,0.351778 1.040588,-3.850466 5.543547,-2.238554 3.792971,1.357759 -1.506535,2.183631 1.569727,4.784929 3.652094,3.088222 3.1051,-2.503451 5.800613,1.447386 2.270507,3.327902 -2.502319,0.881076 -1.542575,4.793751 1.139394,4.645071 3.98357,-0.200202 3.842042,4.580475 -0.119214,4.0269 -2.542302,-0.758021 -4.065665,2.971523 -1.808515,4.427661 3.340452,2.179517 0.415941,5.963978 -2.463398,3.1877584 -1.611212,-2.107579 -5.03581,0.014275 -4.065633,2.5190342 1.421395,3.7267347 -3.169034,5.0694436 -3.866649,1.1310017 -0.06469,-2.6521142 -4.082446,-2.9484264 -4.769818,-0.3517775 -1.040588,3.8504665 -5.543547,2.2385544 -3.792971,-1.3577593 1.506535,-2.1836316 -1.569727,-4.7849287 -3.652094,-3.0882225 -3.1051,2.5034508 -5.800613,-1.4473865 z"
+           inkscape:randomized="0"
+           inkscape:rounded="0.8"
+           inkscape:flatsided="false"
+           sodipodi:arg2="2.8570359"
+           sodipodi:arg1="2.5868862"
+           sodipodi:r2="12.224746"
+           sodipodi:r1="15.617478"
+           sodipodi:cy="-19"
+           sodipodi:cx="-53"
+           sodipodi:sides="10"
+           id="path5089"
+           style="fill:#6f7af0;fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-opacity:1;opacity:0.71721311"
+           sodipodi:type="star" />
+        <path
+           transform="matrix(1.0769859,0,0,1.0769859,-2.3924646,-0.34850607)"
+           d="m 30.759145,16.549604 c 0,7.2247 -5.856776,13.081476 -13.081475,13.081476 -7.2247,0 -13.0814757,-5.856776 -13.0814757,-13.081476 0,-7.2246989 5.8567757,-13.0814748 13.0814757,-13.0814748 7.224699,0 13.081475,5.8567759 13.081475,13.0814748 z"
+           sodipodi:ry="13.081475"
+           sodipodi:rx="13.081475"
+           sodipodi:cy="16.549604"
+           sodipodi:cx="17.67767"
+           id="path5091"
+           style="fill:none;stroke:#a3086a;stroke-width:0.89761239000000004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           sodipodi:type="arc" />
+        <g
+           clip-path="url(#clipPath5083)"
+           id="g5093">
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5095"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(-0.5518279,1.3706131,1.3706131,0.5518279,11.305948,-17.328573)" />
+          <path
+             transform="matrix(-0.29209421,0.72549458,0.72549458,0.29209421,16.488243,-2.7790682)"
+             sodipodi:type="arc"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5097"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+          <path
+             transform="matrix(1.9405158,0,0,1.9405158,-14.849665,-13.293972)"
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5099"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5101"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(0.95232689,0,0,0.95232689,2.8507093,0.50373085)" />
+        </g>
+        <g
+           id="g5103">
+          <path
+             sodipodi:type="arc"
+             style="fill:none;stroke:#a3086a;stroke-width:0.50022202999999998;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path5105"
+             sodipodi:cx="20.948038"
+             sodipodi:cy="20.173527"
+             sodipodi:rx="6.0987959"
+             sodipodi:ry="6.0987959"
+             d="m 18.882416,14.435189 c 3.169196,-1.140811 6.663148,0.50352 7.80396,3.672716 0.308398,0.856736 0.421045,1.771655 0.329675,2.677611"
+             transform="matrix(1.208831,0,0,1.208831,-9.2359584,-2.5334786)"
+             sodipodi:start="4.3668611"
+             sodipodi:end="6.3837004"
+             sodipodi:open="true" />
+          <path
+             sodipodi:end="6.4011578"
+             sodipodi:start="4.3668611"
+             transform="matrix(-0.41597446,1.0331845,1.0331845,0.41597446,16.896199,-15.746335)"
+             d="m 18.882416,14.435189 c 3.169196,-1.140811 6.663148,0.50352 7.80396,3.672716 0.320575,0.890563 0.42947,1.843518 0.318067,2.783444"
+             sodipodi:ry="6.0987959"
+             sodipodi:rx="6.0987959"
+             sodipodi:cy="20.173527"
+             sodipodi:cx="20.948038"
+             id="path5107"
+             style="fill:none;stroke:#a3086a;stroke-width:0.50000000000000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             sodipodi:type="arc"
+             sodipodi:open="true" />
+        </g>
+      </g>
+      <path
+         style="fill:none;stroke:#a3086a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 23.340575,340.00603 c 0,0 3.977318,-2.93064 4.709981,-0.10466 0.732663,2.82599 -3.98521,1.41085 -3.872652,3.03532 0.112559,1.62447 3.034479,-0.75603 3.349321,2.19799 0.314842,2.95402 -3.872652,0.62799 -3.872652,0.62799"
+         id="path5326"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="czzzc" />
+    </g>
+    <g
+       id="g4871"
+       mask="url(#mask4943)"
+       style="opacity:1">
+      <path
+         sodipodi:type="arc"
+         style="fill:#fe98dd;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-80"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(0.87608969,0,0,0.87608969,3.1665054,357.62995)" />
+      <g
+         transform="matrix(0.82273499,0,0,0.82704924,4.905872,357.5593)"
+         id="use4698"
+         inkscape:tile-x0="0.59301574"
+         inkscape:tile-y0="2.0282048">
+        <path
+           clip-path="url(#clipPath4864)"
+           transform="matrix(0.85030559,0,0,1.0025289,58.902878,36.282428)"
+           d="m -66.275717,-10.774371 c -1.70288,-2.495927 2.262383,-1.859245 1.542575,-4.793751 -0.854546,-3.483803 -3.948188,-0.994967 -3.842042,-4.580475 0.08941,-3.020175 2.923143,-0.174365 4.065665,-2.971523 1.356387,-3.320746 -2.609324,-3.125632 -0.415941,-5.963978 1.847548,-2.390819 2.467361,1.577116 5.03581,-0.01427 3.049224,-1.889275 -0.273787,-4.062412 3.169034,-5.069443 2.899986,-0.848251 1.069132,2.726192 4.082446,2.948426 3.577363,0.263833 2.166328,-3.447488 5.543547,-2.238554 2.844728,1.018319 -0.737469,2.833956 1.569727,4.784929 2.73907,2.316166 3.778979,-1.515742 5.800613,1.447386 1.70288,2.495927 -2.262383,1.859245 -1.542575,4.793751 0.854546,3.483803 3.948188,0.994967 3.842042,4.580475 -0.08941,3.020175 -2.923143,0.174365 -4.065665,2.971523 -1.356387,3.320746 2.609324,3.125632 0.415941,5.963978 -1.847548,2.3908188 -2.467361,-1.577116 -5.03581,0.014275 -3.049224,1.8892756 0.273787,4.062412 -3.169034,5.0694436 -2.899986,0.8482513 -1.069132,-2.7261922 -4.082446,-2.9484264 -3.577363,-0.2638331 -2.166328,3.4474885 -5.543547,2.2385544 -2.844728,-1.0183194 0.737469,-2.8339559 -1.569727,-4.7849287 -2.73907,-2.3161665 -3.778979,1.5157415 -5.800613,-1.4473865 z"
+           inkscape:randomized="0"
+           inkscape:rounded="0.6"
+           inkscape:flatsided="false"
+           sodipodi:arg2="2.8570359"
+           sodipodi:arg1="2.5868862"
+           sodipodi:r2="12.224746"
+           sodipodi:r1="15.617478"
+           sodipodi:cy="-19"
+           sodipodi:cx="-53"
+           sodipodi:sides="10"
+           id="path5111"
+           style="fill:#6f7af0;fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-opacity:1;opacity:0.51639344"
+           sodipodi:type="star" />
+        <path
+           transform="matrix(1.0769859,0,0,1.0769859,-2.3924646,-0.34850607)"
+           d="m 30.759145,16.549604 c 0,7.2247 -5.856776,13.081476 -13.081475,13.081476 -7.2247,0 -13.0814757,-5.856776 -13.0814757,-13.081476 0,-7.2246989 5.8567757,-13.0814748 13.0814757,-13.0814748 7.224699,0 13.081475,5.8567759 13.081475,13.0814748 z"
+           sodipodi:ry="13.081475"
+           sodipodi:rx="13.081475"
+           sodipodi:cy="16.549604"
+           sodipodi:cx="17.67767"
+           id="path5113"
+           style="fill:none;stroke:#a3086a;stroke-width:0.89761239000000004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           sodipodi:type="arc" />
+        <g
+           clip-path="url(#clipPath5083)"
+           id="g5115">
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5117"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(-0.5518279,1.3706131,1.3706131,0.5518279,11.305948,-17.328573)" />
+          <path
+             transform="matrix(-0.29209421,0.72549458,0.72549458,0.29209421,16.488243,-2.7790682)"
+             sodipodi:type="arc"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5119"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+          <path
+             transform="matrix(1.9405158,0,0,1.9405158,-14.849665,-13.293972)"
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5121"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5123"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(0.95232689,0,0,0.95232689,2.8507093,0.50373085)" />
+        </g>
+        <g
+           id="g5125">
+          <path
+             sodipodi:open="true"
+             sodipodi:type="arc"
+             style="fill:none;stroke:#a3086a;stroke-width:0.50000000000000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path5127"
+             sodipodi:cx="20.948038"
+             sodipodi:cy="20.173527"
+             sodipodi:rx="6.0987959"
+             sodipodi:ry="6.0987959"
+             d="m 18.882416,14.435189 c 3.112175,-1.120285 6.55009,0.444423 7.7494,3.527007"
+             transform="matrix(1.208831,0,0,1.208831,-9.2359584,-2.5334786)"
+             sodipodi:start="4.3668611"
+             sodipodi:end="5.9121454" />
+          <path
+             sodipodi:end="5.7835921"
+             sodipodi:start="4.3668611"
+             transform="matrix(-0.41597446,1.0331845,1.0331845,0.41597446,16.896199,-15.746335)"
+             d="m 18.882416,14.435189 c 2.829198,-1.018423 5.978489,0.177193 7.419008,2.816597"
+             sodipodi:ry="6.0987959"
+             sodipodi:rx="6.0987959"
+             sodipodi:cy="20.173527"
+             sodipodi:cx="20.948038"
+             id="path5129"
+             style="fill:none;stroke:#a3086a;stroke-width:0.50000000000000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             sodipodi:type="arc"
+             sodipodi:open="true" />
+        </g>
+      </g>
+      <path
+         style="opacity:1;fill:none;stroke:#a3086a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 23.900638,373.80264 c 0,0 3.139987,-2.19797 3.453986,0.52334 0.313999,2.72132 -3.252548,-0.15915 -3.139989,1.46532 0.11256,1.62447 2.406482,0.49993 1.883994,2.09332 -0.522488,1.59336 -4.395983,-0.41866 -4.395983,-0.41866"
+         id="path5326-8"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="czzzc" />
+    </g>
+    <g
+       id="g4874"
+       mask="url(#mask4947)"
+       style="opacity:1">
+      <path
+         sodipodi:type="arc"
+         style="fill:#feabf9;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-18"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(0.79607864,0,0,0.79607864,4.9995793,392.91134)" />
+      <g
+         transform="matrix(0.75132221,0,0,0.75132221,6.5072427,393.01734)"
+         id="use4700"
+         inkscape:tile-x0="0.59301574"
+         inkscape:tile-y0="2.0282048">
+        <path
+           clip-path="url(#clipPath4864)"
+           transform="matrix(0.85030559,0,0,1.0025289,58.902878,36.282428)"
+           d="m -66.275717,-10.774371 c -1.135253,-1.663951 2.022447,-2.837413 1.542575,-4.793751 -0.569697,-2.322535 -3.912806,-2.190136 -3.842042,-4.580475 0.05961,-2.01345 3.303984,-1.106751 4.065665,-2.971523 0.904258,-2.21383 -1.878196,-4.071748 -0.415941,-5.963978 1.231699,-1.593879 3.323511,1.046652 5.03581,-0.01427 2.032816,-1.259517 0.87382,-4.398089 3.169034,-5.069443 1.933324,-0.565501 2.07357,2.80027 4.082446,2.948426 2.384909,0.175889 3.292068,-3.04451 5.543547,-2.238554 1.896485,0.678879 0.0316,3.48428 1.569727,4.784929 1.826047,1.544111 4.452857,-0.528033 5.800613,1.447386 1.135253,1.663951 -2.022447,2.837413 -1.542575,4.793751 0.569697,2.322535 3.912806,2.190136 3.842042,4.580475 -0.05961,2.01345 -3.303984,1.106751 -4.065665,2.971523 -0.904258,2.21383 1.878196,4.071748 0.415941,5.963978 -1.231699,1.5938792 -3.323511,-1.0466524 -5.03581,0.014275 -2.032816,1.2595171 -0.87382,4.3980892 -3.169034,5.0694436 -1.933324,0.5655009 -2.07357,-2.8002703 -4.082446,-2.9484264 -2.384909,-0.1758887 -3.292068,3.0445105 -5.543547,2.2385544 -1.896485,-0.6788796 -0.0316,-3.4842801 -1.569727,-4.7849287 -1.826047,-1.5441115 -4.452857,0.5280321 -5.800613,-1.4473865 z"
+           inkscape:randomized="0"
+           inkscape:rounded="0.4"
+           inkscape:flatsided="false"
+           sodipodi:arg2="2.8570359"
+           sodipodi:arg1="2.5868862"
+           sodipodi:r2="12.224746"
+           sodipodi:r1="15.617478"
+           sodipodi:cy="-19"
+           sodipodi:cx="-53"
+           sodipodi:sides="10"
+           id="path5133"
+           style="fill:#6f7af0;fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-opacity:1;opacity:0.34836066"
+           sodipodi:type="star" />
+        <path
+           transform="matrix(1.0769859,0,0,1.0769859,-2.3924646,-0.34850607)"
+           d="m 30.759145,16.549604 c 0,7.2247 -5.856776,13.081476 -13.081475,13.081476 -7.2247,0 -13.0814757,-5.856776 -13.0814757,-13.081476 0,-7.2246989 5.8567757,-13.0814748 13.0814757,-13.0814748 7.224699,0 13.081475,5.8567759 13.081475,13.0814748 z"
+           sodipodi:ry="13.081475"
+           sodipodi:rx="13.081475"
+           sodipodi:cy="16.549604"
+           sodipodi:cx="17.67767"
+           id="path5135"
+           style="fill:none;stroke:#a3086a;stroke-width:0.89761239000000004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           sodipodi:type="arc" />
+        <g
+           clip-path="url(#clipPath5083)"
+           id="g5137"
+           transform="matrix(1.2419722,0,0,1.253592,-3.5107086,-4.405444)">
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5139"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(-0.5518279,1.3706131,1.3706131,0.5518279,11.305948,-17.328573)" />
+          <path
+             transform="matrix(-0.29209421,0.72549458,0.72549458,0.29209421,16.488243,-2.7790682)"
+             sodipodi:type="arc"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5141"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+          <path
+             transform="matrix(1.9405158,0,0,1.9405158,-14.849665,-13.293972)"
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5143"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5145"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(0.95232689,0,0,0.95232689,2.8507093,0.50373085)" />
+        </g>
+        <g
+           id="g5147"
+           transform="matrix(1.2419722,0,0,1.253592,-3.5107086,-4.405444)">
+          <path
+             sodipodi:type="arc"
+             style="fill:none;stroke:#a3086a;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path5149"
+             sodipodi:cx="20.948038"
+             sodipodi:cy="20.173527"
+             sodipodi:rx="6.0987959"
+             sodipodi:ry="6.0987959"
+             d="m 19.892686,14.166735 c 2.127918,-0.37386 4.294825,0.405994 5.696483,2.050124"
+             transform="matrix(1.208831,0,0,1.208831,-9.2359584,-2.5334786)"
+             sodipodi:start="4.5384708"
+             sodipodi:end="5.5772287"
+             sodipodi:open="true" />
+          <path
+             sodipodi:end="5.3856931"
+             sodipodi:start="4.5995962"
+             transform="matrix(-0.41597446,1.0331845,1.0331845,0.41597446,16.896199,-15.746335)"
+             d="m 20.261596,14.113485 c 1.60869,-0.182222 3.223822,0.282663 4.489483,1.292213"
+             sodipodi:ry="6.0987959"
+             sodipodi:rx="6.0987959"
+             sodipodi:cy="20.173527"
+             sodipodi:cx="20.948038"
+             id="path5151"
+             style="fill:none;stroke:#a3086a;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             sodipodi:type="arc"
+             sodipodi:open="true" />
+        </g>
+        <path
+           style="opacity:1;fill:none;stroke:#a3086a;stroke-width:1.33098686000000010px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+           d="m 22.822872,17.829925 c 0,0 1.671714,-1.393079 2.507569,0.41794 0.835857,1.81101 -2.518074,0.345416 -2.368261,2.507566 0.149815,2.16215 1.531282,-0.727647 1.950333,1.253773 0.41905,1.981399 -3.900663,1.253782 -3.900663,1.253782"
+           id="path5326-0"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czzzc" />
+      </g>
+    </g>
+    <g
+       id="g4877"
+       mask="url(#mask4951)"
+       style="opacity:1"
+       transform="translate(-2.2093325,0)">
+      <path
+         sodipodi:type="arc"
+         style="fill:#feabf9;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-095"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 c 0,7.2247 -5.856776,13.081476 -13.081475,13.081476 -7.2247,0 -13.0814757,-5.856776 -13.0814757,-13.081476 0,-7.2246989 5.8567757,-13.0814748 13.0814757,-13.0814748 7.224699,0 13.081475,5.8567759 13.081475,13.0814748 z"
+         transform="matrix(0.77207533,0,0,0.77207533,6.9938957,424.71201)" />
+      <g
+         transform="matrix(0.72351464,0,0,0.72351464,8.6313359,424.85808)"
+         id="use4702"
+         inkscape:tile-x0="0.59301574"
+         inkscape:tile-y0="2.0282048">
+        <path
+           clip-path="url(#clipPath4864)"
+           transform="matrix(0.85030559,0,0,1.0025289,58.902878,36.282428)"
+           d="m -66.275717,-10.774371 c -0.567627,-0.831976 1.782511,-3.815582 1.542575,-4.793751 -0.284849,-1.161268 -3.877424,-3.385306 -3.842042,-4.580475 0.0298,-1.006725 3.684825,-2.039137 4.065665,-2.971523 0.452129,-1.106915 -1.147069,-5.017863 -0.415941,-5.963978 0.615849,-0.79694 4.17966,0.516189 5.03581,-0.01427 1.016408,-0.629758 2.021427,-4.733766 3.169034,-5.069443 0.966662,-0.282751 3.078008,2.874348 4.082446,2.948426 1.192455,0.08795 4.417807,-2.641532 5.543547,-2.238554 0.948243,0.33944 0.800662,4.134604 1.569727,4.784929 0.913023,0.772055 5.126735,0.459677 5.800613,1.447386 0.567627,0.831976 -1.782511,3.815582 -1.542575,4.793751 0.284849,1.161268 3.877424,3.385306 3.842042,4.580475 -0.0298,1.006725 -3.684825,2.039137 -4.065665,2.971523 -0.452129,1.106915 1.147069,5.0178628 0.415941,5.963978 -0.615849,0.7969396 -4.17966,-0.5161889 -5.03581,0.014275 -1.016408,0.6297585 -2.021427,4.7337664 -3.169034,5.0694436 -0.966662,0.2827504 -3.078008,-2.8743483 -4.082446,-2.9484264 -1.192455,-0.087944 -4.417807,2.6415324 -5.543547,2.2385544 -0.948243,-0.3394398 -0.800662,-4.1346044 -1.569727,-4.7849287 -0.913023,-0.7720555 -5.126735,-0.4596772 -5.800613,-1.4473865 z"
+           inkscape:randomized="0"
+           inkscape:rounded="0.2"
+           inkscape:flatsided="false"
+           sodipodi:arg2="2.8570359"
+           sodipodi:arg1="2.5868862"
+           sodipodi:r2="12.224746"
+           sodipodi:r1="15.617478"
+           sodipodi:cy="-19"
+           sodipodi:cx="-53"
+           sodipodi:sides="10"
+           id="path5155"
+           style="fill:#6f7af0;fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-opacity:1;opacity:0.18442623"
+           sodipodi:type="star" />
+        <path
+           transform="matrix(1.0769859,0,0,1.0769859,-2.3924646,-0.34850607)"
+           d="m 30.759145,16.549604 c 0,7.2247 -5.856776,13.081476 -13.081475,13.081476 -7.2247,0 -13.0814757,-5.856776 -13.0814757,-13.081476 0,-7.2246989 5.8567757,-13.0814748 13.0814757,-13.0814748 7.224699,0 13.081475,5.8567759 13.081475,13.0814748 z"
+           sodipodi:ry="13.081475"
+           sodipodi:rx="13.081475"
+           sodipodi:cy="16.549604"
+           sodipodi:cx="17.67767"
+           id="path5157"
+           style="fill:none;stroke:#a3086a;stroke-width:0.89761239000000004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           sodipodi:type="arc" />
+        <g
+           clip-path="none"
+           id="g5159"
+           mask="none"
+           transform="matrix(1.3030866,0,0,1.3030866,-4.4407036,-5.1844797)">
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5161"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(-0.5518279,1.3706131,1.3706131,0.5518279,11.305948,-17.328573)" />
+          <path
+             transform="matrix(-0.29209421,0.72549458,0.72549458,0.29209421,16.488243,-2.7790682)"
+             sodipodi:type="arc"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5163"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+          <path
+             transform="matrix(1.9405158,0,0,1.9405158,-14.849665,-13.293972)"
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5165"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             clip-path="none" />
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5167"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(0.95232689,0,0,0.95232689,2.8507093,0.50373085)" />
+        </g>
+        <path
+           style="opacity:1;fill:none;stroke:#a3086a;stroke-width:1.38214207000000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+           d="m 23.239205,20.05294 c 0,0 2.169955,-1.88061 3.037936,2e-5 0.867983,1.880614 -1.891535,-0.0753 -1.735964,2.169951 0.155572,2.245254 -2.171119,-2.202248 -1.735963,-0.144664 0.435156,2.05755 -1.735964,1.157295 -1.735964,1.157295"
+           id="path5326-2"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czzzc" />
+      </g>
+    </g>
+    <g
+       id="g4892"
+       mask="url(#mask4971)">
+      <path
+         sodipodi:type="arc"
+         style="fill:#feabf9;fill-opacity:1;stroke:none;display:inline"
+         id="path3840-1-23"
+         sodipodi:cx="17.67767"
+         sodipodi:cy="16.549604"
+         sodipodi:rx="13.081475"
+         sodipodi:ry="13.081475"
+         d="m 30.759145,16.549604 a 13.081475,13.081475 0 1 1 -26.1629507,0 13.081475,13.081475 0 1 1 26.1629507,0 z"
+         transform="matrix(1.0601151,0,0,1.0601151,-1.8659613,576.17708)" />
+      <use
+         height="1024"
+         width="32"
+         id="use4712"
+         transform="translate(0,576.01577)"
+         xlink:href="#g4629"
+         inkscape:tiled-clone-of="#g4629"
+         y="0"
+         x="0" />
+      <g
+         transform="translate(20.153075,576.30615)"
+         id="g4716"
+         inkscape:tile-cx="16.065686"
+         inkscape:tile-cy="17.234379"
+         inkscape:tile-w="31.128467"
+         inkscape:tile-h="30.412348"
+         inkscape:tile-x0="0.59301574"
+         inkscape:tile-y0="2.0282048">
+        <path
+           sodipodi:nodetypes="sscsccscs"
+           inkscape:connector-curvature="0"
+           id="path4742"
+           d="m -2.28125,4.90625 c -4.071672,0 -7.375,3.30333 -7.375,7.375 0,1.42005 0.5668696,2.524789 1.2625236,3.649969 1.272171,-1.04293 2.883702,-1.6875 4.65625,-1.6875 2.657065,0 4.983058,1.42226 6.28125,3.53125 0.226988,-0.18518 -0.028395,-0.101961 0.174937,-0.312461 -0.883058,-1.6981 -1.050754,-3.74498 -0.28125,-5.65625 0.393572,-0.97754 0.988503,-1.80192 1.71875,-2.4687501 C 3.0067656,6.7617079 0.721608,4.90625 -2.28125,4.90625 z"
+           style="fill:#fdb0f9;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+        <path
+           sodipodi:nodetypes="cc"
+           transform="translate(-20,-576)"
+           inkscape:connector-curvature="0"
+           id="path4755"
+           d="m 15.020851,589.12666 4.219341,0.73136"
+           style="fill:#a3086a;fill-opacity:1;stroke:#a3086a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+        <path
+           sodipodi:nodetypes="cc"
+           transform="translate(-20,-576)"
+           inkscape:connector-curvature="0"
+           id="path4757"
+           d="m 22.559406,585.4699 -1.237674,3.26296"
+           style="fill:none;stroke:#a3086a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      </g>
+    </g>
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5277"
+       d="m 46.054368,333.57971 c 0.256124,-0.0128 0.512571,-0.0565 0.768371,-0.0383 1.449398,0.10273 2.890863,0.44766 4.33734,0.59612 1.387631,0.14243 1.914018,0.13082 3.321928,0.17113 3.946238,0.001 7.888082,0.25232 11.835134,0.28078 2.341222,-0.0439 4.657335,0.30288 6.960721,0.67317 0.422349,0.14795 -1.669961,6.12087 -2.092311,5.97292 l 0,0 c -2.216911,-0.0933 -4.435725,-0.17285 -6.654988,-0.11151 -4.024519,-0.1187 -8.044601,-0.30006 -12.065292,-0.51055 -3.029501,-0.31807 -6.07122,-0.77972 -8.892912,-1.98749 -0.356822,-0.1755 2.125187,-5.22173 2.482009,-5.04623 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5279"
+       d="m 67.369311,326.47473 c 2.666238,0.0743 5.197799,0.97433 7.620903,2.02032 1.949833,1.0992 3.984539,2.33828 5.258279,4.24586 0.225928,0.33836 0.390429,0.71392 0.585644,1.07088 1.210085,2.41868 0.482665,4.85393 -0.496567,7.1978 -0.939649,2.41337 -2.356177,4.56562 -3.83859,6.66998 -1.116709,1.59882 -2.487676,2.96264 -4.106843,4.04411 -0.24301,0.0645 -0.399921,0.28426 -0.64442,0.32621 -0.239148,0.30528 -4.556404,-3.07678 -4.317257,-3.38206 l 0,0 c 0.24489,-0.32179 0.522406,-0.60518 0.792909,-0.90549 0.414084,-0.38289 0.914443,-0.68716 1.319094,-1.06634 0.628477,-0.58892 1.091159,-1.34151 1.609688,-2.01983 1.273728,-1.84355 2.480728,-3.73246 3.452848,-5.75649 0.20728,-0.44034 0.713773,-1.64382 1.019729,-2.04845 0.02444,-0.0323 0.09455,0.0523 0.119785,0.0206 0.105961,-0.13308 -0.136112,-0.4462 -0.159474,-0.48866 -1.106813,-1.20164 -2.609153,-1.95827 -4.084795,-2.60458 -2.174027,-0.85935 -4.44467,-1.40375 -6.612942,-2.27766 -0.356823,-0.1755 2.125186,-5.22174 2.482009,-5.04623 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5281"
+       d="m 44.438072,368.18001 c 0.398456,0.0182 0.796939,0.0358 1.195367,0.0546 1.417453,0.0668 2.832874,0.15878 4.249524,0.23995 1.67174,0.0958 2.003992,0.1655 1.199314,0.0272 3.103963,-0.20547 6.16777,-0.72799 9.277534,-0.91794 2.996181,0.002 5.988822,-0.15863 8.982779,-0.25193 1.523567,-0.0272 3.05535,-0.0178 4.577727,0.0395 0.319884,0.012 -0.640109,0.0166 -0.960213,0.0148 -0.326058,-0.002 0.651474,-0.0391 0.974825,-0.0811 0.343377,-6.3e-4 0.928365,-0.31879 1.262153,-0.10745 0.340461,-0.16986 2.742709,4.64499 2.402248,4.81485 l 0,0 c -0.28232,0.31971 -0.809402,0.34102 -1.180619,0.48178 -2.784972,0.87084 -3.232697,0.4882 -5.244678,0.71754 -3.000387,0.27649 -5.991597,0.78776 -9.014987,0.68453 -3.140302,-0.004 -6.256274,0.19801 -9.350197,0.77109 -1.124628,0.008 -2.249516,0.0502 -3.373884,0.0246 -2.162536,-0.0491 -4.31644,-0.50465 -6.41102,-1.00444 -0.38945,-0.1 1.024677,-5.60765 1.414127,-5.50766 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5283"
+       d="m 68.439792,361.20393 c 3.164397,-1.38298 6.421325,-0.94169 9.671342,-0.16452 2.563318,0.73413 4.965213,1.86202 7.355176,3.02081 1.469312,0.55896 2.655171,1.48202 3.606343,2.71015 1.007661,1.97445 0.416024,3.46645 -0.724839,5.16667 -1.133347,1.5135 -2.545142,2.78471 -3.926953,4.06433 -0.723663,0.71901 -1.511807,1.36259 -2.276674,2.03492 -0.247896,0.3225 -4.808731,-3.18329 -4.560834,-3.50579 l 0,0 c 0.702576,-0.80814 1.395222,-1.62114 2.199088,-2.33427 1.211964,-1.14892 2.451556,-2.26739 3.721801,-3.35174 0.09933,-0.0873 0.202696,-0.17012 0.297984,-0.26178 0.07282,-0.07 0.128768,-0.28821 0.205664,-0.22267 0.100383,0.0856 -0.02059,0.26502 -0.0027,0.39569 0.03899,0.28428 0.259279,0.71502 0.382931,1.0117 0.05305,0.0752 0.249085,0.20603 0.159159,0.22558 -0.119531,0.026 -0.200599,-0.14304 -0.312596,-0.19223 -0.689,-0.30262 -1.591688,-0.31641 -2.244914,-0.75187 -2.120711,-0.89054 -4.264314,-1.74983 -6.505497,-2.29132 -0.398294,-0.0752 -0.794169,-0.16466 -1.194882,-0.22572 -0.352982,-0.0538 -0.720601,-0.0228 -1.064586,-0.11856 -0.127646,-0.0355 0.517435,-0.0276 0.391499,-0.0688 -0.868267,-0.28388 -1.808217,-0.0664 -2.694534,-0.0944 -0.356822,0.1755 -2.838831,-4.87073 -2.482009,-5.04624 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5291"
+       d="m 53.415364,432.56332 c -0.725995,-0.0373 -1.452835,-0.26095 -2.181072,-0.26074 -0.12872,3e-5 -0.505097,0.0846 -0.376388,0.0863 1.045632,0.0141 1.994482,-0.17312 1.270602,-0.0369 -0.05033,0.0339 -0.118546,0.0503 -0.151004,0.1016 -0.01615,0.0255 0.09476,-0.0358 0.09039,-0.006 -0.02462,0.16823 -0.114705,0.32043 -0.160394,0.4842 -0.201072,0.72076 -0.353293,1.45352 -0.477768,2.19071 -0.20863,1.36373 -0.250976,2.78779 0.08873,4.13326 0.712771,1.15347 1.755095,2.09948 2.907986,2.7953 1.405835,0.89946 2.727723,1.85114 4.312872,2.4057 0.144859,-0.007 0.290247,-0.0365 0.434577,-0.0221 2.431588,0.24245 -0.903166,0.0678 1.464521,0.18385 0.240625,0.0118 0.953843,0.0928 0.722262,0.0264 -0.721103,-0.20679 -1.711973,0.0232 -0.177573,-0.22508 1.639252,-0.4435 3.329697,-0.85687 4.565969,-2.07419 0.791986,-1.33461 0.45581,-2.82872 0.275257,-4.28087 -0.477106,-1.90052 -1.150894,-3.74677 -2.426309,-5.25372 -1.357932,-1.63046 -3.349513,-2.01524 -5.326251,-2.3843 -2.293636,-0.14948 -1.488882,-0.21797 -3.638906,0.193 -0.395225,0.18796 -3.053454,-5.40135 -2.65823,-5.58932 l 0,0 c 0.682587,-0.18075 2.252683,-0.62653 2.92853,-0.6743 2.037127,-0.14398 4.067314,-0.0178 6.061254,0.39921 3.320557,0.8901 5.867567,2.15152 8.00722,4.94355 1.541762,2.35731 2.630339,4.89346 3.140777,7.67998 0.425692,3.00161 0.290613,5.92414 -1.430146,8.53598 -0.894724,1.01137 -1.089938,1.3513 -2.233533,2.13937 -1.472629,1.01481 -3.279104,1.45291 -4.965145,1.95213 -2.658962,0.45474 -5.316105,0.33923 -7.863857,-0.55883 -1.959133,-0.78921 -3.762308,-1.87981 -5.485451,-3.09826 -2.00901,-1.65457 -3.756539,-3.51362 -4.456541,-6.09901 -0.360909,-1.99366 -0.442598,-4.042 -0.169417,-6.05506 0.477892,-2.38573 0.995733,-4.88395 3.069496,-6.42469 0.330644,-0.19552 0.621796,-0.48383 0.991931,-0.58657 2.235923,-0.6206 4.232703,-0.56975 6.327618,0.33311 0.356823,0.1755 -2.125186,5.22174 -2.482009,5.04623 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5293"
+       d="m 59.852462,466.59507 c -1.263135,0.37188 -2.478885,0.86307 -3.666036,1.42609 -0.03491,0.0458 -0.07815,0.0863 -0.104746,0.13731 -0.01787,0.0343 0.04894,0.061 0.06466,0.0964 0.186619,0.41953 0.2686,0.90289 0.373517,1.34645 0.361511,0.95117 0.117577,2.15154 0.728215,3.00196 0.415818,0.96495 1.136381,1.66793 2.138247,1.97057 1.712446,0.46625 3.480539,0.31328 5.228035,0.42463 0.568564,0.0502 1.299578,0.26191 3.356701,-0.34585 0.692471,-0.29116 0.986633,-0.1072 0.758074,-0.79364 -0.394206,-2.15624 -0.884062,-4.24548 -1.689423,-6.28801 -0.6728,-1.30919 -1.613581,-3.62455 -2.805238,-4.54847 -0.08673,-0.0672 -0.215659,-0.0408 -0.323488,-0.0612 -0.151415,0.004 -0.303292,-8e-5 -0.454246,0.0124 -1.339899,0.11116 0.341312,0.0299 0.399231,0.21469 0.08239,0.26291 -0.549082,0.0463 -0.823623,0.0695 -0.405936,0.14447 -2.449018,-5.59633 -2.043082,-5.7408 l 0,0 c 2.403369,-0.29541 4.839625,-0.30541 6.948143,1.024 0.408381,0.31807 0.84067,0.60762 1.225141,0.95421 1.847072,1.66508 3.024646,4.01504 3.960876,6.2679 0.854876,2.58372 1.389372,5.24522 1.492054,7.97229 -0.123699,2.97548 -0.914072,4.72258 -3.69508,6.06706 -0.159143,0.0573 -2.021846,0.72795 -2.053193,0.73657 -1.968269,0.5412 -4.052616,0.36285 -6.063046,0.31212 -2.527697,-0.12999 -5.022266,-0.39444 -7.249434,-1.71947 -1.656312,-1.21099 -2.997391,-2.62785 -3.713657,-4.59255 -0.444054,-1.21897 -0.669311,-2.47505 -1.018426,-3.72051 -0.581501,-2.15398 -0.698886,-4.34324 0.650538,-6.25618 0.28399,-0.33338 0.534337,-0.69863 0.85197,-1.00012 1.375849,-1.30593 3.363213,-2.03243 5.220656,-2.17259 0.368063,-0.16311 2.674722,5.04208 2.30666,5.20518 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5295"
+       d="m 93.229489,522.79091 c -1.214551,-0.28839 -2.491114,-0.34766 -3.727771,-0.13783 -0.08761,0.0149 0.342732,0.0666 0.254702,0.0787 -0.460572,0.0635 -0.928397,0.0521 -1.392595,0.0782 -2.806413,0.2334 -5.452539,1.23244 -8.096242,2.13164 -3.089634,1.16705 -6.279938,1.93253 -9.553433,2.32837 -2.094211,0.15354 -4.202528,0.3001 -6.301906,0.33216 -0.08541,0.01 0.07524,-0.29534 -0.0021,-0.2578 -0.137165,0.0666 -0.238389,0.19132 -0.367543,0.2724 -0.817941,0.51346 -0.605711,0.39778 -1.413518,0.63325 -3.066341,0.0614 -1.116935,0.17378 -2.471007,-0.0625 -0.126149,-0.022 -0.509198,-0.0456 -0.381165,-0.0479 0.559521,-0.0101 2.236931,0.0166 1.678685,-0.0225 0.856748,-2.50128 1.939766,0.75545 -2.775556,-4.52976 0.361983,-0.139 2.327746,4.98022 1.965762,5.11922 l 0,0 c -2.936932,-2.85302 -5.159084,-2.98495 -2.439574,-5.10623 0.297649,-0.16923 0.875891,-0.52955 1.207481,-0.56809 0.790718,-0.0919 1.590689,-0.0736 2.386671,-0.0833 0.139833,-0.002 0.558555,0.0202 0.41879,0.0249 -0.457862,0.0153 -0.915123,0.0451 -1.372684,0.0677 -1.319503,1.37239 0.98544,-0.84964 1.401123,-0.73427 2.02682,-0.6534 4.127711,-0.9457 6.248536,-1.07712 0.967198,-0.11583 1.942115,-0.16265 2.908025,-0.28877 1.948119,-0.25436 3.835121,-0.95476 5.685347,-1.57665 3.071021,-0.97348 6.086486,-2.14715 9.289235,-2.6325 3.478271,-0.3283 7.218796,-0.53994 10.227574,1.53061 0.320179,0.23878 -3.056698,4.76679 -3.376876,4.52801 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5297"
+       d="m 65.298113,516.71053 c -2.284933,2.10998 -4.800738,3.94714 -7.27174,5.82984 -1.069197,1.00559 -2.605571,1.7853 -3.290869,3.12344 0.0833,-0.051 0.07014,-0.0694 0.149977,0.0632 0.295409,0.49053 0.630471,0.71847 1.094134,1.07445 1.569251,1.1918 3.36268,2.05348 5.14284,2.88466 2.070469,0.88246 3.997831,2.09873 5.805792,3.43412 0.538546,0.33761 0.834504,0.78446 1.185439,1.29953 0.207971,0.31944 -4.309605,3.2606 -4.517576,2.94115 l 0,0 c 0.449481,0.70124 0.277342,0.48607 -0.271487,0.3185 -2.064017,-0.84975 -3.942986,-2.11995 -5.996587,-3.00307 -2.136666,-1.1898 -4.254553,-2.47049 -5.964177,-4.2459 -1.393468,-1.57115 -2.397967,-3.29399 -2.390604,-5.4598 0.06594,-0.43211 0.08677,-0.87356 0.197832,-1.29634 0.601615,-2.29017 2.485994,-4.03874 4.104396,-5.63444 2.599609,-2.12445 5.218919,-4.30125 8.297977,-5.70431 0.309358,-0.26337 4.03401,4.1116 3.724653,4.37497 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5299"
+       d="m 92.562773,557.82509 c -2.434153,0.40965 -4.913864,0.2673 -7.370873,0.34448 -2.574803,0.21326 -5.130769,0.60535 -7.685844,0.98177 -2.213641,0.25018 -4.436893,0.38671 -6.653223,0.61562 -2.183687,0.1937 -4.364171,0.0872 -6.536654,-0.15542 -0.172706,-0.0149 -0.6911,-0.0335 -0.518117,-0.0448 2.268433,-0.14812 1.642884,-0.0878 1.000169,0.0888 -0.739935,0.20328 -1.467893,0.39774 -2.219884,0.5546 -0.01173,-0.0307 -1.590651,0.25316 -1.654895,0.12831 -0.02801,-0.0544 0.150666,-0.16423 0.08957,-0.16035 -0.115397,0.007 -0.200169,0.11581 -0.300254,0.17372 -0.13503,0.068 -0.270061,0.13602 -0.405092,0.20403 -0.335486,0.17979 -2.878108,-4.5647 -2.542622,-4.74449 l 0,0 c -0.08576,0.0535 -0.171526,0.10699 -0.25729,0.16049 -0.19789,0.21075 0.111694,-0.12272 0.379527,-0.31329 0.694332,-0.49403 1.616365,-0.80648 2.457435,-0.83527 1.900662,-0.22223 3.724404,-0.94019 5.679787,-0.70067 0.199607,0.001 1.911569,0.03 1.958773,-0.0174 0.164331,-0.16496 -0.93122,-0.0126 -0.698505,-0.005 0.835143,0.0274 0.813487,0.009 1.649695,-0.0394 2.102137,-0.14394 4.168083,-0.60718 6.278793,-0.67075 2.678503,-0.42567 5.33651,-0.93475 8.03735,-1.2135 2.61992,-0.27844 5.286769,-0.22612 7.898032,0.14086 0.389451,-0.1 1.803578,5.40767 1.414127,5.50766 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5301"
+       d="m 66.365361,551.26276 c -2.016899,0.87966 -4.083457,1.63961 -5.803865,3.04152 -1.26557,1.20971 -2.400957,2.55704 -3.475779,3.93781 -0.471038,0.35655 -0.989869,1.89135 -0.746573,0.59227 -0.0016,-0.0598 -0.06269,-0.16469 -0.0047,-0.17953 0.01786,-0.005 0.170545,0.40598 0.26551,0.82003 0.09135,0.3983 0.03633,0.57261 0.101261,0.25133 -0.03481,-0.1536 -0.133626,-0.30603 -0.10443,-0.46079 0.02871,-0.15217 0.308644,-0.0263 0.463265,-0.0349 0.589218,-0.0327 1.15057,0.19942 1.725186,0.32639 1.358233,0.20719 2.463429,1.36476 3.822055,1.47774 0.696749,-0.10816 1.553004,0.42018 2.096169,0.87277 0.302974,0.23057 -2.957721,4.51527 -3.260696,4.2847 l 0,0 c 0.13743,0.21717 -0.125186,0.0416 -0.240344,0.0573 -0.0322,0.004 -0.03038,0.0658 -0.0613,0.0758 -0.308151,0.0999 -0.975015,-0.13549 -1.100581,-0.16273 -1.3193,-0.43183 -2.574282,-1.03802 -3.926789,-1.37281 -1.931953,-0.59108 -3.739876,-1.3078 -4.669718,-3.2493 -0.231861,-0.80112 -0.491432,-1.59048 -0.637144,-2.41301 0.01797,-1.58508 0.441933,-2.50657 1.247562,-3.81545 1.185945,-1.76733 2.308129,-3.58506 3.792574,-5.12897 2.336857,-2.1134 4.977255,-3.8646 8.211672,-4.12541 0.368062,-0.16311 2.674722,5.04208 2.306659,5.20518 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5303"
+       d="m 94.246103,497.46739 c -3.586301,0.56629 -7.245613,0.5342 -10.868161,0.53663 -4.466146,-0.0597 -8.916025,-0.0288 -13.370618,0.30363 -5.390507,0.67556 -10.785574,1.33065 -16.210423,1.65337 -2.741901,0.2452 -5.4962,0.19303 -8.24067,0.34645 -0.09387,-0.0167 -0.327641,0.0333 -0.28162,-0.0502 0.806689,-1.46382 0.778472,0.99611 1.219398,-1.84991 0.07972,-0.51455 -0.479634,-2.55572 0.06353,-0.67671 -4.175101,2.24649 -3.975721,3.76679 -5.236522,1.67082 -0.183146,-0.33071 4.493803,-2.92079 4.67695,-2.59008 l 0,0 c -1.005107,-1.70123 1.813711,-1.09861 -4.65147,2.21648 0.03423,0.11969 0.06963,0.23904 0.102681,0.35905 0.0093,0.0339 0.032,0.13699 0.02447,0.10263 -0.126358,-0.57574 -0.432912,-1.13968 -0.380925,-1.72683 0.11877,-1.34139 0.959915,-2.08827 2.006104,-2.69209 2.71658,-1.05033 5.576539,-1.39238 8.446732,-1.80622 5.440659,-0.63433 10.877008,-1.28734 16.341028,-1.69567 4.592469,-0.24648 9.185464,-0.24518 13.783877,-0.21494 3.7154,0.002 7.461759,-0.0143 11.143728,0.53663 0.394348,-0.10125 1.82626,5.47568 1.431912,5.57693 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5305"
+       d="m 50.091002,490.62843 c -1.193861,2.11664 -2.492249,4.17178 -3.693694,6.28459 -0.346209,1.00297 -1.675902,2.15961 -1.408715,3.33036 0.378162,0.91821 0.533451,1.88289 0.610459,2.8662 0.08935,0.11156 0.180019,0.73529 0.413388,0.41936 0.06013,-0.0814 -0.005,-0.26355 0.09295,-0.28902 0.184607,-0.048 0.373119,0.0795 0.559678,0.11928 1.659904,0.29505 3.309733,0.5876 4.928859,1.0583 1.146295,0.26276 2.615206,0.89081 2.913924,2.1951 0.144645,0.63156 0.03421,1.29538 0.05131,1.94307 -0.110154,0.36584 -5.283936,-1.19197 -5.173782,-1.55781 l 0,0 c 0.04122,0.58124 -0.01529,1.17783 0.123665,1.74371 0.19962,0.81297 1.477384,1.23835 0.291766,1.0894 -0.229727,-0.0289 -0.457068,-0.0743 -0.685602,-0.11143 -1.992027,-0.31286 -3.996787,-0.58612 -5.830904,-1.49342 -2.017763,-1.1808 -3.109153,-2.51616 -3.279006,-4.87326 0.0789,-0.60874 -0.778054,-1.71653 -0.705665,-2.34755 -0.381355,-2.56373 0.244779,-4.4326 1.354935,-6.73434 1.293256,-2.31224 2.609419,-4.74637 4.560829,-6.56872 0.206912,-0.34475 5.082524,2.58142 4.875612,2.92618 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5307"
+       d="m 44.243899,404.9189 c -1.701109,-1.78557 -1.344375,-4.29816 0.676875,-5.79082 1.465456,-1.08222 4.120658,-0.75412 5.605168,-0.78234 5.808728,0.46735 11.54488,1.51665 17.30759,2.34832 4.932198,0.74805 9.90859,1.15281 14.884741,1.46844 1.906316,0.15708 3.776736,0.21588 5.797351,0.34562 0.122396,0.025 0.244792,0.05 0.367187,0.075 0.37523,-0.12389 2.127223,5.18267 1.751993,5.30656 l 0,0 c -0.123147,0.0448 -0.246294,0.0896 -0.369441,0.13441 -3.111526,0.62165 -6.279831,0.70671 -9.447033,0.68043 -5.237265,-0.0674 -10.487814,-0.28736 -15.678396,-1.02386 -5.574642,-0.7551 -11.094788,-1.81088 -16.564298,-3.12966 0.625274,-0.70142 -0.08289,0.27274 -0.08067,-0.82403 0.0037,-1.82263 0.733866,-0.65853 0.04138,-2.53087 -0.03624,-0.098 0.105214,0.18052 0.157821,0.27078 0.244092,0.31468 -4.206175,3.76666 -4.450267,3.45198 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path5309"
+       d="m 76.326338,394.87312 c 4.176119,-1.54158 8.080695,-0.4835 11.933592,1.27318 2.916489,1.40992 5.148284,3.59143 6.7069,6.40337 1.385458,2.71196 0.985888,4.77123 -0.04524,7.49288 -1.523648,3.28204 -4.409327,5.54353 -7.305406,7.5675 -0.870168,0.58595 -1.727556,1.19035 -2.576778,1.80612 -0.25021,0.3425 -5.093922,-3.196 -4.843712,-3.5385 l 0,0 c 0.855535,-1.11118 1.783586,-2.09272 2.946214,-2.9012 2.127137,-1.52187 4.355454,-3.06512 6.077192,-5.04109 0.604481,-1.06367 1.119559,-1.50226 0.433073,-2.62987 -1.37525,-1.66899 -2.963609,-2.93854 -5.018531,-3.71395 -1.201403,-0.455 -1.50554,-0.61726 -2.76484,-0.90464 -0.460745,-0.10514 -0.954066,-0.0808 -1.395758,-0.24886 -0.102588,-0.039 0.380983,-0.13844 0.278016,-0.17647 -0.39218,-0.14483 -1.66445,-0.16576 -2.118061,-0.18329 -0.368062,0.16311 -2.674721,-5.04208 -2.306659,-5.20518 z"
+       inkscape:connector-curvature="0" />
+    <g
+       transform="translate(-2.2093325,64)"
+       mask="url(#mask5947)"
+       id="use5364">
+      <path
+         transform="matrix(0.77207533,0,0,0.77207533,6.9938957,424.71201)"
+         d="m 30.759145,16.549604 c 0,7.2247 -5.856776,13.081476 -13.081475,13.081476 -7.2247,0 -13.0814757,-5.856776 -13.0814757,-13.081476 0,-7.2246989 5.8567757,-13.0814748 13.0814757,-13.0814748 7.224699,0 13.081475,5.8567759 13.081475,13.0814748 z"
+         sodipodi:ry="13.081475"
+         sodipodi:rx="13.081475"
+         sodipodi:cy="16.549604"
+         sodipodi:cx="17.67767"
+         id="path5374"
+         style="fill:#feabf9;fill-opacity:1;stroke:none;display:inline"
+         sodipodi:type="arc" />
+      <g
+         inkscape:tile-y0="2.0282048"
+         inkscape:tile-x0="0.59301574"
+         id="g5376"
+         transform="matrix(0.72351464,0,0,0.72351464,8.6313359,424.85808)">
+        <path
+           sodipodi:type="star"
+           style="opacity:0.18442622;fill:#6f7af0;fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-opacity:1"
+           id="path5378"
+           sodipodi:sides="10"
+           sodipodi:cx="-53"
+           sodipodi:cy="-19"
+           sodipodi:r1="15.617478"
+           sodipodi:r2="12.224746"
+           sodipodi:arg1="2.5868862"
+           sodipodi:arg2="2.8570359"
+           inkscape:flatsided="false"
+           inkscape:rounded="0.2"
+           inkscape:randomized="0"
+           d="m -66.275717,-10.774371 c -0.567627,-0.831976 1.782511,-3.815582 1.542575,-4.793751 -0.284849,-1.161268 -3.877424,-3.385306 -3.842042,-4.580475 0.0298,-1.006725 3.684825,-2.039137 4.065665,-2.971523 0.452129,-1.106915 -1.147069,-5.017863 -0.415941,-5.963978 0.615849,-0.79694 4.17966,0.516189 5.03581,-0.01427 1.016408,-0.629758 2.021427,-4.733766 3.169034,-5.069443 0.966662,-0.282751 3.078008,2.874348 4.082446,2.948426 1.192455,0.08795 4.417807,-2.641532 5.543547,-2.238554 0.948243,0.33944 0.800662,4.134604 1.569727,4.784929 0.913023,0.772055 5.126735,0.459677 5.800613,1.447386 0.567627,0.831976 -1.782511,3.815582 -1.542575,4.793751 0.284849,1.161268 3.877424,3.385306 3.842042,4.580475 -0.0298,1.006725 -3.684825,2.039137 -4.065665,2.971523 -0.452129,1.106915 1.147069,5.0178628 0.415941,5.963978 -0.615849,0.7969396 -4.17966,-0.5161889 -5.03581,0.014275 -1.016408,0.6297585 -2.021427,4.7337664 -3.169034,5.0694436 -0.966662,0.2827504 -3.078008,-2.8743483 -4.082446,-2.9484264 -1.192455,-0.087944 -4.417807,2.6415324 -5.543547,2.2385544 -0.948243,-0.3394398 -0.800662,-4.1346044 -1.569727,-4.7849287 -0.913023,-0.7720555 -5.126735,-0.4596772 -5.800613,-1.4473865 z"
+           transform="matrix(0.85030559,0,0,1.0025289,58.902878,36.282428)"
+           clip-path="url(#clipPath4864)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:none;stroke:#a3086a;stroke-width:0.89761239;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path5380"
+           sodipodi:cx="17.67767"
+           sodipodi:cy="16.549604"
+           sodipodi:rx="13.081475"
+           sodipodi:ry="13.081475"
+           d="m 30.759145,16.549604 c 0,7.2247 -5.856776,13.081476 -13.081475,13.081476 -7.2247,0 -13.0814757,-5.856776 -13.0814757,-13.081476 0,-7.2246989 5.8567757,-13.0814748 13.0814757,-13.0814748 7.224699,0 13.081475,5.8567759 13.081475,13.0814748 z"
+           transform="matrix(1.0769859,0,0,1.0769859,-2.3924646,-0.34850607)" />
+        <g
+           transform="matrix(1.3030866,0,0,1.3030866,-4.4407036,-5.1844797)"
+           mask="none"
+           id="g5382"
+           clip-path="none">
+          <path
+             transform="matrix(-0.5518279,1.3706131,1.3706131,0.5518279,11.305948,-17.328573)"
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5384"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5386"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(-0.29209421,0.72549458,0.72549458,0.29209421,16.488243,-2.7790682)" />
+          <path
+             clip-path="none"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5388"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(1.9405158,0,0,1.9405158,-14.849665,-13.293972)" />
+          <path
+             transform="matrix(0.95232689,0,0,0.95232689,2.8507093,0.50373085)"
+             sodipodi:type="arc"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5390"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+        </g>
+        <path
+           sodipodi:nodetypes="czzzc"
+           inkscape:connector-curvature="0"
+           id="path5392"
+           d="m 23.239205,20.05294 c 0,0 2.467927,-2.476553 3.335908,-0.595923 0.867983,1.880614 -1.444579,1.414555 -2.033936,2.765894 -0.589357,1.351339 -0.234303,0.777469 0.200853,2.835053 0.435156,2.05755 -3.67278,-1.822422 -3.67278,-1.822422"
+           style="fill:none;stroke:#a3086a;stroke-width:1.38214207px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      </g>
+    </g>
+    <g
+       mask="url(#mask5943)"
+       id="use5366"
+       transform="translate(-0.64676058,127.56884)">
+      <path
+         transform="matrix(0.79607864,0,0,0.79607864,4.9995793,392.91134)"
+         d="m 30.759145,16.549604 c 0,7.2247 -5.856776,13.081476 -13.081475,13.081476 -7.2247,0 -13.0814757,-5.856776 -13.0814757,-13.081476 0,-7.2246989 5.8567757,-13.0814748 13.0814757,-13.0814748 7.224699,0 13.081475,5.8567759 13.081475,13.0814748 z"
+         sodipodi:ry="13.081475"
+         sodipodi:rx="13.081475"
+         sodipodi:cy="16.549604"
+         sodipodi:cx="17.67767"
+         id="path5396"
+         style="fill:#feabf9;fill-opacity:1;stroke:none;display:inline"
+         sodipodi:type="arc" />
+      <g
+         inkscape:tile-y0="2.0282048"
+         inkscape:tile-x0="0.59301574"
+         id="g5398"
+         transform="matrix(0.75132221,0,0,0.75132221,6.5072427,393.01734)">
+        <path
+           sodipodi:type="star"
+           style="opacity:0.34836067;fill:#6f7af0;fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-opacity:1"
+           id="path5400"
+           sodipodi:sides="10"
+           sodipodi:cx="-53"
+           sodipodi:cy="-19"
+           sodipodi:r1="15.617478"
+           sodipodi:r2="12.224746"
+           sodipodi:arg1="2.5868862"
+           sodipodi:arg2="2.8570359"
+           inkscape:flatsided="false"
+           inkscape:rounded="0.4"
+           inkscape:randomized="0"
+           d="m -66.275717,-10.774371 c -1.135253,-1.663951 2.022447,-2.837413 1.542575,-4.793751 -0.569697,-2.322535 -3.912806,-2.190136 -3.842042,-4.580475 0.05961,-2.01345 3.303984,-1.106751 4.065665,-2.971523 0.904258,-2.21383 -1.878196,-4.071748 -0.415941,-5.963978 1.231699,-1.593879 3.323511,1.046652 5.03581,-0.01427 2.032816,-1.259517 0.87382,-4.398089 3.169034,-5.069443 1.933324,-0.565501 2.07357,2.80027 4.082446,2.948426 2.384909,0.175889 3.292068,-3.04451 5.543547,-2.238554 1.896485,0.678879 0.0316,3.48428 1.569727,4.784929 1.826047,1.544111 4.452857,-0.528033 5.800613,1.447386 1.135253,1.663951 -2.022447,2.837413 -1.542575,4.793751 0.569697,2.322535 3.912806,2.190136 3.842042,4.580475 -0.05961,2.01345 -3.303984,1.106751 -4.065665,2.971523 -0.904258,2.21383 1.878196,4.071748 0.415941,5.963978 -1.231699,1.5938792 -3.323511,-1.0466524 -5.03581,0.014275 -2.032816,1.2595171 -0.87382,4.3980892 -3.169034,5.0694436 -1.933324,0.5655009 -2.07357,-2.8002703 -4.082446,-2.9484264 -2.384909,-0.1758887 -3.292068,3.0445105 -5.543547,2.2385544 -1.896485,-0.6788796 -0.0316,-3.4842801 -1.569727,-4.7849287 -1.826047,-1.5441115 -4.452857,0.5280321 -5.800613,-1.4473865 z"
+           transform="matrix(0.85030559,0,0,1.0025289,58.902878,36.282428)"
+           clip-path="url(#clipPath4864)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:none;stroke:#a3086a;stroke-width:0.89761239;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path5402"
+           sodipodi:cx="17.67767"
+           sodipodi:cy="16.549604"
+           sodipodi:rx="13.081475"
+           sodipodi:ry="13.081475"
+           d="m 30.759145,16.549604 c 0,7.2247 -5.856776,13.081476 -13.081475,13.081476 -7.2247,0 -13.0814757,-5.856776 -13.0814757,-13.081476 0,-7.2246989 5.8567757,-13.0814748 13.0814757,-13.0814748 7.224699,0 13.081475,5.8567759 13.081475,13.0814748 z"
+           transform="matrix(1.0769859,0,0,1.0769859,-2.3924646,-0.34850607)" />
+        <g
+           transform="matrix(1.2419722,0,0,1.253592,-3.5107086,-4.405444)"
+           id="g5404"
+           clip-path="url(#clipPath5083)">
+          <path
+             transform="matrix(-0.5518279,1.3706131,1.3706131,0.5518279,11.305948,-17.328573)"
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5406"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5408"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(-0.29209421,0.72549458,0.72549458,0.29209421,16.488243,-2.7790682)" />
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5410"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(1.9405158,0,0,1.9405158,-14.849665,-13.293972)" />
+          <path
+             transform="matrix(0.95232689,0,0,0.95232689,2.8507093,0.50373085)"
+             sodipodi:type="arc"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5412"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+        </g>
+        <g
+           transform="matrix(1.2419722,0,0,1.253592,-3.5107086,-4.405444)"
+           id="g5414">
+          <path
+             sodipodi:open="true"
+             sodipodi:end="5.5772287"
+             sodipodi:start="4.5384708"
+             transform="matrix(1.208831,0,0,1.208831,-9.2359584,-2.5334786)"
+             d="m 19.892686,14.166735 c 2.127918,-0.37386 4.294825,0.405994 5.696483,2.050124"
+             sodipodi:ry="6.0987959"
+             sodipodi:rx="6.0987959"
+             sodipodi:cy="20.173527"
+             sodipodi:cx="20.948038"
+             id="path5416"
+             style="fill:none;stroke:#a3086a;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             sodipodi:type="arc" />
+          <path
+             sodipodi:open="true"
+             sodipodi:type="arc"
+             style="fill:none;stroke:#a3086a;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path5418"
+             sodipodi:cx="20.948038"
+             sodipodi:cy="20.173527"
+             sodipodi:rx="6.0987959"
+             sodipodi:ry="6.0987959"
+             d="m 20.261596,14.113485 c 1.60869,-0.182222 3.223822,0.282663 4.489483,1.292213"
+             transform="matrix(-0.41597446,1.0331845,1.0331845,0.41597446,16.896199,-15.746335)"
+             sodipodi:start="4.5995962"
+             sodipodi:end="5.3856931" />
+        </g>
+        <path
+           sodipodi:nodetypes="czzzc"
+           inkscape:connector-curvature="0"
+           id="path5420"
+           d="m 22.822872,17.829925 c 0,0 3.393372,-5.123333 4.229229,-1.447191 0.835857,3.676141 -3.522378,1.206246 -4.089921,4.372697 -0.567543,3.166451 3.826828,2.285257 2.237276,5.127507 -1.589552,2.84225 -4.187606,-2.619952 -4.187606,-2.619952"
+           style="fill:none;stroke:#a3086a;stroke-width:1.33098686px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      </g>
+    </g>
+    <g
+       mask="url(#mask5939)"
+       id="use5370"
+       transform="translate(0,224)">
+      <path
+         transform="matrix(0.93209742,0,0,0.93209742,1.6530879,323.97038)"
+         d="m 30.759145,16.549604 c 0,7.2247 -5.856776,13.081476 -13.081475,13.081476 -7.2247,0 -13.0814757,-5.856776 -13.0814757,-13.081476 0,-7.2246989 5.8567757,-13.0814748 13.0814757,-13.0814748 7.224699,0 13.081475,5.8567759 13.081475,13.0814748 z"
+         sodipodi:ry="13.081475"
+         sodipodi:rx="13.081475"
+         sodipodi:cy="16.549604"
+         sodipodi:cx="17.67767"
+         id="path5424"
+         style="fill:#ffabf9;fill-opacity:1;stroke:none;display:inline"
+         sodipodi:type="arc" />
+      <g
+         inkscape:tile-y0="2.0282048"
+         inkscape:tile-x0="0.59301574"
+         id="g5426"
+         transform="matrix(0.86987598,0,0,0.86987598,3.6435543,324.1992)">
+        <path
+           sodipodi:type="star"
+           style="opacity:0.71721311;fill:#6f7af0;fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-opacity:1"
+           id="path5428"
+           sodipodi:sides="10"
+           sodipodi:cx="-53"
+           sodipodi:cy="-19"
+           sodipodi:r1="15.617478"
+           sodipodi:r2="12.224746"
+           sodipodi:arg1="2.5868862"
+           sodipodi:arg2="2.8570359"
+           inkscape:flatsided="false"
+           inkscape:rounded="0.8"
+           inkscape:randomized="0"
+           d="m -66.275717,-10.774371 c -2.270507,-3.327902 2.502319,-0.881076 1.542575,-4.793751 -1.139394,-4.645071 -3.98357,0.200202 -3.842042,-4.580475 0.119214,-4.0269 2.542302,0.758021 4.065665,-2.971523 1.808515,-4.427661 -3.340452,-2.179517 -0.415941,-5.963978 2.463398,-3.187758 1.611212,2.107579 5.03581,-0.01427 4.065633,-2.519034 -1.421395,-3.726734 3.169034,-5.069443 3.866649,-1.131002 0.06469,2.652114 4.082446,2.948426 4.769818,0.351778 1.040588,-3.850466 5.543547,-2.238554 3.792971,1.357759 -1.506535,2.183631 1.569727,4.784929 3.652094,3.088222 3.1051,-2.503451 5.800613,1.447386 2.270507,3.327902 -2.502319,0.881076 -1.542575,4.793751 1.139394,4.645071 3.98357,-0.200202 3.842042,4.580475 -0.119214,4.0269 -2.542302,-0.758021 -4.065665,2.971523 -1.808515,4.427661 3.340452,2.179517 0.415941,5.963978 -2.463398,3.1877584 -1.611212,-2.107579 -5.03581,0.014275 -4.065633,2.5190342 1.421395,3.7267347 -3.169034,5.0694436 -3.866649,1.1310017 -0.06469,-2.6521142 -4.082446,-2.9484264 -4.769818,-0.3517775 -1.040588,3.8504665 -5.543547,2.2385544 -3.792971,-1.3577593 1.506535,-2.1836316 -1.569727,-4.7849287 -3.652094,-3.0882225 -3.1051,2.5034508 -5.800613,-1.4473865 z"
+           transform="matrix(0.85030559,0,0,1.0025289,58.902878,36.282428)"
+           clip-path="url(#clipPath4864)" />
+        <path
+           sodipodi:type="arc"
+           style="fill:none;stroke:#a3086a;stroke-width:0.89761239;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path5430"
+           sodipodi:cx="17.67767"
+           sodipodi:cy="16.549604"
+           sodipodi:rx="13.081475"
+           sodipodi:ry="13.081475"
+           d="m 30.759145,16.549604 c 0,7.2247 -5.856776,13.081476 -13.081475,13.081476 -7.2247,0 -13.0814757,-5.856776 -13.0814757,-13.081476 0,-7.2246989 5.8567757,-13.0814748 13.0814757,-13.0814748 7.224699,0 13.081475,5.8567759 13.081475,13.0814748 z"
+           transform="matrix(1.0769859,0,0,1.0769859,-2.3924646,-0.34850607)" />
+        <g
+           id="g5432"
+           clip-path="url(#clipPath5083)">
+          <path
+             transform="matrix(-0.5518279,1.3706131,1.3706131,0.5518279,11.305948,-17.328573)"
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5434"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5436"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(-0.29209421,0.72549458,0.72549458,0.29209421,16.488243,-2.7790682)" />
+          <path
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z"
+             sodipodi:ry="1.502602"
+             sodipodi:rx="1.502602"
+             sodipodi:cy="14.163119"
+             sodipodi:cx="16.705399"
+             id="path5438"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc"
+             transform="matrix(1.9405158,0,0,1.9405158,-14.849665,-13.293972)" />
+          <path
+             transform="matrix(0.95232689,0,0,0.95232689,2.8507093,0.50373085)"
+             sodipodi:type="arc"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path5440"
+             sodipodi:cx="16.705399"
+             sodipodi:cy="14.163119"
+             sodipodi:rx="1.502602"
+             sodipodi:ry="1.502602"
+             d="m 18.208001,14.163119 c 0,0.829864 -0.672738,1.502602 -1.502602,1.502602 -0.829865,0 -1.502602,-0.672738 -1.502602,-1.502602 0,-0.829864 0.672737,-1.502602 1.502602,-1.502602 0.829864,0 1.502602,0.672738 1.502602,1.502602 z" />
+        </g>
+        <g
+           id="g5442">
+          <path
+             sodipodi:open="true"
+             sodipodi:end="6.3837004"
+             sodipodi:start="4.3668611"
+             transform="matrix(1.208831,0,0,1.208831,-9.2359584,-2.5334786)"
+             d="m 18.882416,14.435189 c 3.169196,-1.140811 6.663148,0.50352 7.80396,3.672716 0.308398,0.856736 0.421045,1.771655 0.329675,2.677611"
+             sodipodi:ry="6.0987959"
+             sodipodi:rx="6.0987959"
+             sodipodi:cy="20.173527"
+             sodipodi:cx="20.948038"
+             id="path5444"
+             style="fill:none;stroke:#a3086a;stroke-width:0.50022203;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             sodipodi:type="arc" />
+          <path
+             sodipodi:open="true"
+             sodipodi:type="arc"
+             style="fill:none;stroke:#a3086a;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path5446"
+             sodipodi:cx="20.948038"
+             sodipodi:cy="20.173527"
+             sodipodi:rx="6.0987959"
+             sodipodi:ry="6.0987959"
+             d="m 18.882416,14.435189 c 3.169196,-1.140811 6.663148,0.50352 7.80396,3.672716 0.320575,0.890563 0.42947,1.843518 0.318067,2.783444"
+             transform="matrix(-0.41597446,1.0331845,1.0331845,0.41597446,16.896199,-15.746335)"
+             sodipodi:start="4.3668611"
+             sodipodi:end="6.4011578" />
+        </g>
+      </g>
+      <path
+         sodipodi:nodetypes="czzzc"
+         inkscape:connector-curvature="0"
+         id="path5448"
+         d="m 23.340575,340.00603 c 0,0 -0.550007,-2.49948 1.045005,0.11093 1.59501,2.6104 -0.320234,1.19526 -0.207676,2.81973 0.112559,1.62447 2.818892,0.64528 2.0558,2.30578 -0.763092,1.6605 -2.579131,0.5202 -2.579131,0.5202"
+         style="fill:none;stroke:#a3086a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="frame"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none"
+       id="rect20004"
+       width="32"
+       height="32"
+       x="-2.6098915e-15"
+       y="0"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="frame-0.5"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       id="rect20004-7"
+       width="31"
+       height="31"
+       x="0.5"
+       y="0.5"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,32)"
+       id="use20175-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,64)"
+       id="use20177-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,96)"
+       id="use20179-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,128)"
+       id="use20181-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,160)"
+       id="use20183-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,192)"
+       id="use20185-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,224)"
+       id="use20187-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,256)"
+       id="use20189-6"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,288)"
+       id="use20191-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,320)"
+       id="use20193-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,352)"
+       id="use20195-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,384)"
+       id="use20197-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,416)"
+       id="use20199-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,448)"
+       id="use20201-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,480)"
+       id="use20203-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,512)"
+       id="use20205-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,544)"
+       id="use20207-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,576)"
+       id="use20209-7"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1"
+       id="path3296"
+       sodipodi:cx="13.082203"
+       sodipodi:cy="31.332769"
+       sodipodi:rx="3.5490334"
+       sodipodi:ry="2.8754942"
+       d="m 16.631236,31.332769 a 3.5490334,2.8754942 0 1 1 -7.0980665,0 3.5490334,2.8754942 0 1 1 7.0980665,0 z"
+       transform="matrix(0.98618401,0,0,0.86941576,-0.40145933,3.2587965)"
+       inkscape:tile-cx="12.253232"
+       inkscape:tile-cy="30.529706"
+       inkscape:tile-w="8.5487669"
+       inkscape:tile-h="7.0462566"
+       inkscape:tile-x0="7.9788488"
+       inkscape:tile-y0="27.006578" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       id="use3526"
+       transform="translate(0,33)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,66)"
+       id="use3528"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,97)"
+       id="use3530"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,128)"
+       id="use3532"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,160)"
+       id="use3534"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,193)"
+       id="use3536"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,226)"
+       id="use3538"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,257)"
+       id="use3540"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,288)"
+       id="use3542"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,320)"
+       id="use3544"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,353)"
+       id="use3546"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,386)"
+       id="use3548"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,417)"
+       id="use3550"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,448)"
+       id="use3552"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,480)"
+       id="use3554"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,510)"
+       id="use3556"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,543)"
+       id="use3558"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,576)"
+       id="use3560"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="frame and hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,0 0,32 9.6875,0 C 9.2558025,31.584271 9,31.057361 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.557361 -0.255803,1.084271 -0.6875,1.5 L 32,32 32,0 0,0 z"
+       id="rect13136"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,32 0,32 9.0625,0 C 9.0158769,63.837256 9,63.672589 9,63.5 9,62.119288 10.567003,61 12.5,61 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.172589 -0.01588,0.337256 -0.0625,0.5 L 32,64 32,32 0,32 z"
+       id="use13138"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,64 0,32 10.0625,0 c 0.326362,-1.139208 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.860792 3.4375,2 L 32,96 32,64 0,64 z"
+       id="use13140"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,96 0,32 9.0625,0 C 9.0158769,127.83726 9,127.67259 9,127.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,128 32,96 0,96 z"
+       id="use13142"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,128 0,32 9.6875,0 C 9.2558025,159.58427 9,159.05736 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,160 32,128 0,128 z"
+       id="use13144"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,160 0,32 9.6875,0 C 9.2558025,191.58427 9,191.05736 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,192 32,160 0,160 z"
+       id="use13146"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,192 0,32 9.0625,0 C 9.0158769,223.83726 9,223.67259 9,223.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,224 32,192 0,192 z"
+       id="use13148"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,224 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,256 32,224 0,224 z"
+       id="use13150"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,256 0,32 9.0625,0 C 9.0158769,287.83726 9,287.67259 9,287.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,288 32,256 0,256 z"
+       id="use13152"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,288 0,32 9.6875,0 C 9.2558025,319.58427 9,319.05736 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,320 32,288 0,288 z"
+       id="use13154"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,320 0,32 9.6875,0 C 9.2558025,351.58427 9,351.05736 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,352 32,320 0,320 z"
+       id="use13156"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,352 0,32 9.0625,0 C 9.0158769,383.83726 9,383.67259 9,383.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,384 32,352 0,352 z"
+       id="use13158"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,384 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,416 32,384 0,384 z"
+       id="use13160"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,416 0,32 9.0625,0 C 9.0158769,447.83726 9,447.67259 9,447.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,448 32,416 0,416 z"
+       id="use13162"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,448 0,32 9.6875,0 C 9.2558025,479.58427 9,479.05736 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,480 32,448 0,448 z"
+       id="use13164"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,480 0,32 9.6875,0 C 9.2558025,511.58427 9,511.05736 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,512 32,480 0,480 z"
+       id="use13166"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,512 0,32 32,0 0,-32 -32,0 z m 12.5,26 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use13168"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,544 0,32 12.5,0 c -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 l 19.5,0 0,-32 -32,0 z"
+       id="use13170"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,576 0,32 9.6875,0 C 9.2558025,607.58427 9,607.05736 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,608 32,576 0,576 z"
+       id="use13172"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="frame-0.5 and hand"
+     style="display:inline" />
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/car.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,4792 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="car.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="car.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title8457">car</title>
+  <defs
+     id="defs4">
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="11.291258"
+     inkscape:cy="969.51659"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>car</dc:title>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat car</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:date />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="frame"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#202020;fill-opacity:1;stroke:none"
+       id="rect20004"
+       width="32"
+       height="32"
+       x="-2.6098915e-15"
+       y="0"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:label="template"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="47.098183"
+       id="text4913"><tspan
+         sodipodi:role="line"
+         id="tspan4915"
+         x="-15"
+         y="47.098183"
+         style="font-size:8px;line-height:1.25">01-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="79.098183"
+       id="text4917"><tspan
+         sodipodi:role="line"
+         id="tspan4919"
+         x="-15"
+         y="79.098183"
+         style="font-size:8px;line-height:1.25">02-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="111.09818"
+       id="text4921"><tspan
+         sodipodi:role="line"
+         id="tspan4923"
+         x="-15"
+         y="111.09818"
+         style="font-size:8px;line-height:1.25">03v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="143.09818"
+       id="text4925"><tspan
+         sodipodi:role="line"
+         id="tspan4927"
+         x="-15"
+         y="143.09818"
+         style="font-size:8px;line-height:1.25">04-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="175.09818"
+       id="text4929"><tspan
+         sodipodi:role="line"
+         id="tspan4931"
+         x="-15"
+         y="175.09818"
+         style="font-size:8px;line-height:1.25">05-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="207.09818"
+       id="text4933"><tspan
+         sodipodi:role="line"
+         id="tspan4935"
+         x="-15"
+         y="207.09818"
+         style="font-size:8px;line-height:1.25">06-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="239.09818"
+       id="text4937"><tspan
+         sodipodi:role="line"
+         id="tspan4939"
+         x="-15"
+         y="239.09818"
+         style="font-size:8px;line-height:1.25">07-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="271.09821"
+       id="text4941"><tspan
+         sodipodi:role="line"
+         id="tspan4943"
+         x="-15"
+         y="271.09821"
+         style="font-size:8px;line-height:1.25">08v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="303.09821"
+       id="text4945"><tspan
+         sodipodi:role="line"
+         id="tspan4947"
+         x="-15"
+         y="303.09821"
+         style="font-size:8px;line-height:1.25">09-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="335.09821"
+       id="text4949"><tspan
+         sodipodi:role="line"
+         id="tspan4951"
+         x="-15"
+         y="335.09821"
+         style="font-size:8px;line-height:1.25">10-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="367.09821"
+       id="text4953"><tspan
+         sodipodi:role="line"
+         id="tspan4955"
+         x="-15"
+         y="367.09821"
+         style="font-size:8px;line-height:1.25">11-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="399.1622"
+       id="text4957"><tspan
+         sodipodi:role="line"
+         id="tspan4959"
+         x="-15"
+         y="399.1622"
+         style="font-size:8px;line-height:1.25">12-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="431.09821"
+       id="text4961"><tspan
+         sodipodi:role="line"
+         id="tspan4963"
+         x="-15"
+         y="431.09821"
+         style="font-size:8px;line-height:1.25">13v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="463.1022"
+       id="text4965"><tspan
+         sodipodi:role="line"
+         id="tspan4967"
+         x="-15"
+         y="463.1022"
+         style="font-size:8px;line-height:1.25">14-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="495.09821"
+       id="text4969"><tspan
+         sodipodi:role="line"
+         id="tspan4971"
+         x="-15"
+         y="495.09821"
+         style="font-size:8px;line-height:1.25">15-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="527.09821"
+       id="text4973"><tspan
+         sodipodi:role="line"
+         id="tspan4975"
+         x="-15"
+         y="527.09821"
+         style="font-size:8px;line-height:1.25">16-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="559.09821"
+       id="text4977"><tspan
+         sodipodi:role="line"
+         id="tspan4979"
+         x="-15"
+         y="559.09821"
+         style="font-size:8px;line-height:1.25">17^</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="591.09821"
+       id="text4981"><tspan
+         sodipodi:role="line"
+         id="tspan4983"
+         x="-15"
+         y="591.09821"
+         style="font-size:8px;line-height:1.25">18-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="623.09821"
+       id="text4985"><tspan
+         sodipodi:role="line"
+         id="tspan4987"
+         x="-15"
+         y="623.09821"
+         style="font-size:8px;line-height:1.25">19x</tspan></text>
+    <path
+       sodipodi:type="arc"
+       style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       id="path21641"
+       sodipodi:cx="-9.4834366"
+       sodipodi:cy="79.178726"
+       sodipodi:rx="9.4834366"
+       sodipodi:ry="9.4834366"
+       d="m 0,79.178726 a 9.4834366,9.4834366 0 1 1 -18.966873,0 9.4834366,9.4834366 0 1 1 18.966873,0 z"
+       transform="matrix(0.77053977,0,0,0.77053977,-0.83600996,47.351825)" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-61.777813"
+       y="111.09818"
+       id="text21643"><tspan
+         sodipodi:role="line"
+         id="tspan21645"
+         x="-61.777813"
+         y="111.09818"
+         style="font-size:10px;line-height:1.25">keyframe</tspan></text>
+    <path
+       transform="matrix(0.77053977,0,0,0.77053977,-0.83600996,207.35182)"
+       d="m 0,79.178726 a 9.4834366,9.4834366 0 1 1 -18.966873,0 9.4834366,9.4834366 0 1 1 18.966873,0 z"
+       sodipodi:ry="9.4834366"
+       sodipodi:rx="9.4834366"
+       sodipodi:cy="79.178726"
+       sodipodi:cx="-9.4834366"
+       id="path21647"
+       style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       sodipodi:type="arc" />
+    <text
+       id="text21649"
+       y="271.09818"
+       x="-61.777813"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       xml:space="preserve"><tspan
+         style="font-size:10px;line-height:1.25"
+         y="271.09818"
+         x="-61.777813"
+         id="tspan21651"
+         sodipodi:role="line">keyframe</tspan></text>
+    <path
+       sodipodi:type="arc"
+       style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       id="path21653"
+       sodipodi:cx="-9.4834366"
+       sodipodi:cy="79.178726"
+       sodipodi:rx="9.4834366"
+       sodipodi:ry="9.4834366"
+       d="m 0,79.178726 a 9.4834366,9.4834366 0 1 1 -18.966873,0 9.4834366,9.4834366 0 1 1 18.966873,0 z"
+       transform="matrix(0.77053977,0,0,0.77053977,-0.83600996,367.35182)" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-61.777813"
+       y="431.09818"
+       id="text21655"><tspan
+         sodipodi:role="line"
+         id="tspan21657"
+         x="-61.777813"
+         y="431.09818"
+         style="font-size:10px;line-height:1.25">keyframe</tspan></text>
+    <path
+       transform="matrix(0.77053977,0,0,0.77053977,-0.83600996,495.35182)"
+       d="m 0,79.178726 a 9.4834366,9.4834366 0 1 1 -18.966873,0 9.4834366,9.4834366 0 1 1 18.966873,0 z"
+       sodipodi:ry="9.4834366"
+       sodipodi:rx="9.4834366"
+       sodipodi:cy="79.178726"
+       sodipodi:cx="-9.4834366"
+       id="path21659"
+       style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       sodipodi:type="arc" />
+    <text
+       id="text21661"
+       y="559.09814"
+       x="-61.777813"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       xml:space="preserve"><tspan
+         style="font-size:10px;line-height:1.25"
+         y="559.09814"
+         x="-61.777813"
+         id="tspan21663"
+         sodipodi:role="line">keyframe</tspan></text>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <path
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       d="m 30.044341,22.596518 c 0,4.199402 -2.626213,-0.0042 -6.479805,2.416519 -3.556023,2.233759 -8.727579,1.782883 -8.727579,-2.416519 0,-4.199403 3.404289,-7.603692 7.603692,-7.603692 4.199403,0 7.603692,3.404289 7.603692,7.603692 z"
+       id="path3101"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="sssss" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer11"
+     inkscape:label="static-background"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <g
+       id="g22026"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="0"
+         x="-2.6098915e-15"
+         height="32"
+         width="32"
+         id="rect20004-9"
+         style="fill:#000000;fill-opacity:0.1254902;stroke:none;display:inline" />
+      <path
+         sodipodi:nodetypes="ccc"
+         inkscape:connector-curvature="0"
+         id="path21931"
+         d="M 11.411409,30.269548 C 16.697918,-18.160073 27.152287,10.142826 28.919324,22.453513 27.580836,16.456225 16.563548,19.796315 11.411409,30.269548 z"
+         style="fill:none;stroke:#ffff00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,32)"
+       id="use22032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,64)"
+       id="use22034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,96)"
+       id="use22036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,128)"
+       id="use22038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,160)"
+       id="use22040"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,192)"
+       id="use22042"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,224)"
+       id="use22044"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,256)"
+       id="use22046"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,288)"
+       id="use22048"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,320)"
+       id="use22050"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,352)"
+       id="use22052"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,384)"
+       id="use22054"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,416)"
+       id="use22056"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,448)"
+       id="use22058"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,480)"
+       id="use22060"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,512)"
+       id="use22062"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,544)"
+       id="use22064"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,576)"
+       id="use22066"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="static-hat"
+     style="display:inline">
+    <g
+       id="g5869"
+       inkscape:tile-cx="20.868811"
+       inkscape:tile-cy="20.343065"
+       inkscape:tile-w="9.5355623"
+       inkscape:tile-h="10.786127"
+       inkscape:tile-x0="16.101029"
+       inkscape:tile-y0="14.950002"
+       transform="translate(11.507295,-2.9991281)">
+      <path
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m -3.9916667,21.085961 -6.1198683,2.039956 1.1810269,6.871432 4.0799125,-0.644196 z"
+         id="path5720"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-opacity:1"
+         id="path5703"
+         sodipodi:cx="9.1704655"
+         sodipodi:cy="15.358303"
+         sodipodi:rx="3.601357"
+         sodipodi:ry="5.8271179"
+         d="m 12.771822,15.358303 a 3.601357,5.8271179 0 1 1 -7.2027135,0 3.601357,5.8271179 0 1 1 7.2027135,0 z"
+         transform="matrix(0.9861843,0.16565183,-0.16565183,0.9861843,-10.602518,1.1232504)" />
+      <path
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z"
+         sodipodi:ry="4.0643377"
+         sodipodi:rx="4.0643377"
+         sodipodi:cy="19.014339"
+         sodipodi:cx="20.165367"
+         id="path5865"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.48031211;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.48031203, 2.48031203;stroke-dashoffset:0"
+         sodipodi:type="arc"
+         transform="matrix(0.71864711,0,0,0.71864711,-91.110896,12.224326)" />
+      <path
+         style="fill:#383838;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m -4.7866613,29.281441 3.4403798,-1.464083 c 0,0 -1.9328825,-5.458623 2.6817356,-7.049613 4.6146182,-1.59099 6.6776356,3.542297 6.6776356,3.542297 l 1.2024554,-0.595397 c 0,0 -2.0445905,-4.261065 1.9279879,-5.675279 3.972579,-1.414214 5.268319,2.493298 5.268319,2.493298 l 2.844985,-0.895544 -1.297716,-5.180876 -2.512974,0.707107 c 0,0 -3.685506,-8.8088251 -13.4291028,-5.7230625 -9.743597,3.0857625 -5.2389584,11.9043195 -5.2389584,11.9043195 l -3.8950155,1.675315 z"
+         id="path5696"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cczcczcccczccc" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path5865"
+         id="use5699"
+         transform="matrix(0.82774959,0,0,0.82774959,-3.4431972,1.1775797)"
+         width="32"
+         height="1024" />
+      <path
+         style="fill:#5353ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 4.3663433,15.086123 c 1.1810273,2.574031 -0.5137802,2.695113 -2.5198969,3.452067 -2.00611673,0.756955 -3.3918236,1.284882 -3.3918236,-1.933345 0,-3.218227 1.50501636,-4.323992 3.2792586,-5.075555 1.7742423,-0.751563 1.4514346,0.982801 2.6324619,3.556833 z"
+         id="use5707"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="zzzzz" />
+      <path
+         sodipodi:nodetypes="zzzzz"
+         inkscape:connector-curvature="0"
+         id="path5712"
+         d="m 10.818313,12.763455 c 0.923803,1.134561 2.65482,2.312832 0.648703,3.069787 -2.0061169,0.756954 -4.8373673,1.76933 -5.481564,-1.341531 -0.6441967,-3.110861 -1.9659748,-3.432964 0.2993966,-3.719182 2.2653715,-0.286217 3.6096611,0.856365 4.5334644,1.990926 z"
+         style="fill:#8585ff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path5714"
+         sodipodi:cx="6.4095478"
+         sodipodi:cy="23.469568"
+         sodipodi:rx="1.602387"
+         sodipodi:ry="1.602387"
+         d="m 8.0119348,23.469568 a 1.602387,1.602387 0 1 1 -3.2047739,0 1.602387,1.602387 0 1 1 3.2047739,0 z"
+         transform="translate(-11.614121,2.5718249)" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path5714"
+         id="use5716"
+         transform="matrix(0.75921453,0,0,0.75921453,-5.3244086,6.8995316)"
+         width="32"
+         height="1024" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path5714"
+         id="use5718"
+         transform="matrix(0.83145017,0,0,0.83145017,22.870411,-4.5234307)"
+         width="32"
+         height="1024" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,32.000002)"
+       id="use5951"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,64.999999)"
+       id="use5953"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,96.000007)"
+       id="use5955"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,128.00001)"
+       id="use5957"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,160.00001)"
+       id="use5959"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,192.00001)"
+       id="use5961"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,225)"
+       id="use5963"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,256.00002)"
+       id="use5965"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,288.00002)"
+       id="use5967"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,320.00002)"
+       id="use5969"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,352.00002)"
+       id="use5971"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,385)"
+       id="use5973"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,416.00003)"
+       id="use5975"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,448.00003)"
+       id="use5977"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,480.00003)"
+       id="use5979"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,511)"
+       id="use5981"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,544.00004)"
+       id="use5983"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,576.00004)"
+       id="use5985"
+       width="32"
+       height="1024" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       id="path5714-3"
+       sodipodi:cx="6.4095478"
+       sodipodi:cy="23.469568"
+       sodipodi:rx="1.602387"
+       sodipodi:ry="1.602387"
+       d="m 8.0119348,23.469568 a 1.602387,1.602387 0 1 1 -3.2047739,0 1.602387,1.602387 0 1 1 3.2047739,0 z"
+       transform="translate(-0.10751527,575.5761)" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       xlink:href="#path5714-3"
+       id="use5716-6"
+       transform="matrix(0.75921453,0,0,0.75921453,-2.5422815,144.86552)"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       xlink:href="#path5714-3"
+       id="use5718-5"
+       transform="matrix(0.83145017,0,0,0.83145017,24.79165,92.061149)"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer9"
+     inkscape:label="dynamic-hat"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <g
+       id="g20122"
+       inkscape:tile-cx="57.672323"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="35.344645"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="-8.9284049e-17">
+      <rect
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline"
+         id="rect20004-5"
+         width="32"
+         height="32"
+         x="0"
+         y="1.4033219e-13"
+         inkscape:tile-cx="16"
+         inkscape:tile-cy="16"
+         inkscape:tile-w="32"
+         inkscape:tile-h="32"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-y0="0" />
+      <text
+         inkscape:tile-y0="-1.1920929e-08"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-h="31.774135"
+         inkscape:tile-w="1.4563302"
+         inkscape:tile-cy="15.887067"
+         inkscape:tile-cx="34.728163"
+         id="text18980"
+         y="0.93804467"
+         x="33.950874"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           id="tspan19018"
+           y="0.93804467"
+           x="33.950874"
+           sodipodi:role="line"
+           style="font-size:1.34006405px;line-height:1.25">01</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,9.2252347)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:0;display:inline"
+         id="path5865-2"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.318971,0.66098493)"
+         id="use5699-9"
+         xlink:href="#path5865-2"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20129"
+       inkscape:tile-cx="57.696444"
+       inkscape:tile-cy="48"
+       inkscape:tile-w="35.392888"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="32">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="32"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6816"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="32.938046"
+         id="use19022"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19742"
+           x="33.950874"
+           y="32.938046"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="36.568489"
+           id="tspan19778"
+           style="font-size:1.34006405px;line-height:1.25">02</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,41.225234)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:0.27276251;display:inline"
+         id="path5865-2-0"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.31897,6.1729986)"
+         id="use5699-9-5"
+         xlink:href="#path5865-2-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20137"
+       inkscape:tile-cx="57.699124"
+       inkscape:tile-cy="80"
+       inkscape:tile-w="35.398248"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="64">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="64"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6808"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="64.938042"
+         id="use19024"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19702"
+           x="33.950874"
+           y="64.938042"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="68.568481"
+           id="tspan19704"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="72.198929"
+           id="tspan19738"
+           style="font-size:1.34006405px;line-height:1.25">03</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,74.225234)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:0.52072844;display:inline"
+         id="path5865-2-09"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path5865-2-09"
+         id="use5404"
+         transform="matrix(0.82774959,0,0,0.82774959,12.318971,11.857262)"
+         width="32"
+         height="1024"
+         style="display:inline" />
+    </g>
+    <g
+       id="g20146"
+       inkscape:tile-cx="57.716545"
+       inkscape:tile-cy="112"
+       inkscape:tile-w="35.43309"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="96">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="96"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6800"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="96.938042"
+         id="use19026"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19662"
+           x="33.950874"
+           y="96.938042"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="100.56848"
+           id="tspan19664"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="104.19893"
+           id="tspan19666"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="107.82937"
+           id="tspan19698"
+           style="font-size:1.34006405px;line-height:1.25">04</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,105.22525)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:0.79349095;display:inline"
+         id="path5865-2-4"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.31897,17.197023)"
+         id="use5699-9-0"
+         xlink:href="#path5865-2-4"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20156"
+       inkscape:tile-cx="57.708504"
+       inkscape:tile-cy="144"
+       inkscape:tile-w="35.417009"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="128">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="128"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6792"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="128.93805"
+         id="use19028"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19622"
+           x="33.950874"
+           y="128.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="132.5685"
+           id="tspan19624"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="136.19893"
+           id="tspan19626"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="139.82938"
+           id="tspan19628"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="143.45982"
+           id="tspan19658"
+           style="font-size:1.34006405px;line-height:1.25">05</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,137.22525)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:1.04145688;display:inline"
+         id="path5865-2-02"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.318971,22.709035)"
+         id="use5699-9-57"
+         xlink:href="#path5865-2-02"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20167"
+       inkscape:tile-cx="57.700464"
+       inkscape:tile-cy="176"
+       inkscape:tile-w="35.400928"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="160">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="160"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6784"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="160.93805"
+         id="use19030"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19582"
+           x="33.950874"
+           y="160.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="164.5685"
+           id="tspan19584"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="168.19893"
+           id="tspan19586"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="171.82938"
+           id="tspan19588"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="175.45982"
+           id="tspan19590"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="179.09027"
+           id="tspan19618"
+           style="font-size:1.34006405px;line-height:1.25">06</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,169.22525)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:1.31421939;display:inline"
+         id="path5865-2-1"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.318971,28.221048)"
+         id="use5699-9-03"
+         xlink:href="#path5865-2-1"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20179"
+       inkscape:tile-cx="57.691084"
+       inkscape:tile-cy="208"
+       inkscape:tile-w="35.382167"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="192">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="192"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6776"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="192.93805"
+         id="use19032"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19542"
+           x="33.950874"
+           y="192.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="196.5685"
+           id="tspan19544"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="200.19893"
+           id="tspan19546"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="203.82938"
+           id="tspan19548"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="207.45982"
+           id="tspan19550"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="211.09027"
+           id="tspan19552"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="214.7207"
+           id="tspan19578"
+           style="font-size:1.34006405px;line-height:1.25">07</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,201.22525)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:1.56218533;display:inline"
+         id="path5865-2-6"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.318971,33.733062)"
+         id="use5699-9-08"
+         xlink:href="#path5865-2-6"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20192"
+       inkscape:tile-cx="57.716545"
+       inkscape:tile-cy="240"
+       inkscape:tile-w="35.43309"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="224">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="224"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6768"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="224.93805"
+         id="use19034"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19502"
+           x="33.950874"
+           y="224.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="228.5685"
+           id="tspan19504"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="232.19893"
+           id="tspan19506"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="235.82938"
+           id="tspan19508"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="239.45982"
+           id="tspan19510"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="243.09027"
+           id="tspan19512"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="246.7207"
+           id="tspan19514"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="250.35115"
+           id="tspan19538"
+           style="font-size:1.34006405px;line-height:1.25">08</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,234.22524)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:1.83494784;display:inline"
+         id="path5865-2-9"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.31897,39.417323)"
+         id="use5699-9-6"
+         xlink:href="#path5865-2-9"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20206"
+       inkscape:tile-cx="57.699124"
+       inkscape:tile-cy="272"
+       inkscape:tile-w="35.398248"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="256">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="256"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6760"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="256.93805"
+         id="use19036"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19462"
+           x="33.950874"
+           y="256.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="260.56848"
+           id="tspan19464"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="264.19894"
+           id="tspan19466"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="267.82938"
+           id="tspan19468"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="271.45981"
+           id="tspan19470"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="275.09027"
+           id="tspan19472"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="278.7207"
+           id="tspan19474"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="282.35117"
+           id="tspan19476"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="285.9816"
+           id="tspan19498"
+           style="font-size:1.34006405px;line-height:1.25">09</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,265.22526)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:2.08291375;display:inline"
+         id="path5865-2-8"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.318971,44.75709)"
+         id="use5699-9-9"
+         xlink:href="#path5865-2-8"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20221"
+       inkscape:tile-cx="57.720565"
+       inkscape:tile-cy="304"
+       inkscape:tile-w="35.44113"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="288">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="288"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6752"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="288.93805"
+         id="use19038"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19422"
+           x="33.950874"
+           y="288.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="292.56848"
+           id="tspan19424"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="296.19894"
+           id="tspan19426"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="299.82938"
+           id="tspan19428"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="303.45981"
+           id="tspan19430"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="307.09027"
+           id="tspan19432"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="310.7207"
+           id="tspan19434"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="314.35117"
+           id="tspan19436"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="317.9816"
+           id="tspan19438"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="321.61203"
+           id="tspan19458"
+           style="font-size:1.34006405px;line-height:1.25">10</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,297.22526)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:2.35567628;display:inline"
+         id="path5865-2-3"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.318971,50.269103)"
+         id="use5699-9-1"
+         xlink:href="#path5865-2-3"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20237"
+       inkscape:tile-cx="57.672323"
+       inkscape:tile-cy="336"
+       inkscape:tile-w="35.344645"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="320">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="320"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6744"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="320.93805"
+         id="use19040"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19382"
+           x="33.950874"
+           y="320.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="324.56848"
+           id="tspan19384"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="328.19894"
+           id="tspan19386"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="331.82938"
+           id="tspan19388"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="335.45981"
+           id="tspan19390"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="339.09027"
+           id="tspan19392"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="342.7207"
+           id="tspan19394"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="346.35117"
+           id="tspan19396"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="349.9816"
+           id="tspan19398"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="353.61203"
+           id="tspan19400"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="357.24249"
+           id="tspan19418"
+           style="font-size:1.34006405px;line-height:1.25">11</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,329.22526)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:2.62843879;display:inline"
+         id="path5865-2-97"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.318971,55.781116)"
+         id="use5699-9-14"
+         xlink:href="#path5865-2-97"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20254"
+       inkscape:tile-cx="57.696444"
+       inkscape:tile-cy="368"
+       inkscape:tile-w="35.392888"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="352">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="352"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6736"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="352.93805"
+         id="use19042"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19342"
+           x="33.950874"
+           y="352.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="356.56848"
+           id="tspan19344"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="360.19894"
+           id="tspan19346"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="363.82938"
+           id="tspan19348"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="367.45981"
+           id="tspan19350"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="371.09027"
+           id="tspan19352"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="374.7207"
+           id="tspan19354"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="378.35117"
+           id="tspan19356"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="381.9816"
+           id="tspan19358"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="385.61203"
+           id="tspan19360"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="389.24249"
+           id="tspan19362"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="392.87292"
+           id="tspan19378"
+           style="font-size:1.34006405px;line-height:1.25">12</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,361.22526)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:2.87640472;display:inline"
+         id="path5865-2-66"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.31897,61.29313)"
+         id="use5699-9-8"
+         xlink:href="#path5865-2-66"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20272"
+       inkscape:tile-cx="57.699124"
+       inkscape:tile-cy="400"
+       inkscape:tile-w="35.398248"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="384">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="384"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6728"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="384.93805"
+         id="use19044"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19302"
+           x="33.950874"
+           y="384.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="388.56848"
+           id="tspan19304"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="392.19894"
+           id="tspan19306"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="395.82938"
+           id="tspan19308"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="399.45981"
+           id="tspan19310"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="403.09027"
+           id="tspan19312"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="406.7207"
+           id="tspan19314"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="410.35117"
+           id="tspan19316"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="413.9816"
+           id="tspan19318"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="417.61203"
+           id="tspan19320"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="421.24249"
+           id="tspan19322"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="424.87292"
+           id="tspan19324"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="428.50336"
+           id="tspan19338"
+           style="font-size:1.34006405px;line-height:1.25">13</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,394.22524)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:3.12437064;display:inline"
+         id="path5865-2-16"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.31897,66.97739)"
+         id="use5699-9-61"
+         xlink:href="#path5865-2-16"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20291"
+       inkscape:tile-cx="57.716545"
+       inkscape:tile-cy="432"
+       inkscape:tile-w="35.43309"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="416">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="416"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6720"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="416.93805"
+         id="use19046"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19262"
+           x="33.950874"
+           y="416.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="420.56848"
+           id="tspan19264"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="424.19894"
+           id="tspan19266"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="427.82938"
+           id="tspan19268"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="431.45981"
+           id="tspan19270"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="435.09027"
+           id="tspan19272"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="438.7207"
+           id="tspan19274"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="442.35117"
+           id="tspan19276"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="445.9816"
+           id="tspan19278"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="449.61203"
+           id="tspan19280"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="453.24249"
+           id="tspan19282"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="456.87292"
+           id="tspan19284"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="460.50336"
+           id="tspan19286"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="464.13382"
+           id="tspan19298"
+           style="font-size:1.34006405px;line-height:1.25">14</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,425.22527)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:3.39713316;display:inline"
+         id="path5865-2-82"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.31897,72.317157)"
+         id="use5699-9-7"
+         xlink:href="#path5865-2-82"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20311"
+       inkscape:tile-cx="57.708504"
+       inkscape:tile-cy="464"
+       inkscape:tile-w="35.417009"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="448">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="448"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6712"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="448.93805"
+         id="use19048"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19222"
+           x="33.950874"
+           y="448.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="452.56848"
+           id="tspan19224"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="456.19894"
+           id="tspan19226"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="459.82938"
+           id="tspan19228"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="463.45981"
+           id="tspan19230"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="467.09027"
+           id="tspan19232"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="470.7207"
+           id="tspan19234"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="474.35117"
+           id="tspan19236"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="477.9816"
+           id="tspan19238"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="481.61203"
+           id="tspan19240"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="485.24249"
+           id="tspan19242"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="488.87292"
+           id="tspan19244"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="492.50336"
+           id="tspan19246"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="496.13382"
+           id="tspan19248"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="499.76425"
+           id="tspan19258"
+           style="font-size:1.34006405px;line-height:1.25">15</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,457.22527)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:3.64509908;display:inline"
+         id="path5865-2-83"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.318971,77.82917)"
+         id="use5699-9-2"
+         xlink:href="#path5865-2-83"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20332"
+       inkscape:tile-cx="57.700464"
+       inkscape:tile-cy="496"
+       inkscape:tile-w="35.400928"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="480">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="480"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6704"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="480.93805"
+         id="use19050"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19182"
+           x="33.950874"
+           y="480.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="484.56848"
+           id="tspan19184"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="488.19894"
+           id="tspan19186"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="491.82938"
+           id="tspan19188"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="495.45981"
+           id="tspan19190"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="499.09027"
+           id="tspan19192"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="502.7207"
+           id="tspan19194"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="506.35117"
+           id="tspan19196"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="509.9816"
+           id="tspan19198"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="513.61206"
+           id="tspan19200"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="517.24249"
+           id="tspan19202"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="520.87292"
+           id="tspan19204"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="524.50336"
+           id="tspan19206"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="528.13379"
+           id="tspan19208"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="531.76428"
+           id="tspan19210"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="535.39471"
+           id="tspan19218"
+           style="font-size:1.34006405px;line-height:1.25">16</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,489.22527)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:3.91786159;display:inline"
+         id="path5865-2-5"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.318971,83.341184)"
+         id="use5699-9-23"
+         xlink:href="#path5865-2-5"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20354"
+       inkscape:tile-cx="57.691084"
+       inkscape:tile-cy="528"
+       inkscape:tile-w="35.382167"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="512">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="512"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6696"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="512.93805"
+         id="use19052"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19142"
+           x="33.950874"
+           y="512.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="516.56848"
+           id="tspan19144"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="520.19891"
+           id="tspan19146"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="523.82941"
+           id="tspan19148"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="527.45984"
+           id="tspan19150"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="531.09027"
+           id="tspan19152"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="534.7207"
+           id="tspan19154"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="538.35114"
+           id="tspan19156"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="541.98157"
+           id="tspan19158"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="545.61206"
+           id="tspan19160"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="549.24249"
+           id="tspan19162"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="552.87292"
+           id="tspan19164"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="556.50336"
+           id="tspan19166"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="560.13379"
+           id="tspan19168"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="563.76428"
+           id="tspan19170"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="567.39471"
+           id="tspan19172"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="571.02515"
+           id="tspan19178"
+           style="font-size:1.34006405px;line-height:1.25">17</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,520.22524)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:4.16582752;display:inline"
+         id="path5865-2-55"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.31897,88.680941)"
+         id="use5699-9-16"
+         xlink:href="#path5865-2-55"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20377"
+       inkscape:tile-cx="57.716545"
+       inkscape:tile-cy="560"
+       inkscape:tile-w="35.43309"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="544">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="544"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6688"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="544.93805"
+         id="use19054"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19102"
+           x="33.950874"
+           y="544.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="548.56848"
+           id="tspan19104"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="552.19891"
+           id="tspan19106"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="555.82941"
+           id="tspan19108"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="559.45984"
+           id="tspan19110"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="563.09027"
+           id="tspan19112"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="566.7207"
+           id="tspan19114"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="570.35114"
+           id="tspan19116"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="573.98157"
+           id="tspan19118"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="577.61206"
+           id="tspan19120"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="581.24249"
+           id="tspan19122"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="584.87292"
+           id="tspan19124"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="588.50336"
+           id="tspan19126"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="592.13379"
+           id="tspan19128"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="595.76428"
+           id="tspan19130"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="599.39471"
+           id="tspan19132"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="603.02515"
+           id="tspan19134"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="606.65558"
+           id="tspan19138"
+           style="font-size:1.34006405px;line-height:1.25">18</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,553.22528)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:4.43859003;display:inline"
+         id="path5865-2-30"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.31897,94.365209)"
+         id="use5699-9-43"
+         xlink:href="#path5865-2-30"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g20401"
+       inkscape:tile-cx="57.699124"
+       inkscape:tile-cy="592"
+       inkscape:tile-w="35.398248"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="576">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="576"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6680"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="576.93805"
+         id="use19056"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19062"
+           x="33.950874"
+           y="576.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="580.56848"
+           id="tspan19064"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="584.19891"
+           id="tspan19066"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="587.82941"
+           id="tspan19068"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="591.45984"
+           id="tspan19070"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="595.09027"
+           id="tspan19072"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="598.7207"
+           id="tspan19074"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="602.35114"
+           id="tspan19076"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="605.98157"
+           id="tspan19078"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="609.61206"
+           id="tspan19080"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="613.24249"
+           id="tspan19082"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="616.87292"
+           id="tspan19084"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="620.50336"
+           id="tspan19086"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="624.13379"
+           id="tspan19088"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="627.76428"
+           id="tspan19090"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="631.39471"
+           id="tspan19092"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="635.02515"
+           id="tspan19094"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="638.65558"
+           id="tspan19096"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="642.28601"
+           id="tspan19098"
+           style="font-size:1.34006405px;line-height:1.25">19</tspan></text>
+      <path
+         transform="matrix(0.71864711,0,0,0.71864711,0.396399,585.22528)"
+         sodipodi:type="arc"
+         style="fill:#52464d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.47965932;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.47965924, 2.47965924;stroke-dashoffset:4.71135256;display:inline"
+         id="path5865-2-2"
+         sodipodi:cx="20.165367"
+         sodipodi:cy="19.014339"
+         sodipodi:rx="4.0643377"
+         sodipodi:ry="4.0643377"
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z" />
+      <use
+         style="display:inline"
+         height="1024"
+         width="32"
+         transform="matrix(0.82774959,0,0,0.82774959,12.318971,99.877229)"
+         id="use5699-9-74"
+         xlink:href="#path5865-2-2"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g21863"
+       sodipodi:insensitive="true">
+      <g
+         id="g21840">
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20129"
+           xlink:href="#g20129"
+           transform="translate(40,0)"
+           id="use20526"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20137"
+           xlink:href="#g20137"
+           transform="translate(40,0)"
+           id="use20532"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20146"
+           xlink:href="#g20146"
+           transform="translate(40,0)"
+           id="use20538"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20156"
+           xlink:href="#g20156"
+           transform="translate(40,0)"
+           id="use20544"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20167"
+           xlink:href="#g20167"
+           transform="translate(40,0)"
+           id="use20550"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20179"
+           xlink:href="#g20179"
+           transform="translate(40,0)"
+           id="use20556"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20192"
+           xlink:href="#g20192"
+           transform="translate(40,0)"
+           id="use20562"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20206"
+           xlink:href="#g20206"
+           transform="translate(40,0)"
+           id="use20568"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20221"
+           xlink:href="#g20221"
+           transform="translate(40,0)"
+           id="use20574"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20237"
+           xlink:href="#g20237"
+           transform="translate(40,0)"
+           id="use20580"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20254"
+           xlink:href="#g20254"
+           transform="translate(40,0)"
+           id="use20586"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20272"
+           xlink:href="#g20272"
+           transform="translate(40,0)"
+           id="use20592"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20291"
+           xlink:href="#g20291"
+           transform="translate(40,0)"
+           id="use20598"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20311"
+           xlink:href="#g20311"
+           transform="translate(40,0)"
+           id="use20604"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20332"
+           xlink:href="#g20332"
+           transform="translate(40,0)"
+           id="use20610"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20354"
+           xlink:href="#g20354"
+           transform="translate(40,0)"
+           id="use20616"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20377"
+           xlink:href="#g20377"
+           transform="translate(40,0)"
+           id="use20622"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20122"
+           xlink:href="#g20122"
+           transform="translate(40,0)"
+           id="use20520"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20401"
+           xlink:href="#g20401"
+           transform="translate(40,0)"
+           id="use20628"
+           width="32"
+           height="1024" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+           x="51.39032"
+           y="-14.899812"
+           id="text21782"><tspan
+             sodipodi:role="line"
+             id="tspan21784"
+             x="51.39032"
+             y="-14.899812"
+             style="font-size:4px;line-height:1.25">current</tspan></text>
+      </g>
+      <g
+         transform="translate(-40,0)"
+         id="g21817">
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20377"
+           xlink:href="#g20377"
+           transform="translate(80,32)"
+           id="use20624"
+           width="32"
+           height="1024"
+           style="opacity:0.3" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20122"
+           xlink:href="#g20122"
+           transform="translate(80,32)"
+           id="use20522"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20129"
+           xlink:href="#g20129"
+           transform="translate(80,32)"
+           id="use20528"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20137"
+           xlink:href="#g20137"
+           transform="translate(80,32)"
+           id="use20534"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20146"
+           xlink:href="#g20146"
+           transform="translate(80,32)"
+           id="use20540"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20156"
+           xlink:href="#g20156"
+           transform="translate(80,32)"
+           id="use20546"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20167"
+           xlink:href="#g20167"
+           transform="translate(80,32)"
+           id="use20552"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20179"
+           xlink:href="#g20179"
+           transform="translate(80,32)"
+           id="use20558"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20192"
+           xlink:href="#g20192"
+           transform="translate(80,32)"
+           id="use20564"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20206"
+           xlink:href="#g20206"
+           transform="translate(80,32)"
+           id="use20570"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20221"
+           xlink:href="#g20221"
+           transform="translate(80,32)"
+           id="use20576"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20237"
+           xlink:href="#g20237"
+           transform="translate(80,32)"
+           id="use20582"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20254"
+           xlink:href="#g20254"
+           transform="translate(80,32)"
+           id="use20588"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20272"
+           xlink:href="#g20272"
+           transform="translate(80,32)"
+           id="use20594"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20291"
+           xlink:href="#g20291"
+           transform="translate(80,32)"
+           id="use20600"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20311"
+           xlink:href="#g20311"
+           transform="translate(80,32)"
+           id="use20606"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20332"
+           xlink:href="#g20332"
+           transform="translate(80,32)"
+           id="use20612"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20354"
+           xlink:href="#g20354"
+           transform="translate(80,32)"
+           id="use20618"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20401"
+           xlink:href="#g20401"
+           transform="translate(80,-576)"
+           id="use20630"
+           width="32"
+           height="1024" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+           x="90.398727"
+           y="-14.899812"
+           id="text21786"><tspan
+             sodipodi:role="line"
+             id="tspan21788"
+             x="90.398727"
+             y="-14.899812"
+             style="font-size:4px;line-height:1.25">previous</tspan></text>
+      </g>
+      <g
+         transform="translate(-80,0)"
+         id="g21794">
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20129"
+           xlink:href="#g20129"
+           id="use20524"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024"
+           style="opacity:0.3" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20122"
+           xlink:href="#g20122"
+           id="use20518"
+           transform="translate(120,576)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20137"
+           xlink:href="#g20137"
+           id="use20530"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20146"
+           xlink:href="#g20146"
+           id="use20536"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20156"
+           xlink:href="#g20156"
+           id="use20542"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20167"
+           xlink:href="#g20167"
+           id="use20548"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20179"
+           xlink:href="#g20179"
+           id="use20554"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20192"
+           xlink:href="#g20192"
+           id="use20560"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20206"
+           xlink:href="#g20206"
+           id="use20566"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20221"
+           xlink:href="#g20221"
+           id="use20572"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20237"
+           xlink:href="#g20237"
+           id="use20578"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20254"
+           xlink:href="#g20254"
+           id="use20584"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20272"
+           xlink:href="#g20272"
+           id="use20590"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20291"
+           xlink:href="#g20291"
+           id="use20596"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20311"
+           xlink:href="#g20311"
+           id="use20602"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20332"
+           xlink:href="#g20332"
+           id="use20608"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20354"
+           xlink:href="#g20354"
+           id="use20614"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20377"
+           xlink:href="#g20377"
+           id="use20620"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20401"
+           xlink:href="#g20401"
+           id="use20626"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+           x="133.95206"
+           y="-14.899812"
+           id="text21790"><tspan
+             sodipodi:role="line"
+             id="tspan21792"
+             x="133.95206"
+             y="-14.899812"
+             style="font-size:4px;line-height:1.25">next</tspan></text>
+      </g>
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer10"
+     inkscape:label="eye"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <g
+       id="g6458">
+      <g
+         inkscape:tile-y0="15"
+         inkscape:tile-x0="16"
+         inkscape:tile-h="8.0000005"
+         inkscape:tile-w="9.9999997"
+         inkscape:tile-cy="19"
+         inkscape:tile-cx="21"
+         id="g4669"
+         style="display:inline">
+        <use
+           x="0"
+           y="0"
+           xlink:href="#path3893"
+           id="use4663"
+           transform="matrix(0.85714284,0,0,0.85714284,6.2857143,1.2857142)"
+           width="32"
+           height="1024" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path3893"
+           sodipodi:cx="20.285126"
+           sodipodi:cy="19.643196"
+           sodipodi:rx="2.8726213"
+           sodipodi:ry="2.8726213"
+           d="m 23.157747,19.643196 c 0,1.586505 -1.286116,2.872621 -2.872621,2.872621 -1.586505,0 -2.872622,-1.286116 -2.872622,-2.872621 0,-1.586505 1.286117,-2.872621 2.872622,-2.872621 1.586505,0 2.872621,1.286116 2.872621,2.872621 z"
+           transform="matrix(1.2183994,0,0,1.2183994,-5.2153846,-4.4332579)" />
+        <path
+           transform="matrix(0.52217116,0,0,0.52217116,9.9076924,9.2428895)"
+           d="m 23.157747,19.643196 c 0,1.586505 -1.286116,2.872621 -2.872621,2.872621 -1.586505,0 -2.872622,-1.286116 -2.872622,-2.872621 0,-1.586505 1.286117,-2.872621 2.872622,-2.872621 1.586505,0 2.872621,1.286116 2.872621,2.872621 z"
+           sodipodi:ry="2.8726213"
+           sodipodi:rx="2.8726213"
+           sodipodi:cy="19.643196"
+           sodipodi:cx="20.285126"
+           id="path4665"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           sodipodi:type="arc" />
+        <use
+           x="0"
+           y="0"
+           xlink:href="#path4665"
+           id="use4667"
+           transform="matrix(0.83333334,0,0,0.83333334,6.9166665,1.7499999)"
+           width="32"
+           height="1024" />
+      </g>
+    </g>
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,32.000002)"
+       id="use6422" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,64.999999)"
+       id="use6424"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,96.000007)"
+       id="use6426" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,128.00001)"
+       id="use6428" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,160.00001)"
+       id="use6430" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,192.00001)"
+       id="use6432" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,225)"
+       id="use6434"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,256.00002)"
+       id="use6436" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,288.00002)"
+       id="use6438" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,320.00002)"
+       id="use6440" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,352.00002)"
+       id="use6442" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,385)"
+       id="use6444"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,416.00003)"
+       id="use6446" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,448.00003)"
+       id="use6448" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,480.00003)"
+       id="use6450" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,511)"
+       id="use6452"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,544.00004)"
+       id="use6454" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,576.00004)"
+       id="use6456" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="frame-0.5"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       id="rect20004-7"
+       width="31"
+       height="31"
+       x="0.5"
+       y="0.5"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,32)"
+       id="use20175-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,64)"
+       id="use20177-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,96)"
+       id="use20179-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,128)"
+       id="use20181-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,160)"
+       id="use20183-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,192)"
+       id="use20185-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,224)"
+       id="use20187-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,256)"
+       id="use20189-6"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,288)"
+       id="use20191-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,320)"
+       id="use20193-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,352)"
+       id="use20195-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,384)"
+       id="use20197-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,416)"
+       id="use20199-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,448)"
+       id="use20201-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,480)"
+       id="use20203-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,512)"
+       id="use20205-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,544)"
+       id="use20207-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,576)"
+       id="use20209-7"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1"
+       id="path3296"
+       sodipodi:cx="13.082203"
+       sodipodi:cy="31.332769"
+       sodipodi:rx="3.5490334"
+       sodipodi:ry="2.8754942"
+       d="m 16.631236,31.332769 a 3.5490334,2.8754942 0 1 1 -7.0980665,0 3.5490334,2.8754942 0 1 1 7.0980665,0 z"
+       transform="matrix(0.98618401,0,0,0.86941576,-0.40145933,3.2587965)"
+       inkscape:tile-cx="12.253232"
+       inkscape:tile-cy="30.529706"
+       inkscape:tile-w="8.5487669"
+       inkscape:tile-h="7.0462566"
+       inkscape:tile-x0="7.9788488"
+       inkscape:tile-y0="27.006578" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       id="use3526"
+       transform="translate(0,33)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,66)"
+       id="use3528"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,97)"
+       id="use3530"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,128)"
+       id="use3532"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,160)"
+       id="use3534"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,193)"
+       id="use3536"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,226)"
+       id="use3538"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,257)"
+       id="use3540"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,288)"
+       id="use3542"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,320)"
+       id="use3544"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,353)"
+       id="use3546"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,386)"
+       id="use3548"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,417)"
+       id="use3550"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,448)"
+       id="use3552"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,480)"
+       id="use3554"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,510)"
+       id="use3556"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,543)"
+       id="use3558"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,576)"
+       id="use3560"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="frame and hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,0 0,32 9.6875,0 C 9.2558025,31.584271 9,31.057361 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.557361 -0.255803,1.084271 -0.6875,1.5 L 32,32 32,0 0,0 z"
+       id="rect13136"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,32 0,32 9.0625,0 C 9.0158769,63.837256 9,63.672589 9,63.5 9,62.119288 10.567003,61 12.5,61 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.172589 -0.01588,0.337256 -0.0625,0.5 L 32,64 32,32 0,32 z"
+       id="use13138"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,64 0,32 10.0625,0 c 0.326362,-1.139208 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.860792 3.4375,2 L 32,96 32,64 0,64 z"
+       id="use13140"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,96 0,32 9.0625,0 C 9.0158769,127.83726 9,127.67259 9,127.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,128 32,96 0,96 z"
+       id="use13142"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,128 0,32 9.6875,0 C 9.2558025,159.58427 9,159.05736 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,160 32,128 0,128 z"
+       id="use13144"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,160 0,32 9.6875,0 C 9.2558025,191.58427 9,191.05736 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,192 32,160 0,160 z"
+       id="use13146"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,192 0,32 9.0625,0 C 9.0158769,223.83726 9,223.67259 9,223.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,224 32,192 0,192 z"
+       id="use13148"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,224 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,256 32,224 0,224 z"
+       id="use13150"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,256 0,32 9.0625,0 C 9.0158769,287.83726 9,287.67259 9,287.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,288 32,256 0,256 z"
+       id="use13152"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,288 0,32 9.6875,0 C 9.2558025,319.58427 9,319.05736 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,320 32,288 0,288 z"
+       id="use13154"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,320 0,32 9.6875,0 C 9.2558025,351.58427 9,351.05736 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,352 32,320 0,320 z"
+       id="use13156"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,352 0,32 9.0625,0 C 9.0158769,383.83726 9,383.67259 9,383.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,384 32,352 0,352 z"
+       id="use13158"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,384 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,416 32,384 0,384 z"
+       id="use13160"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,416 0,32 9.0625,0 C 9.0158769,447.83726 9,447.67259 9,447.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,448 32,416 0,416 z"
+       id="use13162"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,448 0,32 9.6875,0 C 9.2558025,479.58427 9,479.05736 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,480 32,448 0,448 z"
+       id="use13164"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,480 0,32 9.6875,0 C 9.2558025,511.58427 9,511.05736 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,512 32,480 0,480 z"
+       id="use13166"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,512 0,32 32,0 0,-32 -32,0 z m 12.5,26 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use13168"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,544 0,32 12.5,0 c -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 l 19.5,0 0,-32 -32,0 z"
+       id="use13170"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,576 0,32 9.6875,0 C 9.2558025,607.58427 9,607.05736 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,608 32,576 0,576 z"
+       id="use13172"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="frame-0.5 and hand"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="rect20004-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20175-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20177-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20179-3"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20181-9"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20183-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20185-4-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20187-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20189-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20191-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20193-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20195-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20197-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20199-0-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,448.5 0,31 8.8125,0 C 9.1215627,479.19131 9,478.85917 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20201-6"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,480.5 0,31 8.8125,0 C 9.1215627,511.19131 9,510.85917 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20203-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,512.5 0,31 31,0 0,-31 -31,0 z m 12,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use20205-1"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,544.5 0,31 9.90625,0 C 9.5507391,575.04422 9,574.32095 9,573.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+       id="use20207-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20209-1"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer12"
+     inkscape:label="help"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="78.14505"
+       y="2.8479996"
+       id="text22068"><tspan
+         sodipodi:role="line"
+         id="tspan22070"
+         x="78.14505"
+         y="2.8479996"
+         style="font-size:4px;line-height:1.25">You need unlock some layers</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="7.8479996"
+         id="tspan22327"
+         style="font-size:4px;line-height:1.25">Layers:</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="12.848"
+         id="tspan22084"
+         style="font-size:4px;line-height:1.25">1. frame 32x32</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="17.848"
+         id="tspan22102"
+         style="font-size:4px;line-height:1.25">   For example you can set preview 32x32 (View&gt;Icon_Preview).</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="22.848"
+         id="tspan22074"
+         style="font-size:4px;line-height:1.25">2. template</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="27.848"
+         id="tspan22072"
+         style="font-size:4px;line-height:1.25">   For the template.png and numbers of frames of a movie.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="32.848"
+         id="tspan22082"
+         style="font-size:4px;line-height:1.25">3. cleanface</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="37.848"
+         id="tspan22106"
+         style="font-size:4px;line-height:1.25">   Wash your face regularly, take the example of the hedgehogs.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="42.848"
+         id="tspan22086"
+         style="font-size:4px;line-height:1.25">4. static background</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="47.848"
+         id="tspan22108"
+         style="font-size:4px;line-height:1.25">   For objects that do not depend on the movement of a hedgehog.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="52.848"
+         id="tspan22132"
+         style="font-size:4px;line-height:1.25">   For example trajectory of the balls.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="57.848"
+         id="tspan22088"
+         style="font-size:4px;line-height:1.25">5. static hat</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="62.848"
+         id="tspan22110"
+         style="font-size:4px;line-height:1.25">   Hard hats. Contains a group of objects, which you can create a hat, </tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="67.848"
+         id="tspan22134"
+         style="font-size:4px;line-height:1.25">   as well as 18 clones centered on the face and eyes hedgehog.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="72.848"
+         id="tspan22122"
+         style="font-size:4px;line-height:1.25">6. dynamic hat</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="77.848"
+         id="tspan22112"
+         style="font-size:4px;line-height:1.25">   19 different groups to create an animation.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="82.848"
+         id="tspan22136"
+         style="font-size:4px;line-height:1.25">   Transparent clones allow you to create animations without jerks.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="87.848"
+         id="tspan22138"
+         style="font-size:4px;line-height:1.25">   Tweening (https://en.wikipedia.org/wiki/Inbetweening):</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="92.848"
+         id="tspan22140"
+         style="font-size:4px;line-height:1.25">   to simultaneously see the previous, current and next frame.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="97.848"
+         id="tspan22150"
+         style="font-size:4px;line-height:1.25"> </tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="102.848"
+         id="tspan22311"
+         style="font-size:4px;line-height:1.25">   Everyone is waiting to support animation in Inkscape.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="107.848"
+         id="tspan22309"
+         style="font-size:4px;line-height:1.25"> </tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="112.848"
+         id="tspan22152"
+         style="font-size:4px;line-height:1.25">   If the animation is half of 19, it is logical not to draw the rest,</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="117.848"
+         id="tspan22156"
+         style="font-size:4px;line-height:1.25">    and the clone (1 -&gt; 18, 2 -&gt; 17, 3 -&gt; 16, ...).</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="122.848"
+         id="tspan22154"
+         style="font-size:4px;line-height:1.25">    Nineteenth frame can not be a clone of the first,</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="127.848"
+         id="tspan22158"
+         style="font-size:4px;line-height:1.25">    otherwise you can get a frozen frame of cartoon.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="132.84799"
+         id="tspan22094"
+         style="font-size:4px;line-height:1.25">7. eye</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="137.84799"
+         id="tspan22120"
+         style="font-size:4px;line-height:1.25">   For those cases when you want to show his eyes from under hat</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="142.84799"
+         id="tspan22130"
+         style="font-size:4px;line-height:1.25">   Can also be used as a template for the mask.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="147.84799"
+         id="tspan22096"
+         style="font-size:4px;line-height:1.25">8. frame-0.5</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="152.84799"
+         id="tspan22142"
+         style="font-size:4px;line-height:1.25">   Frame 31.5x31.5, can be used as a mask (or clip)</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="157.84799"
+         id="tspan22160"
+         style="font-size:4px;line-height:1.25">    to trim the protruding portion of the image.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="162.84799"
+         id="tspan22092"
+         style="font-size:4px;line-height:1.25">9. hand</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="167.84799"
+         id="tspan22144"
+         style="font-size:4px;line-height:1.25">   Near the hand can be used as an mask.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="172.84799"
+         id="tspan22098"
+         style="font-size:4px;line-height:1.25">10. frame-and-hand</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="177.84799"
+         id="tspan22146"
+         style="font-size:4px;line-height:1.25">   Frame 32x32 with hand, can be used as a mask (or clip)</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="182.84799"
+         id="tspan22162"
+         style="font-size:4px;line-height:1.25">    to trim the protruding portion of the image.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="187.84799"
+         id="tspan22100"
+         style="font-size:4px;line-height:1.25">11. frame-0.5-and-hand</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="192.84799"
+         id="tspan22148"
+         style="font-size:4px;line-height:1.25">   Frame 31.5x31.5 with hand, can be used as a mask (or clip)</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="197.84799"
+         id="tspan22164"
+         style="font-size:4px;line-height:1.25">    to trim the protruding portion of the image.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="202.84799"
+         id="tspan22166"
+         style="font-size:4px;line-height:1.25">12. help</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="207.84799"
+         id="tspan22168"
+         style="font-size:4px;line-height:1.25">   This text</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-19.445436"
+       y="-35.24596"
+       id="text22315"><tspan
+         sodipodi:role="line"
+         x="-19.445436"
+         y="-35.24596"
+         id="tspan22319"
+         style="font-size:4px;line-height:1.25">author of svg template: Roman V. Prikhodchenko</tspan><tspan
+         sodipodi:role="line"
+         x="-19.445436"
+         y="-30.24596"
+         id="tspan22321"
+         style="font-size:4px;line-height:1.25"> </tspan><tspan
+         sodipodi:role="line"
+         x="-19.445436"
+         y="-25.24596"
+         id="tspan22323"
+         style="font-size:4px;line-height:1.25">other information in File&gt;Document_Metadata</tspan></text>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/dish_Ladle.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,1011 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="dish_Ladle.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="dish_Ladle.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title27930">ladle</title>
+  <defs
+     id="defs4">
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="8.223387"
+     inkscape:cx="7.4810176"
+     inkscape:cy="1045.3528"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>ladle</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat ladle</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 v 0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 v 0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 v 0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 v 0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 v 0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 v 0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 v 0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 v 0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 v 0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 v 0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 v 0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 v 0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 v 0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 v 0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 v 0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 v 0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 v 0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 v 0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 v 0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 v 0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <g
+       id="g3918"
+       inkscape:tile-cx="15.220853"
+       inkscape:tile-cy="16.630758"
+       inkscape:tile-w="19.075041"
+       inkscape:tile-h="23.352804"
+       inkscape:tile-x0="5.6833325"
+       inkscape:tile-y0="5.0793562"
+       transform="translate(0,0.265165)"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527832">
+      <path
+         style="fill:#a5a5a5;fill-opacity:1;fill-rule:nonzero;stroke:#383838;stroke-width:0.99999994;stroke-opacity:1"
+         d="M 25.854133,11.228301 C 17.28579,16.819682 11.121959,18.789387 5.4322259,19.864635 3.0956651,14.108715 5.7731083,7.5093105 11.412463,5.1244539 17.051816,2.7395965 23.517572,5.4723815 25.854133,11.228301 z"
+         id="path3902"
+         sodipodi:nodetypes="ccsc" />
+      <path
+         sodipodi:nodetypes="csc"
+         id="path3904"
+         d="M 7.0795646,18.292016 C 5.1673023,13.518423 6.1366964,9.3472363 10.838681,7.2689822 12.49967,6.5348335 9.2741639,12.810201 12.423917,16.901702"
+         style="fill:#4c4c4c;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         sodipodi:nodetypes="csc"
+         id="path3908"
+         d="M 17.677514,13.867856 C 16.06987,9.9877625 10.534435,8.4371017 13.003706,6.5688599 16.353037,4.0347679 22.12327,7.5043186 23.730914,11.384411"
+         style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         sodipodi:nodetypes="czz"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="M 22.356163,7.7317718 C 21.255249,9.506182 16.053268,7.1478055 17.219768,5.1057593 c 1.170281,-2.0486623 6.237308,0.851602 5.136395,2.6260125 z"
+         id="path3906" />
+      <path
+         sodipodi:nodetypes="czccccz"
+         id="rect3912"
+         d="m 6.5256745,15.850224 c -0.7978573,-1.861342 2.839075,-3.866952 3.9434165,-1.639511 1.104341,2.227442 0.03645,3.139393 -0.03263,3.670137 2.745089,4.439942 -0.4550031,6.45426 3.047838,10.683646 -0.877277,0.0081 -1.420606,-4.56e-4 -2.355461,1.94e-4 C 7.958537,23.561118 12.238765,22.445433 8.9261066,18.1918 8.4786811,17.836018 7.3229754,17.710268 6.5256745,15.850224 z"
+         style="fill:#e8e8e8;fill-opacity:1;fill-rule:nonzero;stroke:#9a9a9a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" />
+      <path
+         transform="translate(-0.53510153,-0.77431632)"
+         d="m 9.9935689,16.622952 a 0.6088109,0.6088109 0 1 1 -1.2176218,0 0.6088109,0.6088109 0 1 1 1.2176218,0 z"
+         sodipodi:ry="0.6088109"
+         sodipodi:rx="0.6088109"
+         sodipodi:cy="16.622952"
+         sodipodi:cx="9.384758"
+         id="path3916"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         style="fill:#676767;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 10.674758,18.590066 c 0.785578,1.686874 1.012833,3.501929 1.012813,5.432128 -0.737697,0.03663 -0.928968,-0.01611 -1.7201891,-0.255676 0.2613851,-1.804113 0.063062,-3.634141 -0.4965975,-4.899544 0.4206465,-0.347664 0.4868436,-0.498331 1.2039736,-0.276908 z"
+         id="path3962"
+         sodipodi:nodetypes="ccccc" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       id="use3926"
+       transform="matrix(0.9961947,-0.08715574,0.08715574,0.9961947,-2.4890018,34.18242)"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-1.8160117"
+       inkscape:transform-center-y="-12.621102" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="matrix(0.98480776,-0.17364818,0.17364818,0.98480776,-3.8214915,68.543255)"
+       id="use3928"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-0.42919524"
+       inkscape:transform-center-y="-12.667406" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="matrix(0.9961947,-0.08715574,0.08715574,0.9961947,-2.4887478,98.180448)"
+       id="use3930"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-1.7495372"
+       inkscape:transform-center-y="-12.615287" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,128.00988)"
+       id="use3932"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-3.2029711"
+       inkscape:transform-center-y="-12.527832" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,160.03579)"
+       id="use3934"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-3.077855"
+       inkscape:transform-center-y="-12.527832" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="matrix(0.9961947,-0.08715574,0.08715574,0.9961947,-2.4895096,194.10159)"
+       id="use3936"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-1.9489611"
+       inkscape:transform-center-y="-12.632737" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="matrix(0.98480776,-0.17364818,0.17364818,0.98480776,-3.7841203,228.53268)"
+       id="use3938"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-0.42098084"
+       inkscape:transform-center-y="-12.665956" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="matrix(0.9961947,-0.08715574,0.08715574,0.9961947,-2.4887796,258.14476)"
+       id="use3940"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-1.7578464"
+       inkscape:transform-center-y="-12.616017" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,287.9972)"
+       id="use3942"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-3.1779479"
+       inkscape:transform-center-y="-12.527832" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,319.96408)"
+       id="use3944"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-3.0861961"
+       inkscape:transform-center-y="-12.527832" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="matrix(0.9961947,-0.08715574,0.08715574,0.9961947,-2.489097,354.18209)"
+       id="use3946"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-1.8409397"
+       inkscape:transform-center-y="-12.623287" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="matrix(0.98480776,-0.17364818,0.17364818,0.98480776,-3.8199705,388.49215)"
+       id="use3948"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-0.33062334"
+       inkscape:transform-center-y="-12.650026" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="matrix(0.9961947,-0.08715574,0.08715574,0.9961947,-2.4889383,418.10094)"
+       id="use3950"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-1.7993931"
+       inkscape:transform-center-y="-12.619647" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,447.95781)"
+       id="use3952"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-3.1779479"
+       inkscape:transform-center-y="-12.527832" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,479.96891)"
+       id="use3954"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-3.1529247"
+       inkscape:transform-center-y="-12.527832" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,510.01244)"
+       id="use3956"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-3.2530176"
+       inkscape:transform-center-y="-12.527832" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,542.93439)"
+       id="use3958"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-3.2029711"
+       inkscape:transform-center-y="-12.527832" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918"
+       xlink:href="#g3918"
+       transform="translate(0,575.95743)"
+       id="use3960"
+       width="32"
+       height="1024"
+       inkscape:transform-center-x="-3.2696997"
+       inkscape:transform-center-y="-12.527832" />
+    <path
+       sodipodi:type="star"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       id="path3964"
+       sodipodi:sides="4"
+       sodipodi:cx="-11.924082"
+       sodipodi:cy="521.00323"
+       sodipodi:r1="2.3527136"
+       sodipodi:r2="5.0709324"
+       sodipodi:arg1="0.5112307"
+       sodipodi:arg2="1.3428375"
+       inkscape:flatsided="false"
+       inkscape:rounded="0"
+       inkscape:randomized="0"
+       d="m -9.872179,522.1543 -0.905925,3.78868 -2.297045,-2.88784 -3.788679,-0.90593 2.887843,-2.29704 0.905925,-3.78868 2.297046,2.88784 3.7886781,0.90593 -2.8878431,2.29704 z"
+       transform="matrix(1.1620195,-0.57273645,0.57273645,1.1620195,-263.99121,-94.766165)" />
+    <path
+       sodipodi:nodetypes="czz"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 20.777979,73.72211 c -1.100914,1.77441 -6.302895,-0.583966 -5.136395,-2.626012 1.170281,-2.048663 6.237308,0.851602 5.136395,2.626012 z"
+       id="path3906-4" />
+    <path
+       sodipodi:nodetypes="czz"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 23.695268,106.88829 c -1.100914,1.77441 -6.302895,-0.58396 -5.136395,-2.62601 1.170281,-2.04866 6.237308,0.8516 5.136395,2.62601 z"
+       id="path3906-4-7" />
+    <path
+       id="path4032"
+       d="m 24.062275,136.8661 c -1.100914,1.77441 -6.302895,-0.58396 -5.136395,-2.62601 1.170281,-2.04866 6.237308,0.8516 5.136395,2.62601 z"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       sodipodi:nodetypes="czz" />
+    <path
+       sodipodi:nodetypes="czz"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 21.832603,201.01832 c -1.100914,1.77441 -6.302895,-0.58397 -5.136395,-2.62601 1.170281,-2.04867 6.237308,0.8516 5.136395,2.62601 z"
+       id="path3906-4-6" />
+    <path
+       id="path4043"
+       d="m 22.950306,234.54942 c -1.100914,1.77441 -6.302895,-0.58397 -5.136395,-2.62601 1.170281,-2.04867 6.237308,0.8516 5.136395,2.62601 z"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       sodipodi:nodetypes="czz" />
+    <path
+       sodipodi:nodetypes="czz"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 22.700074,265.64493 c -1.100914,1.77441 -6.302895,-0.58397 -5.136395,-2.62601 1.170281,-2.04867 6.237308,0.8516 5.136395,2.62601 z"
+       id="path4045" />
+    <path
+       sodipodi:nodetypes="czz"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 23.216699,394.90807 c -1.100914,1.77441 -6.302895,-0.58397 -5.136395,-2.62601 1.170281,-2.04867 6.237308,0.8516 5.136395,2.62601 z"
+       id="path3906-4-69" />
+    <path
+       id="path4056"
+       d="m 21.782035,361.14342 c -1.100914,1.77441 -6.302895,-0.58397 -5.136395,-2.62601 1.170281,-2.04867 6.237308,0.8516 5.136395,2.62601 z"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       sodipodi:nodetypes="czz" />
+    <path
+       sodipodi:nodetypes="czz"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 22.566096,425.58653 c -1.100914,1.77441 -6.302895,-0.58397 -5.136395,-2.62601 1.170281,-2.04867 6.237308,0.8516 5.136395,2.62601 z"
+       id="path4058" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="Слой"
+     style="display:inline">
+    <g
+       style="display:inline"
+       id="g3918-4"
+       inkscape:tile-cx="15.220853"
+       inkscape:tile-cy="16.630758"
+       inkscape:tile-w="19.075041"
+       inkscape:tile-h="23.352804"
+       inkscape:tile-x0="5.6833325"
+       inkscape:tile-y0="5.0793562"
+       transform="translate(0.07764867,1.0200396)"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527832">
+      <path
+         style="fill:#a5a5a5;fill-opacity:1;fill-rule:nonzero;stroke:#383838;stroke-width:0.99999994;stroke-opacity:1"
+         d="M 25.854133,11.228301 C 17.28579,16.819682 11.121959,18.789387 5.4322259,19.864635 3.0956651,14.108715 5.7731083,7.5093105 11.412463,5.1244539 17.051816,2.7395965 23.517572,5.4723815 25.854133,11.228301 z"
+         id="path3902-6"
+         sodipodi:nodetypes="ccsc" />
+      <path
+         sodipodi:nodetypes="csc"
+         id="path3904-8"
+         d="M 7.0795646,18.292016 C 5.1673023,13.518423 6.1366964,9.3472363 10.838681,7.2689822 12.49967,6.5348335 9.2741639,12.810201 12.423917,16.901702"
+         style="fill:#4c4c4c;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         sodipodi:nodetypes="csc"
+         id="path3908-1"
+         d="M 17.677514,13.867856 C 16.06987,9.9877625 10.534435,8.4371017 13.003706,6.5688599 16.353037,4.0347679 22.12327,7.5043186 23.730914,11.384411"
+         style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         sodipodi:nodetypes="czz"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="M 22.356163,7.7317718 C 21.255249,9.506182 16.053268,7.1478055 17.219768,5.1057593 c 1.170281,-2.0486623 6.237308,0.851602 5.136395,2.6260125 z"
+         id="path3906-9" />
+      <path
+         sodipodi:nodetypes="czccccz"
+         id="rect3912-8-4"
+         d="m 15.901481,12.276132 c -1.299726,-1.861342 1.796438,-3.8669523 3.50136,-1.639511 1.704921,2.227442 0.882917,3.139393 0.956941,3.670137 3.942221,4.439942 1.285245,6.45426 5.928446,10.683646 -0.656271,0.400925 -1.17027,0.624373 -1.865036,1.086394 -4.519404,-5.003572 -1.030367,-7.205457 -5.489924,-11.45909 -0.543354,-0.355782 -1.732966,-0.481532 -3.031787,-2.341576 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#191919;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline" />
+      <path
+         sodipodi:nodetypes="czccccz"
+         id="rect3912-8"
+         d="m 16.775284,11.729735 c -1.299726,-1.8613422 1.796438,-3.8669519 3.50136,-1.639511 1.704921,2.227442 0.882917,3.139393 0.956941,3.670137 3.942221,4.439942 1.285245,6.45426 5.928446,10.683646 -0.656271,0.400925 -1.17027,0.624373 -1.865036,1.086394 -4.519404,-5.003572 -1.030367,-7.205457 -5.489924,-11.45909 -0.543354,-0.355782 -1.732966,-0.481532 -3.031787,-2.341576 z"
+         style="fill:#e8e8e8;fill-opacity:1;fill-rule:nonzero;stroke:#9a9a9a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" />
+      <path
+         transform="matrix(1.9697757,0,0.5311064,1.9697757,-8.0890386,-21.373891)"
+         d="m 9.9935689,16.622952 a 0.6088109,0.6088109 0 1 1 -1.2176218,0 0.6088109,0.6088109 0 1 1 1.2176218,0 z"
+         sodipodi:ry="0.6088109"
+         sodipodi:rx="0.6088109"
+         sodipodi:cy="16.622952"
+         sodipodi:cx="9.384758"
+         id="path3916-9"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         style="fill:#676767;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 21.663106,14.469577 c 1.240406,1.686874 1.957051,3.501929 2.477466,5.432128 -0.72782,0.03663 -0.933311,-0.01611 -1.789126,-0.255676 -0.225054,-1.804113 -0.916806,-3.634141 -1.817652,-4.899544 0.326907,-0.347664 0.35248,-0.498331 1.129312,-0.276908 z"
+         id="path3962-2"
+         sodipodi:nodetypes="ccccc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4262"
+         sodipodi:cx="26.147417"
+         sodipodi:cy="26.084011"
+         sodipodi:rx="0.69469392"
+         sodipodi:ry="1.4368433"
+         d="m 26.842111,26.084011 c 0,0.793547 -0.311025,1.436843 -0.694694,1.436843 -0.383669,0 -0.694694,-0.643296 -0.694694,-1.436843 0,-0.793547 0.311025,-1.436843 0.694694,-1.436843 0.383669,0 0.694694,0.643296 0.694694,1.436843 z"
+         transform="matrix(0.73238474,-0.68089103,0.66777295,0.71827458,-11.452448,22.70837)" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       id="use4178"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527832"
+       width="32"
+       height="1024"
+       transform="translate(0,32.040183)" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,65.058438)"
+       id="use4180"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527832"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,95.996333)"
+       id="use4182"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527832"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,128.04112)"
+       id="use4184"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527834"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,160.02365)"
+       id="use4186"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527832"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,192.04636)"
+       id="use4188"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527829"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,225.01538)"
+       id="use4190"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527837"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,256.02459)"
+       id="use4192"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527834"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,288.00712)"
+       id="use4194"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527832"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,320.06101)"
+       id="use4196"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527829"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,352.07471)"
+       id="use4198"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527837"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,385.04374)"
+       id="use4200"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527834"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,416.07095)"
+       id="use4202"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527832"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,448.03548)"
+       id="use4204"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527829"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,478.98232)"
+       id="use4206"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527837"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,509.02721)"
+       id="use4208"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527834"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,543.00074)"
+       id="use4210"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527832"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3918-4"
+       xlink:href="#g3918-4"
+       transform="translate(0,576.01895)"
+       id="use4212"
+       inkscape:transform-center-x="-3.303064"
+       inkscape:transform-center-y="-12.527829"
+       width="32"
+       height="1024" />
+    <path
+       sodipodi:type="star"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path4214"
+       sodipodi:sides="4"
+       sodipodi:cx="19.709332"
+       sodipodi:cy="518.48883"
+       sodipodi:r1="4.9540682"
+       sodipodi:r2="2.2984931"
+       sodipodi:arg1="0.56068699"
+       sodipodi:arg2="1.3460852"
+       inkscape:flatsided="false"
+       inkscape:rounded="0"
+       inkscape:randomized="0"
+       d="m 23.904882,521.12325 -3.683389,-0.39371 -3.146577,1.95484 0.39371,-3.68339 -1.954845,-3.14657 3.683389,0.3937 3.146577,-1.95484 -0.39371,3.68339 1.954845,3.14658 z"
+       transform="translate(0.20523664,-2.033614)" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/dish_SauceBoatTemplate.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,791 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="sauce-boat.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="saucepot-gold.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title43158">sauce boat</title>
+  <defs
+     id="defs4" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="22.948397"
+     inkscape:cx="15.974296"
+     inkscape:cy="1011.6483"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer4"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="false"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>sauce boat</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat sauce boat</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="silver"
+     style="display:inline"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <g
+       id="g4169"
+       inkscape:tile-cx="15.958499"
+       inkscape:tile-cy="12.346743"
+       inkscape:tile-w="30.385671"
+       inkscape:tile-h="18.427778"
+       inkscape:tile-x0="1.0156637"
+       inkscape:tile-y0="3.1328547">
+      <path
+         sodipodi:nodetypes="csssssss"
+         id="path4086"
+         d="M 6.833579,45.88321 C 6.9502076,46.677825 6.733714,47.444485 6.2894092,48.04165 5.8451048,48.638817 5.1729895,49.066485 4.378375,49.183114 3.5837605,49.299742 2.8170991,49.083248 2.2199339,48.638943 1.6227688,48.194638 1.1951005,47.522524 1.0784719,46.727909 0.96184333,45.933294 1.1783372,45.166634 1.6226416,44.569468 2.0669463,43.972303 3.269245,43.366979 3.600934,42.635545 3.9952068,41.766101 3.685122,40.932932 2.5036607,40.614161"
+         style="fill:none;stroke:#989898;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <ellipse
+         transform="matrix(0.92788593,-0.37317915,0.35382549,0.90916611,-3.8654079,31.949475)"
+         id="path4084"
+         style="fill:#aaaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#aaaaaa;stroke-width:1.01240575;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="11.573789"
+         cy="6.9266224"
+         rx="5.4391785"
+         ry="1.4745049" />
+      <ellipse
+         transform="matrix(0.68889233,-0.26769902,0.26269141,0.65218778,-0.10022712,33.244413)"
+         id="path4084-7"
+         style="display:inline;fill:#848484;fill-opacity:1;fill-rule:nonzero;stroke:#7d7d7d;stroke-width:1.38727176;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="11.573789"
+         cy="6.9266224"
+         rx="5.4391785"
+         ry="1.4745049" />
+      <ellipse
+         style="fill:#aaaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#989898;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4270"
+         transform="matrix(0.78328196,-0.18839046,0.171627,0.985162,-0.53591468,31.009503)"
+         cx="13.785133"
+         cy="4.7831802"
+         rx="1.9657944"
+         ry="0.71088612" />
+      <ellipse
+         style="fill:#e7e7e7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4223"
+         transform="matrix(1.2500379,0.72775972,-0.67505737,1.3476295,4.8113403,24.368102)"
+         cx="4.041985"
+         cy="9.8103209"
+         rx="0.70543468"
+         ry="0.37157923" />
+      <path
+         style="display:inline;fill:#5a5a5a;fill-opacity:1;fill-rule:nonzero;stroke:#7d7d7d;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+         d="M 1.6412562,46.286547 C 1.3945305,46.095878 0.89694416,45.033292 1.5136022,44.248945 2.1302588,43.464599 3.6276426,43.255509 3.8743668,43.446178 4.1210922,43.636848 3.0237307,44.155077 2.4070756,44.939423 1.7904191,45.723769 1.8879832,46.477217 1.6412574,46.286546 Z"
+         id="path4223-5-3"
+         sodipodi:nodetypes="csssc"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="czzzzzzzzcczzzzzzzzz"
+         id="path3309"
+         d="m 7.4135978,35.736963 c -0.9682077,0.779851 -2.0279924,2.445709 -2.6234937,3.573957 -0.595505,1.128248 -0.8936992,3.028585 -0.9488571,4.30305 -0.055162,1.274462 0.2584316,1.759826 0.5311867,2.814095 0.2727553,1.05427 1.0661107,2.334493 2.3857918,3.083133 1.3196815,0.748641 3.6821045,0.297752 4.8613095,0.03601 1.179205,-0.261739 3.551304,-1.333192 5.172558,-2.247789 1.621253,-0.914595 4.331586,-3.600854 6.895152,-3.39152 2.563566,0.209334 2.676406,-0.630513 2.664011,-1.693405 -0.0124,-1.062891 1.411083,-2.564963 2.749448,-2.274774 -1.462408,-0.276526 -2.698724,1.090669 -2.745527,2.243945 1.761666,0.231077 2.378781,0.665545 3.146448,0.538497 0.767667,-0.127053 1.774535,-1.114218 1.860248,-1.697349 0.08575,-0.583124 0.06039,-1.147445 -0.369264,-1.671589 -0.429662,-0.524148 -1.16709,-0.687956 -1.863266,-0.700038 -0.696176,-0.01209 -1.305221,0.0484 -2.083818,-0.01004 -0.778596,-0.05843 -1.070037,0.0091 -2.628327,-0.480915 C 22.858903,37.67219 20.00972,36.217214 18.14545,35.269914 16.281179,34.322615 13.837447,33.671882 11.730223,33.969421 9.6230003,34.26696 8.3818059,34.957107 7.4135978,35.736959 Z"
+         style="fill:#aaaaaa;fill-opacity:1;fill-rule:nonzero;stroke:#5c5c5c;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="csc"
+         id="path4089"
+         d="m 12.185576,35.864 c 2.926329,-0.08866 5.160075,1.051204 6.213473,2.040887 1.638492,1.539386 3.900149,1.357405 5.42006,1.725433"
+         style="fill:none;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="czzzzzzzzzzzzzz"
+         id="path4093"
+         d="m 7.611712,39.028483 c -0.3992245,1.433412 0.1829353,1.95251 0.7954758,3.323321 0.6118135,1.369184 1.6730402,2.989881 3.2380832,2.857888 1.565042,-0.131993 3.34856,-1.232435 4.676459,-1.649572 1.327899,-0.417137 2.723024,-0.829682 3.699409,-1.30989 0.976385,-0.480208 2.112259,-0.589786 3.038636,-0.578402 0.93687,0.01151 2.736539,0.255706 2.760328,0.804036 0.02379,0.54833 -3.521565,0.160172 -4.235132,0.449658 -0.72136,0.292647 -1.828483,0.693767 -2.97096,1.356763 -1.142477,0.662997 -3.280229,2.012962 -4.461001,2.637183 -1.180771,0.624222 -1.594698,0.651909 -2.977156,1.046503 C 9.7933953,48.360565 7.843312,47.754534 6.6072309,46.365607 5.3711498,44.97668 5.3618618,42.77048 5.6494791,41.457102 c 0.2876173,-1.313378 0.6896331,-2.195843 1.1631374,-3.32168 0.4735043,-1.125838 1.19832,-0.540351 0.7990955,0.893061 z"
+         style="fill:#787878;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="czzzzzzzzzz"
+         id="path4104"
+         d="m 10.806662,35.394052 c 0.882821,-0.442625 0.967405,-0.409392 1.579434,-0.447408 0.612029,-0.03802 1.448161,-0.22455 2.629904,0.146311 1.181744,0.370861 2.10031,0.862574 3.19146,1.366328 1.09115,0.503754 1.849356,1.136483 3.435877,1.770959 1.58652,0.634476 1.660001,0.772469 3.400696,1.038971 1.740695,0.266502 0.994093,0.594243 -0.06787,0.659499 -1.061968,0.06526 -3.875959,0.634072 -5.33644,1.031876 -1.460481,0.397805 -3.046574,0.629356 -4.847253,-0.334989 -1.800678,-0.964346 -2.234621,-4.294175 -4.556722,-3.901905 -2.3221005,0.39227 -0.3119093,-0.887017 0.570914,-1.329642 z"
+         style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         inkscape:connector-curvature="0" />
+      <ellipse
+         transform="matrix(1.1137838,0.49724765,-0.47437146,1.1674951,2.2383188,17.34155)"
+         id="path4113"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         cx="18.191233"
+         cy="8.7735929"
+         rx="3.0162225"
+         ry="1.2915717" />
+      <ellipse
+         transform="translate(1.7507773,27.363517)"
+         id="path4115"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         cx="25.289127"
+         cy="11.345239"
+         rx="1.5215251"
+         ry="0.56721842" />
+      <path
+         sodipodi:nodetypes="czzzzcc"
+         id="path4117"
+         d="m 26.944908,41.746685 c 0.120162,-0.273763 0.345165,-0.612718 0.734995,-0.927087 0.389831,-0.31437 0.895437,-0.469448 1.286965,-0.422676 0.391529,0.04677 0.895221,0.194315 1.15354,0.283272 0.25832,0.08896 0.720468,0.713996 -0.03061,1.248106 -0.751074,0.534109 -1.082,0.337942 -1.538014,0.228072 -0.524489,-0.18647 -1.066875,-0.285138 -1.60688,-0.409687 z"
+         style="fill:#111111;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         inkscape:connector-curvature="0" />
+      <ellipse
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#7d7d7d;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4221"
+         transform="rotate(14.774295,-96.056716,17.62415)"
+         cx="13.852055"
+         cy="3.1822526"
+         rx="0.8054027"
+         ry="0.47720581" />
+      <path
+         style="display:inline;fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:#7d7d7d;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+         d="M 4.8655255,48.78788 C 4.6760269,49.002908 3.5769309,49.471847 2.7173729,49.000028 1.8578152,48.528207 1.5632932,47.294297 1.7527918,47.079271 c 0.1894991,-0.215026 0.7912606,0.670255 1.6508181,1.142074 0.8595581,0.47182 1.6514148,0.351508 1.4619156,0.566535 z"
+         id="path4223-5"
+         sodipodi:nodetypes="csssc"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="czzzzzz"
+         id="path4093-9"
+         d="m 7.1850062,38.873349 c -0.3992245,1.433412 -0.097926,3.93389 0.6920319,5.547363 0.7899578,1.613473 3.8266379,2.309174 3.9214729,3.044539 0.09483,0.735365 -1.9913267,1.373542 -4.4671732,0.07706 -2.4758466,-1.296481 -1.969476,-4.771801 -1.6818587,-6.085179 0.2876173,-1.313378 0.6896331,-2.195843 1.1631374,-3.32168 0.4735043,-1.125838 0.7716142,-0.695517 0.3723897,0.737895 z"
+         style="display:inline;fill:#373737;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       id="use4181"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,64.991726)"
+       id="use4183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,96.044965)"
+       id="use4185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,128.02101)"
+       id="use4187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,159.96689)"
+       id="use4189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,192.00445)"
+       id="use4191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,224.99618)"
+       id="use4193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,255.9879)"
+       id="use4195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,287.96394)"
+       id="use4197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,319.97134)"
+       id="use4199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,352.00891)"
+       id="use4201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,385.00063)"
+       id="use4203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,415.99235)"
+       id="use4205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,448.02992)"
+       id="use4207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,480.03732)"
+       id="use4209"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,511.02904)"
+       id="use4211"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,544.02076)"
+       id="use4213"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169"
+       xlink:href="#g4169"
+       transform="translate(0,575.99681)"
+       id="use4215"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="aurum"
+     style="display:inline">
+    <g
+       transform="translate(0,-28.357193)"
+       style="display:inline"
+       id="g4169-4"
+       inkscape:tile-cx="15.958499"
+       inkscape:tile-cy="12.346743"
+       inkscape:tile-w="30.385671"
+       inkscape:tile-h="18.427778"
+       inkscape:tile-x0="1.0156637"
+       inkscape:tile-y0="3.1328547">
+      <path
+         sodipodi:nodetypes="csssssss"
+         id="path4086-1"
+         d="M 6.833579,45.88321 C 6.9502076,46.677825 6.733714,47.444485 6.2894092,48.04165 5.8451048,48.638817 5.1729895,49.066485 4.378375,49.183114 3.5837605,49.299742 2.8170991,49.083248 2.2199339,48.638943 1.6227688,48.194638 1.1951005,47.522524 1.0784719,46.727909 0.96184333,45.933294 1.1783372,45.166634 1.6226416,44.569468 2.0669463,43.972303 3.269245,43.366979 3.600934,42.635545 3.9952068,41.766101 3.685122,40.932932 2.5036607,40.614161"
+         style="fill:none;stroke:#fff331;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+      <path
+         transform="matrix(0.92788593,-0.37317915,0.35382549,0.90916611,-3.8654079,31.949475)"
+         d="m 17.012967,6.9266224 a 5.4391785,1.4745049 0 1 1 -10.8783568,0 5.4391785,1.4745049 0 1 1 10.8783568,0 z"
+         sodipodi:ry="1.4745049"
+         sodipodi:rx="5.4391785"
+         sodipodi:cy="6.9266224"
+         sodipodi:cx="11.573789"
+         id="path4084-5"
+         style="fill:#fff155;fill-opacity:1;fill-rule:nonzero;stroke:#fff555;stroke-width:1.01240575000000010;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(0.68889233,-0.26769902,0.26269141,0.65218778,-0.10022712,33.244413)"
+         d="m 17.012967,6.9266224 a 5.4391785,1.4745049 0 1 1 -10.8783568,0 5.4391785,1.4745049 0 1 1 10.8783568,0 z"
+         sodipodi:ry="1.4745049"
+         sodipodi:rx="5.4391785"
+         sodipodi:cy="6.9266224"
+         sodipodi:cx="11.573789"
+         id="path4084-7-9"
+         style="fill:#ff6a09;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:1.38727175999999996;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#fff555;fill-opacity:1;fill-rule:nonzero;stroke:#989898;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         id="path4270-6"
+         sodipodi:cx="13.785133"
+         sodipodi:cy="4.7831802"
+         sodipodi:rx="1.9657944"
+         sodipodi:ry="0.71088612"
+         d="m 15.750928,4.7831802 a 1.9657944,0.71088612 0 1 1 -3.931589,0 1.9657944,0.71088612 0 1 1 3.931589,0 z"
+         transform="matrix(0.78328196,-0.18839046,0.171627,0.985162,-0.53591468,31.009503)" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#e7e7e7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4223-1"
+         sodipodi:cx="4.041985"
+         sodipodi:cy="9.8103209"
+         sodipodi:rx="0.70543468"
+         sodipodi:ry="0.37157923"
+         d="m 4.7474197,9.8103209 a 0.70543468,0.37157923 0 1 1 -1.4108693,0 0.70543468,0.37157923 0 1 1 1.4108693,0 z"
+         transform="matrix(1.2500379,0.72775972,-0.67505737,1.3476295,4.8113403,24.368102)" />
+      <path
+         style="fill:#b46000;fill-opacity:1;fill-rule:nonzero;stroke:#faec00;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline"
+         d="M 1.6412562,46.286547 C 1.3945305,46.095878 0.89694416,45.033292 1.5136022,44.248945 2.1302588,43.464599 3.6276426,43.255509 3.8743668,43.446178 4.1210922,43.636848 3.0237307,44.155077 2.4070756,44.939423 1.7904191,45.723769 1.8879832,46.477217 1.6412574,46.286546 z"
+         id="path4223-5-3-6"
+         sodipodi:nodetypes="csssc" />
+      <path
+         sodipodi:nodetypes="czzzzzzzzcczzzzzzzzz"
+         id="path3309-4"
+         d="m 7.4135978,35.736963 c -0.9682077,0.779851 -2.0279924,2.445709 -2.6234937,3.573957 -0.595505,1.128248 -0.8936992,3.028585 -0.9488571,4.30305 -0.055162,1.274462 0.2584316,1.759826 0.5311867,2.814095 0.2727553,1.05427 1.0661107,2.334493 2.3857918,3.083133 1.3196815,0.748641 3.6821045,0.297752 4.8613095,0.03601 1.179205,-0.261739 3.551304,-1.333192 5.172558,-2.247789 1.621253,-0.914595 4.331586,-3.600854 6.895152,-3.39152 2.563566,0.209334 2.676406,-0.630513 2.664011,-1.693405 -0.0124,-1.062891 1.411083,-2.564963 2.749448,-2.274774 -1.462408,-0.276526 -2.698724,1.090669 -2.745527,2.243945 1.761666,0.231077 2.378781,0.665545 3.146448,0.538497 0.767667,-0.127053 1.774535,-1.114218 1.860248,-1.697349 0.08575,-0.583124 0.06039,-1.147445 -0.369264,-1.671589 -0.429662,-0.524148 -1.16709,-0.687956 -1.863266,-0.700038 -0.696176,-0.01209 -1.305221,0.0484 -2.083818,-0.01004 -0.778596,-0.05843 -1.070037,0.0091 -2.628327,-0.480915 C 22.858903,37.67219 20.00972,36.217214 18.14545,35.269914 16.281179,34.322615 13.837447,33.671882 11.730223,33.969421 9.6230003,34.26696 8.3818059,34.957107 7.4135978,35.736959 z"
+         style="fill:#fff555;fill-opacity:1;fill-rule:nonzero;stroke:#b8ad00;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" />
+      <path
+         sodipodi:nodetypes="csc"
+         id="path4089-9"
+         d="m 12.185576,35.864 c 2.926329,-0.08866 5.160075,1.051204 6.213473,2.040887 1.638492,1.539386 3.900149,1.357405 5.42006,1.725433"
+         style="fill:none;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+      <path
+         sodipodi:nodetypes="czzzzzzzzzzzzzz"
+         id="path4093-4"
+         d="m 7.611712,39.028483 c -0.3992245,1.433412 0.1829353,1.95251 0.7954758,3.323321 0.6118135,1.369184 1.6730402,2.989881 3.2380832,2.857888 1.565042,-0.131993 3.34856,-1.232435 4.676459,-1.649572 1.327899,-0.417137 2.723024,-0.829682 3.699409,-1.30989 0.976385,-0.480208 2.112259,-0.589786 3.038636,-0.578402 0.93687,0.01151 2.736539,0.255706 2.760328,0.804036 0.02379,0.54833 -3.521565,0.160172 -4.235132,0.449658 -0.72136,0.292647 -1.828483,0.693767 -2.97096,1.356763 -1.142477,0.662997 -3.280229,2.012962 -4.461001,2.637183 -1.180771,0.624222 -1.594698,0.651909 -2.977156,1.046503 C 9.7933953,48.360565 7.843312,47.754534 6.6072309,46.365607 5.3711498,44.97668 5.3618618,42.77048 5.6494791,41.457102 c 0.2876173,-1.313378 0.6896331,-2.195843 1.1631374,-3.32168 0.4735043,-1.125838 1.19832,-0.540351 0.7990955,0.893061 z"
+         style="fill:#f05300;fill-opacity:1;stroke:none" />
+      <path
+         sodipodi:nodetypes="czzzzzzzzzz"
+         id="path4104-7"
+         d="m 10.806662,35.394052 c 0.882821,-0.442625 0.967405,-0.409392 1.579434,-0.447408 0.612029,-0.03802 1.448161,-0.22455 2.629904,0.146311 1.181744,0.370861 2.10031,0.862574 3.19146,1.366328 1.09115,0.503754 1.849356,1.136483 3.435877,1.770959 1.58652,0.634476 1.660001,0.772469 3.400696,1.038971 1.740695,0.266502 0.994093,0.594243 -0.06787,0.659499 -1.061968,0.06526 -3.875959,0.634072 -5.33644,1.031876 -1.460481,0.397805 -3.046574,0.629356 -4.847253,-0.334989 -1.800678,-0.964346 -2.234621,-4.294175 -4.556722,-3.901905 -2.3221005,0.39227 -0.3119093,-0.887017 0.570914,-1.329642 z"
+         style="fill:#fffbb9;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         transform="matrix(1.1137838,0.49724765,-0.47437146,1.1674951,2.2383188,17.34155)"
+         d="m 21.207455,8.7735929 a 3.0162225,1.2915717 0 1 1 -6.032445,0 3.0162225,1.2915717 0 1 1 6.032445,0 z"
+         sodipodi:ry="1.2915717"
+         sodipodi:rx="3.0162225"
+         sodipodi:cy="8.7735929"
+         sodipodi:cx="18.191233"
+         id="path4113-4"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="translate(1.7507773,27.363517)"
+         d="m 26.810652,11.345239 a 1.5215251,0.56721842 0 1 1 -3.04305,0 1.5215251,0.56721842 0 1 1 3.04305,0 z"
+         sodipodi:ry="0.56721842"
+         sodipodi:rx="1.5215251"
+         sodipodi:cy="11.345239"
+         sodipodi:cx="25.289127"
+         id="path4115-8"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="czzzzcc"
+         id="path4117-5"
+         d="m 26.944908,41.746685 c 0.120162,-0.273763 0.345165,-0.612718 0.734995,-0.927087 0.389831,-0.31437 0.895437,-0.469448 1.286965,-0.422676 0.391529,0.04677 0.895221,0.194315 1.15354,0.283272 0.25832,0.08896 0.720468,0.713996 -0.03061,1.248106 -0.751074,0.534109 -1.082,0.337942 -1.538014,0.228072 -0.524489,-0.18647 -1.066875,-0.285138 -1.60688,-0.409687 z"
+         style="fill:#222000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#7d7d7d;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         id="path4221-3"
+         sodipodi:cx="13.852055"
+         sodipodi:cy="3.1822526"
+         sodipodi:rx="0.8054027"
+         sodipodi:ry="0.47720581"
+         d="m 14.657457,3.1822526 a 0.8054027,0.47720581 0 1 1 -1.610805,0 0.8054027,0.47720581 0 1 1 1.610805,0 z"
+         transform="matrix(0.96693789,0.25501198,-0.25501198,0.96693789,1.3185316,25.078305)" />
+      <path
+         style="fill:#fffbb9;fill-opacity:1;fill-rule:nonzero;stroke:#faea00;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline"
+         d="M 4.8655255,48.78788 C 4.6760269,49.002908 3.5769309,49.471847 2.7173729,49.000028 1.8578152,48.528207 1.5632932,47.294297 1.7527918,47.079271 c 0.1894991,-0.215026 0.7912606,0.670255 1.6508181,1.142074 0.8595581,0.47182 1.6514148,0.351508 1.4619156,0.566535 z"
+         id="path4223-5-31"
+         sodipodi:nodetypes="csssc" />
+      <path
+         sodipodi:nodetypes="czzzzzz"
+         id="path4093-9-9"
+         d="m 7.1850062,38.873349 c -0.3992245,1.433412 -0.097926,3.93389 0.6920319,5.547363 0.7899578,1.613473 3.8266379,2.309174 3.9214729,3.044539 0.09483,0.735365 -1.9913267,1.373542 -4.4671732,0.07706 -2.4758466,-1.296481 -1.969476,-4.771801 -1.6818587,-6.085179 0.2876173,-1.313378 0.6896331,-2.195843 1.1631374,-3.32168 0.4735043,-1.125838 0.7716142,-0.695517 0.3723897,0.737895 z"
+         style="fill:#286e00;fill-opacity:1;stroke:none;display:inline" />
+    </g>
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       id="use4181-7"
+       transform="translate(0,31.986425)"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,64.978151)"
+       id="use4183-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,96.03139)"
+       id="use4185-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,128.00746)"
+       id="use4187-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,159.95335)"
+       id="use4189-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,191.99091)"
+       id="use4191-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,224.98264)"
+       id="use4193-6"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,255.97436)"
+       id="use4195-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,287.9504)"
+       id="use4197-3"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,319.9578)"
+       id="use4199-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,351.99537)"
+       id="use4201-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,384.98709)"
+       id="use4203-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,415.97881)"
+       id="use4205-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,448.01638)"
+       id="use4207-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,480.02378)"
+       id="use4209-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,511.0155)"
+       id="use4211-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,544.00722)"
+       id="use4213-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4169-4"
+       xlink:href="#g4169-4"
+       transform="translate(0,575.98327)"
+       id="use4215-0"
+       width="32"
+       height="1024" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/dish_Teacup.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,416 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="dish_Teacup.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="dish_Teacup.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title58943">teacup</title>
+  <defs
+     id="defs4" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="22.22298"
+     inkscape:cx="15.799471"
+     inkscape:cy="1006.9252"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer2"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="false"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>teacup</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat teacup</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="hat"
+     style="display:inline"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <g
+       id="g5440"
+       inkscape:tile-cx="16.144899"
+       inkscape:tile-cy="16.947501"
+       inkscape:tile-w="27.175464"
+       inkscape:tile-h="22.429096"
+       inkscape:tile-x0="2.3859429"
+       inkscape:tile-y0="5.7329529"
+       transform="translate(-0.4727018,0.12727514)">
+      <path
+         sodipodi:nodetypes="cccscscszzccczzcsc"
+         id="path3090-2"
+         d="m 17.266181,34.120028 c -0.882782,0.166857 -1.742971,0.420832 -2.58599,0.728124 -0.843018,0.307291 -0.824581,-1.061607 -1.63868,-0.681477 -0.972941,-0.294933 -4.8212731,1.703917 -5.5934474,2.577479 -0.6254128,0.707531 -0.2091149,1.76279 -0.2091149,1.76279 0,0 -1.3434422,0.944739 -1.92478,1.528337 -0.5813378,0.5836 -1.0842793,1.244112 -1.4544021,1.989821 -0.8006655,1.707391 -1.5219159,3.610991 -1.4713103,5.47713 0.051837,1.759325 0.7133163,3.805857 1.5557586,5.477024 0.8424422,1.671167 1.3648237,3.438314 1.9364881,3.539982 0.5716644,0.101667 5.607937,-1.377045 7.094348,-1.886493 1.968989,-0.725098 3.934631,-1.462486 5.888044,-2.229822 1.864423,-0.861989 3.820059,-2.031471 5.551417,-3.162972 1.575303,-1.043148 4.661701,-4.272627 4.849136,-5.219367 0.187435,-0.94674 -1.531102,-2.838568 -2.84181,-5.063786 -1.310708,-2.225218 -2.53326,-3.324144 -4.419521,-4.085509 -0.75156,-0.283674 -1.534916,-0.500656 -2.330722,-0.632134 -0.795805,-0.13148 -1.604059,-0.177458 -2.405414,-0.119127 z"
+         style="fill:#dbdbe7;fill-opacity:1;fill-rule:nonzero;stroke:#7b7dac;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;display:inline" />
+      <path
+         style="fill:#ccccd8;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 7.4530266,39.360578 c 0.363732,0.266687 -0.470778,1.671816 -0.533231,2.589237 -0.06245,0.917421 0.246192,3.402468 0.611173,4.438322 0.364981,1.035854 3.7298624,5.019844 4.3387344,5.671704 0.608872,0.651859 0.987751,1.81826 -1.379974,2.50136 -2.3677238,0.6831 -2.4629329,1.095356 -3.2841494,0.77177 -0.8282873,-0.326372 -1.909156,-3.283043 -2.462735,-4.27501 -0.55358,-0.991967 -0.813836,-2.194339 -0.820731,-3.812544 -0.0069,-1.618206 0.107685,-3.863995 0.790624,-5.06274 0.682938,-1.198745 2.376556,-3.088787 2.740289,-2.822099 z"
+         id="path3817"
+         sodipodi:nodetypes="czzzzzzzzz" />
+      <path
+         sodipodi:end="2.3001905"
+         sodipodi:start="1.0396713"
+         transform="matrix(0.97792201,-0.20897018,0.20897018,0.97792201,-3.5733414,28.30159)"
+         d="M 13.339673,12.281082 A 4.0509648,1.8451837 0 0 1 8.5882085,12.065824"
+         sodipodi:ry="1.8451837"
+         sodipodi:rx="4.0509648"
+         sodipodi:cy="10.690095"
+         sodipodi:cx="11.287845"
+         id="path4529"
+         style="fill:none;stroke:#7b7dac;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc"
+         sodipodi:open="true" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 14.152425,35.70303 c 0.39701,0.240162 0.415126,0.706334 -0.09594,1.231097 -0.511072,0.524764 -0.948651,0.928675 -1.375003,0.494027 -0.426353,-0.434648 -0.565003,-0.601481 -0.01928,-1.186758 0.54572,-0.585277 1.099038,-0.775008 1.490228,-0.538366 z"
+         id="path4623"
+         sodipodi:nodetypes="czzzz" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 16.74386,35.631377 c 0.370123,-0.05833 0.832268,-0.07118 1.110478,-0.04611 0.27821,0.02507 0.824163,0.05625 1.141665,0.114988 0.314917,0.05826 0.798461,0.182258 1.131969,0.378973 0.335868,0.198106 0.539815,0.684128 0.126759,1.110271 -0.413053,0.426142 -0.982072,0.297914 -1.47517,0.274001 -0.493105,-0.02395 -1.351396,0.06282 -1.986014,0.01984 -0.633006,-0.04287 -0.929549,-0.02463 -1.154557,-0.270689 -0.223394,-0.244292 -0.187896,-0.827289 0.02389,-1.077172 0.207643,-0.24499 0.71086,-0.44573 1.080982,-0.50406 z"
+         id="path3849"
+         sodipodi:nodetypes="czzzzzzzzz" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="7.4612826"
+         sodipodi:start="3.7943458"
+         transform="matrix(0.7419885,0,0,0.69561754,35.502336,37.838567)"
+         d="m -19.448332,-1.6323269 a 6.6023741,6.8085289 0 1 1 7.771641,10.4255966"
+         sodipodi:ry="6.8085289"
+         sodipodi:rx="6.6023741"
+         sodipodi:cy="2.5030091"
+         sodipodi:cx="-14.20331"
+         id="path3755"
+         style="fill:none;stroke:#b9bad3;stroke-width:2.7838521;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         sodipodi:type="arc" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       id="use5448"
+       transform="translate(0,32.09089)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,65.051336)"
+       id="use5450"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,96.048164)"
+       id="use5452"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,128.06311)"
+       id="use5454"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,160.11468)"
+       id="use5456"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,192.08398)"
+       id="use5458"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,225.04435)"
+       id="use5460"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,256.11416)"
+       id="use5462"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,288.01981)"
+       id="use5464"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,320.05274)"
+       id="use5466"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,352.09499)"
+       id="use5468"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,385.074)"
+       id="use5470"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,416.04369)"
+       id="use5472"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,448.05879)"
+       id="use5474"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,480.0374)"
+       id="use5476"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,510.14329)"
+       id="use5478"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,538.88558)"
+       id="use5480"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5440"
+       xlink:href="#g5440"
+       transform="translate(0,572.10051)"
+       id="use5482"
+       width="32"
+       height="1024" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/dish_Teapot.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,2144 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="dish_Teapot.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="dish_Teapot.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title60053">teapot</title>
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient4711-3">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="0"
+         id="stop4713-9" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="1"
+         id="stop4715-1" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6778"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6780"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6782"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6784"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6786"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6788"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6790"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6792"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6794"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6796"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6798"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6800"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6802"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6804"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6806"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6808"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6810"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6812"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6814"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6816"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6818"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6820"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6822"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6824"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6826"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6828"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6830"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6832"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6834"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6836"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6838"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6840"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6842"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6844"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6846"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6848"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6850"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6852"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6854"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6856"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6858"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6860"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6862"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6864"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6866"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6868"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6870"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6872"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6874"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6876"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6878"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6880"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6882"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6884"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6886"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6888"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6890"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6892"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6894"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6896"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3"
+       id="radialGradient6898"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <linearGradient
+       id="linearGradient4531-04">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4533-87" />
+      <stop
+         style="stop-color:#b9bad3;stop-opacity:1;"
+         offset="1"
+         id="stop4535-0" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4531-04"
+       id="radialGradient5334"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.45394199,0.64544643,-0.92495582,0.65052067,46.129025,3.9031442)"
+       spreadMethod="reflect"
+       cx="16.284092"
+       cy="39.056705"
+       fx="16.284092"
+       fy="39.056705"
+       r="12.729709" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4531-04"
+       id="radialGradient5336"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.88852308,-0.45883193,0.71129548,1.377416,-26.925759,-4.3860151)"
+       cx="24.299803"
+       cy="41.491344"
+       fx="24.299803"
+       fy="41.491344"
+       r="7.0327001" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="23.403539"
+     inkscape:cx="15.671639"
+     inkscape:cy="1008.1643"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer4"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>teapot</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat teapot</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="hat-flat"
+     style="display:inline"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <g
+       id="g4547"
+       inkscape:tile-cx="15.658833"
+       inkscape:tile-cy="16.56073"
+       inkscape:tile-w="30.28281"
+       inkscape:tile-h="21.289214"
+       inkscape:tile-x0="0.68865167"
+       inkscape:tile-y0="5.9161229"
+       transform="translate(0,-0.183136)">
+      <path
+         transform="matrix(0.7419885,0,0,0.69561754,16.12623,47.254814)"
+         d="m -7.6009359,2.5030091 a 6.6023741,6.8085289 0 1 1 -13.2047481,0 6.6023741,6.8085289 0 1 1 13.2047481,0 z"
+         sodipodi:ry="6.8085289"
+         sodipodi:rx="6.6023741"
+         sodipodi:cy="2.5030091"
+         sodipodi:cx="-14.20331"
+         id="path3755"
+         style="fill:none;stroke:#c5c6df;stroke-width:2.36627412;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccscscsccccccccsc"
+         id="path3090-2"
+         d="m 17.266181,34.303198 c -0.882782,0.166857 -1.742971,0.420832 -2.58599,0.728124 -0.843018,0.307291 -0.824581,-1.061607 -1.63868,-0.681477 -0.972941,-0.294933 -4.8212731,1.703917 -5.5934474,2.577479 -0.6254128,0.707531 -0.2091149,1.76279 -0.2091149,1.76279 0,0 -1.3434422,0.944739 -1.92478,1.528337 -0.5813378,0.5836 -1.0842793,1.244112 -1.4544021,1.989821 -0.8006655,1.707391 -0.921522,3.662244 -0.8709164,5.528383 0.051837,1.759325 0.3676836,3.579841 1.4386085,5.008424 0.9361221,1.328001 2.306502,2.406188 3.9045431,2.688197 1.5742835,0.377036 3.1566382,-0.107913 4.6430492,-0.617361 1.968989,-0.725098 3.934631,-1.462486 5.888044,-2.229822 1.864423,-0.861989 3.830909,-1.54321 5.562267,-2.674711 1.575303,-1.043148 2.607875,-2.806009 2.885242,-4.698555 0.281957,-2.06248 0.05194,-4.208859 -0.888766,-6.072859 -0.834391,-1.935421 -2.53326,-3.324144 -4.419521,-4.085509 -0.75156,-0.283674 -1.534916,-0.500656 -2.330722,-0.632134 -0.795805,-0.13148 -1.604059,-0.177458 -2.405414,-0.119127 z"
+         style="fill:#dbdbe7;fill-opacity:1;fill-rule:nonzero;stroke:#7b7dac;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;display:inline" />
+      <path
+         style="fill:#ccccd8;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 7.1926204,39.760753 c 0.3637323,0.266687 -0.4707773,1.671816 -0.5332303,2.589237 -0.062453,0.917421 0.2461916,3.402468 0.6111727,4.438322 0.3649811,1.035854 0.7159577,1.600174 1.9481423,2.450078 1.2321849,0.849904 2.5759449,0.98797 4.4116739,0.412108 1.835729,-0.575862 4.001115,-1.435404 5.734714,-2.290494 1.733598,-0.85509 1.694631,-0.822696 2.795967,-1.204326 1.101337,-0.38163 2.665915,-0.930869 3.083752,-0.997463 0.417836,-0.06659 0.348603,1.403045 0.0777,2.444205 -0.270904,1.041159 -0.922458,1.44478 -2.828543,2.524262 -1.906086,1.079482 -6.366326,2.797664 -8.460441,3.542285 -2.094115,0.74462 -2.447324,0.87654 -3.599192,1.105701 C 9.2824662,55.00383 7.9128276,54.830318 6.9451732,54.26511 5.9775188,53.699901 5.036018,52.450103 4.4824384,51.458136 3.9288587,50.466169 3.6686024,49.263797 3.6617081,47.645592 c -0.00689,-1.618206 0.1076847,-3.863995 0.7906231,-5.06274 0.6829384,-1.198745 2.3765569,-3.088787 2.7402892,-2.822099 z"
+         id="path3817"
+         sodipodi:nodetypes="czzzzzzzzzzzzzzzz" />
+      <path
+         sodipodi:nodetypes="czzzczccz"
+         id="path3101"
+         d="m 21.994107,37.887509 c -2.726636,0.601868 -3.908622,2.16181 -4.048147,4.04874 -0.139525,1.88693 0.196079,4.464429 4.015911,4.809213 3.819832,0.344784 3.671497,2.436746 4.661883,2.972947 0.993773,0.538034 2.972324,0.910364 4.337024,0.239784 0.17109,-0.202583 -1.768851,-1.000623 -1.800829,-1.40674 -0.03194,-0.405657 1.584924,-0.889846 1.7102,-1.449874 -1.973446,-0.224149 -3.175857,-1.132186 -3.121395,-3.72692 -0.170746,-3.245493 -3.028012,-6.089019 -5.754647,-5.48715 z"
+         style="fill:#dbdbe7;fill-opacity:1;fill-rule:nonzero;stroke:#7b7dac;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;display:inline" />
+      <path
+         sodipodi:end="2.3001905"
+         sodipodi:start="1.0396713"
+         transform="matrix(0.97792201,-0.20897018,0.20897018,0.97792201,-3.5733414,28.48476)"
+         d="M 13.339673,12.281082 A 4.0509648,1.8451837 0 0 1 8.5882085,12.065824"
+         sodipodi:ry="1.8451837"
+         sodipodi:rx="4.0509648"
+         sodipodi:cy="10.690095"
+         sodipodi:cx="11.287845"
+         id="path4529"
+         style="fill:none;stroke:#7b7dac;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc"
+         sodipodi:open="true" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 14.152425,35.8862 c 0.39701,0.240162 0.415126,0.706334 -0.09594,1.231097 -0.511072,0.524764 -0.948651,0.928675 -1.375003,0.494027 -0.426353,-0.434648 -0.565003,-0.601481 -0.01928,-1.186758 0.54572,-0.585277 1.099038,-0.775008 1.490228,-0.538366 z"
+         id="path4623"
+         sodipodi:nodetypes="czzzz" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 22.969718,39.184934 c 0.293124,-0.397641 1.27169,0.03047 1.548985,0.187882 0.277295,0.157381 0.937649,0.791682 1.129641,1.054237 0.191992,0.262555 0.407103,0.609263 0.594262,0.903181 0.189272,0.297236 0.618526,1.611695 0.360039,1.816062 -0.256431,0.202741 -0.716021,-0.402914 -1.026382,-0.798604 -0.303308,-0.386696 -0.274927,-0.419693 -0.547647,-0.596846 -0.27272,-0.177153 -0.538566,-0.352697 -0.830547,-0.51745 -0.290751,-0.164059 -0.846758,-0.557339 -1.152073,-0.744887 -0.305315,-0.187548 -0.371755,-0.902741 -0.07628,-1.303575 z"
+         id="path4625"
+         sodipodi:nodetypes="czzzzzzzzz" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 16.74386,35.814547 c 0.370123,-0.05833 0.832268,-0.07118 1.110478,-0.04611 0.27821,0.02507 0.824163,0.05625 1.141665,0.114988 0.314917,0.05826 0.798461,0.182258 1.131969,0.378973 0.335868,0.198106 0.539815,0.684128 0.126759,1.110271 -0.413053,0.426142 -0.982072,0.297914 -1.47517,0.274001 -0.493105,-0.02395 -1.351396,0.06282 -1.986014,0.01984 -0.633006,-0.04287 -0.929549,-0.02463 -1.154557,-0.270689 -0.223394,-0.244292 -0.187896,-0.827289 0.02389,-1.077172 0.207643,-0.24499 0.71086,-0.44573 1.080982,-0.50406 z"
+         id="path3849"
+         sodipodi:nodetypes="czzzzzzzzz" />
+      <path
+         style="fill:#c7c7dd;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 20.261268,39.65431 c -0.363935,-0.173518 -1.778447,1.049346 -1.663648,3.292681 0.115199,2.251152 1.83827,2.907815 2.997978,3.061354 1.159708,0.153538 1.858722,0.187932 2.603514,0.578557 0.744792,0.390625 1.647278,1.054278 1.894465,1.342708 0.247186,0.28843 0.608813,0.78503 0.802163,0.484641 0.190468,-0.295912 -0.270521,-1.056065 -0.558978,-1.293327 -0.288457,-0.237262 -0.483409,-0.496852 -0.520507,-1.235328 -0.0371,-0.738477 -0.886059,-1.258792 -1.596178,-1.544015 -0.710119,-0.285224 -1.173552,-0.215076 -1.713258,-0.430279 -0.539706,-0.215203 -0.80028,-0.476001 -1.314814,-1.037377 -0.514533,-0.561376 -0.895692,-1.307327 -0.917743,-2.065501 -0.02205,-0.758174 0.350941,-0.980596 -0.01299,-1.154114 z"
+         id="path3834"
+         sodipodi:nodetypes="czzzzzzzzzzzz" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       id="use4553"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,65.025395)"
+       id="use4555"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,96.05079)"
+       id="use4557"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,127.9774)"
+       id="use4559"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,159.96499)"
+       id="use4561"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,192.01364)"
+       id="use4563"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,225.03906)"
+       id="use4565"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,256.00344)"
+       id="use4567"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,287.99103)"
+       id="use4569"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,319.97863)"
+       id="use4571"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,352.02729)"
+       id="use4573"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,384.99165)"
+       id="use4575"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,416.0171)"
+       id="use4577"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,448.00466)"
+       id="use4579"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,479.99228)"
+       id="use4581"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,511.01771)"
+       id="use4583"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,543.98206)"
+       id="use4585"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547"
+       xlink:href="#g4547"
+       transform="translate(0,575.96966)"
+       id="use4587"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <g
+       style="display:inline"
+       id="g4547-8"
+       inkscape:tile-cx="15.658833"
+       inkscape:tile-cy="16.56073"
+       inkscape:tile-w="30.28281"
+       inkscape:tile-h="21.289214"
+       inkscape:tile-x0="0.68865167"
+       inkscape:tile-y0="5.9161229"
+       transform="translate(0.01280558,-28.560028)">
+      <path
+         transform="matrix(0.7419885,0,0,0.69561754,16.12623,47.254814)"
+         d="m -7.6009359,2.5030091 a 6.6023741,6.8085289 0 1 1 -13.2047481,0 6.6023741,6.8085289 0 1 1 13.2047481,0 z"
+         sodipodi:ry="6.8085289"
+         sodipodi:rx="6.6023741"
+         sodipodi:cy="2.5030091"
+         sodipodi:cx="-14.20331"
+         id="path3755-6"
+         style="fill:none;stroke:#7b7dac;stroke-width:2.36627412;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccscscsccccccccsc"
+         id="path3090-2-2"
+         d="m 17.266181,34.303198 c -0.882782,0.166857 -1.742971,0.420832 -2.58599,0.728124 -0.843018,0.307291 -0.824581,-1.061607 -1.63868,-0.681477 -0.972941,-0.294933 -4.8212731,1.703917 -5.5934474,2.577479 -0.6254128,0.707531 -0.2091149,1.76279 -0.2091149,1.76279 0,0 -1.3434422,0.944739 -1.92478,1.528337 -0.5813378,0.5836 -1.0842793,1.244112 -1.4544021,1.989821 -0.8006655,1.707391 -0.921522,3.662244 -0.8709164,5.528383 0.051837,1.759325 0.3676836,3.579841 1.4386085,5.008424 0.9361221,1.328001 2.306502,2.406188 3.9045431,2.688197 1.5742835,0.377036 3.1566382,-0.107913 4.6430492,-0.617361 1.968989,-0.725098 3.934631,-1.462486 5.888044,-2.229822 1.864423,-0.861989 3.830909,-1.54321 5.562267,-2.674711 1.575303,-1.043148 2.607875,-2.806009 2.885242,-4.698555 0.281957,-2.06248 0.05194,-4.208859 -0.888766,-6.072859 -0.834391,-1.935421 -2.53326,-3.324144 -4.419521,-4.085509 -0.75156,-0.283674 -1.534916,-0.500656 -2.330722,-0.632134 -0.795805,-0.13148 -1.604059,-0.177458 -2.405414,-0.119127 z"
+         style="fill:url(#radialGradient5334);fill-opacity:1;fill-rule:nonzero;stroke:#7b7dac;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;display:inline" />
+      <path
+         sodipodi:nodetypes="czzzczccz"
+         id="path3101-4"
+         d="m 21.994107,37.887509 c -2.726636,0.601868 -3.908622,2.16181 -4.048147,4.04874 -0.139525,1.88693 0.196079,4.464429 4.015911,4.809213 3.819832,0.344784 3.671497,2.436746 4.661883,2.972947 0.993773,0.538034 2.972324,0.910364 4.337024,0.239784 0.17109,-0.202583 -1.768851,-1.000623 -1.800829,-1.40674 -0.03194,-0.405657 1.584924,-0.889846 1.7102,-1.449874 -1.973446,-0.224149 -3.175857,-1.132186 -3.121395,-3.72692 -0.170746,-3.245493 -3.028012,-6.089019 -5.754647,-5.48715 z"
+         style="fill:url(#radialGradient5336);fill-opacity:1;fill-rule:nonzero;stroke:#7b7dac;stroke-width:1.01510537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;display:inline" />
+      <path
+         sodipodi:end="2.3001905"
+         sodipodi:start="1.0396713"
+         transform="matrix(0.97792201,-0.20897018,0.20897018,0.97792201,-3.5733414,28.48476)"
+         d="M 13.339673,12.281082 A 4.0509648,1.8451837 0 0 1 8.5882085,12.065824"
+         sodipodi:ry="1.8451837"
+         sodipodi:rx="4.0509648"
+         sodipodi:cy="10.690095"
+         sodipodi:cx="11.287845"
+         id="path4529-7"
+         style="fill:none;stroke:#7b7dac;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc"
+         sodipodi:open="true" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4623-9"
+         d="m 13.890295,7.4862804 c 0.02073,0.066051 0.0046,0.095727 -0.02457,0.1536977 -0.0092,0.018269 -0.01574,0.037923 -0.02638,0.055384 -0.02138,0.03508 -0.04922,0.065794 -0.07356,0.09889 -0.04266,0.065048 -0.114222,0.1048446 -0.157401,0.1696788 -0.02079,0.030728 -0.02186,0.069407 -0.03485,0.1023727 -0.01853,0.047045 -0.05334,0.093883 -0.08061,0.1362898 -0.02711,0.021601 -0.109885,0.1164821 -0.148611,0.1116142 -0.0049,-6.203e-4 -0.0086,-0.00508 -0.01283,-0.00761 -0.0017,-0.043068 -0.01027,-0.0021 -0.02427,0.00659 -0.0091,0.00567 -0.02022,0.0076 -0.0296,0.012878 -0.02941,0.00966 -0.0529,0.019444 -0.08045,0.035165 -0.01901,0.03606 -0.528974,-0.232859 -0.509959,-0.2689185 l 0,0 c -0.0276,0.015142 -0.04099,0.023816 -0.07148,0.021707 -0.03087,3.791e-4 -0.01354,-0.012627 -0.01541,-0.013615 -0.0023,-0.00121 -0.0053,0.00674 -0.0064,0.00441 -0.0073,-0.015362 0.0307,-0.037653 0.0087,-0.050263 6.9e-5,-0.00969 1.39e-4,-0.019384 2.09e-4,-0.029075 0.0023,-0.0083 0.0064,-0.016304 0.007,-0.024909 0.0031,-0.043021 -0.01676,-6.368e-4 -6.79e-4,-0.0555 0.0077,-0.026218 0.03197,-0.046227 0.02979,-0.076361 0.02904,-0.041237 0.05975,-0.089916 0.09622,-0.1251049 0.01209,-0.011661 0.02819,-0.018557 0.04047,-0.030007 0.02085,-0.01943 0.03386,-0.046268 0.05584,-0.064746 0.0432,-0.059529 0.05299,-0.1358121 0.09682,-0.1946899 0.01501,-0.023221 0.02661,-0.048617 0.04253,-0.071224 0.0093,-0.013184 0.02167,-0.023934 0.03147,-0.036742 0.04083,-0.053383 0.05007,-0.072141 0.12006,-0.093393 0.01651,-0.054297 0.784383,0.1791911 0.767873,0.2334878 z"
+         transform="translate(0,28.545319)" />
+      <path
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4625-3"
+         d="m 23.884602,11.696413 c 0.0667,-0.03883 0.127996,-0.04506 0.202926,-0.0332 0.092,0.01456 0.137634,0.04341 0.212558,0.09583 0.09046,0.06879 0.02525,0.01353 0.103532,0.09581 0.02302,0.02662 0.05199,0.04719 0.07624,0.07253 0.03137,0.03278 0.0043,0.01524 0.03217,0.0309 0.01275,0.0059 -0.0083,-0.0024 0.0044,-0.0062 0.01196,-0.0036 0.107395,0.0685 0.118945,0.07702 0.01206,0.01036 0.02352,0.02147 0.03619,0.03108 0.01309,0.0099 0.02807,0.01724 0.04095,0.02744 0.02165,0.01714 0.03671,0.0417 0.05852,0.05863 0.07801,0.06055 -0.0095,-0.03019 0.06374,0.05195 0.08518,0.04766 0.126658,0.118609 0.170114,0.201956 0.05751,0.08054 0.0077,0.0045 0.05031,0.08769 0.01641,0.03202 0.03601,0.05624 0.04839,0.09001 0.03654,0.0997 -0.01585,-0.0091 0.02837,0.07733 0.0057,0.04221 0.01463,0.06132 0.05168,0.07633 0.04351,0.04359 0.07864,0.09418 0.09865,0.153416 0.0079,0.03332 0.02667,0.06304 0.03554,0.09599 0.0043,0.01602 0.0031,0.03319 0.0075,0.04919 0.0047,0.01732 0.01462,0.03292 0.01966,0.05016 0.0071,0.02441 0.0069,0.05038 0.01042,0.07557 0.0018,2.22e-4 0.0097,0.02004 0.01289,0.0079 0.0016,-0.0062 3.7e-4,-0.01297 -8.07e-4,-0.0193 -3.96e-4,-0.0021 -0.0053,-0.0038 -0.0038,-0.0053 0.0021,-0.0021 0.006,1e-6 0.009,1e-6 0.05737,0.05239 0.0849,0.127544 0.112317,0.198527 0.003,0.0178 0.006,0.0356 0.009,0.05341 0.0052,0.01649 0.01251,0.03246 0.01563,0.04946 9.36e-4,0.0051 -2.8e-5,0.04227 -6.73e-4,0.05368 -3.62e-4,0.0064 -0.0081,-0.01 -0.01239,-0.01476 -0.0091,-0.01096 -0.0108,-0.02637 -0.01945,-0.03747 -0.0028,-0.0036 -0.0089,-0.0034 -0.01199,-0.0068 -0.0016,-0.0018 -0.0034,-0.0078 -10e-4,-0.0071 0.0026,7.17e-4 0.0014,0.0053 0.0027,0.0076 0.0051,0.0091 0.01098,0.01766 0.01646,0.02649 0.03216,0.0251 0.02929,0.06448 0.04948,0.09637 0.0011,0.0018 0.0057,-0.0054 0.0181,0.01314 0.0031,0.007 0.0063,0.01397 0.0094,0.02095 0.0045,0.0044 0.01055,0.0076 0.01354,0.01312 0.0032,0.006 -0.0088,0.008 -0.01654,-6.67e-4 0.001,0.0016 0.0038,0.0031 0.0031,0.005 -0.0073,0.01897 -0.01358,-0.0012 -0.01206,0.0016 0.0199,0.03771 0.01002,0.02377 0.0333,0.05009 -0.02233,-0.03398 -0.0066,-0.0174 6.59e-4,-0.01619 0.04604,0.04596 -0.01011,-0.01403 0.0213,0.03104 0.01243,0.01784 0.0059,0.0033 0.01054,0.0014 0.0012,-4.68e-4 -0.0021,0.0027 -0.0012,0.0036 0.002,0.0023 0.0054,0.0028 0.0082,0.0042 -0.01342,-0.0046 -0.02276,-0.02916 -0.03234,-0.03601 -0.0069,-0.0049 -0.01656,-0.0042 -0.02426,-0.0078 -0.03775,-0.01754 -0.04163,-0.03434 -0.03007,-0.0068 0.236226,0.135966 0.04172,0.01462 -0.06444,0.748304 -9e-4,0.0062 -0.01193,-0.005 -0.01821,-0.0048 -0.01693,3.82e-4 -0.0638,0.03594 -0.07197,0.006 -0.03643,-0.13361 -0.03878,-0.274246 -0.05817,-0.411369 0.002,-0.0011 0.01788,0.02678 0.01591,0.02791 l 0,0 c -0.02393,-0.132754 -0.03194,-0.269389 -0.07179,-0.398261 -0.0051,-0.0164 -0.03435,-9.99e-4 -0.05151,-4.71e-4 -0.004,1.23e-4 -0.0081,0.004 -0.01177,0.0024 -0.0041,-0.0017 -0.0075,-0.01514 -0.008,-0.01072 -0.08368,0.729851 -0.285164,0.605925 -0.05344,0.738812 -0.0035,0.0279 0.0019,0.0095 -0.04829,-0.01559 -0.01332,-0.0067 -0.02861,-0.0097 -0.04068,-0.01843 -0.0328,-0.02368 -0.05696,-0.06378 -0.08832,-0.08943 -0.0054,-0.01196 -0.05094,-0.06783 -0.03479,-0.06513 -0.0021,-0.02554 0.0031,0.0026 -0.01217,-0.0196 -0.0034,-0.0049 -0.0027,-0.01175 -0.0059,-0.0167 -0.0023,-0.0035 -0.008,-0.0039 -0.0099,-0.0075 -0.0029,-0.0056 -0.0024,-0.01247 -0.0036,-0.01871 -0.0047,-0.0074 -0.0095,-0.01486 -0.01423,-0.02229 0.01882,0.01864 0.01443,0.01159 0.02834,0.04101 0.0016,0.0033 -0.0039,-0.0061 -0.0059,-0.0091 -0.01206,-0.01779 0.0043,0.0034 -0.01916,-0.0082 -0.0032,-0.0016 -0.004,-0.006 -0.006,-0.009 -0.02085,-0.03029 -0.0084,-0.01551 -0.03833,-0.04344 -0.0068,-0.0098 -0.0088,-0.02229 -0.01459,-0.03277 -0.0046,-0.0083 -0.01291,-0.01451 -0.0162,-0.02341 -0.003,-0.0081 0.0047,-0.01814 -0.0016,-0.02596 -9.2e-4,-0.0066 -0.0093,-0.04775 -0.0089,-0.04915 0.0011,-0.0039 0.006,0.006 0.0074,0.0098 0.01484,0.04133 -0.0068,0.01357 0.02048,0.04171 0.0011,0.0026 0.006,0.009 0.0034,0.0079 -0.01257,-0.0052 -0.0248,-0.03336 -0.02964,-0.03958 -0.0083,-0.01067 -0.02001,-0.01851 -0.02768,-0.02964 -0.01109,-0.01609 -0.03637,-0.0702 -0.04558,-0.08934 -0.0075,-0.01494 -0.01654,-0.02921 -0.0225,-0.04483 -0.0088,-0.023 -0.0048,-0.04389 -0.02252,-0.06088 -0.0021,-0.002 0.01748,0.0099 7.62e-4,0.0087 -0.0042,-0.01653 -0.0081,-0.0113 -0.0166,-0.0299 -0.01552,-0.03387 -0.01805,-0.07496 -0.04426,-0.104632 -0.02136,-0.06644 -0.0085,-0.03289 -0.03948,-0.100365 -0.02356,-0.0693 -0.01131,-0.04652 -0.01645,-0.105726 -0.0042,-0.04827 -0.0082,-0.01152 -0.0014,-0.0506 0.0018,0.0087 5.06e-4,0.01815 0.004,0.0263 0.0035,0.0082 0.01128,0.01445 0.01323,0.02311 0.0013,0.0058 -0.0034,0.0115 -0.0041,0.01742 -0.0017,0.01455 0.0073,0.01234 -0.01072,0.0091 -0.04179,-0.03205 -0.0099,-0.0033 -0.04231,-0.04588 -0.01018,-0.01337 -0.02256,-0.025 -0.03232,-0.03868 -0.03587,-0.05032 -0.04992,-0.108248 -0.08275,-0.160328 -0.01877,-0.07376 -0.04195,-0.146752 -0.0448,-0.223001 0.01427,-0.0095 0.01866,0.0094 0.02096,0.02414 -0.03418,-0.0076 -0.05032,-0.02328 -0.07657,-0.04579 -0.03967,-0.03402 -0.07504,-0.06677 -0.09685,-0.116048 -0.06231,-0.06401 -0.0015,0.0043 -0.05256,-0.07286 -0.01332,-0.02016 -0.03278,-0.0331 -0.04503,-0.05411 -0.0045,-0.0077 -0.0048,-0.01729 -0.0088,-0.02524 -0.0032,-0.0062 -0.0083,-0.01125 -0.01244,-0.01688 -0.01016,-0.02697 -0.01396,-0.02079 -0.03829,-0.04054 -0.04043,-0.03281 -0.07218,-0.07691 -0.110403,-0.112147 -0.01158,-0.01774 -0.02728,-0.03286 -0.03693,-0.05171 -0.0073,-0.01421 0.01553,-0.0096 0.0054,0.0079 -0.02083,0.01657 -0.03583,0.0026 -0.05764,-0.0072 -0.0405,-0.01811 -0.07028,-0.03478 -0.08574,-0.07998 -0.04478,-0.008 0.06785,-0.641277 0.11263,-0.633312 z"
+         transform="translate(0,28.545319)" />
+    </g>
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       id="use4553-9"
+       transform="translate(0,32.022382)"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,65.047772)"
+       id="use4555-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,96.073172)"
+       id="use4557-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,127.99979)"
+       id="use4559-3"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,159.98738)"
+       id="use4561-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,192.03603)"
+       id="use4563-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,225.06145)"
+       id="use4565-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,256.02583)"
+       id="use4567-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,288.01342)"
+       id="use4569-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,320.00102)"
+       id="use4571-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,352.04968)"
+       id="use4573-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,385.01404)"
+       id="use4575-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,416.03949)"
+       id="use4577-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,448.02705)"
+       id="use4579-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,480.01467)"
+       id="use4581-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,511.0401)"
+       id="use4583-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,544.00445)"
+       id="use4585-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4547-8"
+       xlink:href="#g4547-8"
+       transform="translate(0,575.99205)"
+       id="use4587-9"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="vapour"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <g
+       id="g4769"
+       transform="translate(-0.02911854,95.938751)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="127.98559"
+         x="0.049365502"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627"
+         style="fill:url(#radialGradient6778);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.59291774,131.47944)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629"
+         style="fill:url(#radialGradient6780);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.59291774,131.47944)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631"
+         style="fill:url(#radialGradient6782);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.823406,121.06791)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633"
+         style="fill:url(#radialGradient6784);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.59291774,131.47944)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635"
+         style="fill:url(#radialGradient6786);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1190578,130.88302)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637"
+         style="fill:url(#radialGradient6788);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.59291774,131.47944)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639"
+         style="fill:url(#radialGradient6790);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.59291774,131.47944)" />
+    </g>
+    <g
+       id="g4979"
+       transform="translate(-0.02911854,95.938751)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="95.989021"
+         x="-0.006705218"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-0"
+         style="fill:url(#radialGradient6792);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.64898846,101.48288)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-0"
+         style="fill:url(#radialGradient6794);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.879477,91.071345)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-8"
+         style="fill:url(#radialGradient6796);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.64898846,101.48288)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-7"
+         style="fill:url(#radialGradient6798);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1751285,100.88645)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6"
+         style="fill:url(#radialGradient6800);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.64898846,101.48288)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5"
+         style="fill:url(#radialGradient6802);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.64898846,101.48288)" />
+    </g>
+    <g
+       id="g5139"
+       transform="translate(-0.02911854,95.938751)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="63.984913"
+         x="-0.021693578"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-0-4"
+         style="fill:url(#radialGradient6804);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.894465,61.067236)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-8-2"
+         style="fill:url(#radialGradient6806);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397682,71.478771)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-7-5"
+         style="fill:url(#radialGradient6808);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1901169,70.882341)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2"
+         style="fill:url(#radialGradient6810);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397682,71.478771)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7"
+         style="fill:url(#radialGradient6812);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397682,71.478771)" />
+    </g>
+    <g
+       id="g5277"
+       transform="translate(-0.02911854,95.938751)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="32.055748"
+         x="-0.021693539"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1-3"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-8-2-0"
+         style="fill:url(#radialGradient6814);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397678,41.549605)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-7-5-3"
+         style="fill:url(#radialGradient6816);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1901169,40.953175)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2-8"
+         style="fill:url(#radialGradient6818);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397678,41.549605)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7-4"
+         style="fill:url(#radialGradient6820);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397678,41.549605)" />
+    </g>
+    <g
+       id="g5393"
+       transform="translate(-0.02911854,95.938751)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="0.033026986"
+         x="-0.021693218"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1-3-3"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-7-5-3-7"
+         style="fill:url(#radialGradient6822);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1901166,10.930454)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2-8-7"
+         style="fill:url(#radialGradient6824);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397646,11.526884)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7-4-8"
+         style="fill:url(#radialGradient6826);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397646,11.526884)" />
+    </g>
+    <g
+       id="g5519"
+       transform="translate(-0.02911854,-352.06125)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="416.05029"
+         x="-0.0413635"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1-3-3-3"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-7-5-3-7-7"
+         style="fill:url(#radialGradient6828);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.2097869,428.94772)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2-8-7-7"
+         style="fill:url(#radialGradient6830);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.68364674,429.54415)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7-4-8-9"
+         style="fill:url(#radialGradient6832);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.68364674,429.54415)" />
+    </g>
+    <g
+       id="g5615"
+       transform="translate(-0.02911854,-351.97495)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="383.95496"
+         x="-0.01025632"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1-3-3-3-9"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2-8-7-7-0"
+         style="fill:url(#radialGradient6834);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.65253956,399.44882)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7-4-8-9-4"
+         style="fill:url(#radialGradient6836);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.65253956,399.44882)" />
+    </g>
+    <g
+       id="g5693"
+       transform="translate(-0.02911854,-352.06125)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="352.06125"
+         x="0.00845432"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1-3-3-3-9-0"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2-8-7-7-0-4"
+         style="fill:url(#radialGradient6838);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.63382892,369.55512)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7-4-8-9-4-7"
+         style="fill:url(#radialGradient6840);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.63382892,369.55512)" />
+    </g>
+    <g
+       id="g5882">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 a 0.66703194,0.65644413 0 1 1 -1.334064,0 0.66703194,0.65644413 0 1 1 1.334064,0 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4"
+         style="fill:url(#radialGradient6842);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,257.41819)" />
+      <path
+         d="m 32.028948,14.658904 a 0.67761976,0.67761976 0 1 1 -1.35524,0 0.67761976,0.67761976 0 1 1 1.35524,0 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5"
+         style="fill:url(#radialGradient6844);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,257.41819)" />
+      <path
+         d="m 31.001931,12.476492 a 1.2109807,1.2109807 0 1 1 -2.421961,0 1.2109807,1.2109807 0 1 1 2.421961,0 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-6"
+         style="fill:url(#radialGradient6846);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.852525,247.00666)" />
+      <path
+         d="m 31.938951,10.210701 a 0.6101225,0.6101225 0 1 1 -1.220245,0 0.6101225,0.6101225 0 1 1 1.220245,0 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-7"
+         style="fill:url(#radialGradient6848);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,257.41819)" />
+      <path
+         d="m 31.925718,6.190063 a 2.0977097,2.0977097 0 1 1 -4.195419,0 2.0977097,2.0977097 0 1 1 4.195419,0 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-9"
+         style="fill:url(#radialGradient6850);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1481763,256.82177)" />
+      <path
+         d="m 31.886013,2.6669695 a 0.60747552,0.60747552 0 1 1 -1.214951,0 0.60747552,0.60747552 0 1 1 1.214951,0 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-0"
+         style="fill:url(#radialGradient6852);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,257.41819)" />
+      <path
+         d="m 28.487327,2.5756497 a 1.3578864,1.3578864 0 1 1 -2.715773,0 1.3578864,1.3578864 0 1 1 2.715773,0 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-2"
+         style="fill:url(#radialGradient6854);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,257.41819)" />
+    </g>
+    <g
+       transform="translate(0,31.999998)"
+       id="g5882-8">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6"
+         style="fill:url(#radialGradient6856);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,255.41819)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5-4"
+         style="fill:url(#radialGradient6858);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,255.41819)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-6-0"
+         style="fill:url(#radialGradient6860);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.852525,245.00666)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-7-0"
+         style="fill:url(#radialGradient6862);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,255.41819)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-9-9"
+         style="fill:url(#radialGradient6864);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1481763,254.82177)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-0-9"
+         style="fill:url(#radialGradient6866);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,255.41819)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-2-3"
+         style="fill:url(#radialGradient6868);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,255.41819)" />
+    </g>
+    <g
+       transform="translate(0,63.999998)"
+       id="g5882-8-7">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0-1"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6-0"
+         style="fill:url(#radialGradient6870);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,253.41819)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5-4-2"
+         style="fill:url(#radialGradient6872);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,253.41819)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-6-0-1"
+         style="fill:url(#radialGradient6874);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.852525,243.00666)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-7-0-6"
+         style="fill:url(#radialGradient6876);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,253.41819)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-9-9-9"
+         style="fill:url(#radialGradient6878);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1481763,252.82177)" />
+    </g>
+    <g
+       transform="translate(0,96)"
+       id="g5882-8-7-3">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0-1-8"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6-0-7"
+         style="fill:url(#radialGradient6880);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,251.41819)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5-4-2-5"
+         style="fill:url(#radialGradient6882);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,251.41819)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-6-0-1-1"
+         style="fill:url(#radialGradient6884);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.852525,241.00666)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-7-0-6-9"
+         style="fill:url(#radialGradient6886);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,251.41819)" />
+    </g>
+    <g
+       transform="translate(0,128)"
+       id="g5882-8-7-3-3">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0-1-8-2"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6-0-7-1"
+         style="fill:url(#radialGradient6888);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,249.41819)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5-4-2-5-2"
+         style="fill:url(#radialGradient6890);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,249.41819)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-6-0-1-1-0"
+         style="fill:url(#radialGradient6892);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.852525,239.00666)" />
+    </g>
+    <g
+       transform="translate(0,160)"
+       id="g5882-8-7-3-3-0">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0-1-8-2-8"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6-0-7-1-6"
+         style="fill:url(#radialGradient6894);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,247.41819)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5-4-2-5-2-9"
+         style="fill:url(#radialGradient6896);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,247.41819)" />
+    </g>
+    <g
+       transform="translate(0,192)"
+       id="g5882-8-7-3-3-0-6">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0-1-8-2-8-3"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6-0-7-1-6-0"
+         style="fill:url(#radialGradient6898);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,245.41819)" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/lamp.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,2010 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="lamp.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="lamp.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title26551">incandescent light bulb (lamp)</title>
+  <defs
+     id="defs4">
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5392">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.50276876"
+         id="feGaussianBlur5394" />
+    </filter>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask5996">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path5998"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6000">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6002"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6004">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path6006"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6008">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6010"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6012">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6014"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6016">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6018"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6020">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6022"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6024">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path6026"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6028">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6030"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6032">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6034"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6036">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6038"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6040">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6042"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6044">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path6046"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6048">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6050"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6052">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,448.5 0,31 8.8125,0 C 9.1215627,479.19131 9,478.85917 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6054"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6056">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,480.5 0,31 8.8125,0 C 9.1215627,511.19131 9,510.85917 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6058"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6060">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,512.5 0,31 31,0 0,-31 -31,0 z m 12,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+         id="path6062"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6064">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,544.5 0,31 9.90625,0 C 9.5507391,575.04422 9,574.32095 9,573.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+         id="path6066"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6068">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6070"
+         inkscape:connector-curvature="0" />
+    </mask>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="15.906045"
+     inkscape:cx="22.41661"
+     inkscape:cy="1021.0045"
+     inkscape:document-units="px"
+     inkscape:current-layer="text4286-6"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>incandescent light bulb (lamp)</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat incandescent light bulb (lamp)</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="template"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline">
+    <g
+       id="g5889">
+      <g
+         transform="translate(0,-0.26516505)"
+         inkscape:tile-y0="-21.000001"
+         inkscape:tile-x0="75.540924"
+         inkscape:tile-h="13.191544"
+         inkscape:tile-w="26.834076"
+         inkscape:tile-cy="-14.404229"
+         inkscape:tile-cx="88.957962"
+         id="g8573">
+        <path
+           transform="matrix(1,0,0,0.79775281,0,-4.2471912)"
+           style="opacity:0.53278689;fill:#656565;fill-opacity:1;stroke:none"
+           d="M 102.375,-7.0545785 C 82.410431,-0.34887951 102.33276,-7.02059 82.439656,-0.3388939 66.728247,-10.582638 78.09569,-12.962787 102.375,-21.000001 c 0,13.9463297 0,-0.0012 0,13.9454225 z"
+           id="path8286"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="ssscs"
+           style="opacity:0.53278689;fill:#000000;fill-opacity:1;stroke:none"
+           d="m 101.39493,-11.18786 c 0.0961,1.045124 -9.1818,2.6798964 -12.09575,3.8726217 -7.126077,2.9168155 -5.625973,1.9287318 -6.540736,1.4142137 -1.944544,-1.0937282 -9.600953,-4.9939424 0.176776,-8.3526994 3.650757,3.655553 18.37132,2.104719 18.45971,3.065864 z"
+           id="path8569"
+           inkscape:connector-curvature="0" />
+      </g>
+      <use
+         height="1024"
+         width="32"
+         id="use8879"
+         transform="translate(0,11.080897)"
+         xlink:href="#g8573"
+         inkscape:tiled-clone-of="#g8573"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use8881"
+         transform="translate(0,22.161794)"
+         xlink:href="#g8573"
+         inkscape:tiled-clone-of="#g8573"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use8883"
+         transform="translate(0,33.242691)"
+         xlink:href="#g8573"
+         inkscape:tiled-clone-of="#g8573"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use8885"
+         transform="translate(0,44.323588)"
+         xlink:href="#g8573"
+         inkscape:tiled-clone-of="#g8573"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use8887"
+         transform="matrix(-1,0,0,-1,204.75,12.91873)"
+         xlink:href="#g8573"
+         inkscape:tiled-clone-of="#g8573"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use8889"
+         transform="matrix(-1,0,0,-1,204.75,1.8378271)"
+         xlink:href="#g8573"
+         inkscape:tiled-clone-of="#g8573"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use8891"
+         transform="matrix(-1,0,0,-1,204.75,-9.2430699)"
+         xlink:href="#g8573"
+         inkscape:tiled-clone-of="#g8573"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use8893"
+         transform="matrix(-1,0,0,-1,204.75,-20.323961)"
+         xlink:href="#g8573"
+         inkscape:tiled-clone-of="#g8573"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use8895"
+         transform="matrix(-1,0,0,-1,204.75,-31.404858)"
+         xlink:href="#g8573"
+         inkscape:tiled-clone-of="#g8573"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5903"
+       mask="url(#mask5996)">
+      <g
+         style="opacity:1"
+         inkscape:tile-y0="2.4015459"
+         inkscape:tile-x0="0.94063728"
+         inkscape:tile-h="33.897403"
+         inkscape:tile-w="30.549364"
+         inkscape:tile-cy="19.910612"
+         inkscape:tile-cx="16.215319"
+         transform="matrix(0.26036306,-0.10253996,0.10253996,0.26036306,-32.043667,28.271042)"
+         id="g4883">
+        <path
+           inkscape:transform-center-y="-0.050700504"
+           inkscape:transform-center-x="0.078680581"
+           transform="matrix(3.0883064,1.2162817,-1.2162816,3.0883064,147.44088,-49.189542)"
+           d="m 15.381953,4.5652729 4.158795,4.7088536 6.005168,-1.8457576 0.596741,6.2540211 5.943193,2.0365 -3.193248,5.410365 3.611119,5.140884 -5.763525,2.500133 -0.100279,6.281625 -6.13233,-1.365064 -3.773375,5.022999 L 12.575417,34.000978 6.5702491,35.846736 5.973508,29.592715 0.03031565,27.556214 3.2235633,22.14585 -0.38755559,17.004966 5.3759687,14.504832 5.476248,8.2232073 11.608579,9.5882716 z"
+           inkscape:randomized="0"
+           inkscape:rounded="0"
+           inkscape:flatsided="false"
+           sodipodi:arg2="-1.2962203"
+           sodipodi:arg1="-1.6103796"
+           sodipodi:r2="12.844581"
+           sodipodi:r1="17.085663"
+           sodipodi:cy="21.637552"
+           sodipodi:cx="16.058083"
+           sodipodi:sides="10"
+           id="path4903"
+           style="fill:#ffff00;fill-opacity:1;stroke:none;stroke-opacity:1;filter:url(#filter5392)"
+           sodipodi:type="star" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#fffeff;fill-opacity:1;stroke:none"
+           id="path5887"
+           sodipodi:cx="20.604536"
+           sodipodi:cy="28.656826"
+           sodipodi:rx="9.707305"
+           sodipodi:ry="9.707305"
+           d="m 30.311841,28.656826 c 0,5.361197 -4.346108,9.707305 -9.707305,9.707305 -5.361196,0 -9.707305,-4.346108 -9.707305,-9.707305 0,-5.361196 4.346109,-9.707305 9.707305,-9.707305 5.361197,0 9.707305,4.346109 9.707305,9.707305 z"
+           transform="matrix(3.3250558,1.3095217,-1.3095217,3.3250558,144.55294,-77.190201)" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path5078"
+           d="m 173.2431,11.27944 -9.24381,36.077518"
+           style="fill:none;stroke:#979797;stroke-width:3.57363176000000005px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+        <path
+           sodipodi:open="true"
+           sodipodi:end="5.7595865"
+           sodipodi:start="0.78539816"
+           transform="matrix(3.3250558,1.3095217,-1.3095217,3.3250558,144.55294,-77.190201)"
+           d="m 27.468637,35.520927 c -3.790938,3.790939 -9.937264,3.790939 -13.728202,0 -3.7909385,-3.790938 -3.7909385,-9.937264 0,-13.728202 3.790938,-3.790939 9.937264,-3.790939 13.728202,0 0.599863,0.599862 1.118505,1.27577 1.542672,2.010448"
+           sodipodi:ry="9.707305"
+           sodipodi:rx="9.707305"
+           sodipodi:cy="28.656826"
+           sodipodi:cx="20.604536"
+           id="path5332"
+           style="fill:none;stroke:#00a3ff;stroke-opacity:1;fill-opacity:1"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:nodetypes="cc"
+           inkscape:connector-curvature="0"
+           id="path5080"
+           d="m 194.50134,11.928712 16.79008,38.607613"
+           style="fill:none;stroke:#979797;stroke-width:1.78681576000000009;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+        <use
+           height="1024"
+           width="32"
+           transform="matrix(0.73284569,0,0,0.73284569,74.66776,1.9009257)"
+           id="use5084"
+           xlink:href="#path5082"
+           y="0"
+           x="0" />
+        <path
+           transform="matrix(3.3250558,1.3095217,-1.3095217,3.3250558,214.01605,-21.616869)"
+           d="m 20.823753,15.994534 0.240102,2.781965 2.237843,1.989807 -2.781964,0.240102 -1.989808,2.237843 -0.240102,-2.781965 -2.237843,-1.989807 2.781965,-0.240102 z"
+           inkscape:randomized="0"
+           inkscape:rounded="0"
+           inkscape:flatsided="false"
+           sodipodi:arg2="-0.54606446"
+           sodipodi:arg1="-1.2643603"
+           sodipodi:r2="1.6230471"
+           sodipodi:r1="3.8019745"
+           sodipodi:cy="19.619392"
+           sodipodi:cx="19.67684"
+           sodipodi:sides="4"
+           id="path5082"
+           style="fill:#fffc1e;fill-opacity:1;stroke:#ff1500;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           sodipodi:type="star" />
+        <g
+           transform="translate(114.99875,144.75028)"
+           id="g5051">
+          <path
+             sodipodi:type="arc"
+             style="fill:#515151;fill-opacity:1;stroke:none"
+             id="path4901"
+             sodipodi:cx="11.578723"
+             sodipodi:cy="6.3401155"
+             sodipodi:rx="2.9580679"
+             sodipodi:ry="2.9580679"
+             d="m 14.536791,6.3401155 c 0,1.6336958 -1.324372,2.9580679 -2.958068,2.9580679 -1.6336958,0 -2.9580679,-1.3243721 -2.9580679,-2.9580679 0,-1.6336957 1.3243721,-2.9580678 2.9580679,-2.9580678 1.633696,0 2.958068,1.3243721 2.958068,2.9580678 z"
+             transform="matrix(3.3250558,1.3095217,-1.3095217,3.3250558,27.011999,-201.1706)" />
+          <path
+             sodipodi:nodetypes="ccccccc"
+             inkscape:connector-curvature="0"
+             id="path8286-1"
+             transform="matrix(3.3250558,1.3095217,-1.3095217,3.3250558,28.569774,-196.79119)"
+             d="m 16.4375,4.15625 c -10.6504382,2.5109086 -14.0848753,6.420866 -9.15625,6.9375 -1.9847014,1.675118 -2.0770069,2.539355 1.125,2.875 -1.3182596,1.466512 -1.6328818,2.761507 1.15625,2.875 2.337398,-1.356211 17.226279,-4.659117 9.25,-6.875 0.245517,-1.1581333 2.561122,-2.4426774 -1.15625,-2.875 2.20007,-3.0361201 -0.625459,-3.0178044 -1.21875,-2.9375 z"
+             style="fill:#656565;fill-opacity:1;stroke:none" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path8569-7"
+             d="m 57.213919,-157.07626 c 0.0961,1.04513 -9.1818,2.6799 -12.09575,3.87263 -7.12607,2.91681 -5.62597,1.92873 -6.54073,1.41421 -1.94455,-1.09373 -9.60095,-4.99394 0.17678,-8.3527 3.65075,3.65555 18.37131,2.10472 18.4597,3.06586 z"
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             sodipodi:nodetypes="ssscs" />
+          <path
+             sodipodi:nodetypes="ssscs"
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             d="m 57.213919,-145.99536 c 0.0961,1.04512 -9.1818,2.6799 -12.09575,3.87262 -7.12607,2.91682 -5.62597,1.92873 -6.54073,1.41422 -1.94455,-1.09373 -9.60095,-4.99395 0.17678,-8.3527 3.65075,3.65555 18.37131,2.10471 18.4597,3.06586 z"
+             id="path3988"
+             inkscape:connector-curvature="0" />
+          <path
+             sodipodi:nodetypes="ssscs"
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             d="m 57.213919,-134.91446 c 0.0961,1.04512 -9.1818,2.67989 -12.09575,3.87262 -7.12607,2.91681 -5.62597,1.92873 -6.54073,1.41421 -1.94455,-1.09373 -9.60095,-4.99394 0.17678,-8.3527 3.65075,3.65556 18.37131,2.10472 18.4597,3.06587 z"
+             id="path3982"
+             inkscape:connector-curvature="0" />
+          <path
+             sodipodi:nodetypes="ssscs"
+             style="fill:#ffffff;fill-opacity:1;stroke:none"
+             d="m 59.057439,-132.33238 c -0.0961,-1.04512 9.1818,-2.6799 12.09575,-3.87262 7.12608,-2.91682 5.62597,-1.92873 6.54074,-1.41422 1.94454,1.09373 9.60095,4.99395 -0.17678,8.3527 -3.65076,-3.65555 -18.37132,-2.10472 -18.45971,-3.06586 z"
+             id="path3958"
+             inkscape:connector-curvature="0" />
+          <path
+             sodipodi:nodetypes="ssscs"
+             style="fill:#ffffff;fill-opacity:1;stroke:none"
+             d="m 59.057439,-143.41328 c -0.0961,-1.04512 9.1818,-2.67989 12.09575,-3.87262 7.12608,-2.91681 5.62597,-1.92873 6.54074,-1.41421 1.94454,1.09373 9.60095,4.99394 -0.17678,8.3527 -3.65076,-3.65556 -18.37132,-2.10472 -18.45971,-3.06587 z"
+             id="path3952"
+             inkscape:connector-curvature="0" />
+          <path
+             sodipodi:nodetypes="ssscs"
+             style="fill:#ffffff;fill-opacity:1;stroke:none"
+             d="m 59.057439,-154.49417 c -0.0961,-1.04512 9.1818,-2.67989 12.09575,-3.87262 7.12608,-2.91682 5.62597,-1.92873 6.54074,-1.41421 1.94454,1.09372 9.60095,4.99394 -0.17678,8.3527 -3.65076,-3.65556 -18.37132,-2.10472 -18.45971,-3.06587 z"
+             id="path3946"
+             inkscape:connector-curvature="0" />
+        </g>
+        <path
+           sodipodi:open="true"
+           sodipodi:end="8.8625906"
+           sodipodi:start="6.0768457"
+           transform="matrix(3.7528541,1.4780034,-1.4780034,3.7528541,163.63073,-86.953013)"
+           d="m 22.772358,28.013262 c 0.597553,2.854753 -1.232269,5.6534 -4.087022,6.250953 -2.160193,0.452169 -4.373762,-0.486674 -5.550182,-2.354006"
+           sodipodi:ry="5.2810111"
+           sodipodi:rx="5.2810111"
+           sodipodi:cy="29.095228"
+           sodipodi:cx="17.603371"
+           id="path5402"
+           style="fill:none;stroke:#ff0000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           sodipodi:type="arc" />
+        <g
+           id="g4334">
+          <g
+             id="text4286"
+             style="font-size:142.94526672000000644px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#8f8f8f;fill-opacity:1;stroke:none;font-family:Old Standard;-inkscape-font-specification:Old Standard"
+             transform="matrix(0.99755049,-0.06995008,0.06995008,0.99755049,0,0)">
+            <path
+               sodipodi:nodetypes="csscssscscccccssc"
+               inkscape:connector-curvature="0"
+               id="path4316"
+               style="font-size:32.16268539000000004px;font-weight:bold;font-family:Old Standard;-inkscape-font-specification:Old Standard Bold;fill:#8f8f8f;fill-opacity:1"
+               d="m 168.61363,43.409538 c 0,2.315711 1.67246,3.666546 3.40925,3.666546 1.25434,0 2.1549,-0.836231 2.1549,-1.929761 0,-1.093531 -0.61109,-1.672461 -1.44732,-2.251388 -0.57893,-0.418115 -0.90056,-1.029207 -0.90056,-1.929761 0,-1.382995 1.19002,-2.637341 2.86248,-2.637341 2.57301,0 3.24843,2.219228 3.24843,4.245475 0,3.28059 -2.4122,5.853611 -4.92089,8.26581 -3.98817,3.827356 -4.14899,6.336051 -4.14899,8.233647 l 0,1.511647 1.28651,0 0,-2.058412 c 0.24291,-2.388236 -0.0323,0.06431 0.32163,-2.347881 0.67541,-2.54085 2.9268,-4.084662 4.27764,-4.824403 3.6987,-1.961922 8.0085,-4.309804 8.0085,-8.26581 0,-3.377079 -2.31571,-5.917934 -7.20444,-5.917934 -3.956,0 -6.94714,2.798157 -6.94714,6.239561" />
+            <path
+               sodipodi:nodetypes="csscssscscccccssc"
+               inkscape:connector-curvature="0"
+               id="path4318"
+               style="font-size:32.16268539000000004px;font-weight:bold;font-family:Old Standard;-inkscape-font-specification:Old Standard Bold;fill:#8f8f8f;fill-opacity:1"
+               d="m 187.2705,43.409538 c 0,2.315711 1.67246,3.666546 3.40925,3.666546 1.25434,0 2.1549,-0.836231 2.1549,-1.929761 0,-1.093531 -0.61109,-1.672461 -1.44732,-2.251388 -0.57893,-0.418115 -0.90056,-1.029207 -0.90056,-1.929761 0,-1.382995 1.19002,-2.637341 2.86248,-2.637341 2.57301,0 3.24843,2.219228 3.24843,4.245475 0,3.28059 -2.4122,5.853611 -4.92089,8.26581 -3.98817,3.827356 -4.14899,6.336051 -4.14899,8.233647 l 0,1.511647 1.28651,0 0,-2.058412 c 0.24513,-2.407375 0.0124,-0.05094 0.32163,-2.347881 0.67541,-2.54085 2.9268,-4.084662 4.27764,-4.824403 3.6987,-1.961922 8.0085,-4.309804 8.0085,-8.26581 0,-3.377079 -2.31571,-5.917934 -7.20444,-5.917934 -3.956,0 -6.94714,2.798157 -6.94714,6.239561" />
+            <path
+               id="path4320"
+               style="font-size:32.16268539000000004px;font-weight:bold;font-family:Old Standard;-inkscape-font-specification:Old Standard Bold;fill:#8f8f8f;fill-opacity:1"
+               d="m 210.94475,55.952985 0,-13.636979 c 0,-1.543807 0.45028,-4.116823 2.25139,-4.116823 1.80111,0 2.25139,2.573016 2.25139,4.116823 l 0,13.636979 c 0,1.543807 -0.45028,4.116824 -2.25139,4.116824 -1.80111,0 -2.25139,-2.573017 -2.25139,-4.116824 m -5.46765,-6.818489 c 0,5.403325 2.83032,11.964519 7.71904,11.964519 4.88872,0 7.71904,-6.561194 7.71904,-11.964519 0,-5.403326 -2.83032,-11.964519 -7.71904,-11.964519 -4.88872,0 -7.71904,6.561193 -7.71904,11.964519" />
+          </g>
+          <g
+             transform="matrix(0.99755049,-0.06995008,0.06995008,0.99755049,3.6046549e-7,3.2595926e-7)"
+             style="font-size:142.94526672px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Old Standard;-inkscape-font-specification:Old Standard"
+             id="g4322">
+            <path
+               sodipodi:nodetypes="cccsscssccsscscc"
+               inkscape:connector-curvature="0"
+               d="m 169.10197,58.588532 0,2.106119 1.79245,0 0,-2.867905 c 0,-0.89622 0.62736,-1.433953 1.43396,-1.433953 1.16508,0 1.79244,0.627355 2.77827,1.702819 1.43396,1.613194 3.45045,3.316015 5.82543,3.316015 5.46695,0 7.34901,-5.198082 7.34901,-9.365502 0,-1.120274 -0.0896,-2.19574 -0.26886,-3.495259 l -1.38915,0 c 0.13445,1.030653 0.22406,1.792442 0.22406,3.002338 0,1.658006 -1.52357,3.226392 -3.76413,3.226392 -1.70281,0 -3.09195,-0.403298 -4.07779,-0.716976 -0.98585,-0.358487 -2.77829,-0.716976 -3.85375,-0.716976 -1.12028,0 -2.46461,0.358489 -3.62969,1.29952 l -0.17925,-0.08963"
+               style="font-size:32.16268539px;font-weight:bold;font-family:Old Standard;-inkscape-font-specification:Old Standard Bold"
+               id="path4324" />
+            <path
+               sodipodi:nodetypes="cccsscssccsscscc"
+               inkscape:connector-curvature="0"
+               d="m 187.71071,58.689414 0,1.98227 1.68704,0 0,-2.69926 c 0,-0.843518 0.59047,-1.349631 1.34964,-1.349631 1.09657,0 1.68704,0.590464 2.6149,1.602686 1.34963,1.518332 3.24755,3.12102 5.48287,3.12102 5.14547,0 6.91685,-4.892414 6.91685,-8.814773 0,-1.054397 -0.0843,-2.066621 -0.25304,-3.289723 l -1.30747,0 c 0.12655,0.970046 0.21089,1.687039 0.21089,2.825789 0,1.560508 -1.43398,3.036667 -3.54278,3.036667 -1.60269,0 -2.91014,-0.379583 -3.83801,-0.674815 -0.92787,-0.337407 -2.61491,-0.674815 -3.62713,-0.674815 -1.0544,0 -2.31968,0.337408 -3.41625,1.223102 l -0.16871,-0.08436"
+               style="font-size:32.16268539px;font-weight:bold;font-family:Old Standard;-inkscape-font-specification:Old Standard Bold"
+               id="path4326" />
+          </g>
+        </g>
+      </g>
+      <path
+         inkscape:tile-y0="20.327983"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-h="7.625"
+         inkscape:tile-w="11.25"
+         inkscape:tile-cy="24.140483"
+         inkscape:tile-cx="22.125"
+         inkscape:connector-curvature="0"
+         id="path5404-9"
+         d="m 16.5,25.077983 1.875,1.875 2.625,1 3.375,-0.875 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+    </g>
+    <g
+       id="g5924"
+       mask="url(#mask6000)">
+      <use
+         height="1024"
+         width="32"
+         id="use5296"
+         transform="translate(0,31.984901)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="ccccccc"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="M 16.5,57.102983 17.104874,61.124058 21,59.977983 l 3.375,-0.875 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5813"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5928"
+       mask="url(#mask6004)">
+      <use
+         height="1024"
+         width="32"
+         id="use5298"
+         transform="translate(0,64.90103)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="ccccccc"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,89.127983 1.875,1.875 2.537405,4.810379 3.462595,-4.685379 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5815"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5932"
+       mask="url(#mask6008)">
+      <use
+         height="1024"
+         width="32"
+         id="use5300"
+         transform="translate(0,95.954702)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="ccccccc"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,121.15298 1.875,1.875 2.625,1 4.864114,0.8331 0.885886,-3.5831 1,-2.625 -0.125,-2.25"
+         id="use5817"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5936"
+       mask="url(#mask6012)">
+      <use
+         height="1024"
+         width="32"
+         id="use5302"
+         transform="translate(0,127.93959)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="ccccccc"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,153.17798 1.875,1.875 2.625,1 3.375,-0.875 3.732721,-1.04285 -0.357721,-3.45715 -0.125,-2.25"
+         id="use5819"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5940"
+       mask="url(#mask6016)">
+      <use
+         height="1024"
+         width="32"
+         id="use5304"
+         transform="translate(0,159.9992)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="ccccccc"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,185.20298 1.875,1.875 2.625,1 3.375,-0.875 2.375,-1.875 2.751898,-2.44981 -1.876898,-2.42519"
+         id="use5821"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5944"
+       mask="url(#mask6020)">
+      <use
+         height="1024"
+         width="32"
+         id="use5306"
+         transform="translate(0,192.04696)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,217.22798 1.875,1.875 2.625,1 3.375,-0.875 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5823"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5948"
+       mask="url(#mask6024)">
+      <use
+         height="1024"
+         width="32"
+         id="use5308"
+         transform="translate(0,224.97491)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="ccccccc"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,249.25298 1.875,1.875 2.625,1 3.375,-0.875 2.375,-1.875 -0.182531,-2.75639 1.057531,-2.11861"
+         id="use5825"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5952"
+       mask="url(#mask6028)">
+      <use
+         height="1024"
+         width="32"
+         id="use5310"
+         transform="translate(0,255.95389)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="ccccccc"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,281.27798 1.875,1.875 2.625,1 3.375,-0.875 1.061076,-3.14513 2.313924,-1.35487 -0.125,-2.25"
+         id="use5827"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5956"
+       mask="url(#mask6032)">
+      <use
+         height="1024"
+         width="32"
+         id="use5312"
+         transform="translate(0,287.87592)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="ccccccc"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,313.30298 1.875,1.875 2.625,1 3.02462,-2.6707 2.72538,-0.0793 1,-2.625 -0.125,-2.25"
+         id="use5829"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5960"
+       mask="url(#mask6036)">
+      <use
+         height="1024"
+         width="32"
+         id="use5314"
+         transform="translate(0,319.92368)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="ccccccc"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,345.32798 1.875,1.875 3.325759,-1.62785 2.674241,1.75285 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5831"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5964"
+       mask="url(#mask6040)">
+      <use
+         height="1024"
+         width="32"
+         id="use5316"
+         transform="translate(0,351.92042)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="ccccccc"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,377.35298 3.188924,0.0793 1.311076,2.7957 3.375,-0.875 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5833"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5968"
+       mask="url(#mask6044)">
+      <use
+         height="1024"
+         width="32"
+         id="use5318"
+         transform="translate(0,384.8994)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="ccccccc"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,409.37798 1.130443,3.49551 L 21,412.25298 l 3.375,-0.875 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5835"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5972"
+       mask="url(#mask6048)">
+      <use
+         height="1024"
+         width="32"
+         id="use5320"
+         transform="translate(0,415.87838)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,441.40298 1.875,1.875 2.625,1 3.375,-0.875 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5837"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5976"
+       mask="url(#mask6052)">
+      <use
+         height="1024"
+         width="32"
+         id="use5322"
+         transform="translate(0,447.92614)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,473.42798 1.875,1.875 2.625,1 3.375,-0.875 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5839"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5980"
+       mask="url(#mask6056)">
+      <use
+         height="1024"
+         width="32"
+         id="use5324"
+         transform="translate(0,479.92288)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,505.45298 1.875,1.875 2.625,1 3.375,-0.875 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5841"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5984"
+       mask="url(#mask6060)">
+      <use
+         height="1024"
+         width="32"
+         id="use5326"
+         transform="translate(0,510.96473)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,537.47798 1.875,1.875 2.625,1 3.375,-0.875 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5843"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5988"
+       mask="url(#mask6064)">
+      <use
+         height="1024"
+         width="32"
+         id="use5328"
+         transform="translate(0,543.95554)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,569.50298 1.875,1.875 2.625,1 3.375,-0.875 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5845"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       id="g5992"
+       mask="url(#mask6068)">
+      <use
+         height="1024"
+         width="32"
+         id="use5330"
+         transform="translate(0,575.95228)"
+         xlink:href="#g4883"
+         inkscape:tiled-clone-of="#g4883"
+         y="0"
+         x="0" />
+      <path
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         d="m 16.5,601.52798 1.875,1.875 2.625,1 3.375,-0.875 2.375,-1.875 1,-2.625 -0.125,-2.25"
+         id="use5847"
+         inkscape:connector-curvature="0"
+         inkscape:tile-x0="16.5"
+         inkscape:tile-y0="20.327983" />
+    </g>
+    <g
+       transform="matrix(0.26036306,-0.10253996,0.10253996,0.26036306,-32.031584,604.21977)"
+       style="display:inline"
+       id="g4334-0">
+      <g
+         id="text4286-6"
+         style="font-size:142.94526672px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Old Standard;-inkscape-font-specification:Old Standard"
+         transform="matrix(0.99755049,-0.06995008,0.06995008,0.99755049,0,0)">
+        <path
+           sodipodi:nodetypes="csscssscscccccssc"
+           inkscape:connector-curvature="0"
+           id="path4316-7"
+           style="font-size:32.16268539px;font-weight:bold;fill:#ffffff;fill-opacity:1;font-family:Old Standard;-inkscape-font-specification:Old Standard Bold"
+           d="m 168.61363,43.409538 c 0,2.315711 1.67246,3.666546 3.40925,3.666546 1.25434,0 2.1549,-0.836231 2.1549,-1.929761 0,-1.093531 -0.61109,-1.672461 -1.44732,-2.251388 -0.57893,-0.418115 -0.90056,-1.029207 -0.90056,-1.929761 0,-1.382995 1.19002,-2.637341 2.86248,-2.637341 2.57301,0 3.24843,2.219228 3.24843,4.245475 0,3.28059 -2.4122,5.853611 -4.92089,8.26581 -3.98817,3.827356 -4.14899,6.336051 -4.14899,8.233647 l 0,1.511647 1.28651,0 0,-2.058412 c 0.24291,-2.388236 -0.0323,0.06431 0.32163,-2.347881 0.67541,-2.54085 2.9268,-4.084662 4.27764,-4.824403 3.6987,-1.961922 8.0085,-4.309804 8.0085,-8.26581 0,-3.377079 -2.31571,-5.917934 -7.20444,-5.917934 -3.956,0 -6.94714,2.798157 -6.94714,6.239561" />
+        <path
+           sodipodi:nodetypes="csscssscscccccssc"
+           inkscape:connector-curvature="0"
+           id="path4318-1"
+           style="font-size:32.16268539px;font-weight:bold;fill:#ffffff;fill-opacity:1;font-family:Old Standard;-inkscape-font-specification:Old Standard Bold"
+           d="m 187.2705,43.409538 c 0,2.315711 1.67246,3.666546 3.40925,3.666546 1.25434,0 2.1549,-0.836231 2.1549,-1.929761 0,-1.093531 -0.61109,-1.672461 -1.44732,-2.251388 -0.57893,-0.418115 -0.90056,-1.029207 -0.90056,-1.929761 0,-1.382995 1.19002,-2.637341 2.86248,-2.637341 2.57301,0 3.24843,2.219228 3.24843,4.245475 0,3.28059 -2.4122,5.853611 -4.92089,8.26581 -3.98817,3.827356 -4.14899,6.336051 -4.14899,8.233647 l 0,1.511647 1.28651,0 0,-2.058412 c 0.24513,-2.407375 0.0124,-0.05094 0.32163,-2.347881 0.67541,-2.54085 2.9268,-4.084662 4.27764,-4.824403 3.6987,-1.961922 8.0085,-4.309804 8.0085,-8.26581 0,-3.377079 -2.31571,-5.917934 -7.20444,-5.917934 -3.956,0 -6.94714,2.798157 -6.94714,6.239561" />
+      </g>
+      <g
+         transform="matrix(0.99755049,-0.06995008,0.06995008,0.99755049,3.6046549e-7,3.2595926e-7)"
+         style="font-size:142.94526672px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Old Standard;-inkscape-font-specification:Old Standard"
+         id="g4322-2">
+        <path
+           sodipodi:nodetypes="cccsscssccsscscc"
+           inkscape:connector-curvature="0"
+           d="m 169.10197,58.588532 0,2.106119 1.79245,0 0,-2.867905 c 0,-0.89622 0.62736,-1.433953 1.43396,-1.433953 1.16508,0 1.79244,0.627355 2.77827,1.702819 1.43396,1.613194 3.45045,3.316015 5.82543,3.316015 5.46695,0 7.34901,-5.198082 7.34901,-9.365502 0,-1.120274 -0.0896,-2.19574 -0.26886,-3.495259 l -1.38915,0 c 0.13445,1.030653 0.22406,1.792442 0.22406,3.002338 0,1.658006 -1.52357,3.226392 -3.76413,3.226392 -1.70281,0 -3.09195,-0.403298 -4.07779,-0.716976 -0.98585,-0.358487 -2.77829,-0.716976 -3.85375,-0.716976 -1.12028,0 -2.46461,0.358489 -3.62969,1.29952 l -0.17925,-0.08963"
+           style="font-size:32.16268539px;font-weight:bold;fill:#ffffff;fill-opacity:1;font-family:Old Standard;-inkscape-font-specification:Old Standard Bold"
+           id="path4324-4" />
+        <path
+           sodipodi:nodetypes="cccsscssccsscscc"
+           inkscape:connector-curvature="0"
+           d="m 187.71071,58.689414 0,1.98227 1.68704,0 0,-2.69926 c 0,-0.843518 0.59047,-1.349631 1.34964,-1.349631 1.09657,0 1.68704,0.590464 2.6149,1.602686 1.34963,1.518332 3.24755,3.12102 5.48287,3.12102 5.14547,0 6.91685,-4.892414 6.91685,-8.814773 0,-1.054397 -0.0843,-2.066621 -0.25304,-3.289723 l -1.30747,0 c 0.12655,0.970046 0.21089,1.687039 0.21089,2.825789 0,1.560508 -1.43398,3.036667 -3.54278,3.036667 -1.60269,0 -2.91014,-0.379583 -3.83801,-0.674815 -0.92787,-0.337407 -2.61491,-0.674815 -3.62713,-0.674815 -1.0544,0 -2.31968,0.337408 -3.41625,1.223102 l -0.16871,-0.08436"
+           style="font-size:32.16268539px;font-weight:bold;fill:#ffffff;fill-opacity:1;font-family:Old Standard;-inkscape-font-specification:Old Standard Bold"
+           id="path4326-6" />
+      </g>
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-240.92432"
+       y="549.20013"
+       id="text4330"
+       transform="rotate(-25.327322)"><tspan
+         sodipodi:role="line"
+         id="tspan4332"
+         x="-240.92432"
+         y="549.20013"
+         style="font-weight:bold;font-size:9px;line-height:1.25;-inkscape-font-specification:'Old Standard Bold'">11</tspan></text>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="frame"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none"
+       id="rect20004"
+       width="32"
+       height="32"
+       x="-2.6098915e-15"
+       y="0"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="frame-0.5"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       id="rect20004-7"
+       width="31"
+       height="31"
+       x="0.5"
+       y="0.5"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,32)"
+       id="use20175-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,64)"
+       id="use20177-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,96)"
+       id="use20179-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,128)"
+       id="use20181-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,160)"
+       id="use20183-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,192)"
+       id="use20185-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,224)"
+       id="use20187-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,256)"
+       id="use20189-6"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,288)"
+       id="use20191-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,320)"
+       id="use20193-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,352)"
+       id="use20195-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,384)"
+       id="use20197-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,416)"
+       id="use20199-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,448)"
+       id="use20201-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,480)"
+       id="use20203-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,512)"
+       id="use20205-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,544)"
+       id="use20207-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,576)"
+       id="use20209-7"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1"
+       id="path3296"
+       sodipodi:cx="13.082203"
+       sodipodi:cy="31.332769"
+       sodipodi:rx="3.5490334"
+       sodipodi:ry="2.8754942"
+       d="m 16.631236,31.332769 a 3.5490334,2.8754942 0 1 1 -7.0980665,0 3.5490334,2.8754942 0 1 1 7.0980665,0 z"
+       transform="matrix(0.98618401,0,0,0.86941576,-0.40145933,3.2587965)"
+       inkscape:tile-cx="12.253232"
+       inkscape:tile-cy="30.529706"
+       inkscape:tile-w="8.5487669"
+       inkscape:tile-h="7.0462566"
+       inkscape:tile-x0="7.9788488"
+       inkscape:tile-y0="27.006578" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       id="use3526"
+       transform="translate(0,33)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,66)"
+       id="use3528"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,97)"
+       id="use3530"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,128)"
+       id="use3532"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,160)"
+       id="use3534"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,193)"
+       id="use3536"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,226)"
+       id="use3538"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,257)"
+       id="use3540"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,288)"
+       id="use3542"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,320)"
+       id="use3544"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,353)"
+       id="use3546"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,386)"
+       id="use3548"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,417)"
+       id="use3550"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,448)"
+       id="use3552"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,480)"
+       id="use3554"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,510)"
+       id="use3556"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,543)"
+       id="use3558"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,576)"
+       id="use3560"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="frame and hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,0 0,32 9.6875,0 C 9.2558025,31.584271 9,31.057361 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.557361 -0.255803,1.084271 -0.6875,1.5 L 32,32 32,0 0,0 z"
+       id="rect13136"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,32 0,32 9.0625,0 C 9.0158769,63.837256 9,63.672589 9,63.5 9,62.119288 10.567003,61 12.5,61 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.172589 -0.01588,0.337256 -0.0625,0.5 L 32,64 32,32 0,32 z"
+       id="use13138"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,64 0,32 10.0625,0 c 0.326362,-1.139208 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.860792 3.4375,2 L 32,96 32,64 0,64 z"
+       id="use13140"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,96 0,32 9.0625,0 C 9.0158769,127.83726 9,127.67259 9,127.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,128 32,96 0,96 z"
+       id="use13142"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,128 0,32 9.6875,0 C 9.2558025,159.58427 9,159.05736 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,160 32,128 0,128 z"
+       id="use13144"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,160 0,32 9.6875,0 C 9.2558025,191.58427 9,191.05736 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,192 32,160 0,160 z"
+       id="use13146"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,192 0,32 9.0625,0 C 9.0158769,223.83726 9,223.67259 9,223.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,224 32,192 0,192 z"
+       id="use13148"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,224 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,256 32,224 0,224 z"
+       id="use13150"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,256 0,32 9.0625,0 C 9.0158769,287.83726 9,287.67259 9,287.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,288 32,256 0,256 z"
+       id="use13152"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,288 0,32 9.6875,0 C 9.2558025,319.58427 9,319.05736 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,320 32,288 0,288 z"
+       id="use13154"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,320 0,32 9.6875,0 C 9.2558025,351.58427 9,351.05736 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,352 32,320 0,320 z"
+       id="use13156"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,352 0,32 9.0625,0 C 9.0158769,383.83726 9,383.67259 9,383.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,384 32,352 0,352 z"
+       id="use13158"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,384 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,416 32,384 0,384 z"
+       id="use13160"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,416 0,32 9.0625,0 C 9.0158769,447.83726 9,447.67259 9,447.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,448 32,416 0,416 z"
+       id="use13162"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,448 0,32 9.6875,0 C 9.2558025,479.58427 9,479.05736 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,480 32,448 0,448 z"
+       id="use13164"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,480 0,32 9.6875,0 C 9.2558025,511.58427 9,511.05736 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,512 32,480 0,480 z"
+       id="use13166"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,512 0,32 32,0 0,-32 -32,0 z m 12.5,26 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use13168"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,544 0,32 12.5,0 c -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 l 19.5,0 0,-32 -32,0 z"
+       id="use13170"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,576 0,32 9.6875,0 C 9.2558025,607.58427 9,607.05736 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,608 32,576 0,576 z"
+       id="use13172"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="frame-0.5 and hand"
+     style="display:inline" />
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/mechanicaltoy.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,5451 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="mechanicaltoy.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="mechanicaltoy.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title30435">mechanical toy with key</title>
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient8520"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#ffff00;stop-opacity:1;"
+         offset="0"
+         id="stop8522" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8510"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop8512" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8500"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#ffff00;stop-opacity:1;"
+         offset="0"
+         id="stop8502" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="6.970816"
+     inkscape:cx="48.21343"
+     inkscape:cy="1049.3056"
+     inkscape:document-units="px"
+     inkscape:current-layer="g20401"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>mechanical toy with key</dc:title>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat mechanical toy with key</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:date />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="frame"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#202020;fill-opacity:1;stroke:none"
+       id="rect20004"
+       width="32"
+       height="32"
+       x="-2.6098915e-15"
+       y="0"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:label="template"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="47.098183"
+       id="text4913"><tspan
+         sodipodi:role="line"
+         id="tspan4915"
+         x="-15"
+         y="47.098183"
+         style="font-size:8px;line-height:1.25">01-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="79.098183"
+       id="text4917"><tspan
+         sodipodi:role="line"
+         id="tspan4919"
+         x="-15"
+         y="79.098183"
+         style="font-size:8px;line-height:1.25">02-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="111.09818"
+       id="text4921"><tspan
+         sodipodi:role="line"
+         id="tspan4923"
+         x="-15"
+         y="111.09818"
+         style="font-size:8px;line-height:1.25">03v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="143.09818"
+       id="text4925"><tspan
+         sodipodi:role="line"
+         id="tspan4927"
+         x="-15"
+         y="143.09818"
+         style="font-size:8px;line-height:1.25">04-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="175.09818"
+       id="text4929"><tspan
+         sodipodi:role="line"
+         id="tspan4931"
+         x="-15"
+         y="175.09818"
+         style="font-size:8px;line-height:1.25">05-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="207.09818"
+       id="text4933"><tspan
+         sodipodi:role="line"
+         id="tspan4935"
+         x="-15"
+         y="207.09818"
+         style="font-size:8px;line-height:1.25">06-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="239.09818"
+       id="text4937"><tspan
+         sodipodi:role="line"
+         id="tspan4939"
+         x="-15"
+         y="239.09818"
+         style="font-size:8px;line-height:1.25">07-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="271.09821"
+       id="text4941"><tspan
+         sodipodi:role="line"
+         id="tspan4943"
+         x="-15"
+         y="271.09821"
+         style="font-size:8px;line-height:1.25">08v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="303.09821"
+       id="text4945"><tspan
+         sodipodi:role="line"
+         id="tspan4947"
+         x="-15"
+         y="303.09821"
+         style="font-size:8px;line-height:1.25">09-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="335.09821"
+       id="text4949"><tspan
+         sodipodi:role="line"
+         id="tspan4951"
+         x="-15"
+         y="335.09821"
+         style="font-size:8px;line-height:1.25">10-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="367.09821"
+       id="text4953"><tspan
+         sodipodi:role="line"
+         id="tspan4955"
+         x="-15"
+         y="367.09821"
+         style="font-size:8px;line-height:1.25">11-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="399.1622"
+       id="text4957"><tspan
+         sodipodi:role="line"
+         id="tspan4959"
+         x="-15"
+         y="399.1622"
+         style="font-size:8px;line-height:1.25">12-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="431.09821"
+       id="text4961"><tspan
+         sodipodi:role="line"
+         id="tspan4963"
+         x="-15"
+         y="431.09821"
+         style="font-size:8px;line-height:1.25">13v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="463.1022"
+       id="text4965"><tspan
+         sodipodi:role="line"
+         id="tspan4967"
+         x="-15"
+         y="463.1022"
+         style="font-size:8px;line-height:1.25">14-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="495.09821"
+       id="text4969"><tspan
+         sodipodi:role="line"
+         id="tspan4971"
+         x="-15"
+         y="495.09821"
+         style="font-size:8px;line-height:1.25">15-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="527.09821"
+       id="text4973"><tspan
+         sodipodi:role="line"
+         id="tspan4975"
+         x="-15"
+         y="527.09821"
+         style="font-size:8px;line-height:1.25">16-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="559.09821"
+       id="text4977"><tspan
+         sodipodi:role="line"
+         id="tspan4979"
+         x="-15"
+         y="559.09821"
+         style="font-size:8px;line-height:1.25">17^</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="591.09821"
+       id="text4981"><tspan
+         sodipodi:role="line"
+         id="tspan4983"
+         x="-15"
+         y="591.09821"
+         style="font-size:8px;line-height:1.25">18-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="623.09821"
+       id="text4985"><tspan
+         sodipodi:role="line"
+         id="tspan4987"
+         x="-15"
+         y="623.09821"
+         style="font-size:8px;line-height:1.25">19x</tspan></text>
+    <path
+       sodipodi:type="arc"
+       style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       id="path21641"
+       sodipodi:cx="-9.4834366"
+       sodipodi:cy="79.178726"
+       sodipodi:rx="9.4834366"
+       sodipodi:ry="9.4834366"
+       d="m 0,79.178726 a 9.4834366,9.4834366 0 1 1 -18.966873,0 9.4834366,9.4834366 0 1 1 18.966873,0 z"
+       transform="matrix(0.77053977,0,0,0.77053977,-0.83600996,47.351825)" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-61.777813"
+       y="111.09818"
+       id="text21643"><tspan
+         sodipodi:role="line"
+         id="tspan21645"
+         x="-61.777813"
+         y="111.09818"
+         style="font-size:10px;line-height:1.25">keyframe</tspan></text>
+    <path
+       transform="matrix(0.77053977,0,0,0.77053977,-0.83600996,207.35182)"
+       d="m 0,79.178726 a 9.4834366,9.4834366 0 1 1 -18.966873,0 9.4834366,9.4834366 0 1 1 18.966873,0 z"
+       sodipodi:ry="9.4834366"
+       sodipodi:rx="9.4834366"
+       sodipodi:cy="79.178726"
+       sodipodi:cx="-9.4834366"
+       id="path21647"
+       style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       sodipodi:type="arc" />
+    <text
+       id="text21649"
+       y="271.09818"
+       x="-61.777813"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       xml:space="preserve"><tspan
+         style="font-size:10px;line-height:1.25"
+         y="271.09818"
+         x="-61.777813"
+         id="tspan21651"
+         sodipodi:role="line">keyframe</tspan></text>
+    <path
+       sodipodi:type="arc"
+       style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       id="path21653"
+       sodipodi:cx="-9.4834366"
+       sodipodi:cy="79.178726"
+       sodipodi:rx="9.4834366"
+       sodipodi:ry="9.4834366"
+       d="m 0,79.178726 a 9.4834366,9.4834366 0 1 1 -18.966873,0 9.4834366,9.4834366 0 1 1 18.966873,0 z"
+       transform="matrix(0.77053977,0,0,0.77053977,-0.83600996,367.35182)" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-61.777813"
+       y="431.09818"
+       id="text21655"><tspan
+         sodipodi:role="line"
+         id="tspan21657"
+         x="-61.777813"
+         y="431.09818"
+         style="font-size:10px;line-height:1.25">keyframe</tspan></text>
+    <path
+       transform="matrix(0.77053977,0,0,0.77053977,-0.83600996,495.35182)"
+       d="m 0,79.178726 a 9.4834366,9.4834366 0 1 1 -18.966873,0 9.4834366,9.4834366 0 1 1 18.966873,0 z"
+       sodipodi:ry="9.4834366"
+       sodipodi:rx="9.4834366"
+       sodipodi:cy="79.178726"
+       sodipodi:cx="-9.4834366"
+       id="path21659"
+       style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       sodipodi:type="arc" />
+    <text
+       id="text21661"
+       y="559.09814"
+       x="-61.777813"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       xml:space="preserve"><tspan
+         style="font-size:10px;line-height:1.25"
+         y="559.09814"
+         x="-61.777813"
+         id="tspan21663"
+         sodipodi:role="line">keyframe</tspan></text>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer11"
+     inkscape:label="static-background"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <g
+       id="g22026"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0">
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="0"
+         x="-2.6098915e-15"
+         height="32"
+         width="32"
+         id="rect20004-9"
+         style="fill:#000000;fill-opacity:0.1254902;stroke:none;display:inline" />
+      <path
+         sodipodi:nodetypes="ccc"
+         inkscape:connector-curvature="0"
+         id="path21931"
+         d="M 11.411409,30.269548 C 16.697918,-18.160073 27.152287,10.142826 28.919324,22.453513 27.580836,16.456225 16.563548,19.796315 11.411409,30.269548 z"
+         style="fill:none;stroke:#ffff00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,32)"
+       id="use22032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,64)"
+       id="use22034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,96)"
+       id="use22036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,128)"
+       id="use22038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,160)"
+       id="use22040"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,192)"
+       id="use22042"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,224)"
+       id="use22044"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,256)"
+       id="use22046"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,288)"
+       id="use22048"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,320)"
+       id="use22050"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,352)"
+       id="use22052"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,384)"
+       id="use22054"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,416)"
+       id="use22056"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,448)"
+       id="use22058"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,480)"
+       id="use22060"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,512)"
+       id="use22062"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,544)"
+       id="use22064"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g22026"
+       xlink:href="#g22026"
+       transform="translate(0,576)"
+       id="use22066"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="static-hat"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <g
+       id="g5869"
+       inkscape:tile-cx="20.868811"
+       inkscape:tile-cy="20.343065"
+       inkscape:tile-w="9.5355623"
+       inkscape:tile-h="10.786127"
+       inkscape:tile-x0="16.101029"
+       inkscape:tile-y0="14.950002"
+       transform="translate(11.507295,-2.9991281)">
+      <path
+         d="m 25.636592,22.140753 a 3.5953758,3.5953758 0 1 1 -7.190752,0 3.5953758,3.5953758 0 1 1 7.190752,0 z"
+         sodipodi:ry="3.5953758"
+         sodipodi:rx="3.5953758"
+         sodipodi:cy="22.140753"
+         sodipodi:cx="22.041216"
+         id="path5867"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc"
+         transform="translate(-9.3294287,-1.625732)" />
+      <path
+         d="m 24.229705,19.014339 a 4.0643377,4.0643377 0 1 1 -8.128676,0 4.0643377,4.0643377 0 1 1 8.128676,0 z"
+         sodipodi:ry="4.0643377"
+         sodipodi:rx="4.0643377"
+         sodipodi:cy="19.014339"
+         sodipodi:cx="20.165367"
+         id="path5865"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc"
+         transform="translate(-12.438598,3.5224194)" />
+      <path
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="M 4.47907,22.567681 C -8.2558309,19.045262 -2.8367241,25.54819 -2.8367241,25.54819"
+         id="path21517"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cc" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,32.000002)"
+       id="use5951"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,64.999999)"
+       id="use5953"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,96.000007)"
+       id="use5955"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,128.00001)"
+       id="use5957"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,160.00001)"
+       id="use5959"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,192.00001)"
+       id="use5961"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,225)"
+       id="use5963"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,256.00002)"
+       id="use5965"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,288.00002)"
+       id="use5967"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,320.00002)"
+       id="use5969"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,352.00002)"
+       id="use5971"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,385)"
+       id="use5973"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,416.00003)"
+       id="use5975"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,448.00003)"
+       id="use5977"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,480.00003)"
+       id="use5979"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,511)"
+       id="use5981"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,544.00004)"
+       id="use5983"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5869"
+       xlink:href="#g5869"
+       transform="translate(-1.8646876e-7,576.00004)"
+       id="use5985"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer9"
+     inkscape:label="dynamic-hat"
+     style="display:inline">
+    <g
+       id="g20122"
+       inkscape:tile-cx="57.672323"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="35.344645"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="-8.9284049e-17">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="M 14.40625,14.25 12.5,10.96875 c 0.22668,-0.07486 0.442281,-0.157715 0.65625,-0.28125 0.168639,-0.09736 0.322588,-0.224196 0.46875,-0.34375 0.173559,-0.06631 0.365756,-0.123202 0.53125,-0.21875 C 15.867998,9.1367217 16.440881,6.8941555 15.4375,5.15625 14.684965,3.8528208 13.236908,3.1855595 11.84375,3.34375 11.379364,3.3964802 10.927937,3.5341805 10.5,3.78125 10.331361,3.878614 10.177563,4.0048652 10.03125,4.125 9.8578366,4.1907511 9.6654943,4.2482019 9.5,4.34375 8.9717375,4.6487425 8.5812233,5.1007526 8.28125,5.59375 l -0.875,0.5 C 6.7801229,6.0786849 6.1394075,6.2294223 5.5625,6.5625 5.3485315,6.6860348 5.1465857,6.8092908 4.96875,6.96875 4.8449567,7.0221221 4.7131927,7.0560397 4.59375,7.125 2.8820019,8.1132783 2.2778697,10.355844 3.28125,12.09375 4.2846302,13.831655 6.5382519,14.425778 8.25,13.4375 c 0.1232597,-0.07116 0.2011874,-0.166747 0.3125,-0.25 0.2266798,-0.07486 0.4422815,-0.188965 0.65625,-0.3125 0.2012917,-0.116216 0.3933496,-0.258868 0.5625,-0.40625 l 1.9375,3.34375 M 11.0625,5.4375 C 11.858778,5.3450284 12.689113,5.7450216 13.125,6.5 13.606643,7.3342302 13.438486,8.3267676 12.8125,8.96875 12.243609,9.1095681 11.666679,9.012408 11.1875,8.6875 L 10.25,7.0625 C 10.218252,6.4896276 10.44162,5.9160704 10.84375,5.5 10.921177,5.4814976 10.984434,5.4465658 11.0625,5.4375 z M 6.15625,8.21875 c 0.4855734,-0.056389 0.9670298,0.098505 1.375,0.375 l 0.9375,1.59375 C 8.5107121,10.750407 8.3269973,11.303174 7.9375,11.71875 7.0569406,11.955825 6.0798374,11.591928 5.59375,10.75 5.1157192,9.9220267 5.2588998,8.9316009 5.875,8.28125 c 0.090736,-0.0237 0.1895438,-0.05185 0.28125,-0.0625 z"
+         id="use4770"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccscsssscsccscssscsccssccccsscccscs" />
+      <rect
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline"
+         id="rect20004-5"
+         width="32"
+         height="32"
+         x="0"
+         y="1.4033219e-13"
+         inkscape:tile-cx="16"
+         inkscape:tile-cy="16"
+         inkscape:tile-w="32"
+         inkscape:tile-h="32"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-y0="0" />
+      <text
+         inkscape:tile-y0="-1.1920929e-08"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-h="31.774135"
+         inkscape:tile-w="1.4563302"
+         inkscape:tile-cy="15.887067"
+         inkscape:tile-cx="34.728163"
+         id="text18980"
+         y="0.93804467"
+         x="33.950874"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         xml:space="preserve"><tspan
+           id="tspan19018"
+           y="0.93804467"
+           x="33.950874"
+           sodipodi:role="line"
+           style="font-size:1.34006405px;line-height:1.25">01</tspan></text>
+      <g
+         id="g9303"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,14.254546)"
+           id="use8557"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(3.7300299,7.2639978e-7)"
+           id="g9223">
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742"
+             transform="matrix(0.98618696,0,0,1.001257,28.292508,36.247287)"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#c0c000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.98618696,0,0,1.001257,29.422985,36.247287)"
+             id="use6780"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9303"
+         id="use9417"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-60.235026,42.413491)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20129"
+       inkscape:tile-cx="57.696444"
+       inkscape:tile-cy="48"
+       inkscape:tile-w="35.392888"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="32">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="M 14.40625,46.28125 12.5,43 c 0.195294,-0.06717 0.378185,-0.143586 0.5625,-0.25 0.127868,-0.07382 0.229731,-0.193177 0.34375,-0.28125 0.01317,-0.0042 0.01811,-0.02686 0.03125,-0.03125 0.204746,-0.06841 0.400902,-0.138659 0.59375,-0.25 1.641765,-0.947874 2.163403,-3.16181 1.15625,-4.90625 -0.755364,-1.308329 -2.151309,-2.005088 -3.5,-1.875 -0.449564,0.04336 -0.902059,0.169282 -1.3125,0.40625 -0.172859,0.0998 -0.321167,0.249023 -0.46875,0.375 -0.172115,0.06285 -0.336592,0.124406 -0.5,0.21875 -0.532211,0.307272 -0.966876,0.734812 -1.25,1.25 L 7.5,38.0625 C 6.8672016,38.02008 6.2328222,38.13587 5.65625,38.46875 5.4843309,38.56801 5.3344196,38.687338 5.1875,38.8125 c -0.1721151,0.06285 -0.3365915,0.124406 -0.5,0.21875 -1.6417651,0.947874 -2.1634026,3.193061 -1.15625,4.9375 1.0071525,1.74444 3.1707349,2.354123 4.8125,1.40625 0.171919,-0.09926 0.321982,-0.219232 0.46875,-0.34375 0.172253,-0.06343 0.336591,-0.124406 0.5,-0.21875 0.171919,-0.09926 0.321982,-0.219232 0.46875,-0.34375 l 1.9375,3.34375 M 10.9375,37.5 c 0.770823,-0.07639 1.562474,0.335933 2,1.09375 0.475799,0.824108 0.351825,1.779946 -0.21875,2.40625 -0.527529,0.123683 -1.070481,0.02126 -1.53125,-0.28125 L 10.1875,39 c -0.02368,-0.537366 0.176364,-1.049283 0.53125,-1.4375 0.07477,-0.01687 0.143179,-0.05501 0.21875,-0.0625 z m -4.71875,2.65625 c 0.4637468,-0.04596 0.9146566,0.100422 1.3125,0.375 L 8.5,42.1875 c 0.043145,0.556198 -0.158197,1.069597 -0.53125,1.46875 -0.8309803,0.180765 -1.7127989,-0.177794 -2.1875,-1 C 5.3054509,41.832141 5.427531,40.853089 6,40.21875 6.069343,40.20377 6.1487408,40.16319 6.21875,40.15625 z"
+         id="use4995"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccsssscsccccssscccccscccccccccscc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="32"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6816"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="32.938046"
+         id="use19022"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19742"
+           x="33.950874"
+           y="32.938046"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="36.568489"
+           id="tspan19778"
+           style="font-size:1.34006405px;line-height:1.25">02</tspan></text>
+      <g
+         id="g9309"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,46.254548)"
+           id="use8557-8"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(2.9563506,-8.5365355e-7)"
+           id="g9227">
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-2"
+             transform="matrix(0.94586773,0,0,1.0050213,28.435837,68.353663)"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#e0e000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.94586773,0,0,1.0050213,29.566314,68.353663)"
+             id="use6780-1"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9309"
+         id="use9419"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-76.238626,46.700533)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20137"
+       inkscape:tile-cx="57.699124"
+       inkscape:tile-cy="80"
+       inkscape:tile-w="35.398248"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="64">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.375,79.3125 -1.90625,-3.28125 c 0.1497,-0.05514 0.295984,-0.105796 0.4375,-0.1875 0.139683,-0.08065 0.25402,-0.212154 0.375,-0.3125 0.205705,-0.06219 0.402208,-0.139413 0.59375,-0.25 1.532336,-0.884695 1.950884,-3.057268 0.9375,-4.8125 -0.760038,-1.316424 -2.095747,-2.054735 -3.375,-1.96875 -0.426418,0.02866 -0.866916,0.153826 -1.25,0.375 -0.152332,0.08795 -0.276076,0.200685 -0.40625,0.3125 -0.195875,0.06063 -0.379521,0.144357 -0.5625,0.25 -0.512285,0.295768 -0.903412,0.760596 -1.15625,1.28125 L 7.59375,71 C 6.9700127,70.92386 6.3376752,71.0225 5.78125,71.34375 5.6219105,71.43574 5.4788292,71.569478 5.34375,71.6875 5.161542,71.74683 4.9833104,71.807633 4.8125,71.90625 3.2801638,72.790945 2.8303662,74.994767 3.84375,76.75 4.8571339,78.505232 6.9676637,79.197195 8.5,78.3125 8.652332,78.22455 8.776188,78.111243 8.90625,78 c 0.196034,-0.06144 0.379521,-0.144357 0.5625,-0.25 0.134247,-0.07751 0.25802,-0.185502 0.375,-0.28125 l 1.9375,3.34375 m -1.0625,-10.21875 c 0.731072,-0.05116 1.497268,0.393745 1.9375,1.15625 0.474642,0.822103 0.385972,1.742193 -0.125,2.34375 -0.454718,0.07898 -0.929292,-0.01451 -1.34375,-0.28125 L 10.15625,72 10.125,72 c -0.03863,-0.520184 0.126291,-1.00487 0.4375,-1.375 0.05056,-0.0083 0.105207,-0.02768 0.15625,-0.03125 z M 6.3125,73.0625 c 0.4407933,-0.03085 0.8934622,0.121182 1.28125,0.40625 L 7.53125,73.5 8.5625,75.25 C 8.58953,75.74513 8.425155,76.209134 8.125,76.5625 7.348743,76.697322 6.5022196,76.284493 6.03125,75.46875 5.5566083,74.646646 5.6436976,73.703344 6.15625,73.09375 6.206806,73.08545 6.2614567,73.06607 6.3125,73.0625 z"
+         id="use5070"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccsssscsccccssscccccscccccccccccscc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="64"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6808"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="64.938042"
+         id="use19024"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19702"
+           x="33.950874"
+           y="64.938042"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="68.568481"
+           id="tspan19704"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="72.198929"
+           id="tspan19738"
+           style="font-size:1.34006405px;line-height:1.25">03</tspan></text>
+      <g
+         id="g9315"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,79.254545)"
+           id="use8557-5"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(1.7867275,2.3113375e-7)"
+           id="g9231">
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-5"
+             transform="matrix(0.88282263,0,0,1.0112394,28.619814,101.52863)"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.88282263,0,0,1.0112394,29.750291,101.52863)"
+             id="use6780-8"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9315"
+         id="use9421"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-92.743723,51.121294)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20146"
+       inkscape:tile-cx="57.716545"
+       inkscape:tile-cy="112"
+       inkscape:tile-w="35.43309"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="96">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.375,110.34375 -1.90625,-3.3125 c 0.07926,-0.0348 0.173909,-0.0498 0.25,-0.0937 0.162529,-0.0938 0.30457,-0.18679 0.4375,-0.3125 0.01352,-0.004 0.01779,-0.0272 0.03125,-0.0313 0.176606,-0.0526 0.336711,-0.12448 0.5,-0.21875 1.405878,-0.81168 1.740149,-2.91839 0.71875,-4.6875 -0.766049,-1.32683 -2.082014,-2.097127 -3.28125,-2.0625 -0.399745,0.01154 -0.77353,0.109579 -1.125,0.3125 -0.1564039,0.0903 -0.3083902,0.22316 -0.4375,0.34375 -0.015957,0.0149 -0.046966,0.0159 -0.0625,0.0313 -0.1675525,0.0512 -0.3445242,0.0977 -0.5,0.1875 -0.4978322,0.28743 -0.8488018,0.738 -1.0625,1.28125 l -0.25,0.15625 c -0.6087104,-0.11494 -1.2227958,-0.0231 -1.75,0.28125 -0.1757348,0.10146 -0.3275268,0.20441 -0.46875,0.34375 -0.1764943,0.0518 -0.3367111,0.12448 -0.5,0.21875 -1.4058781,0.81169 -1.7401482,2.91839 -0.71875,4.6875 1.0213982,1.76911 3.0003718,2.56168 4.40625,1.75 0.1564039,-0.0903 0.3084931,-0.22385 0.4375,-0.34375 0.1909444,-0.0532 0.3867652,-0.14854 0.5625,-0.25 0.081265,-0.0469 0.1448387,-0.10105 0.21875,-0.15625 l 1.9375,3.375 M 10.46875,101.6875 c 0.685264,-0.0218 1.400036,0.45019 1.84375,1.21875 0.463348,0.80255 0.447172,1.67421 0.03125,2.25 -0.372106,0.0405 -0.767838,-0.0312 -1.125,-0.25 l -1.125,-1.9375 L 10.0625,103 c -0.05124,-0.49524 0.05213,-0.93474 0.3125,-1.28125 0.03171,-0.003 0.06177,-0.0302 0.09375,-0.0313 z m -4.15625,2.28125 c 0.4464869,-0.0424 0.9362681,0.11055 1.34375,0.4375 l -0.09375,0.0625 1.0625,1.84375 c 0.020399,0.43219 -0.083902,0.81617 -0.3125,1.125 -0.7194936,0.0918 -1.5296143,-0.34148 -2,-1.15625 -0.4670377,-0.80893 -0.4270265,-1.72902 0,-2.3125 z"
+         id="use5145"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccssscccccsccsscccccsccccccccccccc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="96"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6800"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="96.938042"
+         id="use19026"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19662"
+           x="33.950874"
+           y="96.938042"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="100.56848"
+           id="tspan19664"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="104.19893"
+           id="tspan19666"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="107.82937"
+           id="tspan19698"
+           style="font-size:1.34006405px;line-height:1.25">04</tspan></text>
+      <g
+         id="g9321"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,110.25455)"
+           id="use8557-54"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(0.40351801,-7.5090877e-6)"
+           id="g9235">
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-0"
+             transform="matrix(0.8099665,0,0,1.0192368,28.863992,132.75117)"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.8099665,0,0,1.0192368,29.994469,132.75117)"
+             id="use6780-7"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9321"
+         id="use9423"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-108.24805,55.273526)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20156"
+       inkscape:tile-cx="57.708504"
+       inkscape:tile-cy="144"
+       inkscape:tile-w="35.417009"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="128">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.34375,142.40635 -1.90625,-3.3125 c 0.04285,-0.0208 0.08334,-0.0385 0.125,-0.0625 0.162909,-0.0941 0.308678,-0.21195 0.4375,-0.34375 0.190167,-0.0457 0.390139,-0.11924 0.5625,-0.21875 1.303273,-0.75245 1.528578,-2.8122 0.5,-4.59375 -0.771433,-1.33616 -2.052999,-2.14888 -3.1875,-2.15625 l 0,-1e-4 c -0.378167,-0.002 -0.736682,0.0931 -1.0625,0.28125 -0.175151,0.10112 -0.332926,0.1983 -0.46875,0.34375 -0.178893,0.0451 -0.337091,0.1247 -0.5,0.21875 -0.488727,0.28217 -0.823506,0.74094 -1,1.3125 l -0.0625,0.0313 c -0.6116687,-0.16274 -1.2041707,-0.14084 -1.71875,0.15625 -0.1751508,0.10112 -0.3329261,0.22955 -0.46875,0.375 -0.1788928,0.0451 -0.3683409,0.1247 -0.53125,0.21875 -1.3032727,0.75245 -1.5285774,2.8122 -0.5,4.59375 1.0285774,1.78155 2.9467275,2.62744 4.25,1.875 0.175757,-0.10147 0.332699,-0.22988 0.46875,-0.375 0.178984,-0.0459 0.337091,-0.0934 0.5,-0.1875 0.04564,-0.0264 0.082016,-0.0643 0.125,-0.0937 l 1.9375,3.375 m -1.65625,-10.0626 c 0.664643,-0.0297 1.41342,0.45052 1.875,1.25 0.463217,0.80231 0.490477,1.66415 0.125,2.21875 -0.319851,0.0166 -0.651823,-0.0871 -0.96875,-0.28125 l -1.15625,-2 L 9.96875,135 c -0.058166,-0.45467 0.01792,-0.89544 0.21875,-1.21875 z m -3.75,2.09375 c 0.4083256,-0.0182 0.8332181,0.14808 1.21875,0.46875 l -0.09375,0.0625 1.09375,1.875 0,0.0313 c 0.021058,0.39228 -0.034445,0.75157 -0.21875,1.03125 -0.6650881,0.0371 -1.4138454,-0.42003 -1.875,-1.21875 -0.4572592,-0.79199 -0.4767049,-1.68601 -0.125,-2.25 z"
+         id="use5220"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccscccccccsccsccccccscccccccccccscc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="128"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6792"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="128.93805"
+         id="use19028"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19622"
+           x="33.950874"
+           y="128.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="132.5685"
+           id="tspan19624"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="136.19893"
+           id="tspan19626"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="139.82938"
+           id="tspan19628"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="143.45982"
+           id="tspan19658"
+           style="font-size:1.34006405px;line-height:1.25">05</tspan></text>
+      <g
+         id="g9327"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,142.25456)"
+           id="use8557-82"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(0.08494627,-1.2843302e-6)"
+           id="g9239">
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-1"
+             transform="matrix(0.7508526,0,0,1.0264008,28.258378,164.94874)"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.7508526,0,0,1.0264008,29.388855,164.94874)"
+             id="use6780-0"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9327"
+         id="use9425"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-124.25032,59.559503)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20167"
+       inkscape:tile-cx="57.700464"
+       inkscape:tile-cy="176"
+       inkscape:tile-w="35.400928"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="160">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.28125,174.59375 -2,-3.4375 c 0.05308,-0.0629 0.08399,-0.142 0.125,-0.21875 0.211976,0.007 0.422454,-0.0261 0.59375,-0.125 0.913579,-0.52746 0.803386,-2.42548 -0.25,-4.25 -0.921713,-1.59645 -2.283923,-2.62241 -3.21875,-2.5 -0.1335467,0.0175 -0.2608027,0.0591 -0.375,0.125 -0.1733669,0.10009 -0.3063662,0.24612 -0.40625,0.4375 -0.2053781,-0.005 -0.3959063,0.0288 -0.5625,0.125 -0.2848469,0.16446 -0.4436967,0.48223 -0.53125,0.875 -0.4251434,-0.16027 -0.8127343,-0.18029 -1.125,0 -0.171296,0.0989 -0.3066993,0.28061 -0.40625,0.46875 -0.2124874,-0.008 -0.4221642,-0.005 -0.59375,0.0937 -0.9135786,0.52746 -0.8033859,2.48798 0.25,4.3125 1.053386,1.82452 2.6801714,2.8712 3.59375,2.34375 0.1726394,-0.0997 0.2751323,-0.28017 0.375,-0.46875 0.076797,0.003 0.1465028,0.0411 0.21875,0.0313 l 2.03125,3.5 M 10.53125,165.5625 c 0.490419,0.13426 1.067813,0.65768 1.5,1.40625 0.419476,0.72655 0.580954,1.45126 0.46875,1.9375 -0.139482,-0.57021 -0.400885,-1.17656 -0.75,-1.78125 -0.359907,-0.62338 -0.778678,-1.14795 -1.21875,-1.5625 z m -0.875,0.59375 c 0.466209,0.17592 1.005057,0.68011 1.40625,1.375 0.401531,0.69547 0.522543,1.38982 0.4375,1.875 -0.09208,-0.0363 -0.186139,-0.0962 -0.28125,-0.15625 L 9.875,166.96875 9.71875,167.0625 c -0.084548,-0.33867 -0.1099996,-0.65417 -0.0625,-0.90625 z m -2.625,1.4375 c 0.250386,0.096 0.493227,0.33085 0.75,0.59375 L 7.625,168.28125 8.90625,170.5 c 0.00586,0.13435 -0.00949,0.26211 -0.03125,0.375 C 8.4090091,170.70796 7.9015306,170.19547 7.5,169.5 7.092637,168.79443 6.9381083,168.08805 7.03125,167.59375 z m -1,0.46875 c 0.1362449,0.5949 0.386062,1.24464 0.75,1.875 0.3511287,0.60817 0.7591581,1.09403 1.1875,1.5 C 7.4882673,171.29345 6.9194761,170.82031 6.5,170.09375 6.0684106,169.34622 5.9000478,168.5563 6.03125,168.0625 z"
+         id="use5295"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccsscscccsccssccccscsccsccccccccccsccscsc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="160"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6784"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="160.93805"
+         id="use19030"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19582"
+           x="33.950874"
+           y="160.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="164.5685"
+           id="tspan19584"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="168.19893"
+           id="tspan19586"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="171.82938"
+           id="tspan19588"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="175.45982"
+           id="tspan19590"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="179.09027"
+           id="tspan19618"
+           style="font-size:1.34006405px;line-height:1.25">06</tspan></text>
+      <g
+         id="g9333"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,174.25456)"
+           id="use8557-7"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(2.9974508,1.4877231e-6)"
+           id="g9243">
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-58"
+             transform="matrix(0.52633871,0,0,1.0511569,21.835827,197.6594)"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.52633871,0,0,1.0511569,22.966304,197.6594)"
+             id="use6780-75"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9333"
+         id="use9427"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-140.27199,63.846231)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20179"
+       inkscape:tile-cx="57.691084"
+       inkscape:tile-cy="208"
+       inkscape:tile-w="35.382167"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="192">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="M 14.21875,206.75 12.125,203.09375 c 0.184446,0.0496 0.339068,0.0749 0.46875,0 0.633191,-0.36557 0.263971,-2.19799 -0.8125,-4.0625 -0.941911,-1.63144 -2.1051634,-2.76317 -2.8125,-2.78125 -0.1010481,-0.003 -0.2021012,0.0168 -0.28125,0.0625 -0.1807967,0.10438 -0.2566135,0.31403 -0.28125,0.625 -0.2768188,-0.13082 -0.5086976,-0.16573 -0.6875,-0.0625 -0.1296822,0.0749 -0.2328862,0.22018 -0.28125,0.40625 -0.2373387,-0.094 -0.4354524,-0.0914 -0.59375,0 -0.1696045,0.0979 -0.2806851,0.31219 -0.3125,0.59375 -0.2616534,-0.11625 -0.4852394,-0.12998 -0.65625,-0.0313 -0.6331903,0.36557 -0.2952207,2.19799 0.78125,4.0625 1.0764707,1.8645 2.4918097,3.08432 3.125,2.71875 0.1296821,-0.0749 0.2012765,-0.22199 0.25,-0.40625 l 2.125,3.71875 M 9.6875,197.71875 c 0.405568,0.008 1.079421,0.64878 1.625,1.59375 0.623518,1.07997 0.804259,2.10075 0.4375,2.3125 -0.0088,0.005 -0.02196,-0.004 -0.03125,0 -0.186843,-0.61826 -0.49595,-1.32059 -0.90625,-2.03125 -0.41363,-0.71643 -0.8647527,-1.336 -1.3125,-1.8125 0.010345,-0.008 0.019789,-0.0246 0.03125,-0.0313 0.045845,-0.0265 0.098312,-0.0324 0.15625,-0.0313 z m -0.15625,1.125 c 0.050089,0.0523 0.1056163,0.0974 0.15625,0.15625 l -0.03125,0.0313 z M 6.75,199.28125 c 0.1869292,0.63043 0.4893268,1.34036 0.90625,2.0625 0.4136302,0.71643 0.8657332,1.34094 1.3125,1.8125 -0.010356,0.008 -0.019789,0.0246 -0.03125,0.0313 -0.3667594,0.21175 -1.1577315,-0.48254 -1.78125,-1.5625 -0.6235184,-1.07997 -0.8355094,-2.10075 -0.46875,-2.3125 0.01897,-0.011 0.041343,-0.0251 0.0625,-0.0313 z m 3.21875,0.0625 c 0.122605,0.17018 0.228804,0.33216 0.34375,0.53125 0.107917,0.18692 0.19937,0.38334 0.28125,0.5625 z M 7.625,199.875 l 0.15625,0.25 -0.0625,0.0313 C 7.6826407,200.05865 7.651959,199.96658 7.625,199.875 z m 0.125,0.40625 0.875,1.5 C 8.4579652,201.56919 8.3121296,201.33249 8.15625,201.0625 8.0003704,200.79251 7.8513586,200.53406 7.75,200.28125 z"
+         id="use5370"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccsscccscscssscccsscsccccccccsccscccsccccccccsc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="192"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6776"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="192.93805"
+         id="use19032"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19542"
+           x="33.950874"
+           y="192.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="196.5685"
+           id="tspan19544"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="200.19893"
+           id="tspan19546"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="203.82938"
+           id="tspan19548"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="207.45982"
+           id="tspan19550"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="211.09027"
+           id="tspan19552"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="214.7207"
+           id="tspan19578"
+           style="font-size:1.34006405px;line-height:1.25">07</tspan></text>
+      <g
+         id="g9339"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,206.25456)"
+           id="use8557-55"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(5.7566392,1.7534211e-6)"
+           id="g9247">
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-6"
+             transform="matrix(0.36479897,0,0,1.0741928,16.551129,230.31376)"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.36479897,0,0,1.0741928,17.681606,230.31376)"
+             id="use6780-79"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9339"
+         id="use9429"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-156.28297,68.131308)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20192"
+       inkscape:tile-cx="57.716545"
+       inkscape:tile-cy="240"
+       inkscape:tile-w="35.43309"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="224">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.212376,239.98781 -0.774876,-1.30031 -1.3125,-2.25 c 0.03568,0.002 0.0671,0.0154 0.09375,0 0.355386,-0.20518 -0.237259,-1.92725 -1.34375,-3.84375 -0.96818,-1.67694 -2.016831,-2.99686 -2.5,-3.15625 -0.069024,-0.0228 -0.143077,0.006 -0.1875,0.0313 -0.167987,0.097 -0.091133,0.54576 0.125,1.1875 l -0.09375,0.0625 c -0.252141,-0.28811 -0.478312,-0.51211 -0.65625,-0.625 -0.058467,-0.0434 -0.106352,-0.0686 -0.15625,-0.0937 -0.011193,-0.004 -0.020663,0.002 -0.03125,0 -0.09325,-0.0427 -0.163221,-0.0633 -0.21875,-0.0313 -0.174707,0.10087 -0.113528,0.59748 0.125,1.28125 l -0.09375,0.0313 c -0.466365,-0.54021 -0.857999,-0.85003 -1.03125,-0.75 -0.355386,0.20518 0.268509,1.9585 1.375,3.875 1.10649,1.91649 2.300864,3.29893 2.65625,3.09375 0.01968,-0.0114 0.01741,-0.042 0.03125,-0.0625 l 1.375,2.34375 0.743626,1.30031 M 9.0625,230.9375 c 0.205849,-0.11885 0.890343,0.70242 1.53125,1.8125 0.640907,1.11009 0.987098,2.06865 0.78125,2.1875 -0.02573,0.0149 -0.0545,0.012 -0.09375,0 L 9.21875,231.375 9,231.03125 c 0.00204,-0.009 -0.00292,-0.0232 0,-0.0313 0.00974,-0.0269 0.042707,-0.0511 0.0625,-0.0625 z m -2.03125,1.09375 c 0.025731,-0.0149 0.054249,-0.0127 0.09375,0 l 0.21875,0.40625 2.03125,3.5 c -0.00911,0.0399 -0.00552,0.0789 -0.03125,0.0937 -0.205848,0.11889 -0.890343,-0.67112 -1.53125,-1.7812 -0.640907,-1.11009 -0.987098,-2.0999 -0.78125,-2.21875 z"
+         id="use5558"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccsccccccccsccsccccccscccccs" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="224"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6768"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="224.93805"
+         id="use19034"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19502"
+           x="33.950874"
+           y="224.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="228.5685"
+           id="tspan19504"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="232.19893"
+           id="tspan19506"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="235.82938"
+           id="tspan19508"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="239.45982"
+           id="tspan19510"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="243.09027"
+           id="tspan19512"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="246.7207"
+           id="tspan19514"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="250.35115"
+           id="tspan19538"
+           style="font-size:1.34006405px;line-height:1.25">08</tspan></text>
+      <g
+         id="g9345"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,239.25455)"
+           id="use8557-9"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(8.1098327,2.001758e-6)"
+           id="g9251">
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-18"
+             transform="matrix(0.20474798,0,0,1.1041492,11.695701,264.16199)"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.20474798,0,0,1.1041492,12.826178,264.16199)"
+             id="use6780-5"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9345"
+         id="use9431"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-172.77908,72.631569)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20206"
+       inkscape:tile-cx="57.699124"
+       inkscape:tile-cy="272"
+       inkscape:tile-w="35.398248"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="256">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.343072,271.25426 -0.874322,-1.50431 -4.25,-7.3125 -0.53125,-0.9375 -0.1875,0.0937 C 8.062407,260.90617 7.735373,260.47226 7.6875,260.4999 l 0,10e-5 c -0.04613,0.0267 0.148986,0.47771 0.5,1.15625 -0.431621,-0.67724 -0.733778,-1.08991 -0.78125,-1.0625 -0.04897,0.0283 0.201247,0.53006 0.59375,1.28125 l -0.46875,0.28125 c -0.437593,-0.68748 -0.764627,-1.12139 -0.8125,-1.09375 -0.04613,0.0267 0.148986,0.47771 0.5,1.15625 -0.431621,-0.67724 -0.765028,-1.08991 -0.8125,-1.0625 -0.04936,0.0285 0.195319,0.55097 0.59375,1.3125 l -0.1875,0.0937 0.53125,0.9375 4.25,7.34375 0.874322,1.50431"
+         id="use5698"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccccsccccc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="256"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6760"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="256.93805"
+         id="use19036"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19462"
+           x="33.950874"
+           y="256.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="260.56848"
+           id="tspan19464"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="264.19894"
+           id="tspan19466"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="267.82938"
+           id="tspan19468"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="271.45981"
+           id="tspan19470"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="275.09027"
+           id="tspan19472"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="278.7207"
+           id="tspan19474"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="282.35117"
+           id="tspan19476"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="285.9816"
+           id="tspan19498"
+           style="font-size:1.34006405px;line-height:1.25">09</tspan></text>
+      <g
+         id="g9351"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,270.25457)"
+           id="use8557-0"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(9.8787147,-5.5575729e-6)"
+           id="g9255">
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-13"
+             transform="matrix(0.05315792,0,0,1.1496571,7.5568625,296.45021)"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.05315792,0,0,1.1496571,8.6873395,296.45021)"
+             id="use6780-9"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9351"
+         id="use9433"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-188.2696,76.853392)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20221"
+       inkscape:tile-cx="57.720565"
+       inkscape:tile-cy="304"
+       inkscape:tile-w="35.44113"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="288">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="M 14.347445,303.25528 13.46875,301.75 9.21875,294.4375 8.6875,293.5 8.5,293.59375 C 8.062407,292.90627 7.735373,292.47236 7.6875,292.5 c -0.046135,0.0267 0.148986,0.47771 0.5,1.15625 -0.431621,-0.67724 -0.733778,-1.08991 -0.78125,-1.0625 -0.048968,0.0283 0.201247,0.53006 0.59375,1.28125 l -0.46875,0.28125 c -0.437593,-0.68748 -0.764627,-1.12139 -0.8125,-1.09375 -0.046135,0.0267 0.148986,0.47771 0.5,1.15625 -0.431621,-0.67724 -0.765028,-1.08991 -0.8125,-1.0625 -0.049364,0.0285 0.195319,0.55097 0.59375,1.3125 l -0.1875,0.0937 0.53125,0.9375 4.25,7.34375 0.878695,1.50528"
+         id="use5688"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccccccccc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="288"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6752"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="288.93805"
+         id="use19038"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19422"
+           x="33.950874"
+           y="288.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="292.56848"
+           id="tspan19424"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="296.19894"
+           id="tspan19426"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="299.82938"
+           id="tspan19428"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="303.45981"
+           id="tspan19430"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="307.09027"
+           id="tspan19432"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="310.7207"
+           id="tspan19434"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="314.35117"
+           id="tspan19436"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="317.9816"
+           id="tspan19438"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="321.61203"
+           id="tspan19458"
+           style="font-size:1.34006405px;line-height:1.25">10</tspan></text>
+      <g
+         id="g9357"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,302.25457)"
+           id="use8557-08"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(9.8787147,-5.5575729e-6)"
+           id="g9259">
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.05315792,0,0,1.1496571,8.6873395,328.45021)"
+             id="use6780-3"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-9"
+             transform="matrix(0.05315792,0,0,1.1496571,7.5568625,328.45021)"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9357"
+         id="use9435"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-204.2696,81.140578)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20237"
+       inkscape:tile-cx="57.672323"
+       inkscape:tile-cy="336"
+       inkscape:tile-w="35.344645"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="320">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.203735,334.98453 -0.766235,-1.29703 -1.3125,-2.25 c 0.03568,0.002 0.0671,0.0154 0.09375,0 0.355386,-0.20518 -0.237259,-1.92725 -1.34375,-3.84375 -0.96818,-1.67694 -2.016831,-2.99686 -2.5,-3.15625 -0.069024,-0.0228 -0.143077,0.006 -0.1875,0.0313 -0.167987,0.097 -0.091133,0.54576 0.125,1.1875 l -0.09375,0.0625 c -0.213737,-0.24422 -0.431392,-0.44188 -0.59375,-0.5625 -0.205456,-0.16442 -0.371241,-0.2438 -0.46875,-0.1875 -0.174707,0.10087 -0.113528,0.59748 0.125,1.28125 l -0.09375,0.0313 c -0.466365,-0.54021 -0.857999,-0.85003 -1.03125,-0.75 -0.355386,0.20518 0.268509,1.9585 1.375,3.875 1.10649,1.91649 2.300864,3.29893 2.65625,3.09375 0.01968,-0.0114 0.01741,-0.042 0.03125,-0.0625 l 1.375,2.34375 0.734985,1.29703 M 9.0625,325.9375 c 0.205849,-0.11885 0.890343,0.70242 1.53125,1.8125 0.640907,1.11009 0.987098,2.06865 0.78125,2.1875 -0.02573,0.0149 -0.0545,0.012 -0.09375,0 L 9.21875,326.375 9,326.03125 c 0.00204,-0.009 -0.00292,-0.0232 0,-0.0313 0.00974,-0.0269 0.042707,-0.0511 0.0625,-0.0625 z m -2.03125,1.09375 c 0.025731,-0.0149 0.054249,-0.0127 0.09375,0 l 0.21875,0.40625 2.03125,3.5 c -0.00911,0.0399 -0.00552,0.0789 -0.03125,0.0937 -0.205848,0.11889 -0.890343,-0.67112 -1.53125,-1.7812 -0.640907,-1.11009 -0.987098,-2.0999 -0.78125,-2.21875 z"
+         id="use5678"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccscccccccccscccccsccccccccccccsc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="320"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6744"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="320.93805"
+         id="use19040"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19382"
+           x="33.950874"
+           y="320.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="324.56848"
+           id="tspan19384"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="328.19894"
+           id="tspan19386"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="331.82938"
+           id="tspan19388"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="335.45981"
+           id="tspan19390"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="339.09027"
+           id="tspan19392"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="342.7207"
+           id="tspan19394"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="346.35117"
+           id="tspan19396"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="349.9816"
+           id="tspan19398"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="353.61203"
+           id="tspan19400"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="357.24249"
+           id="tspan19418"
+           style="font-size:1.34006405px;line-height:1.25">11</tspan></text>
+      <g
+         id="g9363"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,334.25457)"
+           id="use8557-01"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(8.1098327,2.001758e-6)"
+           id="g9263">
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.20474798,0,0,1.1041492,12.826178,359.16201)"
+             id="use6780-4"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-95"
+             transform="matrix(0.20474798,0,0,1.1041492,11.695701,359.16201)"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9363"
+         id="use9437"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-220.27909,85.359159)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20254"
+       inkscape:tile-cx="57.696444"
+       inkscape:tile-cy="368"
+       inkscape:tile-w="35.392888"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="352">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="M 14.21875,366.74995 12.125,363.0937 c 0.184446,0.0496 0.339068,0.0749 0.46875,0 0.63319,-0.36557 0.263971,-2.19799 -0.8125,-4.0625 -0.941912,-1.63144 -2.105164,-2.76317 -2.8125,-2.78125 l 0,5e-5 c -0.101048,-0.003 -0.202101,0.0168 -0.28125,0.0625 -0.180797,0.10438 -0.256613,0.31403 -0.28125,0.625 -0.276819,-0.13082 -0.508698,-0.16573 -0.6875,-0.0625 -0.129682,0.0749 -0.232886,0.22018 -0.28125,0.40625 -0.237339,-0.094 -0.435453,-0.0914 -0.59375,0 -0.169604,0.0979 -0.280685,0.31219 -0.3125,0.59375 -0.261653,-0.11625 -0.485239,-0.12998 -0.65625,-0.0313 -0.63319,0.36557 -0.295221,2.19799 0.78125,4.0625 1.07647,1.8645 2.49181,3.08432 3.125,2.71875 0.129682,-0.0749 0.201276,-0.22199 0.25,-0.40625 l 2.125,3.71875 M 9.6875,357.71875 c 0.405569,0.008 1.079421,0.64878 1.625,1.59375 0.623518,1.07997 0.804259,2.10075 0.4375,2.3125 -0.0088,0.005 -0.02196,-0.004 -0.03125,0 -0.186843,-0.61826 -0.49595,-1.32059 -0.90625,-2.03125 -0.41363,-0.71643 -0.864753,-1.336 -1.3125,-1.8125 0.010345,-0.008 0.019789,-0.0246 0.03125,-0.0313 0.045845,-0.0265 0.098312,-0.0324 0.15625,-0.0313 z m -0.15625,1.125 c 0.050089,0.0523 0.105616,0.0974 0.15625,0.15625 l -0.03125,0.0313 -0.125,-0.1875 z M 6.75,359.28125 c 0.186929,0.63043 0.489327,1.34036 0.90625,2.0625 0.41363,0.71643 0.865733,1.34094 1.3125,1.8125 -0.010356,0.008 -0.019789,0.0246 -0.03125,0.0313 -0.36676,0.21175 -1.157731,-0.48254 -1.78125,-1.5625 -0.623518,-1.07997 -0.835509,-2.10075 -0.46875,-2.3125 0.01897,-0.0109 0.041343,-0.0251 0.0625,-0.0313 z m 3.21875,0.0625 c 0.122605,0.17018 0.228804,0.33216 0.34375,0.53125 0.107917,0.18692 0.19937,0.38334 0.28125,0.5625 z M 7.625,359.875 l 0.15625,0.25 -0.0625,0.0313 C 7.682641,360.05865 7.651959,359.96658 7.625,359.875 z m 0.125,0.40625 0.875,1.5 C 8.457965,361.56919 8.31213,361.33249 8.15625,361.0625 8.00037,360.79251 7.851359,360.53406 7.75,360.28125 z"
+         id="use5668"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccscccccccccsccccsccsccccccccccsccscccsccccccccsc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="352"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6736"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="352.93805"
+         id="use19042"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19342"
+           x="33.950874"
+           y="352.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="356.56848"
+           id="tspan19344"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="360.19894"
+           id="tspan19346"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="363.82938"
+           id="tspan19348"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="367.45981"
+           id="tspan19350"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="371.09027"
+           id="tspan19352"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="374.7207"
+           id="tspan19354"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="378.35117"
+           id="tspan19356"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="381.9816"
+           id="tspan19358"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="385.61203"
+           id="tspan19360"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="389.24249"
+           id="tspan19362"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="392.87292"
+           id="tspan19378"
+           style="font-size:1.34006405px;line-height:1.25">12</tspan></text>
+      <g
+         id="g9369"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,366.25457)"
+           id="use8557-09"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(5.7566392,1.7534211e-6)"
+           id="g9267">
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.36479897,0,0,1.0741928,17.681606,390.31377)"
+             id="use6780-57"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-7"
+             transform="matrix(0.36479897,0,0,1.0741928,16.551129,390.31377)"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9369"
+         id="use9439"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-236.28297,89.567245)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20272"
+       inkscape:tile-cx="57.699124"
+       inkscape:tile-cy="400"
+       inkscape:tile-w="35.398248"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="384">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.28125,399.59375 -2,-3.4375 c 0.05308,-0.0629 0.084,-0.142 0.125,-0.21875 0.211976,0.007 0.422454,-0.0261 0.59375,-0.125 0.913579,-0.52746 0.803386,-2.42548 -0.25,-4.25 -0.921713,-1.59645 -2.283923,-2.62241 -3.21875,-2.5 -0.133547,0.0175 -0.260803,0.0591 -0.375,0.125 -0.173367,0.10009 -0.306366,0.24612 -0.40625,0.4375 -0.205378,-0.005 -0.395906,0.0288 -0.5625,0.125 -0.284847,0.16446 -0.443697,0.48223 -0.53125,0.875 -0.425144,-0.16027 -0.812734,-0.18029 -1.125,0 -0.171296,0.0989 -0.306699,0.28061 -0.40625,0.46875 -0.212487,-0.008 -0.422164,-0.005 -0.59375,0.0937 -0.913578,0.52746 -0.803386,2.48798 0.25,4.3125 1.053386,1.82452 2.680171,2.8712 3.59375,2.34375 0.172639,-0.0997 0.275132,-0.28017 0.375,-0.46875 0.076797,0.003 0.146503,0.0411 0.21875,0.0313 l 2.03125,3.5 M 10.53125,390.5625 c 0.490419,0.13426 1.067813,0.65768 1.5,1.40625 0.419476,0.72655 0.580955,1.45126 0.46875,1.9375 -0.139482,-0.57021 -0.400885,-1.17656 -0.75,-1.78125 -0.359907,-0.62338 -0.778678,-1.14795 -1.21875,-1.5625 z m -0.875,0.59375 c 0.466209,0.17592 1.005057,0.68011 1.40625,1.375 0.401531,0.69547 0.522543,1.38982 0.4375,1.875 -0.09965,-0.0393 -0.209439,-0.0892 -0.3125,-0.15625 l -1.3125,-2.28125 -0.15625,0.0937 c -0.084548,-0.33867 -0.11,-0.65417 -0.0625,-0.90625 z m -2.625,1.4375 c 0.250386,0.096 0.493227,0.33085 0.75,0.59375 L 7.625,393.28125 8.90625,395.5 C 8.91211,395.63435 8.89676,395.76211 8.875,395.875 8.409009,395.70796 7.901531,395.19547 7.5,394.5 7.092637,393.79443 6.938108,393.08805 7.03125,392.59375 z m -1,0.46875 c 0.136245,0.5949 0.386062,1.24464 0.75,1.875 0.351129,0.60817 0.759158,1.09403 1.1875,1.5 C 7.488267,396.29345 6.919476,395.82031 6.5,395.09375 6.068411,394.34622 5.900048,393.5563 6.03125,393.0625 z"
+         id="use5658"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccsscccccsccscccccscsccscccccccccccsccscsc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="384"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6728"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="384.93805"
+         id="use19044"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19302"
+           x="33.950874"
+           y="384.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="388.56848"
+           id="tspan19304"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="392.19894"
+           id="tspan19306"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="395.82938"
+           id="tspan19308"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="399.45981"
+           id="tspan19310"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="403.09027"
+           id="tspan19312"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="406.7207"
+           id="tspan19314"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="410.35117"
+           id="tspan19316"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="413.9816"
+           id="tspan19318"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="417.61203"
+           id="tspan19320"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="421.24249"
+           id="tspan19322"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="424.87292"
+           id="tspan19324"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="428.50336"
+           id="tspan19338"
+           style="font-size:1.34006405px;line-height:1.25">13</tspan></text>
+      <g
+         id="g9375"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,399.25455)"
+           id="use8557-84"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(2.9974508,1.4877231e-6)"
+           id="g9271">
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.52633871,0,0,1.0511569,22.966304,422.65939)"
+             id="use6780-97"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-68"
+             transform="matrix(0.52633871,0,0,1.0511569,21.835827,422.65939)"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9375"
+         id="use9441"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-252.772,93.990515)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20291"
+       inkscape:tile-cx="57.716545"
+       inkscape:tile-cy="432"
+       inkscape:tile-w="35.43309"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="416">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.34375,430.4064 -1.90625,-3.3125 c 0.04285,-0.0208 0.08334,-0.0385 0.125,-0.0625 0.162909,-0.0941 0.308678,-0.21195 0.4375,-0.34375 0.190167,-0.0457 0.390139,-0.11924 0.5625,-0.21875 1.303273,-0.75245 1.528577,-2.8122 0.5,-4.59375 -0.771433,-1.33616 -2.052999,-2.14888 -3.1875,-2.15625 l 0,-1.5e-4 c -0.378167,-0.002 -0.736682,0.0931 -1.0625,0.28125 -0.175151,0.10112 -0.332926,0.1983 -0.46875,0.34375 -0.178893,0.0451 -0.337091,0.12469 -0.5,0.21875 -0.480533,0.27744 -0.821166,0.72264 -1,1.28125 l 0,0.0313 -0.0625,0.0313 C 7.169998,421.744 6.576732,421.76571 6.0625,422.0626 c -0.175151,0.10112 -0.332926,0.22955 -0.46875,0.375 -0.178893,0.0451 -0.368341,0.12469 -0.53125,0.21875 -1.303272,0.75245 -1.528577,2.8122 -0.5,4.59375 1.028577,1.78155 2.946728,2.62744 4.25,1.875 0.175757,-0.10147 0.332699,-0.22988 0.46875,-0.375 0.178984,-0.0459 0.337091,-0.0934 0.5,-0.1875 0.045738,-0.0264 0.08193,-0.0642 0.125,-0.0937 l 1.9375,3.375 M 10.1875,421.78125 c 0.664643,-0.0297 1.41342,0.45052 1.875,1.25 0.463217,0.80231 0.490477,1.66415 0.125,2.21875 -0.31985,0.0166 -0.651824,-0.087 -0.96875,-0.28125 l -1.15625,-2 L 9.96875,423 c -0.058166,-0.45467 0.01792,-0.89544 0.21875,-1.21875 z m -3.75,2.09375 c 0.408326,-0.0182 0.833218,0.14808 1.21875,0.46875 l -0.09375,0.0625 1.09375,1.90625 c 0.021058,0.39228 -0.034445,0.75157 -0.21875,1.03125 -0.665089,0.0371 -1.413846,-0.42003 -1.875,-1.21875 -0.45726,-0.79199 -0.476705,-1.68601 -0.125,-2.25 z"
+         id="use5648"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccscccccccccccsccccccsccccccccccsc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="416"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6720"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="416.93805"
+         id="use19046"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19262"
+           x="33.950874"
+           y="416.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="420.56848"
+           id="tspan19264"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="424.19894"
+           id="tspan19266"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="427.82938"
+           id="tspan19268"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="431.45981"
+           id="tspan19270"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="435.09027"
+           id="tspan19272"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="438.7207"
+           id="tspan19274"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="442.35117"
+           id="tspan19276"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="445.9816"
+           id="tspan19278"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="449.61203"
+           id="tspan19280"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="453.24249"
+           id="tspan19282"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="456.87292"
+           id="tspan19284"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="460.50336"
+           id="tspan19286"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="464.13382"
+           id="tspan19298"
+           style="font-size:1.34006405px;line-height:1.25">14</tspan></text>
+      <g
+         id="g9381"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,430.25458)"
+           id="use8557-59"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(0.08494627,-1.2843302e-6)"
+           id="g9275">
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.7508526,0,0,1.0264008,29.388855,452.94876)"
+             id="use6780-04"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-59"
+             transform="matrix(0.7508526,0,0,1.0264008,28.258378,452.94876)"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9381"
+         id="use9443"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-268.25033,98.14419)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20311"
+       inkscape:tile-cx="57.708504"
+       inkscape:tile-cy="464"
+       inkscape:tile-w="35.417009"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="448">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.375,462.34375 -1.90625,-3.28125 c 0.08319,-0.036 0.170285,-0.079 0.25,-0.125 0.162529,-0.0938 0.30457,-0.18679 0.4375,-0.3125 0.190944,-0.0532 0.355515,-0.14854 0.53125,-0.25 1.405878,-0.81168 1.740148,-2.91839 0.71875,-4.6875 -0.766049,-1.32683 -2.082014,-2.09712 -3.28125,-2.0625 -0.399745,0.0115 -0.773531,0.10958 -1.125,0.3125 -0.175735,0.10146 -0.358777,0.23566 -0.5,0.375 -0.167552,0.0512 -0.344524,0.0977 -0.5,0.1875 -0.497833,0.28743 -0.848802,0.738 -1.0625,1.28125 l -0.25,0.15625 c -0.60871,-0.11494 -1.222796,-0.0231 -1.75,0.28125 -0.175735,0.10146 -0.327527,0.20441 -0.46875,0.34375 -0.176494,0.0518 -0.336711,0.12448 -0.5,0.21875 -1.405879,0.81169 -1.740149,2.91839 -0.71875,4.6875 1.021398,1.76911 3.000372,2.56168 4.40625,1.75 0.156404,-0.0903 0.308493,-0.22385 0.4375,-0.34375 0.190944,-0.0532 0.386765,-0.14854 0.5625,-0.25 0.081265,-0.0469 0.144839,-0.10105 0.21875,-0.15625 l 1.9375,3.375 M 10.46875,453.6875 c 0.685264,-0.0218 1.400036,0.45019 1.84375,1.21875 0.463348,0.80255 0.447172,1.67421 0.03125,2.25 -0.372106,0.0405 -0.767838,-0.0312 -1.125,-0.25 l -1.125,-1.9375 L 10.0625,455 c -0.05124,-0.49524 0.05213,-0.93474 0.3125,-1.28125 0.03171,-0.003 0.06177,-0.0302 0.09375,-0.0313 z m -4.15625,2.28125 c 0.446487,-0.0424 0.936268,0.11055 1.34375,0.4375 l -0.09375,0.0625 1.0625,1.84375 c 0.020399,0.43219 -0.083902,0.81617 -0.3125,1.125 -0.719493,0.0918 -1.529614,-0.34148 -2,-1.15625 -0.467038,-0.80893 -0.427027,-1.72902 0,-2.3125 z"
+         id="use5638"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccsscscccccccsscccccscccccccccccccc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="448"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6712"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="448.93805"
+         id="use19048"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19222"
+           x="33.950874"
+           y="448.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="452.56848"
+           id="tspan19224"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="456.19894"
+           id="tspan19226"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="459.82938"
+           id="tspan19228"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="463.45981"
+           id="tspan19230"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="467.09027"
+           id="tspan19232"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="470.7207"
+           id="tspan19234"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="474.35117"
+           id="tspan19236"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="477.9816"
+           id="tspan19238"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="481.61203"
+           id="tspan19240"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="485.24249"
+           id="tspan19242"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="488.87292"
+           id="tspan19244"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="492.50336"
+           id="tspan19246"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="496.13382"
+           id="tspan19248"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="499.76425"
+           id="tspan19258"
+           style="font-size:1.34006405px;line-height:1.25">15</tspan></text>
+      <g
+         id="g9387"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,462.25458)"
+           id="use8557-4"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(0.40351801,-4.5090878e-6)"
+           id="g9279">
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.8099665,0,0,1.0192368,29.994469,484.75119)"
+             id="use6780-02"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-3"
+             transform="matrix(0.8099665,0,0,1.0192368,28.863992,484.75119)"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9387"
+         id="use9445"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-284.24806,102.43259)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20332"
+       inkscape:tile-cx="57.700464"
+       inkscape:tile-cy="496"
+       inkscape:tile-w="35.400928"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="480">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.375,494.3125 -1.90625,-3.28125 c 0.1497,-0.0551 0.295984,-0.1058 0.4375,-0.1875 0.139684,-0.0806 0.25402,-0.21215 0.375,-0.3125 0.205705,-0.0622 0.402208,-0.13941 0.59375,-0.25 1.532336,-0.8847 1.950884,-3.05727 0.9375,-4.8125 -0.760038,-1.31642 -2.095747,-2.05473 -3.375,-1.96875 -0.426418,0.0287 -0.866916,0.15383 -1.25,0.375 -0.152332,0.0879 -0.276076,0.20068 -0.40625,0.3125 -0.195875,0.0606 -0.379521,0.14436 -0.5625,0.25 -0.512285,0.29577 -0.903412,0.76059 -1.15625,1.28125 L 7.59375,486 c -0.623737,-0.0761 -1.256075,0.0225 -1.8125,0.34375 -0.15934,0.092 -0.302421,0.22573 -0.4375,0.34375 -0.182208,0.0593 -0.36044,0.12013 -0.53125,0.21875 -1.532337,0.8847 -1.982134,3.08852 -0.96875,4.84375 1.013384,1.75523 3.123914,2.44719 4.65625,1.5625 0.152332,-0.0879 0.276188,-0.20126 0.40625,-0.3125 0.196034,-0.0614 0.379521,-0.14436 0.5625,-0.25 0.134247,-0.0775 0.25802,-0.1855 0.375,-0.28125 l 1.9375,3.34375 m -1.0625,-10.21875 c 0.731072,-0.0512 1.497267,0.39378 1.9375,1.15625 0.474642,0.82211 0.385972,1.74219 -0.125,2.34375 -0.454718,0.079 -0.929292,-0.0145 -1.34375,-0.28125 L 10.15625,487 10.125,487 c -0.03863,-0.52018 0.126291,-1.00487 0.4375,-1.375 0.05056,-0.008 0.105207,-0.0277 0.15625,-0.0313 z M 6.3125,488.0625 c 0.440793,-0.0308 0.893462,0.12118 1.28125,0.40625 l -0.0625,0.0313 1.03125,1.75 c 0.027035,0.49513 -0.137345,0.95913 -0.4375,1.3125 -0.776257,0.13482 -1.62278,-0.278 -2.09375,-1.09375 -0.474642,-0.8221 -0.387552,-1.7654 0.125,-2.375 0.050556,-0.008 0.105207,-0.0277 0.15625,-0.0313 z"
+         id="use5628"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccssccccccccsscccccccccccccccccccscc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="480"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6704"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="480.93805"
+         id="use19050"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19182"
+           x="33.950874"
+           y="480.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="484.56848"
+           id="tspan19184"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="488.19894"
+           id="tspan19186"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="491.82938"
+           id="tspan19188"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="495.45981"
+           id="tspan19190"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="499.09027"
+           id="tspan19192"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="502.7207"
+           id="tspan19194"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="506.35117"
+           id="tspan19196"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="509.9816"
+           id="tspan19198"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="513.61206"
+           id="tspan19200"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="517.24249"
+           id="tspan19202"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="520.87292"
+           id="tspan19204"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="524.50336"
+           id="tspan19206"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="528.13379"
+           id="tspan19208"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="531.76428"
+           id="tspan19210"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="535.39471"
+           id="tspan19218"
+           style="font-size:1.34006405px;line-height:1.25">16</tspan></text>
+      <g
+         id="g9393"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,494.25458)"
+           id="use8557-1"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(1.7867275,1.2311338e-6)"
+           id="g9283">
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.88282263,0,0,1.0112394,29.750291,516.52866)"
+             id="use6780-77"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-19"
+             transform="matrix(0.88282263,0,0,1.0112394,28.619814,516.52866)"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9393"
+         id="use9447"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-300.24373,106.72075)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20354"
+       inkscape:tile-cx="57.691084"
+       inkscape:tile-cy="528"
+       inkscape:tile-w="35.382167"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="512">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="M 14.40625,525.28125 12.5,522 c 0.195294,-0.0672 0.378185,-0.14359 0.5625,-0.25 0.127868,-0.0738 0.229731,-0.19318 0.34375,-0.28125 0.218495,-0.0699 0.419779,-0.16277 0.625,-0.28125 1.641765,-0.94787 2.163402,-3.16181 1.15625,-4.90625 -0.755364,-1.30833 -2.151309,-2.00509 -3.5,-1.875 -0.449564,0.0434 -0.902059,0.16928 -1.3125,0.40625 -0.172859,0.0998 -0.321167,0.24902 -0.46875,0.375 -0.172115,0.0629 -0.336591,0.12441 -0.5,0.21875 -0.527528,0.30457 -0.935824,0.74064 -1.21875,1.25 L 7.5,517.0625 c -0.632799,-0.0424 -1.267178,0.0734 -1.84375,0.40625 -0.171919,0.0993 -0.32183,0.21859 -0.46875,0.34375 -0.172115,0.0629 -0.336591,0.12441 -0.5,0.21875 -1.641765,0.94787 -2.163403,3.19306 -1.15625,4.9375 1.007152,1.74443 3.170735,2.35413 4.8125,1.40625 0.171919,-0.0993 0.321982,-0.21923 0.46875,-0.34375 0.172253,-0.0634 0.336591,-0.12441 0.5,-0.21875 0.171919,-0.0993 0.321982,-0.21923 0.46875,-0.34375 l 1.9375,3.34375 M 10.9375,516.5 c 0.770822,-0.0764 1.562474,0.33593 2,1.09375 0.475799,0.82411 0.351825,1.77995 -0.21875,2.40625 -0.527529,0.12368 -1.070481,0.0213 -1.53125,-0.28125 l -1,-1.71875 c -0.02368,-0.53737 0.176364,-1.04928 0.53125,-1.4375 0.07477,-0.0169 0.143179,-0.055 0.21875,-0.0625 z m -4.71875,2.65625 c 0.463747,-0.046 0.914656,0.10042 1.3125,0.375 L 8.5,521.21875 c 0.034338,0.54547 -0.165027,1.04565 -0.53125,1.4375 -0.83098,0.18076 -1.712799,-0.1778 -2.1875,-1 -0.475799,-0.82411 -0.353719,-1.80316 0.21875,-2.4375 0.069343,-0.015 0.148741,-0.0556 0.21875,-0.0625 z"
+         id="use5618"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccscscccccccsccccccscccccccccscc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="512"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6696"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="512.93805"
+         id="use19052"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19142"
+           x="33.950874"
+           y="512.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="516.56848"
+           id="tspan19144"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="520.19891"
+           id="tspan19146"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="523.82941"
+           id="tspan19148"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="527.45984"
+           id="tspan19150"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="531.09027"
+           id="tspan19152"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="534.7207"
+           id="tspan19154"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="538.35114"
+           id="tspan19156"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="541.98157"
+           id="tspan19158"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="545.61206"
+           id="tspan19160"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="549.24249"
+           id="tspan19162"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="552.87292"
+           id="tspan19164"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="556.50336"
+           id="tspan19166"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="560.13379"
+           id="tspan19168"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="563.76428"
+           id="tspan19170"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="567.39471"
+           id="tspan19172"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="571.02515"
+           id="tspan19178"
+           style="font-size:1.34006405px;line-height:1.25">17</tspan></text>
+      <g
+         id="g9399"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,525.25455)"
+           id="use8557-90"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(2.9563506,1.4634634e-7)"
+           id="g9287">
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.94586773,0,0,1.0050213,29.566314,547.35366)"
+             id="use6780-09"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-96"
+             transform="matrix(0.94586773,0,0,1.0050213,28.435837,547.35366)"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9399"
+         id="use9449"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-315.73862,110.87436)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20377"
+       inkscape:tile-cx="57.716545"
+       inkscape:tile-cy="560"
+       inkscape:tile-w="35.43309"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="544">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="M 14.40625,558.25 12.5,554.96875 c 0.22668,-0.0749 0.442282,-0.15772 0.65625,-0.28125 0.168639,-0.0974 0.322588,-0.2242 0.46875,-0.34375 0.173559,-0.0663 0.365756,-0.1232 0.53125,-0.21875 1.711748,-0.98827 2.28463,-3.23084 1.28125,-4.96875 -0.752535,-1.30342 -2.200592,-1.97069 -3.59375,-1.8125 -0.464386,0.0527 -0.915813,0.19043 -1.34375,0.4375 -0.168639,0.0974 -0.322437,0.22362 -0.46875,0.34375 -0.173413,0.0657 -0.365756,0.1232 -0.53125,0.21875 -0.528263,0.30499 -0.918777,0.757 -1.21875,1.25 l -0.875,0.5 c -0.626127,-0.0151 -1.266842,0.13567 -1.84375,0.46875 -0.213969,0.12353 -0.415914,0.24679 -0.59375,0.40625 -0.123793,0.0534 -0.255557,0.0873 -0.375,0.15625 -1.711749,0.98827 -2.315881,3.23085 -1.3125,4.96875 1.00338,1.73791 3.257002,2.33203 4.96875,1.34375 0.12326,-0.0712 0.201187,-0.16675 0.3125,-0.25 0.22668,-0.0749 0.442281,-0.18897 0.65625,-0.3125 0.201292,-0.11621 0.39335,-0.25887 0.5625,-0.40625 l 1.9375,3.34375 m -0.65625,-10.375 c 0.796278,-0.0925 1.626613,0.30752 2.0625,1.0625 0.481643,0.83422 0.313486,1.82676 -0.3125,2.46875 -0.568891,0.14082 -1.145821,0.0437 -1.625,-0.28125 l -0.9375,-1.625 c -0.03175,-0.57287 0.19162,-1.14643 0.59375,-1.5625 0.07743,-0.0185 0.140684,-0.0534 0.21875,-0.0625 z m -4.90625,2.78125 c 0.485574,-0.0564 0.96703,0.0985 1.375,0.375 l 0.9375,1.59375 c 0.041962,0.56291 -0.141753,1.11567 -0.53125,1.53125 -0.880559,0.23707 -1.857662,-0.12682 -2.34375,-0.96875 -0.478031,-0.82798 -0.33485,-1.8184 0.28125,-2.46875 0.090736,-0.0237 0.189544,-0.0518 0.28125,-0.0625 z"
+         id="use5608"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccscccccccccsccscccscccccccccscc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="544"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6688"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
+         x="33.950874"
+         y="544.93805"
+         id="use19054"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19102"
+           x="33.950874"
+           y="544.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="548.56848"
+           id="tspan19104"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="552.19891"
+           id="tspan19106"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="555.82941"
+           id="tspan19108"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="559.45984"
+           id="tspan19110"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="563.09027"
+           id="tspan19112"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="566.7207"
+           id="tspan19114"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="570.35114"
+           id="tspan19116"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="573.98157"
+           id="tspan19118"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="577.61206"
+           id="tspan19120"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="581.24249"
+           id="tspan19122"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="584.87292"
+           id="tspan19124"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="588.50336"
+           id="tspan19126"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="592.13379"
+           id="tspan19128"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="595.76428"
+           id="tspan19130"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="599.39471"
+           id="tspan19132"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="603.02515"
+           id="tspan19134"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="606.65558"
+           id="tspan19138"
+           style="font-size:1.34006405px;line-height:1.25">18</tspan></text>
+      <g
+         id="g9405"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,558.25459)"
+           id="use8557-72"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(3.7300298,7.7263998e-6)"
+           id="g9291">
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="matrix(0.98618696,0,0,1.001257,29.422985,580.24732)"
+             id="use6780-32"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#807f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-31"
+             transform="matrix(0.98618696,0,0,1.001257,28.292508,580.24732)"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9405"
+         id="use9451"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-332.23504,115.29568)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g20401"
+       inkscape:tile-cx="57.699124"
+       inkscape:tile-cy="592"
+       inkscape:tile-w="35.398248"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="40"
+       inkscape:tile-y0="576">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffff00;fill-opacity:1;stroke:#4c3737;stroke-width:2.15799999;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 14.40625,590.25 -1.875,-3.28125 c 0.229485,-0.0765 0.439284,-0.18723 0.65625,-0.3125 0.117637,-0.0679 0.205475,-0.17138 0.3125,-0.25 0.229485,-0.0765 0.470534,-0.18723 0.6875,-0.3125 1.735724,-1.00212 2.314621,-3.23302 1.3125,-4.96875 -0.75159,-1.30179 -2.185349,-1.9803 -3.59375,-1.8125 -0.469467,0.0559 -0.941069,0.21822 -1.375,0.46875 -0.137892,0.0796 -0.251619,0.18668 -0.375,0.28125 -0.206406,0.0726 -0.397639,0.16803 -0.59375,0.28125 -0.538332,0.31081 -0.974654,0.75061 -1.28125,1.25 L 7.375,582.125 C 6.752636,582.12 6.10668,582.26153 5.53125,582.59375 5.314284,582.71902 5.118202,582.83896 4.9375,583 c -0.125408,0.0543 -0.253884,0.0863 -0.375,0.15625 -1.735724,1.00212 -2.345871,3.26428 -1.34375,5 1.00212,1.73572 3.264277,2.31462 5,1.3125 0.183856,-0.10615 0.342261,-0.24345 0.5,-0.375 0.153749,-0.0625 0.32129,-0.10236 0.46875,-0.1875 0.216966,-0.12527 0.413292,-0.27737 0.59375,-0.4375 l 1.90625,3.34375 m -0.15625,-10.40625 c 0.664858,0.0506 1.293467,0.43414 1.65625,1.0625 0.481038,0.83319 0.292858,1.82099 -0.34375,2.46875 -0.56491,0.14224 -1.147683,0.0586 -1.625,-0.25 l -0.9375,-1.625 c -0.03406,-0.57443 0.158045,-1.13906 0.5625,-1.5625 0.22469,-0.0596 0.462644,-0.11086 0.6875,-0.0937 z m -5.40625,2.8125 c 0.513782,-0.0625 1.016542,0.10403 1.4375,0.40625 l 0.875,1.53125 c 0.048833,0.58126 -0.118315,1.16524 -0.53125,1.59375 -0.8911,0.2435 -1.858273,-0.0966 -2.34375,-0.9375 -0.488655,-0.84637 -0.320661,-1.87716 0.34375,-2.53125 0.072636,-0.017 0.145636,-0.0536 0.21875,-0.0625 z"
+         id="use5598"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccscccccccccsscscccsccccccccccccc" />
+      <rect
+         inkscape:tile-y0="0"
+         inkscape:tile-x0="-2.6098915e-15"
+         inkscape:tile-h="32"
+         inkscape:tile-w="32"
+         inkscape:tile-cy="16"
+         inkscape:tile-cx="16"
+         y="576"
+         x="-3.5527137e-15"
+         height="32"
+         width="32"
+         id="rect6680"
+         style="fill:#000000;fill-opacity:0;stroke:none;display:inline" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+         x="33.950874"
+         y="576.93805"
+         id="use19056"
+         inkscape:tile-x0="33.999998"
+         inkscape:tile-y0="-1.1920929e-08"><tspan
+           sodipodi:role="line"
+           id="tspan19062"
+           x="33.950874"
+           y="576.93805"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="580.56848"
+           id="tspan19064"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="584.19891"
+           id="tspan19066"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="587.82941"
+           id="tspan19068"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="591.45984"
+           id="tspan19070"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="595.09027"
+           id="tspan19072"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="598.7207"
+           id="tspan19074"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="602.35114"
+           id="tspan19076"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="605.98157"
+           id="tspan19078"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="609.61206"
+           id="tspan19080"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="613.24249"
+           id="tspan19082"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="616.87292"
+           id="tspan19084"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="620.50336"
+           id="tspan19086"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="624.13379"
+           id="tspan19088"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="627.76428"
+           id="tspan19090"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="631.39471"
+           id="tspan19092"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="635.02515"
+           id="tspan19094"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="638.65558"
+           id="tspan19096"
+           style="font-size:1.34006405px;line-height:1.25"> </tspan><tspan
+           sodipodi:role="line"
+           x="33.950874"
+           y="642.28601"
+           id="tspan19098"
+           style="font-size:1.34006405px;line-height:1.25">19</tspan></text>
+      <g
+         id="g9411"
+         transform="translate(60,0)">
+        <use
+           height="1024"
+           width="32"
+           transform="translate(37.375773,590.25459)"
+           id="use8557-45"
+           xlink:href="#path8548"
+           inkscape:tiled-clone-of="#path8548"
+           y="0"
+           x="0"
+           style="display:inline" />
+        <g
+           transform="translate(3.9999996,4.1160674e-6)"
+           id="g9295">
+          <use
+             style="stroke:#ffff00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             transform="translate(29.368968,612.21174)"
+             id="use6780-18"
+             width="32"
+             height="1024" />
+          <use
+             style="stroke:#c0be00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+             x="0"
+             y="0"
+             inkscape:tiled-clone-of="#g6630"
+             xlink:href="#g6630"
+             id="use6742-08"
+             transform="translate(28.238491,612.21174)"
+             width="32"
+             height="1024" />
+        </g>
+      </g>
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g9411"
+         id="use9453"
+         transform="matrix(0.86602541,-0.50000001,0.50000001,0.86602541,-348.23376,119.5829)"
+         width="32"
+         height="1024" />
+    </g>
+    <g
+       id="g21863"
+       sodipodi:insensitive="true">
+      <g
+         id="g21840">
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20129"
+           xlink:href="#g20129"
+           transform="translate(40,0)"
+           id="use20526"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20137"
+           xlink:href="#g20137"
+           transform="translate(40,0)"
+           id="use20532"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20146"
+           xlink:href="#g20146"
+           transform="translate(40,0)"
+           id="use20538"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20156"
+           xlink:href="#g20156"
+           transform="translate(40,0)"
+           id="use20544"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20167"
+           xlink:href="#g20167"
+           transform="translate(40,0)"
+           id="use20550"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20179"
+           xlink:href="#g20179"
+           transform="translate(40,0)"
+           id="use20556"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20192"
+           xlink:href="#g20192"
+           transform="translate(40,0)"
+           id="use20562"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20206"
+           xlink:href="#g20206"
+           transform="translate(40,0)"
+           id="use20568"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20221"
+           xlink:href="#g20221"
+           transform="translate(40,0)"
+           id="use20574"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20237"
+           xlink:href="#g20237"
+           transform="translate(40,0)"
+           id="use20580"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20254"
+           xlink:href="#g20254"
+           transform="translate(40,0)"
+           id="use20586"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20272"
+           xlink:href="#g20272"
+           transform="translate(40,0)"
+           id="use20592"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20291"
+           xlink:href="#g20291"
+           transform="translate(40,0)"
+           id="use20598"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20311"
+           xlink:href="#g20311"
+           transform="translate(40,0)"
+           id="use20604"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20332"
+           xlink:href="#g20332"
+           transform="translate(40,0)"
+           id="use20610"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20354"
+           xlink:href="#g20354"
+           transform="translate(40,0)"
+           id="use20616"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20377"
+           xlink:href="#g20377"
+           transform="translate(40,0)"
+           id="use20622"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20122"
+           xlink:href="#g20122"
+           transform="translate(40,0)"
+           id="use20520"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20401"
+           xlink:href="#g20401"
+           transform="translate(40,0)"
+           id="use20628"
+           width="32"
+           height="1024" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+           x="51.39032"
+           y="-14.899812"
+           id="text21782"><tspan
+             sodipodi:role="line"
+             id="tspan21784"
+             x="51.39032"
+             y="-14.899812"
+             style="font-size:4px;line-height:1.25">current</tspan></text>
+      </g>
+      <g
+         transform="translate(-40,0)"
+         id="g21817">
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20377"
+           xlink:href="#g20377"
+           transform="translate(80,32)"
+           id="use20624"
+           width="32"
+           height="1024"
+           style="opacity:0.3" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20122"
+           xlink:href="#g20122"
+           transform="translate(80,32)"
+           id="use20522"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20129"
+           xlink:href="#g20129"
+           transform="translate(80,32)"
+           id="use20528"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20137"
+           xlink:href="#g20137"
+           transform="translate(80,32)"
+           id="use20534"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20146"
+           xlink:href="#g20146"
+           transform="translate(80,32)"
+           id="use20540"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20156"
+           xlink:href="#g20156"
+           transform="translate(80,32)"
+           id="use20546"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20167"
+           xlink:href="#g20167"
+           transform="translate(80,32)"
+           id="use20552"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20179"
+           xlink:href="#g20179"
+           transform="translate(80,32)"
+           id="use20558"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20192"
+           xlink:href="#g20192"
+           transform="translate(80,32)"
+           id="use20564"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20206"
+           xlink:href="#g20206"
+           transform="translate(80,32)"
+           id="use20570"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20221"
+           xlink:href="#g20221"
+           transform="translate(80,32)"
+           id="use20576"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20237"
+           xlink:href="#g20237"
+           transform="translate(80,32)"
+           id="use20582"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20254"
+           xlink:href="#g20254"
+           transform="translate(80,32)"
+           id="use20588"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20272"
+           xlink:href="#g20272"
+           transform="translate(80,32)"
+           id="use20594"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20291"
+           xlink:href="#g20291"
+           transform="translate(80,32)"
+           id="use20600"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20311"
+           xlink:href="#g20311"
+           transform="translate(80,32)"
+           id="use20606"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20332"
+           xlink:href="#g20332"
+           transform="translate(80,32)"
+           id="use20612"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20354"
+           xlink:href="#g20354"
+           transform="translate(80,32)"
+           id="use20618"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20401"
+           xlink:href="#g20401"
+           transform="translate(80,-576)"
+           id="use20630"
+           width="32"
+           height="1024" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+           x="90.398727"
+           y="-14.899812"
+           id="text21786"><tspan
+             sodipodi:role="line"
+             id="tspan21788"
+             x="90.398727"
+             y="-14.899812"
+             style="font-size:4px;line-height:1.25">previous</tspan></text>
+      </g>
+      <g
+         transform="translate(-80,0)"
+         id="g21794">
+        <use
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20129"
+           xlink:href="#g20129"
+           id="use20524"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024"
+           style="opacity:0.3" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20122"
+           xlink:href="#g20122"
+           id="use20518"
+           transform="translate(120,576)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20137"
+           xlink:href="#g20137"
+           id="use20530"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20146"
+           xlink:href="#g20146"
+           id="use20536"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20156"
+           xlink:href="#g20156"
+           id="use20542"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20167"
+           xlink:href="#g20167"
+           id="use20548"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20179"
+           xlink:href="#g20179"
+           id="use20554"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20192"
+           xlink:href="#g20192"
+           id="use20560"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20206"
+           xlink:href="#g20206"
+           id="use20566"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20221"
+           xlink:href="#g20221"
+           id="use20572"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20237"
+           xlink:href="#g20237"
+           id="use20578"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20254"
+           xlink:href="#g20254"
+           id="use20584"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20272"
+           xlink:href="#g20272"
+           id="use20590"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20291"
+           xlink:href="#g20291"
+           id="use20596"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20311"
+           xlink:href="#g20311"
+           id="use20602"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20332"
+           xlink:href="#g20332"
+           id="use20608"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20354"
+           xlink:href="#g20354"
+           id="use20614"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20377"
+           xlink:href="#g20377"
+           id="use20620"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <use
+           style="opacity:0.3"
+           x="0"
+           y="0"
+           inkscape:tiled-clone-of="#g20401"
+           xlink:href="#g20401"
+           id="use20626"
+           transform="translate(120,-32)"
+           width="32"
+           height="1024" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+           x="133.95206"
+           y="-14.899812"
+           id="text21790"><tspan
+             sodipodi:role="line"
+             id="tspan21792"
+             x="133.95206"
+             y="-14.899812"
+             style="font-size:4px;line-height:1.25">next</tspan></text>
+      </g>
+    </g>
+    <g
+       transform="translate(-43.220079,-25.623855)"
+       style="display:inline;"
+       id="g6630"
+       inkscape:tile-cx="-15.633983"
+       inkscape:tile-cy="-8.4302709"
+       inkscape:tile-w="11.458973"
+       inkscape:tile-h="10.278167"
+       inkscape:tile-x0="-21.36347"
+       inkscape:tile-y0="-13.569355">
+      <path
+         inkscape:connector-curvature="0"
+         id="path5848"
+         d="m 27.586095,2.3326678 0,-8.3560946"
+         style="fill:none;fill-opacity:1;" />
+      <path
+         transform="matrix(0.78023006,0,0,0.78023006,15.389511,-9.9758292)"
+         d="m 15.633983,6.2748575 c 0,2.0283422 -1.644296,3.6726384 -3.672638,3.6726384 -2.0283425,0 -3.6726387,-1.6442962 -3.6726387,-3.6726384 0,-2.0283422 1.6442962,-3.6726384 3.6726387,-3.6726384 2.028342,0 3.672638,1.6442962 3.672638,3.6726384 z"
+         sodipodi:ry="3.6726384"
+         sodipodi:rx="3.6726384"
+         sodipodi:cy="6.2748575"
+         sodipodi:cx="11.961345"
+         id="path5850"
+         style="fill:none;fill-opacity:1;"
+         sodipodi:type="arc" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(5.7279677,0.06738818)"
+         id="use6622"
+         xlink:href="#path5850"
+         y="0"
+         x="0"
+         style="fill:none;fill-opacity:1;" />
+    </g>
+    <path
+       inkscape:connector-curvature="0"
+       id="path8548"
+       d="m -20.206027,-2.323 0,-8.470973"
+       style="fill:none;stroke:#ffff00;stroke-width:2.15799999;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       inkscape:tile-cx="-31.471655"
+       inkscape:tile-cy="-25.193905"
+       inkscape:tile-w="0"
+       inkscape:tile-h="9.729324"
+       inkscape:tile-x0="-31.471655"
+       inkscape:tile-y0="-30.058567"
+       sodipodi:nodetypes="cc" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="2.438952"
+       y="-40.311871"
+       id="text9173"><tspan
+         sodipodi:role="line"
+         id="tspan9175"
+         x="2.438952"
+         y="-40.311871"
+         style="font-size:4px;line-height:1.25">(let ((pi 3.1415926)</tspan><tspan
+         sodipodi:role="line"
+         x="2.438952"
+         y="-35.311871"
+         id="tspan9177"
+         style="font-size:4px;line-height:1.25">      (start-width 13.019))</tspan><tspan
+         sodipodi:role="line"
+         x="2.438952"
+         y="-30.311871"
+         id="tspan9179"
+         style="font-size:4px;line-height:1.25">         (do ((i 1 (+ i 1)))</tspan><tspan
+         sodipodi:role="line"
+         x="2.438952"
+         y="-25.311871"
+         id="tspan9181"
+         style="font-size:4px;line-height:1.25">       ((&gt; i 19))</tspan><tspan
+         sodipodi:role="line"
+         x="2.438952"
+         y="-20.311871"
+         id="tspan9183"
+         style="font-size:4px;line-height:1.25">         (format #t &quot;~d\t~1,2f\n&quot; i (* start-width (cos (* i (/ pi 19)))))))</tspan></text>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer10"
+     inkscape:label="eye"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <g
+       id="g6458">
+      <g
+         inkscape:tile-y0="15"
+         inkscape:tile-x0="16"
+         inkscape:tile-h="8.0000005"
+         inkscape:tile-w="9.9999997"
+         inkscape:tile-cy="19"
+         inkscape:tile-cx="21"
+         id="g4669"
+         style="display:inline">
+        <use
+           x="0"
+           y="0"
+           xlink:href="#path3893"
+           id="use4663"
+           transform="matrix(0.85714284,0,0,0.85714284,6.2857143,1.2857142)"
+           width="32"
+           height="1024" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path3893"
+           sodipodi:cx="20.285126"
+           sodipodi:cy="19.643196"
+           sodipodi:rx="2.8726213"
+           sodipodi:ry="2.8726213"
+           d="m 23.157747,19.643196 c 0,1.586505 -1.286116,2.872621 -2.872621,2.872621 -1.586505,0 -2.872622,-1.286116 -2.872622,-2.872621 0,-1.586505 1.286117,-2.872621 2.872622,-2.872621 1.586505,0 2.872621,1.286116 2.872621,2.872621 z"
+           transform="matrix(1.2183994,0,0,1.2183994,-5.2153846,-4.4332579)" />
+        <path
+           transform="matrix(0.52217116,0,0,0.52217116,9.9076924,9.2428895)"
+           d="m 23.157747,19.643196 c 0,1.586505 -1.286116,2.872621 -2.872621,2.872621 -1.586505,0 -2.872622,-1.286116 -2.872622,-2.872621 0,-1.586505 1.286117,-2.872621 2.872622,-2.872621 1.586505,0 2.872621,1.286116 2.872621,2.872621 z"
+           sodipodi:ry="2.8726213"
+           sodipodi:rx="2.8726213"
+           sodipodi:cy="19.643196"
+           sodipodi:cx="20.285126"
+           id="path4665"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           sodipodi:type="arc" />
+        <use
+           x="0"
+           y="0"
+           xlink:href="#path4665"
+           id="use4667"
+           transform="matrix(0.83333334,0,0,0.83333334,6.9166665,1.7499999)"
+           width="32"
+           height="1024" />
+      </g>
+    </g>
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,32.000002)"
+       id="use6422" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,64.999999)"
+       id="use6424"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,96.000007)"
+       id="use6426" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,128.00001)"
+       id="use6428" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,160.00001)"
+       id="use6430" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,192.00001)"
+       id="use6432" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,225)"
+       id="use6434"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,256.00002)"
+       id="use6436" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,288.00002)"
+       id="use6438" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,320.00002)"
+       id="use6440" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,352.00002)"
+       id="use6442" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,385)"
+       id="use6444"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,416.00003)"
+       id="use6446" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,448.00003)"
+       id="use6448" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,480.00003)"
+       id="use6450" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,511)"
+       id="use6452"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,544.00004)"
+       id="use6454" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,576.00004)"
+       id="use6456" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="frame-0.5"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       id="rect20004-7"
+       width="31"
+       height="31"
+       x="0.5"
+       y="0.5"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,32)"
+       id="use20175-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,64)"
+       id="use20177-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,96)"
+       id="use20179-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,128)"
+       id="use20181-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,160)"
+       id="use20183-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,192)"
+       id="use20185-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,224)"
+       id="use20187-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,256)"
+       id="use20189-6"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,288)"
+       id="use20191-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,320)"
+       id="use20193-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,352)"
+       id="use20195-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,384)"
+       id="use20197-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,416)"
+       id="use20199-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,448)"
+       id="use20201-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,480)"
+       id="use20203-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,512)"
+       id="use20205-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,544)"
+       id="use20207-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,576)"
+       id="use20209-7"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1"
+       id="path3296"
+       sodipodi:cx="13.082203"
+       sodipodi:cy="31.332769"
+       sodipodi:rx="3.5490334"
+       sodipodi:ry="2.8754942"
+       d="m 16.631236,31.332769 a 3.5490334,2.8754942 0 1 1 -7.0980665,0 3.5490334,2.8754942 0 1 1 7.0980665,0 z"
+       transform="matrix(0.98618401,0,0,0.86941576,-0.40145933,3.2587965)"
+       inkscape:tile-cx="12.253232"
+       inkscape:tile-cy="30.529706"
+       inkscape:tile-w="8.5487669"
+       inkscape:tile-h="7.0462566"
+       inkscape:tile-x0="7.9788488"
+       inkscape:tile-y0="27.006578" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       id="use3526"
+       transform="translate(0,33)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,66)"
+       id="use3528"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,97)"
+       id="use3530"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,128)"
+       id="use3532"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,160)"
+       id="use3534"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,193)"
+       id="use3536"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,226)"
+       id="use3538"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,257)"
+       id="use3540"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,288)"
+       id="use3542"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,320)"
+       id="use3544"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,353)"
+       id="use3546"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,386)"
+       id="use3548"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,417)"
+       id="use3550"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,448)"
+       id="use3552"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,480)"
+       id="use3554"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,510)"
+       id="use3556"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,543)"
+       id="use3558"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,576)"
+       id="use3560"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="frame and hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,0 0,32 9.6875,0 C 9.2558025,31.584271 9,31.057361 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.557361 -0.255803,1.084271 -0.6875,1.5 L 32,32 32,0 0,0 z"
+       id="rect13136"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,32 0,32 9.0625,0 C 9.0158769,63.837256 9,63.672589 9,63.5 9,62.119288 10.567003,61 12.5,61 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.172589 -0.01588,0.337256 -0.0625,0.5 L 32,64 32,32 0,32 z"
+       id="use13138"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,64 0,32 10.0625,0 c 0.326362,-1.139208 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.860792 3.4375,2 L 32,96 32,64 0,64 z"
+       id="use13140"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,96 0,32 9.0625,0 C 9.0158769,127.83726 9,127.67259 9,127.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,128 32,96 0,96 z"
+       id="use13142"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,128 0,32 9.6875,0 C 9.2558025,159.58427 9,159.05736 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,160 32,128 0,128 z"
+       id="use13144"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,160 0,32 9.6875,0 C 9.2558025,191.58427 9,191.05736 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,192 32,160 0,160 z"
+       id="use13146"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,192 0,32 9.0625,0 C 9.0158769,223.83726 9,223.67259 9,223.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,224 32,192 0,192 z"
+       id="use13148"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,224 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,256 32,224 0,224 z"
+       id="use13150"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,256 0,32 9.0625,0 C 9.0158769,287.83726 9,287.67259 9,287.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,288 32,256 0,256 z"
+       id="use13152"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,288 0,32 9.6875,0 C 9.2558025,319.58427 9,319.05736 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,320 32,288 0,288 z"
+       id="use13154"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,320 0,32 9.6875,0 C 9.2558025,351.58427 9,351.05736 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,352 32,320 0,320 z"
+       id="use13156"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,352 0,32 9.0625,0 C 9.0158769,383.83726 9,383.67259 9,383.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,384 32,352 0,352 z"
+       id="use13158"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,384 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,416 32,384 0,384 z"
+       id="use13160"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,416 0,32 9.0625,0 C 9.0158769,447.83726 9,447.67259 9,447.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,448 32,416 0,416 z"
+       id="use13162"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,448 0,32 9.6875,0 C 9.2558025,479.58427 9,479.05736 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,480 32,448 0,448 z"
+       id="use13164"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,480 0,32 9.6875,0 C 9.2558025,511.58427 9,511.05736 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,512 32,480 0,480 z"
+       id="use13166"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,512 0,32 32,0 0,-32 -32,0 z m 12.5,26 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use13168"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,544 0,32 12.5,0 c -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 l 19.5,0 0,-32 -32,0 z"
+       id="use13170"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,576 0,32 9.6875,0 C 9.2558025,607.58427 9,607.05736 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,608 32,576 0,576 z"
+       id="use13172"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="frame-0.5 and hand"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="rect20004-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20175-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20177-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20179-3"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20181-9"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20183-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20185-4-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20187-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20189-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20191-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20193-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20195-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20197-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20199-0-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,448.5 0,31 8.8125,0 C 9.1215627,479.19131 9,478.85917 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20201-6"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,480.5 0,31 8.8125,0 C 9.1215627,511.19131 9,510.85917 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20203-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,512.5 0,31 31,0 0,-31 -31,0 z m 12,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use20205-1"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,544.5 0,31 9.90625,0 C 9.5507391,575.04422 9,574.32095 9,573.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+       id="use20207-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20209-1"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer12"
+     inkscape:label="help"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="78.14505"
+       y="2.8479996"
+       id="text22068"><tspan
+         sodipodi:role="line"
+         id="tspan22070"
+         x="78.14505"
+         y="2.8479996"
+         style="font-size:4px;line-height:1.25">You need unlock some layers</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="7.8479996"
+         id="tspan22327"
+         style="font-size:4px;line-height:1.25">Layers:</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="12.848"
+         id="tspan22084"
+         style="font-size:4px;line-height:1.25">1. frame 32x32</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="17.848"
+         id="tspan22102"
+         style="font-size:4px;line-height:1.25">   For example you can set preview 32x32 (View&gt;Icon_Preview).</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="22.848"
+         id="tspan22074"
+         style="font-size:4px;line-height:1.25">2. template</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="27.848"
+         id="tspan22072"
+         style="font-size:4px;line-height:1.25">   For the template.png and numbers of frames of a movie.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="32.848"
+         id="tspan22082"
+         style="font-size:4px;line-height:1.25">3. cleanface</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="37.848"
+         id="tspan22106"
+         style="font-size:4px;line-height:1.25">   Wash your face regularly, take the example of the hedgehogs.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="42.848"
+         id="tspan22086"
+         style="font-size:4px;line-height:1.25">4. static background</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="47.848"
+         id="tspan22108"
+         style="font-size:4px;line-height:1.25">   For objects that do not depend on the movement of a hedgehog.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="52.848"
+         id="tspan22132"
+         style="font-size:4px;line-height:1.25">   For example trajectory of the balls.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="57.848"
+         id="tspan22088"
+         style="font-size:4px;line-height:1.25">5. static hat</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="62.848"
+         id="tspan22110"
+         style="font-size:4px;line-height:1.25">   Hard hats. Contains a group of objects, which you can create a hat, </tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="67.848"
+         id="tspan22134"
+         style="font-size:4px;line-height:1.25">   as well as 18 clones centered on the face and eyes hedgehog.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="72.848"
+         id="tspan22122"
+         style="font-size:4px;line-height:1.25">6. dynamic hat</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="77.848"
+         id="tspan22112"
+         style="font-size:4px;line-height:1.25">   19 different groups to create an animation.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="82.848"
+         id="tspan22136"
+         style="font-size:4px;line-height:1.25">   Transparent clones allow you to create animations without jerks.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="87.848"
+         id="tspan22138"
+         style="font-size:4px;line-height:1.25">   Tweening (https://en.wikipedia.org/wiki/Inbetweening):</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="92.848"
+         id="tspan22140"
+         style="font-size:4px;line-height:1.25">   to simultaneously see the previous, current and next frame.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="97.848"
+         id="tspan22150"
+         style="font-size:4px;line-height:1.25"> </tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="102.848"
+         id="tspan22311"
+         style="font-size:4px;line-height:1.25">   Everyone is waiting to support animation in Inkscape.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="107.848"
+         id="tspan22309"
+         style="font-size:4px;line-height:1.25"> </tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="112.848"
+         id="tspan22152"
+         style="font-size:4px;line-height:1.25">   If the animation is half of 19, it is logical not to draw the rest,</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="117.848"
+         id="tspan22156"
+         style="font-size:4px;line-height:1.25">    and the clone (1 -&gt; 18, 2 -&gt; 17, 3 -&gt; 16, ...).</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="122.848"
+         id="tspan22154"
+         style="font-size:4px;line-height:1.25">    Nineteenth frame can not be a clone of the first,</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="127.848"
+         id="tspan22158"
+         style="font-size:4px;line-height:1.25">    otherwise you can get a frozen frame of cartoon.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="132.84799"
+         id="tspan22094"
+         style="font-size:4px;line-height:1.25">7. eye</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="137.84799"
+         id="tspan22120"
+         style="font-size:4px;line-height:1.25">   For those cases when you want to show his eyes from under hat</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="142.84799"
+         id="tspan22130"
+         style="font-size:4px;line-height:1.25">   Can also be used as a template for the mask.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="147.84799"
+         id="tspan22096"
+         style="font-size:4px;line-height:1.25">8. frame-0.5</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="152.84799"
+         id="tspan22142"
+         style="font-size:4px;line-height:1.25">   Frame 31.5x31.5, can be used as a mask (or clip)</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="157.84799"
+         id="tspan22160"
+         style="font-size:4px;line-height:1.25">    to trim the protruding portion of the image.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="162.84799"
+         id="tspan22092"
+         style="font-size:4px;line-height:1.25">9. hand</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="167.84799"
+         id="tspan22144"
+         style="font-size:4px;line-height:1.25">   Near the hand can be used as an mask.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="172.84799"
+         id="tspan22098"
+         style="font-size:4px;line-height:1.25">10. frame-and-hand</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="177.84799"
+         id="tspan22146"
+         style="font-size:4px;line-height:1.25">   Frame 32x32 with hand, can be used as a mask (or clip)</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="182.84799"
+         id="tspan22162"
+         style="font-size:4px;line-height:1.25">    to trim the protruding portion of the image.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="187.84799"
+         id="tspan22100"
+         style="font-size:4px;line-height:1.25">11. frame-0.5-and-hand</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="192.84799"
+         id="tspan22148"
+         style="font-size:4px;line-height:1.25">   Frame 31.5x31.5 with hand, can be used as a mask (or clip)</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="197.84799"
+         id="tspan22164"
+         style="font-size:4px;line-height:1.25">    to trim the protruding portion of the image.</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="202.84799"
+         id="tspan22166"
+         style="font-size:4px;line-height:1.25">12. help</tspan><tspan
+         sodipodi:role="line"
+         x="78.14505"
+         y="207.84799"
+         id="tspan22168"
+         style="font-size:4px;line-height:1.25">   This text</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-19.445436"
+       y="-35.24596"
+       id="text22315"><tspan
+         sodipodi:role="line"
+         x="-19.445436"
+         y="-35.24596"
+         id="tspan22319"
+         style="font-size:4px;line-height:1.25">author of svg template: Roman V. Prikhodchenko</tspan><tspan
+         sodipodi:role="line"
+         x="-19.445436"
+         y="-30.24596"
+         id="tspan22321"
+         style="font-size:4px;line-height:1.25"> </tspan><tspan
+         sodipodi:role="line"
+         x="-19.445436"
+         y="-25.24596"
+         id="tspan22323"
+         style="font-size:4px;line-height:1.25">other information in File&gt;Document_Metadata</tspan></text>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/noface.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,1627 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="noface.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="noface.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title32471">No Face</title>
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4634">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop4636" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop4638" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4634"
+       id="linearGradient4955"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0378994,0,0,1.0378994,-2.5470877,0.5264693)"
+       x1="17.181637"
+       y1="20.607792"
+       x2="17.181637"
+       y2="29.427332" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="11.639164"
+     inkscape:cx="26.189137"
+     inkscape:cy="1007.525"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>No Face</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat No Face</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="template"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="47.098183"
+       id="text4913"><tspan
+         sodipodi:role="line"
+         id="tspan4915"
+         x="-15"
+         y="47.098183"
+         style="font-size:8px;line-height:1.25">01-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="79.098183"
+       id="text4917"><tspan
+         sodipodi:role="line"
+         id="tspan4919"
+         x="-15"
+         y="79.098183"
+         style="font-size:8px;line-height:1.25">02-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="111.09818"
+       id="text4921"><tspan
+         sodipodi:role="line"
+         id="tspan4923"
+         x="-15"
+         y="111.09818"
+         style="font-size:8px;line-height:1.25">03v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="143.09818"
+       id="text4925"><tspan
+         sodipodi:role="line"
+         id="tspan4927"
+         x="-15"
+         y="143.09818"
+         style="font-size:8px;line-height:1.25">04-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="175.09818"
+       id="text4929"><tspan
+         sodipodi:role="line"
+         id="tspan4931"
+         x="-15"
+         y="175.09818"
+         style="font-size:8px;line-height:1.25">05-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="207.09818"
+       id="text4933"><tspan
+         sodipodi:role="line"
+         id="tspan4935"
+         x="-15"
+         y="207.09818"
+         style="font-size:8px;line-height:1.25">06-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="239.09818"
+       id="text4937"><tspan
+         sodipodi:role="line"
+         id="tspan4939"
+         x="-15"
+         y="239.09818"
+         style="font-size:8px;line-height:1.25">07-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="271.09824"
+       id="text4941"><tspan
+         sodipodi:role="line"
+         id="tspan4943"
+         x="-15"
+         y="271.09824"
+         style="font-size:8px;line-height:1.25">08v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="303.09824"
+       id="text4945"><tspan
+         sodipodi:role="line"
+         id="tspan4947"
+         x="-15"
+         y="303.09824"
+         style="font-size:8px;line-height:1.25">09-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="335.09824"
+       id="text4949"><tspan
+         sodipodi:role="line"
+         id="tspan4951"
+         x="-15"
+         y="335.09824"
+         style="font-size:8px;line-height:1.25">10-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="367.09824"
+       id="text4953"><tspan
+         sodipodi:role="line"
+         id="tspan4955"
+         x="-15"
+         y="367.09824"
+         style="font-size:8px;line-height:1.25">11-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="399.16223"
+       id="text4957"><tspan
+         sodipodi:role="line"
+         id="tspan4959"
+         x="-15"
+         y="399.16223"
+         style="font-size:8px;line-height:1.25">12-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="431.09824"
+       id="text4961"><tspan
+         sodipodi:role="line"
+         id="tspan4963"
+         x="-15"
+         y="431.09824"
+         style="font-size:8px;line-height:1.25">13v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="463.10223"
+       id="text4965"><tspan
+         sodipodi:role="line"
+         id="tspan4967"
+         x="-15"
+         y="463.10223"
+         style="font-size:8px;line-height:1.25">14-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="495.09824"
+       id="text4969"><tspan
+         sodipodi:role="line"
+         id="tspan4971"
+         x="-15"
+         y="495.09824"
+         style="font-size:8px;line-height:1.25">15-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="527.09821"
+       id="text4973"><tspan
+         sodipodi:role="line"
+         id="tspan4975"
+         x="-15"
+         y="527.09821"
+         style="font-size:8px;line-height:1.25">16-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="559.09821"
+       id="text4977"><tspan
+         sodipodi:role="line"
+         id="tspan4979"
+         x="-15"
+         y="559.09821"
+         style="font-size:8px;line-height:1.25">17^</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="591.09821"
+       id="text4981"><tspan
+         sodipodi:role="line"
+         id="tspan4983"
+         x="-15"
+         y="591.09821"
+         style="font-size:8px;line-height:1.25">18-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="623.09821"
+       id="text4985"><tspan
+         sodipodi:role="line"
+         id="tspan4987"
+         x="-15"
+         y="623.09821"
+         style="font-size:8px;line-height:1.25">19x</tspan></text>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline">
+    <rect
+       style="fill:#000000;fill-opacity:1;stroke:none"
+       id="rect4917"
+       width="35.299187"
+       height="26.837683"
+       x="40.84935"
+       y="3.9016583" />
+    <g
+       id="g4823"
+       transform="translate(50.349794,0.29644791)">
+      <path
+         transform="translate(-5.2991269,-1.6693884)"
+         d="m 27.573011,20.060658 a 7.10815,11.501228 0 1 1 -14.2163,0 7.10815,11.501228 0 1 1 14.2163,0 z"
+         sodipodi:ry="11.501228"
+         sodipodi:rx="7.10815"
+         sodipodi:cy="20.060658"
+         sodipodi:cx="20.464861"
+         id="path4787"
+         style="fill:#ffffff;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+      <g
+         transform="translate(-4.6071891,0.79346792)"
+         id="g4707">
+        <g
+           transform="translate(5.4048993,0)"
+           id="g4661">
+          <path
+             sodipodi:type="arc"
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="path4657"
+             sodipodi:cx="19.081882"
+             sodipodi:cy="17.447577"
+             sodipodi:rx="2.4273772"
+             sodipodi:ry="0.80912572"
+             d="m 21.50926,17.447577 a 2.4273772,0.80912572 0 1 1 -4.854755,0 2.4273772,0.80912572 0 1 1 4.854755,0 z"
+             transform="matrix(0.69444445,0,0,7.7083335,4.819168,-117.887)" />
+          <rect
+             style="fill:#ffffff;fill-opacity:1;stroke:none"
+             id="rect4863"
+             width="4.2547545"
+             height="6.8843374"
+             x="16.78524"
+             y="13.519149"
+             transform="translate(-0.7977102,-0.79346792)" />
+          <path
+             transform="translate(-1.0114072,-2.3272883)"
+             d="m 21.50926,17.447577 a 2.4273772,0.80912572 0 1 1 -4.854755,0 2.4273772,0.80912572 0 1 1 4.854755,0 z"
+             sodipodi:ry="0.80912572"
+             sodipodi:rx="2.4273772"
+             sodipodi:cy="17.447577"
+             sodipodi:cx="19.081882"
+             id="path4651"
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             sodipodi:type="arc" />
+          <path
+             sodipodi:open="true"
+             sodipodi:end="2.0943951"
+             sodipodi:start="1.0471976"
+             sodipodi:type="arc"
+             style="fill:none;stroke:#000000;stroke-width:0.30138859;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+             id="path4653"
+             sodipodi:cx="19.081882"
+             sodipodi:cy="17.447577"
+             sodipodi:rx="2.4273772"
+             sodipodi:ry="0.80912572"
+             d="m 20.295571,18.1483 a 2.4273772,0.80912572 0 0 1 -2.427377,0"
+             transform="matrix(1.3314019,0,0,1.8428967,-7.3351781,-15.818139)" />
+        </g>
+        <use
+           height="1024"
+           width="32"
+           transform="translate(-7.4048993,0)"
+           id="use4821"
+           xlink:href="#g4661"
+           y="0"
+           x="0" />
+      </g>
+      <g
+         transform="translate(-5.4669727,1.3077787)"
+         id="g4719">
+        <path
+           transform="matrix(1.1666666,0,0,2.6666667,-1.6294883,-22.066871)"
+           d="m 21.50926,17.447577 a 2.4273772,0.80912572 0 1 1 -4.854755,0 2.4273772,0.80912572 0 1 1 4.854755,0 z"
+           sodipodi:ry="0.80912572"
+           sodipodi:rx="2.4273772"
+           sodipodi:cy="17.447577"
+           sodipodi:cx="19.081882"
+           id="path4677"
+           style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
+           id="path4679"
+           sodipodi:cx="19.081882"
+           sodipodi:cy="17.447577"
+           sodipodi:rx="2.4273772"
+           sodipodi:ry="0.80912572"
+           d="m 21.50926,17.447577 a 2.4273772,0.80912572 0 1 1 -4.854755,0 2.4273772,0.80912572 0 1 1 4.854755,0 z"
+           transform="translate(1.5508257,6.675289)" />
+        <path
+           transform="matrix(1.3314019,0,0,1.8428967,-4.7729453,-7.56366)"
+           d="m 20.295571,18.1483 a 2.4273772,0.80912572 0 0 1 -2.427377,0"
+           sodipodi:ry="0.80912572"
+           sodipodi:rx="2.4273772"
+           sodipodi:cy="17.447577"
+           sodipodi:cx="19.081882"
+           id="path4681"
+           style="fill:none;stroke:#000000;stroke-width:0.30138859;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+           sodipodi:type="arc"
+           sodipodi:start="1.0471976"
+           sodipodi:end="2.0943951"
+           sodipodi:open="true" />
+      </g>
+    </g>
+    <g
+       transform="translate(36.486817,-1.8050334)"
+       id="g5003">
+      <path
+         inkscape:connector-curvature="0"
+         id="path5005"
+         d="m 14.374401,7.5436497 c -3.925723,0 -7.1250003,5.1480463 -7.1250003,11.5000003 0,6.351953 3.1992773,11.5 7.1250003,11.5 3.925723,0 7.09375,-5.148047 7.09375,-11.5 0,-6.351954 -3.168027,-11.5000003 -7.09375,-11.5000003 z M 10.655651,11.8249 c 0.531133,0 1.003525,0.9234 1.3125,2.34375 l -2.5937503,0 C 9.6833757,12.7483 10.124518,11.8249 10.655651,11.8249 z m 7.40625,0 c 0.531133,0 1.003525,0.9234 1.3125,2.34375 l -2.59375,0 c 0.308975,-1.42035 0.750117,-2.34375 1.28125,-2.34375 z m -7.40625,3.9375 c 1.340604,0 2.4375,0.365632 2.4375,0.8125 0,0.446867 -1.096896,0.8125 -2.4375,0.8125 -1.3406033,0 -2.4062503,-0.365633 -2.4062503,-0.8125 0,-0.446868 1.065647,-0.8125 2.4062503,-0.8125 z m 7.40625,0 c 1.340604,0 2.4375,0.365632 2.4375,0.8125 0,0.446867 -1.096896,0.8125 -2.4375,0.8125 -1.340603,0 -2.40625,-0.365633 -2.40625,-0.8125 0,-0.446868 1.065647,-0.8125 2.40625,-0.8125 z m -8.9375003,3.09375 c 0.9533273,0.253951 2.1716733,0.253951 3.1250003,0 l 0.09375,0.46875 c -1.046527,0.278779 -2.297223,0.278779 -3.3437503,0 l 0.125,-0.46875 z m 7.4062503,0 c 0.953326,0.253951 2.171673,0.253951 3.125,0 l 0.09375,0.46875 c -1.046527,0.278779 -2.297224,0.278779 -3.34375,0 l 0.125,-0.46875 z m -7.3125003,2.1875 2.9062503,0 c -0.286873,1.926307 -0.832301,3.25 -1.46875,3.25 -0.636448,0 -1.1506273,-1.323693 -1.4375003,-3.25 z m 7.4062503,0 2.90625,0 c -0.286873,1.926307 -0.832301,3.25 -1.46875,3.25 -0.636448,0 -1.150627,-1.323693 -1.4375,-3.25 z m -2.25,4.21875 c 1.340604,0 2.4375,0.365632 2.4375,0.8125 0,0.446867 -1.096896,0.8125 -2.4375,0.8125 -1.340603,0 -2.4375,-0.365633 -2.4375,-0.8125 0,-0.446868 1.096897,-0.8125 2.4375,-0.8125 z m -1.53125,2.375 c 0.953327,0.253951 2.140423,0.253951 3.09375,0 l 0.125,0.4375 c -1.046527,0.278779 -2.297223,0.278779 -3.34375,0 l 0.125,-0.4375 z"
+         style="fill:#ffffff;fill-opacity:1;stroke:none" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,31.970505)"
+       id="use5014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,64.923684)"
+       id="use5016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,95.911512)"
+       id="use5018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,127.94081)"
+       id="use5020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,159.94614)"
+       id="use5022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,191.93951)"
+       id="use5024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,224.96334)"
+       id="use5026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,255.95126)"
+       id="use5028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,287.96857)"
+       id="use5030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,319.93908)"
+       id="use5032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,351.95638)"
+       id="use5034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,384.95628)"
+       id="use5036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,415.9442)"
+       id="use5038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,447.91471)"
+       id="use5040"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,479.93201)"
+       id="use5042"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,510.93198)"
+       id="use5044"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,543.91983)"
+       id="use5046"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5007"
+       xlink:href="#g5007"
+       transform="translate(0,575.93713)"
+       id="use5048"
+       width="32"
+       height="1024" />
+    <g
+       id="g5007"
+       inkscape:tile-cx="15.200291"
+       inkscape:tile-cy="19.012945"
+       inkscape:tile-w="26.274701"
+       inkscape:tile-h="26.064093"
+       inkscape:tile-x0="2.0629405"
+       inkscape:tile-y0="5.9808984"
+       style="display:inline"
+       transform="matrix(1,0,0,1.0402076,0,-1.2873517)"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90">
+      <path
+         sodipodi:nodetypes="zcczzz"
+         inkscape:connector-curvature="0"
+         id="path3861"
+         d="m 28.268527,18.4641 c 0,5.585885 0.06911,12.389718 0.06911,12.389718 L 2.1491744,30.832564 c 0,0 -0.086234,-6.59672 -0.086234,-12.182605 0,-5.585884 5.3141468,-12.6690606 12.7619926,-12.6690606 7.447846,0 13.443594,6.8973136 13.443594,12.4832016 z"
+         style="fill:url(#linearGradient4955);fill-opacity:1;stroke:none" />
+      <g
+         transform="translate(5.8436882,-0.7287016)"
+         id="g4891">
+        <path
+           sodipodi:nodetypes="ssssssccssccsssssssssssccccccccccccccccccsssssccccc"
+           inkscape:connector-curvature="0"
+           id="path4893"
+           d="m 9.14617,7.5436497 c -3.925723,0 -2.1376821,5.1480463 -2.1376821,11.5000003 0,6.351953 3.4401901,11.5 7.3659131,11.5 3.925723,0 6.274646,-5.148047 6.274646,-11.5 0,-6.351954 -7.577154,-11.5000003 -11.502877,-11.5000003 z M 8.7040898,9.6741449 c 0.531133,0 2.0396182,3.0741551 2.3485932,4.4945051 l -2.5937508,0 C 8.7679072,12.7483 8.1729568,9.6741449 8.7040898,9.6741449 z m 5.0088742,0.1870222 c 0.531133,0 4.003351,2.8871329 4.312326,4.3074829 l -2.449202,0 C 15.885063,12.7483 13.181831,9.8611671 13.712964,9.8611671 z M 10.173826,15.7624 c 1.340604,0 2.4375,0.5996 2.4375,1.046468 0,0.446867 -1.096896,0.999675 -2.4375,0.999675 -1.3406038,0 -2.4062508,-0.552808 -2.4062508,-0.999675 0,-0.446868 1.065647,-1.046468 2.4062508,-1.046468 z m 6.972607,0 c 1.340604,0 1.772933,0.5996 1.772933,1.046468 0,0.446867 -0.432329,0.999675 -1.772933,0.999675 -1.340603,0 -2.165337,-0.552808 -2.165337,-0.999675 0,-0.446868 0.824734,-1.046468 2.165337,-1.046468 z m -8.2629451,3.09375 c 0.9533273,0.253951 2.1716731,0.253951 3.1250001,0 l 0.09375,0.46875 c -1.046527,0.278779 -2.2972228,0.278779 -3.3437501,0 z m 7.1171551,0 c 0.953326,0.253951 1.882577,0.253951 2.835904,0 l 0.09375,0.46875 c -1.046527,0.278779 -2.008128,0.278779 -3.054654,0 z m -6.4109204,2.1875 1.9703764,0 c -0.848397,3.283324 -0.0715,-0.07236 -0.904448,3.25 -1.0201298,-3.27556 -0.07715,-0.107057 -1.0659284,-3.25 z m 7.0703614,0 1.872622,0 c -0.895192,3.236531 0.01277,-0.02556 -0.904448,3.25 -0.917211,-3.181972 -0.02619,-0.107061 -0.968174,-3.25 z m -2.285683,4.21875 c 1.340604,0 2.148405,0.365632 2.148405,0.8125 0,0.446867 -0.807801,0.8125 -2.148405,0.8125 -1.340603,0 -2.4375,-0.365633 -2.4375,-0.8125 0,-0.446868 1.096897,-0.8125 2.4375,-0.8125 z m -1.53125,2.375 c 0.953327,0.253951 1.947693,0.253951 2.90102,0 l 0.125,0.4375 c -1.046527,0.278779 -2.104493,0.278779 -3.15102,0 z"
+           style="fill:#ffffff;fill-opacity:1;stroke:none"
+           inkscape:export-xdpi="90"
+           inkscape:export-ydpi="90" />
+      </g>
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="frame"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none"
+       id="rect20004"
+       width="32"
+       height="32"
+       x="-2.6098915e-15"
+       y="0"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="frame-0.5"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       id="rect20004-7"
+       width="31"
+       height="31"
+       x="0.5"
+       y="0.5"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,32)"
+       id="use20175-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,64)"
+       id="use20177-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,96)"
+       id="use20179-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,128)"
+       id="use20181-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,160)"
+       id="use20183-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,192)"
+       id="use20185-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,224)"
+       id="use20187-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,256)"
+       id="use20189-6"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,288)"
+       id="use20191-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,320)"
+       id="use20193-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,352)"
+       id="use20195-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,384)"
+       id="use20197-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,416)"
+       id="use20199-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,448)"
+       id="use20201-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,480)"
+       id="use20203-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,512)"
+       id="use20205-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,544)"
+       id="use20207-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,576)"
+       id="use20209-7"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1"
+       id="path3296"
+       sodipodi:cx="13.082203"
+       sodipodi:cy="31.332769"
+       sodipodi:rx="3.5490334"
+       sodipodi:ry="2.8754942"
+       d="m 16.631236,31.332769 a 3.5490334,2.8754942 0 1 1 -7.0980665,0 3.5490334,2.8754942 0 1 1 7.0980665,0 z"
+       transform="matrix(0.98618401,0,0,0.86941576,-0.40145933,3.2587965)"
+       inkscape:tile-cx="12.253232"
+       inkscape:tile-cy="30.529706"
+       inkscape:tile-w="8.5487669"
+       inkscape:tile-h="7.0462566"
+       inkscape:tile-x0="7.9788488"
+       inkscape:tile-y0="27.006578" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       id="use3526"
+       transform="translate(0,33)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,66)"
+       id="use3528"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,97)"
+       id="use3530"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,128)"
+       id="use3532"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,160)"
+       id="use3534"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,193)"
+       id="use3536"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,226)"
+       id="use3538"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,257)"
+       id="use3540"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,288)"
+       id="use3542"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,320)"
+       id="use3544"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,353)"
+       id="use3546"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,386)"
+       id="use3548"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,417)"
+       id="use3550"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,448)"
+       id="use3552"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,480)"
+       id="use3554"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,510)"
+       id="use3556"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,543)"
+       id="use3558"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,576)"
+       id="use3560"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="frame and hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,0 0,32 9.6875,0 C 9.2558025,31.584271 9,31.057361 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.557361 -0.255803,1.084271 -0.6875,1.5 L 32,32 32,0 0,0 z"
+       id="rect13136"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,32 0,32 9.0625,0 C 9.0158769,63.837256 9,63.672589 9,63.5 9,62.119288 10.567003,61 12.5,61 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.172589 -0.01588,0.337256 -0.0625,0.5 L 32,64 32,32 0,32 z"
+       id="use13138"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,64 0,32 10.0625,0 c 0.326362,-1.139208 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.860792 3.4375,2 L 32,96 32,64 0,64 z"
+       id="use13140"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,96 0,32 9.0625,0 C 9.0158769,127.83726 9,127.67259 9,127.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,128 32,96 0,96 z"
+       id="use13142"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,128 0,32 9.6875,0 C 9.2558025,159.58427 9,159.05736 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,160 32,128 0,128 z"
+       id="use13144"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,160 0,32 9.6875,0 C 9.2558025,191.58427 9,191.05736 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,192 32,160 0,160 z"
+       id="use13146"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,192 0,32 9.0625,0 C 9.0158769,223.83726 9,223.67259 9,223.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,224 32,192 0,192 z"
+       id="use13148"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,224 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,256 32,224 0,224 z"
+       id="use13150"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,256 0,32 9.0625,0 C 9.0158769,287.83726 9,287.67259 9,287.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,288 32,256 0,256 z"
+       id="use13152"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,288 0,32 9.6875,0 C 9.2558025,319.58427 9,319.05736 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,320 32,288 0,288 z"
+       id="use13154"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,320 0,32 9.6875,0 C 9.2558025,351.58427 9,351.05736 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,352 32,320 0,320 z"
+       id="use13156"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,352 0,32 9.0625,0 C 9.0158769,383.83726 9,383.67259 9,383.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,384 32,352 0,352 z"
+       id="use13158"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,384 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,416 32,384 0,384 z"
+       id="use13160"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,416 0,32 9.0625,0 C 9.0158769,447.83726 9,447.67259 9,447.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,448 32,416 0,416 z"
+       id="use13162"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,448 0,32 9.6875,0 C 9.2558025,479.58427 9,479.05736 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,480 32,448 0,448 z"
+       id="use13164"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,480 0,32 9.6875,0 C 9.2558025,511.58427 9,511.05736 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,512 32,480 0,480 z"
+       id="use13166"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,512 0,32 32,0 0,-32 -32,0 z m 12.5,26 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use13168"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,544 0,32 12.5,0 c -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 l 19.5,0 0,-32 -32,0 z"
+       id="use13170"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,576 0,32 9.6875,0 C 9.2558025,607.58427 9,607.05736 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,608 32,576 0,576 z"
+       id="use13172"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="frame-0.5 and hand"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="rect20004-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20175-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20177-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20179-3"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20181-9"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20183-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20185-4-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20187-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20189-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20191-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20193-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20195-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20197-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20199-0-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,448.5 0,31 8.8125,0 C 9.1215627,479.19131 9,478.85917 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20201-6"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,480.5 0,31 8.8125,0 C 9.1215627,511.19131 9,510.85917 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20203-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,512.5 0,31 31,0 0,-31 -31,0 z m 12,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use20205-1"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,544.5 0,31 9.90625,0 C 9.5507391,575.04422 9,574.32095 9,573.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+       id="use20207-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20209-1"
+       inkscape:connector-curvature="0" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/scif_BrainSlugTemplate.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,1782 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
+   sodipodi:docname="scif_BrainSlug.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="scif_BrainSlug.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title3861">brain slug</title>
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient3655">
+      <stop
+         id="stop3657"
+         offset="0"
+         style="stop-color:#ff003a;stop-opacity:1;" />
+      <stop
+         id="stop3661"
+         offset="1"
+         style="stop-color:#290003;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3224">
+      <stop
+         style="stop-color:#4d8207;stop-opacity:1;"
+         offset="0"
+         id="stop3226" />
+      <stop
+         style="stop-color:#7cd900;stop-opacity:0;"
+         offset="1"
+         id="stop3228" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3859">
+      <stop
+         style="stop-color:#780070;stop-opacity:1;"
+         offset="0"
+         id="stop3861" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop3863" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient3735"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3737"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3739"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient3777"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3779"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3781"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient3797"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3799"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3801"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient3823"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3825"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3827"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient3844"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3846"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3848"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient3864"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3866"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3868"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient3884"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3886"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3888"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient3904"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3906"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3908"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient3924"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3926"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3928"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient3944"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3946"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3948"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient3964"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3966"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient3968"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient4004"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4006"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4008"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient4024"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4026"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4028"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient4044"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4046"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4048"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient4064"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4066"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4068"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient4084"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4086"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4088"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient4124"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4126"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4128"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4146"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4148"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3224"
+       id="linearGradient4175"
+       gradientUnits="userSpaceOnUse"
+       x1="373.59332"
+       y1="30.309368"
+       x2="374.3436"
+       y2="29.178911" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4177"
+       gradientUnits="userSpaceOnUse"
+       x1="382.61453"
+       y1="43.341423"
+       x2="381.48199"
+       y2="42.925762" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3859"
+       id="linearGradient4179"
+       gradientUnits="userSpaceOnUse"
+       x1="379.48001"
+       y1="44.582291"
+       x2="379.48001"
+       y2="42.865181" />
+    <linearGradient
+       id="linearGradient3655-4">
+      <stop
+         id="stop3657-0"
+         offset="0"
+         style="stop-color:#ff003a;stop-opacity:1;" />
+      <stop
+         style="stop-color:#d6002b;stop-opacity:1;"
+         offset="0.90221012"
+         id="stop3659-5" />
+      <stop
+         id="stop3661-9"
+         offset="1"
+         style="stop-color:#290003;stop-opacity:1;" />
+    </linearGradient>
+    <radialGradient
+       r="2.1704648"
+       fy="48.116875"
+       fx="381.51486"
+       cy="48.116875"
+       cx="381.51486"
+       gradientTransform="matrix(2.006662,-0.09422392,0.04823942,1.0273389,-386.74784,34.960978)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3071"
+       xlink:href="#linearGradient3655-4"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3655"
+       id="linearGradient5192"
+       gradientUnits="userSpaceOnUse"
+       x1="382.86884"
+       y1="46.74234"
+       x2="382.95386"
+       y2="46.344971" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="3.2687172"
+     inkscape:cx="-52.548588"
+     inkscape:cy="482.15109"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1920"
+     inkscape:window-height="1024"
+     inkscape:window-x="0"
+     inkscape:window-y="31"
+     inkscape:window-maximized="1"
+     inkscape:snap-global="false" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>brain slug</dc:title>
+        <dc:date />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat brain slug</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="mouth"
+     style="display:inline"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <g
+       id="g3857"
+       inkscape:tile-cx="382.59437"
+       inkscape:tile-cy="17.097623"
+       inkscape:tile-w="7.0028247"
+       inkscape:tile-h="6.4429857"
+       inkscape:tile-x0="379.09295"
+       inkscape:tile-y0="13.87613"
+       transform="translate(-358.99967,7.7848402)">
+      <ellipse
+         transform="matrix(0.50953002,0.12172053,-0.38792491,0.56241023,193.58549,-9.1009487)"
+         id="path3061"
+         style="display:inline;fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         cx="381.88248"
+         cy="14.362856"
+         rx="5.3847427"
+         ry="5.6070313" />
+      <path
+         sodipodi:nodetypes="czz"
+         id="path2870"
+         d="m 382.5398,48.211699 c -4.31896,1.733886 -0.94668,-2.783724 0.0307,-3.357319 0.96151,-0.564301 4.28831,1.623434 -0.0307,3.357319 z"
+         style="display:inline;fill:url(#linearGradient5192);fill-opacity:1;fill-rule:nonzero;stroke:none"
+         inkscape:connector-curvature="0" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       id="use3973"
+       transform="translate(2.6061319e-6,31.979799)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,64.984016)"
+       id="use3975"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,95.978858)"
+       id="use3977"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,127.98388)"
+       id="use3979"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,159.97788)"
+       id="use3981"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,191.97187)"
+       id="use3983"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,224.976)"
+       id="use3985"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,255.97092)"
+       id="use3987"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,287.97596)"
+       id="use3989"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,319.98101)"
+       id="use3991"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,447.98368)"
+       id="use3999"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,479.98873)"
+       id="use4001"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,510.99285)"
+       id="use4003"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,543.97672)"
+       id="use4005"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3857"
+       xlink:href="#g3857"
+       transform="translate(2.6061319e-6,575.98177)"
+       id="use4007"
+       width="32"
+       height="1024" />
+    <g
+       style="display:inline"
+       id="g3857-4"
+       inkscape:tile-cx="382.59437"
+       inkscape:tile-cy="17.097623"
+       inkscape:tile-w="7.0028247"
+       inkscape:tile-h="6.4429857"
+       inkscape:tile-x0="379.09295"
+       inkscape:tile-y0="13.87613"
+       transform="translate(-345.97282,8.0040621)">
+      <ellipse
+         transform="matrix(0.50953002,0.12172053,-0.38792491,0.56241023,193.58549,-9.1009487)"
+         id="path3061-6"
+         style="display:inline;fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         cx="381.88248"
+         cy="14.362856"
+         rx="5.3847427"
+         ry="5.6070313" />
+      <path
+         sodipodi:nodetypes="czz"
+         id="path2870-9"
+         d="m 382.5398,48.211699 c -4.31896,1.733886 -0.94668,-2.783724 0.0307,-3.357319 0.96151,-0.564301 4.28831,1.623434 -0.0307,3.357319 z"
+         style="display:inline;fill:url(#radialGradient3071);fill-opacity:1;fill-rule:nonzero;stroke:none"
+         inkscape:connector-curvature="0" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="eye"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <image
+       y="587.99622"
+       x="14.998417"
+       id="image3368"
+       height="12"
+       width="14"
+       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A
+/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9oGHQwDO8F+rIgAAAAdaVRYdENv
+bW1lbnQAAAAAAENyZWF0ZWQgd2l0aCBHSU1QZC5lBwAAArdJREFUKBUBrAJT/QG2HncAEiAfAA4T
+DQAHCQcA+AUJAPHt8wDn0tcM9ejs9AAAAAAAAAAAXvqXAAAAAAAAAAAAAAAAAAHxkd0ACRUSAAMI
+BwAA/gMU//r8ef37/Gb48vMM4tHS4Nu+ybj05OqgAAAAy176l/4AAAAAAAAAAAH9sPkA+/f4Af3z
++YIACAFxAhAFCwH6AQAHFQgAADEGAP/q9wDMcq4A2LjFyQAAAFNe+pflAAAAAAHznOcV//j+qQMW
+B0EGMgsABBYHAAD7AQD/AfwA/hEAAODm4wAK3gYA2ne0AOLM0cwAAABNXvqX6AIA/QCRAgcCQQUx
+CwAEIwgAAA0BAOgA6AABEQQA4d/iAGRcYgBmhmkAJlxFABMfHTQAAQCBpxVvAQIA+v86AhYGAAQY
+BgAAAAAAeHh4AFtWWwC6u7oA//7/APPz8wDz7/IABxYNACtJQwAAAAFS//3/CAQA/gAfAAkDAAAD
+AAAAAAAA39/fAL69vgBXVlcAPz4/AJeYlwAE9QMAEO8LAAQjGwAA//+OAPsA9wH0lOf7AhYFBAdH
+EAACDgMA2dnZANDQ0AA9Qz0AGhQaAAAAAAAA4v8A+bvuAP8FAPjUtMAQ1bjA+QQACALF/e37P/zb
+9wAGMwwAJycnACcnJwAA7v8A/eT6AAD7/wD7zvYA/v//AAQGBpgGDAr5EhwdAAQAAgBhAQMBtfzV
+9ykA+P8AAxYFAP/2/gD72/gA/vn+AAIBAP4C/gW6BQwElP8BALYCBQUAAgMDAAQAAADfAAQBMP/6
+/3H72fZ++9wBCv/9AAAEBATlCAgJqv38/JXj0dbd5M/WAC9SRgAGCggA9ejvAAQAAAAAAAAA+gAD
+AIkA/wGhAPwAOAICAtns4OXY6NTa/+vd4wDr3OIAITkxAAoQDgDz5+0A+fLuAGQP+cYp9fhOAAAA
+AElFTkSuQmCC
+" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="hat"
+     style="display:inline"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <g
+       id="g3755"
+       transform="translate(-358.99967,8.0016942)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3363"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08087,-1.694945 -0.0473,-2.470985 -1.12816,-0.77604 -3.63887,0.799687 -3.44422,-1.073297 0.19465,-1.872983 2.555,0.177894 3.45524,1.106201 0.95284,0.982544 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.87864,-0.511042 0.18056,-1.527715 -0.69808,-1.016672 -3.91183,0.524292 -3.75419,-1.453787 0.15657,-1.96452 3.17416,0.360977 3.75588,1.447026 0.58172,1.086048 1.58087,0.588977 2.96219,1.091422 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3735);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3365"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3367"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path3371"
+         style="fill:none;stroke:url(#linearGradient3737);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path3373"
+         style="fill:none;stroke:url(#linearGradient3739);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3763"
+       transform="translate(-358.99967,40.001694)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3765"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08087,-1.694945 -0.0473,-2.470985 -1.12816,-0.77604 -3.54559,-2.131514 -1.82132,-3.562311 1.72428,-1.430798 0.75684,2.805916 1.83234,3.595215 1.06794,0.78375 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.87864,-0.511042 0.18056,-1.527715 -0.69808,-1.016672 -3.71199,-1.889223 -2.16382,-3.56741 1.54816,-1.678187 1.58379,2.4746 2.16551,3.560649 0.58172,1.086048 1.58087,0.588977 2.96219,1.091422 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3777);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3767"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3769"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path3773"
+         style="fill:none;stroke:url(#linearGradient3779);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path3775"
+         style="fill:none;stroke:url(#linearGradient3781);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3783"
+       transform="translate(-358.99967,104.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3785"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 0.26296,-1.704868 -0.0636,-3.034671 -0.34225,-1.393926 -0.004,-5.208379 1.57196,-4.54952 1.57559,0.658859 -1.91917,3.166312 -1.56094,4.582424 0.33566,1.326887 1.29334,1.956725 2.03225,1.278728 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.72413,-1.125519 0.65752,-2.356983 -0.0693,-1.282255 0.97635,-4.699879 2.09063,-3.615569 1.11427,1.084311 -2.08529,2.327637 -2.08894,3.608808 -0.003,1.232025 1.10391,1.418245 2.48523,1.92069 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3823);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3787"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3789"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path3793"
+         style="fill:none;stroke:url(#linearGradient3825);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path3795"
+         style="fill:none;stroke:url(#linearGradient3827);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3803"
+       transform="translate(-358.99967,73.001694)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3805"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.8608,-0.480432 3.14614,1.075332 -0.71466,1.555764 -3.46084,1.656629 -5.35522,1.633316 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 -0.41588,2.269981 -3.44944,2.461789 -3.01736,0.190784 0.87288,-3.13992 -0.43156,-3.768471 -1.30444,-0.628551 -4.53005,1.816882 -4.43692,-0.49335 0.0931,-2.310232 1.63771,-0.168617 2.24286,-1.167222 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 0.7185,-3.949735 0.4622,-5.294834 -0.22844,-1.198804 -1.93861,-4.113527 -0.14079,-4.040035 1.79782,0.07349 -0.0926,2.830269 0.15181,4.072939 0.26413,1.342955 0.76759,4.216888 1.5065,3.538891 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 1.25523,-2.26549 1.16159,-3.495194 -0.091,-1.195534 -2.14109,-3.22553 -0.18038,-3.431286 1.95979,-0.205661 0.14778,2.257175 0.18207,3.424525 0.0362,1.231499 0.59984,2.556456 1.98116,3.058901 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.14731,-1.244054 2.94659,-0.149887 -0.16362,0.891912 -3.53088,1.06176 -2.60207,1.600658 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3797);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3807"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3809"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path3813"
+         style="fill:none;stroke:url(#linearGradient3799);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path3815"
+         style="fill:none;stroke:url(#linearGradient3801);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3829"
+       transform="translate(-358.99967,136.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3831"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 0.0329,-1.104034 -0.0473,-2.470985 -0.0767,-1.307205 1.42281,-4.769448 2.77618,-3.839587 1.35338,0.929862 -3.04751,2.57562 -2.76516,3.872491 0.29117,1.337355 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.72723,-1.107834 1.42781,-2.289445 0.85404,-1.440416 4.76436,-1.389906 4.07994,0.09431 -0.67829,1.470928 -3.13297,-1.544363 -4.07825,-0.10107 -0.67501,1.030656 0.33362,1.350707 1.71494,1.853152 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3844);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3834"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3836"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path3840"
+         style="fill:none;stroke:url(#linearGradient3846);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path3842"
+         style="fill:none;stroke:url(#linearGradient3848);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3850"
+       transform="translate(-358.99967,168.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3852"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 0.19752,-1.95059 0.006,-3.306482 -0.16236,-1.151631 3.30841,-5.223614 3.80067,-3.58632 0.49472,1.645507 -3.82374,2.284666 -3.78965,3.619224 0.0349,1.368238 1.22342,2.228536 1.96233,1.550539 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.54814,-1.876671 1.56794,-2.570171 1.15688,-0.786719 5.61518,0.002 5.04582,1.564856 -0.56936,1.562883 -3.90886,-2.274409 -5.04413,-1.571617 -1.04755,0.648487 0.19349,1.631433 1.57481,2.133878 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3864);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3854"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3856"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path3860"
+         style="fill:none;stroke:url(#linearGradient3866);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path3862"
+         style="fill:none;stroke:url(#linearGradient3868);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3870"
+       transform="translate(-358.99967,200.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3872"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 0.40257,-2.110732 0.006,-3.421459 -0.41531,-1.373919 0.73791,-4.473912 2.16664,-3.119882 1.41731,1.343197 -2.51931,1.672591 -2.15562,3.152786 0.32657,1.329153 1.22342,2.343513 1.96233,1.665516 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.3965,-1.199743 0.54082,-2.424533 0.14508,-1.231296 2.41297,-3.919702 3.05244,-1.791052 0.63947,2.12865 -2.95794,0.60626 -3.05075,1.784291 -0.0968,1.228224 1.22061,1.485795 2.60193,1.98824 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3884);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3874"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3876"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path3880"
+         style="fill:none;stroke:url(#linearGradient3886);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path3882"
+         style="fill:none;stroke:url(#linearGradient3888);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3890"
+       transform="translate(-358.99967,233.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3892"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.81202,-0.691814 3.09736,0.86395 -0.71466,1.555764 -3.41206,1.868011 -5.30644,1.844698 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 -0.70727,3.614877 -3.4657,3.415718 -2.76262,-0.19946 0.88914,-4.093849 -0.4153,-4.7224 -1.30444,-0.628551 -3.5436,1.860241 -4.4586,0.232937 -0.915,-1.627305 1.65939,-0.894904 2.26454,-1.893509 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08813,-2.20148 0.4816,-3.429124 -0.59926,-1.212952 -2.39772,-5.548526 -0.42104,-5.485875 1.97667,0.06265 0.0454,4.214881 0.43206,5.518779 0.38914,1.312199 0.74819,2.351178 1.4871,1.673181 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.65699,-0.791822 0.38752,-1.995287 -0.26884,-1.200635 -1.81002,-5.29574 0.25819,-5.127417 2.0682,0.168323 -0.271,3.743333 -0.2565,5.120656 0.013,1.231962 1.37391,1.056549 2.75523,1.558994 1.38646,0.504317 3.85679,3.179324 4.62365,3.373344 0.76686,0.19402 3.57007,-0.637008 3.32599,0.294558 -0.22982,0.877189 -3.4821,1.430323 -2.55329,1.969221 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3904);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3894"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3896"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path3900"
+         style="fill:none;stroke:url(#linearGradient3906);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path3902"
+         style="fill:none;stroke:url(#linearGradient3908);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3910"
+       transform="translate(-358.99967,264.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3912"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08087,-1.694945 -0.0473,-2.470985 -1.12816,-0.77604 -4.46671,-2.182042 -2.56273,-3.096887 1.90397,-0.914844 1.67351,2.201484 2.57375,3.129791 0.95284,0.982544 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.87864,-0.511042 0.18056,-1.527715 -0.69808,-1.016672 -4.07068,-2.401371 -2.5201,-3.638344 1.52096,-1.213339 1.94007,2.545534 2.52179,3.631583 0.58172,1.086048 1.58087,0.588977 2.96219,1.091422 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3924);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3914"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3916"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path3920"
+         style="fill:none;stroke:url(#linearGradient3926);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path3922"
+         style="fill:none;stroke:url(#linearGradient3928);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3930"
+       transform="translate(-358.99967,296.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3932"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08087,-1.694945 -0.0473,-2.470985 -1.12816,-0.77604 -3.75385,0.01018 -3.20661,-1.648181 0.54725,-1.658361 2.31739,0.752778 3.21763,1.681085 0.95284,0.982544 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.87864,-0.511042 0.18056,-1.527715 -0.69808,-1.016672 -4.12538,0.05849 -3.47058,-1.852373 0.6548,-1.910865 2.89055,0.759563 3.47227,1.845612 0.58172,1.086048 1.58087,0.588977 2.96219,1.091422 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3944);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3934"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3936"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path3940"
+         style="fill:none;stroke:url(#linearGradient3946);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path3942"
+         style="fill:none;stroke:url(#linearGradient3948);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3950"
+       transform="translate(-358.99967,328.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3952"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08087,-1.694945 -0.0473,-2.470985 -1.12816,-0.77604 -2.1825,2.585659 -3.39823,1.103596 -1.21573,-1.482063 2.50901,-1.998999 3.40925,-1.070692 0.95284,0.982544 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.87864,-0.511042 0.18056,-1.527715 -0.69808,-1.016672 -2.36241,2.151069 -3.34027,0.677115 -0.97787,-1.473953 2.76024,-1.769925 3.34196,-0.683876 0.58172,1.086048 1.58087,0.588977 2.96219,1.091422 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3964);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3954"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3956"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path3960"
+         style="fill:none;stroke:url(#linearGradient3966);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path3962"
+         style="fill:none;stroke:url(#linearGradient3968);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3990"
+       transform="translate(-358.99967,360.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path3992"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08087,-1.694945 -0.0473,-2.470985 -1.12816,-0.77604 -4.42837,-0.227438 -3.26792,-1.839808 1.16046,-1.612369 2.3787,0.944405 3.27894,1.872712 0.95284,0.982544 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.87864,-0.511042 0.18056,-1.527715 -0.69808,-1.016672 -4.52396,-0.623704 -3.27128,-2.29695 1.25268,-1.673246 2.69125,1.20414 3.27297,2.290189 0.58172,1.086048 1.58087,0.588977 2.96219,1.091422 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4004);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3994"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path3996"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path4000"
+         style="fill:none;stroke:url(#linearGradient4006);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path4002"
+         style="fill:none;stroke:url(#linearGradient4008);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4010"
+       transform="translate(-358.99967,393.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path4012"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.85538,-0.626774 3.14072,0.92899 -0.71466,1.555764 -3.45542,1.802971 -5.3498,1.779658 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 -0.76147,3.782899 -3.5199,3.58374 -2.76262,-0.19946 0.94334,-4.261871 -0.3611,-4.890422 -1.30444,-0.628551 -3.94468,2.69493 -4.90846,0.932124 -0.96379,-1.762806 2.10925,-1.594091 2.7144,-2.592696 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 0.24735,-3.005324 -0.0166,-4.348938 -0.285,-1.45057 -3.69932,-1.986392 -1.95315,-3.068262 1.74616,-1.081869 1.63115,1.682292 1.96417,3.101166 0.31274,1.332475 1.24642,3.270992 1.98533,2.592995 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.73978,-1.434279 0.38751,-2.616161 -0.37613,-1.261956 -4.12558,-1.952801 -2.33883,-2.966846 1.78675,-1.014045 1.99642,1.697738 2.34052,2.960085 0.32402,1.188661 1.37392,1.677423 2.75524,2.179868 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 2.38308,-1.590937 2.96827,-0.0469 0.32137,0.847938 -3.55256,0.958778 -2.62375,1.497676 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4024);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4014"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4016"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path4020"
+         style="fill:none;stroke:url(#linearGradient4026);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path4022"
+         style="fill:none;stroke:url(#linearGradient4028);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4030"
+       transform="translate(-358.99967,424.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path4032"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08087,-1.694945 -0.0473,-2.470985 -1.12816,-0.77604 -4.32873,-0.72567 -3.14528,-2.422356 1.18345,-1.696686 2.25606,1.526953 3.1563,2.45526 0.95284,0.982544 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.87864,-0.511042 0.18056,-1.527715 -0.69808,-1.016672 -4.1637,-0.960968 -2.80371,-2.649545 1.35999,-1.688576 2.22368,1.556735 2.8054,2.642784 0.58172,1.086048 1.58087,0.588977 2.96219,1.091422 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4044);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4034"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4036"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path4040"
+         style="fill:none;stroke:url(#linearGradient4046);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path4042"
+         style="fill:none;stroke:url(#linearGradient4048);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4050"
+       transform="translate(-358.99967,456.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path4052"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08087,-1.694945 -0.0473,-2.470985 -1.12816,-0.77604 -3.89182,0.500749 -2.99198,-1.395231 0.89984,-1.89598 2.10276,0.499828 3.003,1.428135 0.95284,0.982544 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.87864,-0.511042 0.18056,-1.527715 -0.69808,-1.016672 -4.12539,0.411088 -3.52424,-1.407796 0.60115,-1.818884 2.94421,0.314986 3.52593,1.401035 0.58172,1.086048 1.58087,0.588977 2.96219,1.091422 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4064);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4054"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4056"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path4060"
+         style="fill:none;stroke:url(#linearGradient4066);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path4062"
+         style="fill:none;stroke:url(#linearGradient4068);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4070"
+       transform="translate(-358.99967,488.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path4072"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08087,-1.694945 -0.0473,-2.470985 -1.12816,-0.77604 -2.1825,2.585659 -3.39823,1.103596 -1.21573,-1.482063 2.50901,-1.998999 3.40925,-1.070692 0.95284,0.982544 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.87864,-0.511042 0.18056,-1.527715 -0.69808,-1.016672 -2.36241,2.151069 -3.34027,0.677115 -0.97787,-1.473953 2.76024,-1.769925 3.34196,-0.683876 0.58172,1.086048 1.58087,0.588977 2.96219,1.091422 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4084);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4074"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4076"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path4080"
+         style="fill:none;stroke:url(#linearGradient4086);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path4082"
+         style="fill:none;stroke:url(#linearGradient4088);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4110"
+       transform="translate(-358.99967,552.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path4112"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08087,-1.694945 -0.0473,-2.470985 -1.12816,-0.77604 -1.40832,4.271984 -2.62405,2.789921 -1.21573,-1.482063 1.73483,-3.685324 2.63507,-2.757017 0.95284,0.982544 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.87864,-0.511042 0.18056,-1.527715 -0.69808,-1.016672 -1.81819,3.239515 -2.79605,1.765561 -0.97787,-1.473953 2.21602,-2.858371 2.79774,-1.772322 0.58172,1.086048 1.58087,0.588977 2.96219,1.091422 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4124);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4114"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4116"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path4120"
+         style="fill:none;stroke:url(#linearGradient4126);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path4122"
+         style="fill:none;stroke:url(#linearGradient4128);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4130"
+       transform="translate(-358.99967,584.00169)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path4132"
+         d="m 381.3128,32.373474 c 0.9288,0.538898 3.76866,0.251275 3.054,1.807039 -0.71466,1.555764 -3.3687,0.924922 -5.26308,0.901609 -1.03454,0.04778 -2.46663,0.615789 -2.92664,0.948352 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 0.53934,4.265284 -2.21909,4.066125 -2.76262,-0.19946 -0.35747,-4.744256 -1.66191,-5.372807 -1.30444,-0.628551 -1.8529,3.230158 -3.45589,2.260037 -1.61419,-0.976898 0.65668,-2.922004 1.26183,-3.920609 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 1.08087,-1.694945 -0.0473,-2.470985 -1.12816,-0.77604 -2.1825,2.585659 -3.39823,1.103596 -1.21573,-1.482063 2.50901,-1.998999 3.40925,-1.070692 0.95284,0.982544 1.27708,1.393039 2.01599,0.715042 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 0.87864,-0.511042 0.18056,-1.527715 -0.69808,-1.016672 -2.36241,2.151069 -3.34027,0.677115 -0.97787,-1.473953 2.76024,-1.769925 3.34196,-0.683876 0.58172,1.086048 1.58087,0.588977 2.96219,1.091422 1.38646,0.504317 4.28497,3.992332 5.05183,4.186352 0.76686,0.19402 3.04433,0.750526 2.80025,1.682092 -0.22982,0.877189 -3.38454,-0.770219 -2.45573,-0.231321 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <ellipse
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#589508;stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4134"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         rx="1.4525745"
+         ry="0.12867007" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path4140"
+         style="fill:none;stroke:url(#linearGradient4146);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path4142"
+         style="fill:none;stroke:url(#linearGradient4148);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4163"
+       transform="translate(-358.99967,519.06237)">
+      <path
+         sodipodi:nodetypes="czczszzzzzszszzszszzsz"
+         id="path4165"
+         d="m 381.3128,32.373474 c 0.74452,0.907462 4.92256,1.484935 5.06968,3.360482 0.14685,1.87198 -4.60254,-0.858474 -6.49692,-0.881787 -1.03454,0.04778 -3.24847,0.845742 -3.70848,1.178305 -0.46001,0.332563 -1.17942,0.405633 -2.05389,1.448923 -0.87446,1.04329 1.05066,6.22446 -2.19834,6.063627 -3.249,-0.160833 -0.37822,-6.741758 -1.68266,-7.370309 -1.30444,-0.628551 -0.98386,6.070212 -3.00843,4.70917 -2.02458,-1.361042 0.20922,-5.371137 0.81437,-6.369742 0.60514,-0.998605 0.35414,-3.116251 0.88943,-4.255885 0.5353,-1.139635 0.92911,-0.822316 -0.19905,-1.598356 -1.12816,-0.77604 -1.01177,4.423057 -2.2275,2.940994 -1.21573,-1.482063 1.33828,-3.836397 2.23852,-2.90809 0.95284,0.982544 1.42884,0.52041 2.16775,-0.157587 0.73891,-0.677998 1.14545,-1.021104 1.85473,-1.353814 0.70928,-0.332711 1.2743,-0.27798 0.29438,-0.953189 -1.01553,-0.699743 -2.36783,2.828575 -3.34569,1.354621 -0.97787,-1.473953 2.34443,-2.076915 3.34738,-1.361382 0.90692,0.647023 2.09578,-0.09395 3.4771,0.408495 1.38646,0.504317 3.65624,4.100733 4.4231,4.294753 0.76686,0.19402 3.49419,1.476813 3.25011,2.408379 -0.22982,0.877189 -3.65011,-1.86507 -2.90559,-0.957608 z"
+         style="fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#4c8303;stroke-width:0.69999999;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dashoffset:0;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <circle
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4175);stroke-width:0.22599214;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4167"
+         transform="matrix(2.142838,-1.6724711,1.2546961,1.3050749,-464.44262,619.14281)"
+         cx="374.2998"
+         cy="29.849985"
+         r="1.4525745" />
+      <circle
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         style="fill:none;stroke:#000000;stroke-width:3.17295361;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path4169"
+         transform="matrix(0.4553039,-0.1753481,0.1913869,0.417148,197.97655,87.98807)"
+         cx="381.54437"
+         cy="24.184673"
+         r="0.65582657" />
+      <circle
+         transform="matrix(0.7542505,0,0,0.755372,96.233916,7.421678)"
+         id="path4171"
+         style="fill:none;stroke:url(#linearGradient4177);stroke-width:0.92738444;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         cx="379.48001"
+         cy="41.508183"
+         r="4.0379405" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.1836277"
+         sodipodi:start="6.0388392"
+         transform="matrix(1.0125057,0,0,1.0140205,-5.4906509,-2.366676)"
+         d="m 383.39801,40.531316 a 4.0379405,4.0379405 0 0 1 -2.13206,4.598385 4.0379405,4.0379405 0 0 1 -4.94606,-1.107841 4.0379405,4.0379405 0 0 1 0.0332,-5.068504 4.0379405,4.0379405 0 0 1 4.96014,-1.043005"
+         sodipodi:ry="4.0379405"
+         sodipodi:rx="4.0379405"
+         sodipodi:cy="41.508183"
+         sodipodi:cx="379.48001"
+         id="path4173"
+         style="fill:none;stroke:url(#linearGradient4179);stroke-width:0.69083756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         sodipodi:type="arc" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/scif_cosmonaut.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,2037 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="scif_cosmonaut.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="scif_cosmonaut.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title9965">cosmonaut</title>
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient8388">
+      <stop
+         id="stop8390"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:0.00727273;" />
+      <stop
+         style="stop-color:#00bcac;stop-opacity:1;"
+         offset="0.19139387"
+         id="stop8392" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="0.46195883"
+         id="stop8394" />
+      <stop
+         id="stop8396"
+         offset="0.55191445"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8398" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6541">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6543" />
+      <stop
+         id="stop6545"
+         offset="0.76114303"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop6547"
+         offset="0.97658139"
+         style="stop-color:#8d8d8d;stop-opacity:1;" />
+      <stop
+         style="stop-color:#d0d0d0;stop-opacity:1;"
+         offset="1"
+         id="stop6549" />
+    </linearGradient>
+    <marker
+       inkscape:stockid="DotM"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DotM"
+       style="overflow:visible">
+      <path
+         id="path5031"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
+    </marker>
+    <linearGradient
+       id="linearGradient3901">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop3903" />
+      <stop
+         style="stop-color:#8d8d8d;stop-opacity:1;"
+         offset="1"
+         id="stop3905" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3891">
+      <stop
+         style="stop-color:#8d8d8d;stop-opacity:1;"
+         offset="0"
+         id="stop3893" />
+      <stop
+         style="stop-color:#d0d0d0;stop-opacity:1;"
+         offset="1"
+         id="stop3895" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3881">
+      <stop
+         style="stop-color:#8d8d8d;stop-opacity:1;"
+         offset="0"
+         id="stop3883" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="1"
+         id="stop3885" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3871">
+      <stop
+         style="stop-color:#d0d0d0;stop-opacity:1;"
+         offset="0"
+         id="stop3873" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="1"
+         id="stop3875" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6541"
+       id="radialGradient4613"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.81527199,1.4713942,-2.0350878,1.1469591,-208.59249,-581.80086)"
+       cx="378.17154"
+       cy="38.233086"
+       fx="378.17154"
+       fy="38.233086"
+       r="6.5710869" />
+    <filter
+       inkscape:collect="always"
+       id="filter3983"
+       x="-0.31766862"
+       width="1.6353374"
+       y="-0.36696151"
+       height="1.733923"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.69053023"
+         id="feGaussianBlur3985" />
+    </filter>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="32.007273 : 1035.5351 : 1"
+       inkscape:vp_y="-84.649157 : 946.88512 : 1"
+       inkscape:vp_z="-86.728117 : 1056.65 : 1"
+       inkscape:persp3d-origin="19.776751 : 1055.736 : 1"
+       id="perspective10-7-6-9" />
+    <linearGradient
+       id="linearGradient8373-7">
+      <stop
+         id="stop8375-6"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0.62207049"
+         id="stop8377-6" />
+      <stop
+         style="stop-color:#8d8d8d;stop-opacity:1;"
+         offset="0.97658139"
+         id="stop8379-5" />
+      <stop
+         id="stop8381-3"
+         offset="1"
+         style="stop-color:#d0d0d0;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8373-7"
+       id="linearGradient10513"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9737911,-0.22744425,0.22744425,0.9737911,-11.627354,-29.214669)"
+       x1="11.23836"
+       y1="58.634579"
+       x2="7.6287055"
+       y2="59.778744" />
+    <linearGradient
+       id="linearGradient8373-7-8">
+      <stop
+         id="stop8375-6-9"
+         offset="0"
+         style="stop-color:#71ff00;stop-opacity:1;" />
+      <stop
+         id="stop8381-3-8"
+         offset="1"
+         style="stop-color:#295704;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8373-7-8"
+       id="linearGradient8580"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.88319622,-0.46900365,0.46900365,0.88319622,-25.539943,-22.086956)"
+       spreadMethod="reflect"
+       x1="11.23836"
+       y1="58.634579"
+       x2="7.6287055"
+       y2="59.778744" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4606"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-7.4664754,3.3700828)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4583"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-5.4664754,579.39557)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4587"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-3.4664754,547.35859)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4591"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,0.5335246,514.32853)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4595"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-1.4664754,483.39304)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4599"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-3.4664754,451.40335)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4603"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-5.4664754,419.31909)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4607"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-11.466475,388.33631)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4611"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-7.4664754,355.40082)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4615"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-7.4664754,323.33038)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4619"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-7.4664754,291.38798)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4623"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-9.4664754,259.351)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4627"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-11.466475,228.36823)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4631"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-9.4664754,195.33816)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4635"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-7.4664754,163.40959)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4639"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-7.4664754,131.32532)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4643"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-9.4664754,99.382926)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4647"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-11.466475,68.352859)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8388"
+       id="linearGradient4651"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97991831,0,0,0.60323937,-9.4664754,35.370083)"
+       spreadMethod="repeat"
+       x1="13.090498"
+       y1="27.361279"
+       x2="31.060932"
+       y2="20.876722" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4657">
+      <path
+         inkscape:tile-y0="13.9143"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-h="12.555618"
+         inkscape:tile-w="12.949672"
+         inkscape:tile-cy="20.192109"
+         inkscape:tile-cx="20.881064"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         d="m 26.78125,16.656288 c 2.630431,12.252913 -4.162579,10.923127 -12.375,7.25 -0.01342,-9.134499 6.11223,-13.07496 12.375,-7.25 z"
+         id="path4659"
+         sodipodi:nodetypes="ccc" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4661">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4663"
+         d="m 26.78125,48.656288 c 2.630431,12.252913 -4.162579,10.923127 -12.375,7.25 -0.01342,-9.134499 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4665">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4667"
+         d="m 26.78125,81.628733 c 2.630431,12.252913 -4.162579,10.923127 -12.375,7.25 -0.01342,-9.134499 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4669">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4671"
+         d="m 26.78125,112.63096 c 2.630431,12.25291 -4.162579,10.92313 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4673">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4675"
+         d="m 26.78125,144.61051 c 2.630431,12.25291 -4.162579,10.92312 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4677">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4679"
+         d="m 26.78125,176.63542 c 2.630431,12.25291 -4.162579,10.92312 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4681">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4683"
+         d="m 26.78125,208.63527 c 2.630431,12.25291 -4.162579,10.92313 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4685">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4687"
+         d="m 26.78125,241.66258 c 2.630431,12.25291 -4.162579,10.92313 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4689">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4691"
+         d="m 26.78125,272.60991 c 2.630431,12.25291 -4.162579,10.92312 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4693">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4695"
+         d="m 26.78125,304.65987 c 2.630431,12.25291 -4.162579,10.92312 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4697">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4699"
+         d="m 26.78125,336.6144 c 2.630431,12.25291 -4.162579,10.92312 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4701">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4703"
+         d="m 26.78125,368.63931 c 2.630431,12.25291 -4.162579,10.92312 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4705">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4707"
+         d="m 26.78125,401.6165 c 2.630431,12.25291 -4.162579,10.92312 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4709">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4711"
+         d="m 26.78125,432.61394 c 2.630431,12.25291 -4.162579,10.92312 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4713">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4715"
+         d="m 26.78125,464.63405 c 2.630431,12.25291 -4.162579,10.92312 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4717">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4719"
+         d="m 26.78125,496.6435 c 2.630431,12.25291 -4.162579,10.92312 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4721">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4723"
+         d="m 26.78125,527.59083 c 2.630431,12.25291 -4.162579,10.92312 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4725">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4727"
+         d="m 26.78125,560.59788 c 2.630431,12.25291 -4.162579,10.92313 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4729">
+      <path
+         sodipodi:nodetypes="ccc"
+         id="path4731"
+         d="m 26.78125,592.61798 c 2.630431,12.25291 -4.162579,10.92313 -12.375,7.25 -0.01342,-9.1345 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:#34ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+         inkscape:tile-x0="14.406228"
+         inkscape:tile-y0="13.9143" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3891"
+       id="linearGradient3199"
+       gradientUnits="userSpaceOnUse"
+       x1="7.0305862"
+       y1="16.175079"
+       x2="9.9759378"
+       y2="17.306204" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient3201"
+       gradientUnits="userSpaceOnUse"
+       x1="6.9887652"
+       y1="14.620809"
+       x2="11.361345"
+       y2="10.554832" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3871"
+       id="linearGradient3203"
+       gradientUnits="userSpaceOnUse"
+       x1="13.582146"
+       y1="14.156191"
+       x2="13.168229"
+       y2="11.246136" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3901"
+       id="radialGradient3205"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.524028,0.49406941,-0.84942637,2.6201826,4.3305665,-23.587803)"
+       cx="11.400576"
+       cy="11.18154"
+       fx="11.400576"
+       fy="11.18154"
+       r="3.4963171" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3208">
+      <path
+         clip-path="none"
+         sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc"
+         id="path3210"
+         d="M 16.563236,5.7228022 14.758549,5.8282713 12.953862,5.9337401 11.149174,6.0392088 9.3444873,6.1446775 7.5397994,6.2501463 5.7351119,6.355615 C 4.8665483,6.3915229 3.6860457,7.2865306 3.4421432,8.2384273 L 2.9538615,10.015772 2.4655801,11.793115 1.9772985,13.570458 1.489017,15.347803 1.0007355,17.125146 0.5124551,18.90249 c -0.2578843,0.906721 -0.26637759,2.234087 0.0117188,2.753905 l 0.5,0.976564 0.4999999,0.976562 0.5000003,0.976563 0.4999998,0.976562 0.5000002,0.976562 0.4999999,0.976563 c 0.2641729,0.49098 1.37712,0.719376 2.285157,0.453121 3.5096044,-0.639751 2.3121473,-1.07288 3.3129657,-8.946863 C 12.02534,14.788434 21.298452,13.472964 23.469131,15.273295 l 0.672241,-1.21065 0.972658,-1.707031 c 0.523354,-0.906479 0.532803,-1.993724 0.0078,-2.335938 L 24.156986,9.3907713 23.192143,8.7618651 22.227299,8.1329587 21.262455,7.5040525 20.297611,6.8751463 19.332768,6.2462399 C 18.846357,5.9291868 17.571953,5.6638516 16.563236,5.7228022 z"
+         style="fill:#20ff00;fill-opacity:1;stroke:#ff0000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+    </clipPath>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="12.639534"
+     inkscape:cx="11.885924"
+     inkscape:cy="425.25394"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false">
+    <sodipodi:guide
+       position="11.017189,1009.4936"
+       orientation="-0.14044141,0.99008899"
+       id="guide3150"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="15.250071,1020.8163"
+       orientation="-0.93668537,0.35017214"
+       id="guide3152"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="12.193801,1012.641"
+       orientation="-0.73877692,-0.67395005"
+       id="guide3154"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="-5.3365962,1010.1722"
+       orientation="-0.14044141,0.99008899"
+       id="guide3156"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="8.6490165,1012.0896"
+       orientation="-0.93668537,0.35017214"
+       id="guide3158"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="7.4915649,1008.9935"
+       orientation="-0.73877692,-0.67395005"
+       id="guide3160"
+       inkscape:locked="false" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>cosmonaut</dc:title>
+        <dc:date />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat cosmonaut</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362168)">
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8402"
+       d="m -30.831206,23.477749 c 0.912072,-0.551092 2.001117,-0.632531 3.039675,-0.694454 0.923017,-0.01037 1.839817,0.112096 2.755735,0.20985 0.425057,0.06835 0.985881,-0.0046 1.331035,0.318051 0.04422,0.04134 0.07069,0.09829 0.106036,0.147427 0.01955,0.03082 0.03911,0.06163 0.05866,0.09245 0.006,0.0022 -0.02482,0.08702 -0.03082,0.08484 l 0,0 c -0.02587,0.01848 -0.05175,0.03695 -0.07763,0.05543 -0.431059,0.38881 -1.024023,0.347045 -1.569844,0.328554 -0.891472,-0.01236 -1.781815,-0.0033 -2.669925,0.09343 -0.951157,0.06378 -1.911195,0.180291 -2.863459,0.08401 -0.05088,0.0056 -0.130348,-0.713965 -0.07947,-0.719584 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8404"
+       d="m -29.887371,52.464659 c 0.641975,-0.211273 1.323927,-0.139794 1.982754,-0.07003 0.614782,0.09767 1.230121,0.179715 1.853042,0.193753 0.658082,0.02309 1.316602,0.01611 1.974687,0.04168 0.278691,0.0176 0.560224,0.03019 0.834273,0.0887 0.07891,0.01685 0.0735,7.64e-4 0.0649,0.04662 -0.222747,1.569049 -0.239387,0.898996 -0.157024,0.540406 -0.01721,-0.0029 0.02373,-0.246285 0.04094,-0.24339 l 0,0 c 0.05276,-0.122661 0.04534,-0.17559 0.155584,-0.237167 0.380519,-0.212535 0.01181,0.837927 0.01075,0.849459 -0.344452,0.160153 -0.73223,0.179671 -1.105715,0.2076 -0.682195,0.02787 -1.363353,0.0035 -2.044263,-0.04498 -0.629689,-0.06467 -1.259135,-0.126789 -1.889448,-0.18345 -0.615011,-0.05138 -1.248756,-0.04832 -1.839552,-0.246664 -0.06665,-0.0084 0.05242,-0.95096 0.119071,-0.94254 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8410"
+       d="m -28.994323,119.00326 c 0.649522,-0.19893 1.349523,-0.17408 2.021775,-0.1444 0.522582,0.0259 1.04314,0.043 1.563374,-0.0208 0.461842,-0.0379 0.923412,-0.0741 1.385997,-0.10186 0.126412,0.005 0.250559,-0.006 0.376545,0.002 0.02087,10e-4 0.08073,-0.0122 0.0627,-0.002 -0.01709,0.01 -0.03434,0.0198 -0.0515,0.0297 0.04019,0.54626 0.04569,0.65958 0.02763,0.33925 -0.0046,-10e-4 0.01399,-0.0659 0.01855,-0.0646 l 0,0 c 0.196014,-0.28208 0.08008,-0.18945 0.234613,0.37834 -0.210552,0.13624 -0.458892,0.19381 -0.700948,0.24969 -0.473177,0.0744 -0.947656,0.14028 -1.425857,0.1727 -0.54122,0.004 -1.078785,0.0577 -1.617762,0.10215 -0.674876,0.0439 -1.390429,0.077 -2.028896,-0.18002 -0.0538,-0.009 0.07999,-0.77027 0.133789,-0.76081 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8412"
+       d="m -27.937866,148.34963 c 0.602761,-0.17825 1.241857,-0.0919 1.855482,-0.0223 0.522712,0.0606 1.047326,0.11563 1.569377,0.0289 0.389304,-0.056 0.765861,-0.16781 1.158154,-0.204 0.318445,0.008 0.532077,0.0478 0.716299,0.33178 0.08033,0.26052 0.2084,0.26236 -0.314089,-0.17866 -0.01703,-0.0144 0.02848,0.0351 0.0371,0.0556 0.02035,0.0485 0.03436,0.0994 0.04915,0.14978 0.01682,0.0573 0.03043,0.11558 0.04565,0.17337 0.0054,4.4e-4 -6.73e-4,0.0771 -0.0061,0.0767 l 0,0 c -0.0249,0.0602 -0.164809,0.42507 -0.216209,0.39714 -0.163501,-0.0889 -0.276843,-0.25698 -0.444439,-0.33786 -0.02425,-0.0117 0.115268,0.25569 0.04029,0.1103 0.02426,0.0344 0.04239,0.0741 0.07279,0.10327 0.105099,0.10084 0.345553,0.0604 0.115033,0.18817 -0.411265,0.19055 -0.844157,0.30468 -1.294095,0.36295 -0.597302,0.039 -1.195988,0.0867 -1.79398,0.0197 -0.569031,-0.0431 -1.152295,-0.0885 -1.698312,-0.2611 -0.07026,-0.008 0.03764,-1.00128 0.1079,-0.99365 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8416"
+       d="m -26.898825,178.97481 c 0.943383,-0.38442 1.982166,-0.45062 2.988554,-0.50285 0.541074,0.0174 1.32737,-0.10009 1.772912,0.29832 0.08056,0.072 0.130229,0.17249 0.195344,0.25874 0.01972,0.002 -0.0091,0.2809 -0.02881,0.27886 l 0,0 c -0.08104,0.0902 -0.150243,0.19264 -0.243116,0.2706 -0.49562,0.41604 -1.217425,0.39576 -1.820291,0.47652 -0.970633,0.0595 -1.990328,0.12485 -2.928612,-0.17944 -0.06369,-0.005 3.3e-4,-0.90528 0.06402,-0.90075 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8418"
+       d="m -29.089035,213.56331 c 1.097791,-0.32853 2.258598,-0.39201 3.394017,-0.50183 0.784705,-0.0235 1.580005,-0.10149 2.362661,0.01 2.061822,0.29324 -0.584487,0.0513 1.345902,0.20612 0.05998,0.003 0.02373,0.85082 -0.03625,0.84826 l 0,0 c -0.926855,0.25126 -0.455774,0.10296 -1.411048,0.45179 -0.787547,0.22209 -1.613399,0.24933 -2.423995,0.29662 -1.126608,-0.0116 -2.304637,0.0287 -3.380218,-0.35526 -0.06757,-0.0105 0.08136,-0.96605 0.148929,-0.95552 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8422"
+       d="m -29.791392,276.40486 c 0.892555,-0.36818 1.868736,-0.49968 2.817856,-0.64564 0.575637,-0.0503 1.177188,-0.12803 1.744548,0.0377 0.169874,0.0496 0.324553,0.14123 0.48683,0.21184 0.04457,0.002 0.01561,0.63241 -0.02896,0.63036 l 0,0 c -0.165338,0.10181 -0.322071,0.21915 -0.496015,0.30544 -0.542866,0.2693 -1.148689,0.36312 -1.74095,0.44887 -0.864589,0.083 -1.784006,0.22948 -2.64946,0.0638 -0.08818,-0.0169 -0.170894,-0.0551 -0.256341,-0.0827 -0.06856,-0.009 0.05393,-0.97832 0.122495,-0.96965 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8424"
+       d="m -30.153728,308.69873 c 0.721224,-0.34742 1.533045,-0.42187 2.32047,-0.48457 0.794694,-0.0223 1.590767,-0.0616 2.385683,-0.0373 0.217103,0.0362 0.835323,-0.0191 0.980534,0.20197 0.02316,0.0353 0.02542,0.0804 0.03814,0.12066 0.03644,0.01 -0.104436,0.52531 -0.140877,0.51535 l 0,0 c -0.0078,0.0367 -0.0037,0.0782 -0.02343,0.11021 -0.119382,0.19363 -0.767247,0.17034 -0.955601,0.22956 -0.784833,0.0981 -1.576278,0.1197 -2.3641,0.18461 -0.747011,0.0574 -1.507861,0.18733 -2.253959,0.0772 -0.06489,-9.3e-4 -0.05174,-0.91856 0.01314,-0.91764 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8426"
+       d="m -30.361172,340.47573 c 0.854231,-0.35111 1.792361,-0.40208 2.70177,-0.48528 0.957118,-0.0486 1.922165,-0.10583 2.878796,-0.0223 0.155691,0.0388 0.614393,-0.002 0.730609,0.1471 0.07271,0.0936 0.02244,0.29747 0.01546,0.3757 0.0071,-0.002 0.03007,0.0983 0.02301,0.0999 l 0,0 c -0.01523,0.11967 -0.0066,0.28787 -0.101351,0.38952 -0.158651,0.17026 -0.55675,0.15855 -0.756461,0.23148 -0.956963,0.20608 -1.937617,0.29318 -2.913974,0.34316 -0.881643,0.0173 -1.790345,0.0677 -2.647854,-0.17513 -0.06394,-0.005 0.0061,-0.90916 0.06999,-0.90421 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8428"
+       d="m -30.101019,371.86994 c 0.653217,-0.0929 1.323111,0.0179 1.976957,0.0759 0.489831,0.0633 0.983724,0.0974 1.476291,0.0546 0.3225,-0.0315 0.643854,-0.0698 0.966114,-0.10388 0.303916,-0.0371 0.603961,-0.1013 0.906904,-0.14926 0.237317,-0.0633 0.482089,-0.0903 0.725347,-0.12063 0.120419,-0.0245 0.246011,0.0166 0.364494,-0.005 0.192796,-0.0395 0.293768,-0.16124 0.489064,-0.0325 0.08418,0.19899 0.0506,0.10396 0.104995,0.28356 0.0031,-3.8e-4 0.0085,0.0437 0.0054,0.0441 l 0,0 c -0.03044,0.20729 -0.007,0.0964 -0.07808,0.33101 -0.202835,0.20785 -0.362753,0.14862 -0.623706,0.13423 -0.07447,-0.0188 -0.152374,0.0658 -0.232731,0.072 -0.235443,0.0632 -0.468327,0.13821 -0.707503,0.18482 -0.321728,0.0853 -0.648965,0.12301 -0.979716,0.14658 -0.323932,0.041 -0.641849,0.11185 -0.962242,0.1748 -0.557524,0.0862 -1.117025,0.14712 -1.682661,0.12419 -0.659794,-0.0549 -1.430753,-0.10553 -1.996624,-0.4776 -0.05214,-0.0175 0.195592,-0.75491 0.247734,-0.7374 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8430"
+       d="m -25.384068,405.16519 c -0.145883,0.43938 -0.06232,0.2009 -0.25546,0.71375 0.0076,0.0295 -0.409695,0.13718 -0.417309,0.10767 l 0,0 c -0.315407,-0.3088 -0.15895,-0.18349 -0.456911,-0.39098 -0.03044,-0.0799 1.099243,-0.51032 1.12968,-0.43044 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8432"
+       d="m -29.553333,436.93777 c 0.542897,-0.23774 1.1468,-0.24026 1.728894,-0.25749 0.493862,0.0192 0.986068,-0.0489 1.4724,-0.12784 0.547418,-0.0698 1.097245,-0.10437 1.648472,-0.12187 0.297596,0.006 0.59411,0.0298 0.89016,0.0603 0.233866,-0.002 0.46158,-0.0437 0.692389,-0.075 0.04411,-0.006 0.410129,-0.054 0.424631,-0.003 -0.03682,0.008 -0.07895,0.003 -0.110454,0.0241 -0.07813,0.0513 -0.28931,0.23505 -0.209747,0.18603 0.325879,-0.20078 0.212813,-0.28601 0.61254,-0.29405 0.255447,0.10937 0.01627,-0.0195 0.266193,0.24186 0.03767,0.0394 0.08881,0.0632 0.133214,0.0949 0.01227,0.001 -0.0018,0.17451 -0.01409,0.17351 l 0,0 c -0.04626,0.0365 -0.100782,0.0643 -0.138766,0.10934 -0.337172,0.39944 0.03376,0.0732 -0.233872,0.29524 -0.02744,0.0124 -0.106151,0.0549 -0.08312,0.0355 0.07827,-0.0661 0.308908,-0.26882 0.235084,-0.19783 -0.248785,0.23923 -0.148489,0.18544 -0.381081,0.26002 -0.151743,0.084 -0.34998,0.10743 -0.517056,0.13942 -0.284129,0.0364 -0.564886,0.0638 -0.851755,0.0208 -0.262119,3.2e-4 -0.513976,0.0537 -0.76804,0.11819 -0.550804,0.0881 -1.103878,0.15649 -1.660913,0.19089 -0.498092,0.007 -0.998611,0.0203 -1.491309,0.0993 -0.559859,0.0597 -1.140155,0.17464 -1.694445,0.0232 -0.07038,-0.004 -0.01971,-0.99893 0.05067,-0.99534 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8434"
+       d="m -27.992088,467.67013 c 0.579371,-0.0344 1.154244,0.0943 1.732574,0.11887 0.699662,0.0493 1.393935,-0.0867 2.085892,-0.1696 0.499997,-0.0372 1.021815,-0.10616 1.508208,0.0527 0.187757,0.0726 0.358054,0.0368 0.550041,0.009 0.220151,-0.0322 0.443207,-0.0115 0.663586,-0.019 0.133911,0.0397 0.265574,-0.004 0.398887,-0.0208 0.201824,0.009 0.138926,0.33217 0.1424,0.45639 0.0031,-4.3e-4 0.0092,0.0435 0.0061,0.044 l 0,0 c -0.0084,0.19531 0.02914,0.45943 -0.217736,0.50042 -0.125908,0.003 -0.257753,-0.0413 -0.374744,0.0159 -0.244356,0.0387 -0.48877,0.10037 -0.739607,0.076 -0.09404,-0.009 -0.189328,-0.009 -0.28223,-0.026 -0.09381,-0.0173 -0.189019,-0.0721 -0.286623,-0.0366 -0.432134,0.22483 -0.949153,0.25355 -1.4181,0.34366 -0.76418,0.0732 -1.532541,0.0944 -2.299249,0.0448 -0.622873,-0.0869 -1.285209,-0.15015 -1.815872,-0.5197 -0.06151,-0.0245 0.284932,-0.89433 0.346438,-0.86983 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8436"
+       d="m -27.622152,498.67737 c 0.505354,-0.0207 1.011241,0.0452 1.517409,0.0543 0.543762,0.004 1.086487,-0.0298 1.630374,-0.025 0.346205,0.0171 0.689832,0.0648 1.035873,0.0808 0.284705,0.004 0.568289,0.002 0.8534,0.008 0.328416,-0.0164 0.656842,-0.001 0.985163,0.002 0.11055,0.0138 0.23077,0.01 0.339934,0.0309 0.04683,0.009 0.07873,0.035 0.128366,0.039 0.102541,0.0364 0.172223,-0.008 0.269715,-0.0408 0.277563,-0.0699 0.562859,-0.10631 0.842262,-0.16887 0.485358,-0.0498 0.42505,-0.13075 0.430403,0.43877 -0.0036,1.8e-4 -0.0061,-0.0514 -0.0025,-0.0515 l 0,0 c 0.02767,0.13542 0.06702,0.26897 0.083,0.40627 0.01073,0.0921 -0.433431,0.20155 -0.493705,0.21547 -0.314829,0.0396 -0.63295,0.0873 -0.949394,0.0335 -0.077,-0.0194 -0.228711,-0.0555 -0.278266,-0.0592 -0.04851,0.005 -0.08068,0.0315 -0.127273,0.0414 -0.113368,0.0241 -0.237502,0.0248 -0.352516,0.0403 -0.339945,0.009 -0.680738,0.0253 -1.019568,-0.018 -0.279513,-0.0148 -0.556518,-0.0353 -0.836377,-0.0353 -0.339622,10e-4 -0.678294,0.0371 -1.015577,0.075 -0.565628,0.036 -1.131729,0.0595 -1.698723,0.0509 -0.553045,-0.038 -1.150167,-0.0862 -1.615655,-0.41703 -0.04955,-0.0193 0.22408,-0.72009 0.27363,-0.70074 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8438"
+       d="m -27.535852,531.90301 c 0.676768,-0.11398 1.374838,-0.0388 2.054452,0.0212 0.815468,0.0707 1.633183,0.007 2.448781,-0.0266 0.64619,-0.0644 1.297004,-0.0708 1.944967,-0.0379 0.21513,0.005 0.427437,0.0752 0.642476,0.0541 0.14638,0.002 0.385515,-0.0986 0.501575,0.0452 0.0271,0.0336 0.03453,0.0791 0.0518,0.11861 0.0013,0.0902 0.0026,0.18048 0.004,0.27072 0.01444,0.002 -0.01112,0.20602 -0.02556,0.20421 l 0,0 c -0.02233,0.0903 -0.04467,0.18055 -0.067,0.27082 -0.173309,0.27075 -0.318783,0.19047 -0.596525,0.18187 -0.198615,-0.0239 -0.385123,0.12021 -0.581124,0.13723 -0.6516,0.14083 -1.313472,0.23905 -1.979652,0.27611 -0.88513,0.0813 -1.774543,0.0875 -2.659056,-0.009 -0.668857,-0.0741 -1.357671,-0.17037 -1.971124,-0.46182 -0.07385,-0.0164 0.158175,-1.06077 0.232023,-1.04436 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8440"
+       d="m -27.004616,529.28294 c 0.824639,-0.2988 1.724445,-0.31748 2.592624,-0.3284 0.659247,-0.0254 1.309286,0.0776 1.958839,0.16545 0.281822,0.0764 0.560493,0.0295 0.843647,-0.0115 0.40564,-0.0482 0.816827,-0.0915 1.225282,-0.0637 0.242838,0.002 0.481767,0.0471 0.722361,0.0704 0.109284,0.0174 0.212586,0.0123 0.106044,0.1212 0.06119,-0.002 0.08435,0.86366 0.02316,0.8653 l 0,0 c -0.09094,0.0821 -0.177965,0.11951 -0.303877,0.11392 -0.222225,0.005 -0.440696,0.0417 -0.661975,0.0635 -0.402044,0.0605 -0.812003,0.062 -1.217914,0.0648 -0.29974,-0.013 -0.600882,-0.0528 -0.89732,0.009 -0.655534,0.0839 -1.30818,0.21465 -1.972866,0.21203 -0.833789,0.0248 -1.705324,0.0752 -2.512301,-0.1678 -0.07883,-0.007 0.01547,-1.12142 0.09429,-1.11475 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8442"
+       d="m -27.914412,564.42979 c 0.73097,-0.13953 1.485747,-0.0616 2.22374,-0.0204 0.765006,0.0218 1.530161,0.0222 2.295092,0.0462 0.287688,0.0159 0.567782,0.061 0.835074,0.1649 0.123473,0.0602 0.227292,0.002 0.357008,-0.0114 0.357382,-0.0622 0.722623,-0.0553 1.08413,-0.0645 0.408444,0.008 0.815837,0.0317 1.223863,0.0497 0.250968,0.0205 0.502646,0.0278 0.751901,0.0681 0.09704,0.009 0.187144,0.005 0.282766,0.005 0.170752,-0.0131 0.212777,-0.0745 0.359965,0.0631 0.121476,0.27451 0.03235,0.19956 0.187957,0.29449 0.007,-2e-4 0.0098,0.0987 0.0028,0.0989 l 0,0 c -0.141423,0.14733 -0.06359,0.0424 -0.154434,0.36015 -0.158652,0.17644 -0.239996,0.19195 -0.465684,0.16995 -0.105424,0.0164 -0.21083,0.0238 -0.318072,0.0364 -0.272234,0.0549 -0.548253,0.0661 -0.824994,0.0715 -0.405506,-0.007 -0.810635,-0.0227 -1.216074,-0.0304 -0.355422,-0.0241 -0.713558,-0.0176 -1.067099,-0.0598 -0.172159,-0.0183 -0.395968,-0.0458 -0.543557,-0.14878 -0.0074,-0.005 0.01774,0.003 0.0266,0.004 0.01892,0.0103 0.04096,0.0163 0.05676,0.031 0.04013,0.0372 -0.07561,0.0619 -0.222614,0.10497 -0.28874,0.0845 -0.12991,0.0438 -0.46637,0.115 -0.810708,0.10389 -1.629563,0.15507 -2.44607,0.0874 -0.736266,-0.0496 -1.493862,-0.10938 -2.176839,-0.41136 -0.0724,-0.0151 0.141764,-1.03909 0.214168,-1.02395 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8444"
+       d="m -27.308299,596.8315 c 0.602516,-0.0713 1.218152,0.007 1.820302,0.0633 0.581168,0.065 1.160081,0.0529 1.739255,-0.0204 0.433121,-0.0341 0.862946,-0.0528 1.29674,-0.0327 0.1217,0.0344 0.26385,0.008 0.381485,0.0448 0.06615,-0.0107 0.117725,-0.004 0.180023,-0.0216 0.08272,0.008 0.167591,-0.004 0.25195,0.002 0.206115,-0.0308 0.410004,-0.0674 0.61845,-0.0823 0.364525,-0.0482 0.732144,-0.0726 1.099347,-0.0901 0.182784,0.0179 0.204515,0.20376 0.261685,0.35205 0.01072,-0.004 0.0724,0.14722 0.06168,0.15158 l 0,0 c 4.3e-4,0.28255 0.0097,0.44741 -0.270201,0.57573 -0.413059,0.13408 -0.848355,0.18161 -1.281285,0.12856 -0.21363,-0.009 -0.421141,-0.0446 -0.630642,-0.0846 -0.04806,10e-4 -0.09901,-0.0111 -0.142024,0.0121 -0.08475,10e-4 -0.165793,0.0105 -0.249666,10e-4 -0.09832,0.0288 -0.208605,0.0258 -0.302307,0.0862 -0.443488,0.13625 -0.892751,0.22278 -1.357064,0.25429 -0.638105,0.0164 -1.277042,0.0742 -1.915137,0.0382 -0.62923,-0.0437 -1.303031,-0.10946 -1.85581,-0.4363 -0.06661,-0.0207 0.226607,-0.96275 0.293218,-0.94202 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8446"
+       d="m -26.103035,84.113666 c 0.215645,0.381646 0.07825,0.608737 -0.13556,0.945896 0.0042,0.01031 -0.1416,0.06926 -0.145768,0.05895 l 0,0 c -0.432673,-0.115532 -0.600523,-0.19069 -0.651509,-0.670068 -0.02367,-0.06596 0.909164,-0.400744 0.932837,-0.334783 z"
+       transform="translate(0,28.362168)" />
+    <path
+       style="fill:#20ff00;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path8448"
+       d="m -25.507641,245.37368 c 0.08205,0.23679 0.176008,0.53179 0.07516,0.77796 -1.366851,0.26817 -0.720661,0.041 -0.393455,-0.005 5.28e-4,-0.003 0.0443,0.004 0.04377,0.007 l 0,0 c 0.617408,-0.0414 0.274855,0.35739 -0.420627,0.23626 -0.172873,-0.24528 -0.191208,-0.55193 -0.154509,-0.84243 -0.01229,-0.0601 0.837369,-0.23392 0.849661,-0.17384 z"
+       transform="translate(0,28.362168)" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cube"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <g
+       sodipodi:type="inkscape:box3d"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       id="g3179-4"
+       inkscape:perspectiveID="#perspective10-7-6-9"
+       inkscape:corner0="-0.72616017 : 0.34711024 : 0 : 1"
+       inkscape:corner7="-0.80756143 : 0.25492848 : -0.086698756 : 1">
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path3185-3"
+         style="fill:#8686bf;fill-opacity:0.75;fill-rule:evenodd;stroke:none"
+         inkscape:box3dsidetype="3"
+         d="m -52.899978,5.4878723 -12.809883,2.568241 3.902517,-14.2298335 14.442295,-0.8253579 z" />
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path3181-0"
+         style="fill:#353564;fill-opacity:0.75;fill-rule:evenodd;stroke:none"
+         inkscape:box3dsidetype="6"
+         d="m -52.899978,5.4878723 5.534929,-12.4869504 7.719892,5.0306632 -7.765162,13.6453339 z" />
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path3183-3"
+         style="fill:#4d4d9f;fill-opacity:0.75;fill-rule:evenodd;stroke:none"
+         inkscape:box3dsidetype="5"
+         d="m -52.899978,5.4878723 -12.809883,2.568241 4.023973,7.7932407 14.275569,-4.172435 z" />
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path3189-0"
+         style="fill:#afafde;fill-opacity:0.75;fill-rule:evenodd;stroke:none"
+         inkscape:box3dsidetype="13"
+         d="m -47.365049,-6.9990781 -14.442295,0.8253579 5.990546,6.36446438 16.171641,-2.15915908 z" />
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path3187-9"
+         style="fill:#d7d7ff;fill-opacity:0.75;fill-rule:evenodd;stroke:none"
+         inkscape:box3dsidetype="14"
+         d="m -65.709861,8.0561133 3.902517,-14.2298335 5.990546,6.36446438 -5.86909,15.65860982 z" />
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path3191-2"
+         style="fill:#e9e9ff;fill-opacity:0.75;fill-rule:evenodd;stroke:none"
+         inkscape:box3dsidetype="11"
+         d="m -47.410319,11.676919 -14.275569,4.172435 5.86909,-15.65860982 16.171641,-2.15915908 z" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="ballon"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <g
+       id="g6886"
+       clip-path="url(#clipPath3208)"
+       inkscape:tile-cx="12.9142"
+       inkscape:tile-cy="16.897972"
+       inkscape:tile-w="28.902896"
+       inkscape:tile-h="31.599543"
+       inkscape:tile-x0="-1.0823059"
+       inkscape:tile-y0="1.8555408"
+       transform="matrix(0.97705911,-0.21296833,0.21296833,0.97705911,-4.4232712,3.524121)">
+      <g
+         clip-path="none"
+         id="g4746">
+        <path
+           id="path3111"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+           d="M 18.396412,6.045337 3.9541167,6.8707001 9.9446632,13.235173 26.116304,11.076006 z"
+           clip-path="none" />
+        <path
+           id="path3113"
+           style="fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none"
+           d="M 0.05159913,21.100538 3.9541167,6.8707001 9.9446632,13.235173 4.0755727,28.893786 z"
+           clip-path="none" />
+        <path
+           id="path3115"
+           style="fill:#d0d0d0;fill-opacity:1;fill-rule:evenodd;stroke:none"
+           d="M 18.351142,24.721344 4.0755727,28.893786 9.9446632,13.235173 26.116304,11.076006 z"
+           clip-path="none" />
+        <path
+           style="fill:url(#linearGradient3199);fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 6.9391523,15.409357 3.0024551,-2.174887 1.7443386,2.048873 -1.551437,1.582326 -0.8855306,2.369917 -0.8855303,2.369916 -0.8855303,2.369916 -0.8855303,2.369917 -0.8855303,2.369916 -0.8855303,2.369917 -0.8855303,2.369916 -2.8878318,-1.285823 0.8059833,-2.145769 0.8059833,-2.14577 0.8059833,-2.145769 0.8059833,-2.145769 0.8059833,-2.14577 0.8059833,-2.145769 0.8059833,-2.14577 0.2493044,-1.739518 z"
+           id="path3889"
+           sodipodi:nodetypes="cccccccccccccccccccc"
+           clip-path="none" />
+        <path
+           style="fill:url(#linearGradient3201);fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 13.058445,10.590092 9.9427015,13.236472 6.9359142,15.406427 6.419054,13.832665 5.3474311,12.655574 4.2758083,11.478482 3.2041855,10.301391 2.1325626,9.1242989 1.0609398,7.9472073 -0.01068306,6.7701157 -1.0823059,5.5930241 3.5321088,1.8555408 l 1.0822828,1.187034 1.0822828,1.187034 1.0822827,1.1870341 1.0822828,1.187034 1.0822828,1.187034 1.0822823,1.187034 1.082283,1.1870341 1.950357,0.425313 z"
+           id="path3879"
+           sodipodi:nodetypes="cccccccccccccccccccc"
+           clip-path="none" />
+        <path
+           style="fill:url(#linearGradient3203);fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 13.022177,10.602182 -3.0824489,2.630555 1.7722889,2.068119 1.43258,-1.077002 2.09657,-0.296118 2.096571,-0.296118 2.09657,-0.296117 2.09657,-0.296118 2.096571,-0.296118 2.09657,-0.296118 2.096571,-0.296118 -0.592236,-2.8997202 -1.879371,0.257008 -1.879371,0.257008 -1.879371,0.2570082 -1.87937,0.257008 -1.879371,0.257008 -1.879371,0.257008 -1.879371,0.257008 -1.050581,-0.448183 z"
+           id="path3065"
+           sodipodi:nodetypes="cccccccccccccccccccc"
+           clip-path="none" />
+        <path
+           style="fill:url(#radialGradient3205);fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter3983)"
+           d="m 7.4879742,14.997884 c -0.6139936,-1.457417 3.4113118,-4.575241 4.6720868,-3.663956 1.260775,0.911285 -0.25035,2.468255 -1.151762,3.195122 -0.901412,0.726867 -2.9063312,1.926251 -3.5203248,0.468834 z"
+           id="path3899"
+           sodipodi:nodetypes="czzz"
+           clip-path="none" />
+      </g>
+      <path
+         clip-path="none"
+         sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc"
+         id="path6884"
+         d="M 16.601562,6.1367187 14.796875,6.2421875 12.992188,6.3476562 11.1875,6.453125 9.382813,6.5585937 7.578125,6.6640625 5.7734375,6.7695312 C 4.9048739,6.8054391 3.7243713,7.7004468 3.4804688,8.6523438 L 2.9921875,10.429688 2.5039063,12.207031 2.015625,13.984375 1.5273437,15.761719 1.0390625,17.539062 0.5507813,19.316406 c -0.257884,0.906722 -0.2663776,2.234087 0.011719,2.753906 l 0.5,0.976563 0.5,0.976562 0.5,0.976563 0.5,0.976562 0.5,0.976563 0.5,0.976562 c 0.264173,0.49098 1.37712,0.719376 2.2851562,0.453125 l 1.7851563,-0.523437 1.7851565,-0.523438 1.7851557,-0.523437 1.785156,-0.523438 1.785157,-0.523437 1.785156,-0.523438 c 0.95216,-0.279189 2.28563,-1.401779 2.757812,-2.230468 l 0.972656,-1.707032 0.972657,-1.707031 0.972656,-1.707031 0.972656,-1.707031 0.972656,-1.707031 0.972657,-1.707032 c 0.523355,-0.906478 0.532805,-1.993723 0.0078,-2.335937 L 24.195312,9.8046875 23.230469,9.1757813 22.265625,8.546875 21.300781,7.9179687 20.335937,7.2890625 19.371094,6.6601562 C 18.884683,6.3431029 17.610279,6.0777677 16.601562,6.1367187 z"
+         style="fill:none;stroke:#797676;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         transform="translate(-0.03832557,-0.4139162)" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       id="use7276"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,65.020842)"
+       id="use7278"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,96.00876)"
+       id="use7280"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,128.00179)"
+       id="use7282"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,160.0062)"
+       id="use7284"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,191.96642)"
+       id="use7286"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,224.9872)"
+       id="use7288"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,255.96379)"
+       id="use7290"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,287.96821)"
+       id="use7292"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,320.01681)"
+       id="use7294"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,351.97703)"
+       id="use7296"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,384.95362)"
+       id="use7298"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,415.9744)"
+       id="use7300"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,447.99027)"
+       id="use7302"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,479.98323)"
+       id="use7304"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,510.95982)"
+       id="use7306"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,543.99205)"
+       id="use7308"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6886"
+       xlink:href="#g6886"
+       transform="translate(0,575.99646)"
+       id="use7310"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hat"
+     style="display:inline"
+     transform="translate(0,-28.362168)"
+     sodipodi:insensitive="true">
+    <g
+       id="g6909"
+       inkscape:tile-cx="17.890625"
+       inkscape:tile-cy="16.330572"
+       inkscape:tile-w="22.78125"
+       inkscape:tile-h="30.325294"
+       inkscape:tile-x0="6.5"
+       inkscape:tile-y0="1.1434556">
+      <path
+         sodipodi:nodetypes="cc"
+         id="path4959"
+         d="M 25.408176,50.268979 27.99132,48.490673"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#DotM)" />
+      <path
+         sodipodi:nodetypes="cc"
+         id="path4961"
+         d="m 22.57975,51.916979 -3.426306,2.169227"
+         style="fill:none;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#DotM)" />
+      <path
+         transform="translate(0,28.362168)"
+         id="path6663"
+         d="m 17.637188,11.430038 0,-9.9876435"
+         style="fill:#ff0400;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+      <path
+         transform="matrix(0.57975036,0,0,0.57975036,5.9816882,29.05601)"
+         d="m 22.857131,3.5388033 a 2.7632737,2.7632737 0 1 1 -5.526548,0 2.7632737,2.7632737 0 1 1 5.526548,0 z"
+         sodipodi:ry="2.7632737"
+         sodipodi:rx="2.7632737"
+         sodipodi:cy="3.5388033"
+         sodipodi:cx="20.093857"
+         id="path6665"
+         style="fill:#ff0400;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         transform="translate(0,28.362168)"
+         sodipodi:nodetypes="cscsscsscccc"
+         id="path3012"
+         d="m 17.875,11.40625 c -6.289927,0 -11.375,5.153449 -11.375,11.5 0,2.641252 0.8995532,4.557818 2.375,5.90625 0.5751328,-1.250918 1.845484,-2.125 3.3125,-2.125 2.008713,0 3.654873,0.881401 3.654873,2.890114 0,0.364621 -0.05641,0.809523 -0.15625,1.141616 0.711531,0.06691 1.433918,0.09375 2.1875,0.09375 6.28991,0 11.407627,-1.560179 11.407627,-7.90673 0,-6.346551 -5.11634,-11.5 -11.40625,-11.5 z m 8.90625,5.25 c 2.630431,12.252913 -4.162579,10.923127 -12.375,7.25 -0.01342,-9.134499 6.11223,-13.07496 12.375,-7.25 z"
+         style="fill:url(#radialGradient4613);fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       id="use7384"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,64.973621)"
+       id="use7386"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,96.001595)"
+       id="use7388"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,127.9729)"
+       id="use7390"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,160.00317)"
+       id="use7392"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,191.97912)"
+       id="use7394"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,225.00708)"
+       id="use7396"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,255.98071)"
+       id="use7398"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,288.01098)"
+       id="use7400"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,319.9823)"
+       id="use7402"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,352.01257)"
+       id="use7404"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,384.9862)"
+       id="use7406"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,415.95983)"
+       id="use7408"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,447.99011)"
+       id="use7410"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,480.02038)"
+       id="use7412"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,510.93505)"
+       id="use7414"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,543.96301)"
+       id="use7416"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g6909"
+       xlink:href="#g6909"
+       transform="translate(0,575.99328)"
+       id="use7418"
+       width="32"
+       height="1024" />
+    <path
+       transform="matrix(0.57975036,0,0,0.57975036,5.9847689,94.025721)"
+       d="m 22.857131,3.5388033 a 2.7632737,2.7632737 0 1 1 -5.526548,0 2.7632737,2.7632737 0 1 1 5.526548,0 z"
+       sodipodi:ry="2.7632737"
+       sodipodi:rx="2.7632737"
+       sodipodi:cy="3.5388033"
+       sodipodi:cx="20.093857"
+       id="path6665-2"
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.57975036,0,0,0.57975036,5.9794861,254.06493)"
+       d="m 22.857131,3.5388033 a 2.7632737,2.7632737 0 1 1 -5.526548,0 2.7632737,2.7632737 0 1 1 5.526548,0 z"
+       sodipodi:ry="2.7632737"
+       sodipodi:rx="2.7632737"
+       sodipodi:cy="3.5388033"
+       sodipodi:cx="20.093857"
+       id="path6665-1"
+       style="fill:#04ff00;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.57975036,0,0,0.57975036,5.9835684,414.04112)"
+       d="m 22.857131,3.5388033 a 2.7632737,2.7632737 0 1 1 -5.526548,0 2.7632737,2.7632737 0 1 1 5.526548,0 z"
+       sodipodi:ry="2.7632737"
+       sodipodi:rx="2.7632737"
+       sodipodi:cy="3.5388033"
+       sodipodi:cx="20.093857"
+       id="path6665-9"
+       style="fill:#10ff00;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.57975036,0,0,0.57975036,5.9814847,539.98599)"
+       d="m 22.857131,3.5388033 a 2.7632737,2.7632737 0 1 1 -5.526548,0 2.7632737,2.7632737 0 1 1 5.526548,0 z"
+       sodipodi:ry="2.7632737"
+       sodipodi:rx="2.7632737"
+       sodipodi:cy="3.5388033"
+       sodipodi:cx="20.093857"
+       id="path6665-6"
+       style="fill:#fbff00;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="hand"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:url(#linearGradient8580);fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+       d="m 10.115666,23.947674 c -1.8332118,0.973489 -2.5120563,3.265145 -1.5385686,5.098351 0.1433749,0.269994 0.2988991,0.509835 0.4931783,0.728828 0.018358,-1.142248 0.736185,-2.30161 1.9409483,-2.941375 1.672107,-0.887939 3.6584,-0.440114 4.428342,1.009789 0.04526,0.08523 0.06931,0.175047 0.104306,0.263056 0.191183,-0.846353 0.09607,-1.751375 -0.342796,-2.577827 -0.973484,-1.833207 -3.252193,-2.554311 -5.085402,-1.580822 z"
+       id="path8360-8"
+       inkscape:tile-cx="12.805431"
+       inkscape:tile-cy="27.54553"
+       inkscape:tile-w="7.4999997"
+       inkscape:tile-h="6.21875"
+       inkscape:tile-x0="9.0554313"
+       inkscape:tile-y0="24.436155" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       id="use4735"
+       width="32"
+       height="1024"
+       transform="translate(0,31.953908)" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,64.9663)"
+       id="use4737"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,96.000391)"
+       id="use4739"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,127.96522)"
+       id="use4741"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,159.97881)"
+       id="use4743"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,191.96556)"
+       id="use4745"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,225.00476)"
+       id="use4747"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,255.96591)"
+       id="use4749"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,288.00386)"
+       id="use4751"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,319.96377)"
+       id="use4753"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,352.00421)"
+       id="use4755"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,384.9604)"
+       id="use4757"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,415.94839)"
+       id="use4759"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,447.98634)"
+       id="use4761"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,479.99745)"
+       id="use4763"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,510.91237)"
+       id="use4765"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,543.94908)"
+       id="use4767"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360-8"
+       xlink:href="#path8360-8"
+       transform="translate(0,575.98455)"
+       id="use4769"
+       width="32"
+       height="1024" />
+    <path
+       style="fill:url(#linearGradient10513);fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+       d="m 11.064457,24.409871 c -2.0212561,0.472095 -3.2637919,2.513815 -2.7916969,4.535064 0.06953,0.297689 0.158519,0.569337 0.290307,0.830745 0.309972,-1.099539 1.3005146,-2.036673 2.6288579,-2.346929 1.843626,-0.430608 3.649248,0.510475 4.022632,2.109103 0.02195,0.09397 0.02222,0.186954 0.03354,0.280988 0.401347,-0.769276 0.540935,-1.668512 0.328108,-2.579737 -0.472095,-2.02125 -2.490488,-3.301327 -4.51174,-2.829232 z"
+       id="path8360"
+       inkscape:tile-cx="12.805431"
+       inkscape:tile-cy="27.54553"
+       inkscape:tile-w="7.4999997"
+       inkscape:tile-h="6.21875"
+       inkscape:tile-x0="9.0554313"
+       inkscape:tile-y0="24.436155" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       id="use8635"
+       transform="translate(-0.13779116,32.99928)"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.13779117,97.052039)"
+       id="use8639"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.13779117,128.05693)"
+       id="use8641"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.13779117,160.02814)"
+       id="use8643"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.20668673,193.03095)"
+       id="use8645"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(0.82674675,225.86907)"
+       id="use8647"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.20668665,257.04038)"
+       id="use8649"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.06889553,287.97619)"
+       id="use8651"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.13779109,320.0144)"
+       id="use8653"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(3.7126936e-8,352.95022)"
+       id="use8655"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(0.8956423,385.79669)"
+       id="use8657"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.13779109,417.02854)"
+       id="use8659"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.13779109,448.03325)"
+       id="use8661"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.13779109,480.07146)"
+       id="use8663"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.13779109,510.24938)"
+       id="use8665"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(0.06889569,543.18519)"
+       id="use8667"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(-0.13779109,575.9813)"
+       id="use8669"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path8360"
+       xlink:href="#path8360"
+       transform="translate(0.82674675,65.822491)"
+       id="use8637"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="illuminator"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:url(#linearGradient4606);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="rect6579"
+       width="53.599831"
+       height="16.188814"
+       x="-18.17156"
+       y="11.919074"
+       ry="0.03128048"
+       rx="0.093000002"
+       clip-path="url(#clipPath4657)"
+       inkscape:tile-cx="8.628355"
+       inkscape:tile-cy="20.427443"
+       inkscape:tile-w="53.599831"
+       inkscape:tile-h="15.360887"
+       inkscape:tile-x0="-18.17156"
+       inkscape:tile-y0="12.747" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4661)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="43.919075"
+       x="-20.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4564"
+       style="fill:url(#linearGradient4651);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4665)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="76.901848"
+       x="-22.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4566"
+       style="fill:url(#linearGradient4647);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4669)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="107.93192"
+       x="-20.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4568"
+       style="fill:url(#linearGradient4643);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4673)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="139.87431"
+       x="-18.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4570"
+       style="fill:url(#linearGradient4639);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4677)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="171.95859"
+       x="-18.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4572"
+       style="fill:url(#linearGradient4635);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4681)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="203.88716"
+       x="-20.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4574"
+       style="fill:url(#linearGradient4631);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4685)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="236.91722"
+       x="-22.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4576"
+       style="fill:url(#linearGradient4627);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4689)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="267.89999"
+       x="-20.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4578"
+       style="fill:url(#linearGradient4623);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4693)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="299.93698"
+       x="-18.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4580"
+       style="fill:url(#linearGradient4619);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4697)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="331.87936"
+       x="-18.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4582"
+       style="fill:url(#linearGradient4615);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4701)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="363.94983"
+       x="-18.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4584"
+       style="fill:url(#linearGradient4611);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4705)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="396.88531"
+       x="-22.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4586"
+       style="fill:url(#linearGradient4607);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4709)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="427.86807"
+       x="-16.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4588"
+       style="fill:url(#linearGradient4603);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4713)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="459.95233"
+       x="-14.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4590"
+       style="fill:url(#linearGradient4599);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4717)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="491.94205"
+       x="-12.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4592"
+       style="fill:url(#linearGradient4595);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4721)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="522.8775"
+       x="-10.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4594"
+       style="fill:url(#linearGradient4591);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4725)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="555.90759"
+       x="-14.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4596"
+       style="fill:url(#linearGradient4587);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <rect
+       inkscape:tile-y0="12.747"
+       inkscape:tile-x0="-18.17156"
+       clip-path="url(#clipPath4729)"
+       rx="0.093000002"
+       ry="0.03128048"
+       y="587.94458"
+       x="-16.17156"
+       height="16.188814"
+       width="53.599831"
+       id="use4598"
+       style="fill:url(#linearGradient4583);fill-opacity:1;fill-rule:nonzero;stroke:#030000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+       x="63.926907"
+       y="625.58398"
+       id="text4653"><tspan
+         sodipodi:role="line"
+         id="tspan4655"
+         x="63.926907"
+         y="625.58398"
+         style="font-size:16px;line-height:1">clones disconnected from parent object :( for illuminator</tspan></text>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/zoo_Pig.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,878 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="zoo_Pig.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="zoo_Pig.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title34540">pig</title>
+  <defs
+     id="defs4">
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5177"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5105"
+       is_visible="true" />
+    <linearGradient
+       id="linearGradient3932">
+      <stop
+         style="stop-color:#ff0000;stop-opacity:1;"
+         offset="0"
+         id="stop3934" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop3936" />
+    </linearGradient>
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect3930"
+       is_visible="true" />
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3932"
+       id="linearGradient5093"
+       gradientUnits="userSpaceOnUse"
+       x1="20.944201"
+       y1="27.505091"
+       x2="21.822548"
+       y2="27.014812" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3932"
+       id="linearGradient5119"
+       gradientUnits="userSpaceOnUse"
+       x1="20.944201"
+       y1="27.505091"
+       x2="21.822548"
+       y2="27.014812" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3932"
+       id="linearGradient5133"
+       gradientUnits="userSpaceOnUse"
+       x1="20.944201"
+       y1="27.505091"
+       x2="21.822548"
+       y2="27.014812" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3932"
+       id="linearGradient5147"
+       gradientUnits="userSpaceOnUse"
+       x1="20.944201"
+       y1="27.505091"
+       x2="21.822548"
+       y2="27.014812" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3932"
+       id="linearGradient5161"
+       gradientUnits="userSpaceOnUse"
+       x1="20.944201"
+       y1="27.505091"
+       x2="21.822548"
+       y2="27.014812" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3932"
+       id="linearGradient5175"
+       gradientUnits="userSpaceOnUse"
+       x1="20.944201"
+       y1="27.505091"
+       x2="21.822548"
+       y2="27.014812" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="9.6863697"
+     inkscape:cx="17.042963"
+     inkscape:cy="435.30989"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true"
+     inkscape:snap-bbox-edge-midpoints="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>pig</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat pig</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.47108262,-0.39369396,0.2092255,0.25035308,7.8381503,28.362565)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <g
+       id="g3948"
+       inkscape:tile-cx="17.184578"
+       inkscape:tile-cy="24.491268"
+       inkscape:tile-w="25.32258"
+       inkscape:tile-h="13.272632"
+       inkscape:tile-x0="4.6482882"
+       inkscape:tile-y0="17.729952"
+       transform="translate(1.5465567,-1.1088765)">
+      <path
+         transform="matrix(0.97296758,-0.2733955,0.32499705,1.1566086,-8.5666216,-0.64587667)"
+         d="m 30.668849,26.1418 a 3.7966437,3.7966437 0 1 1 -7.593287,0 3.7966437,3.7966437 0 1 1 7.593287,0 z"
+         sodipodi:ry="3.7966437"
+         sodipodi:rx="3.7966437"
+         sodipodi:cy="26.1418"
+         sodipodi:cx="26.872206"
+         id="path3139"
+         style="fill:#f8c4f2;fill-opacity:1;stroke:#a3086a;stroke-width:0.45375946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(1.9365851,-0.54416371,0.54961474,1.9559843,-37.484014,-10.259671)"
+         d="m 26.014029,23.922211 a 0.64700198,1.0468712 0 1 1 -1.294004,0 0.64700198,1.0468712 0 1 1 1.294004,0 z"
+         sodipodi:ry="1.0468712"
+         sodipodi:rx="0.64700198"
+         sodipodi:cy="23.922211"
+         sodipodi:cx="25.367027"
+         id="path3913"
+         style="fill:#a3086a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <use
+         height="1024"
+         width="32"
+         transform="translate(2.8376433,-0.87053126)"
+         id="use3915"
+         xlink:href="#path3913"
+         y="0"
+         x="0" />
+      <path
+         sodipodi:nodetypes="cssscc"
+         inkscape:original-d="m 26.308727,26.741369 c 0,0 -3.779367,-1.227988 -5.086441,-0.317815 -1.307074,0.910173 7.323775,-0.440612 -2.393909,-0.06834 -0.774644,0.02968 0.643297,2.778991 0.753432,2.789381 0.110135,0.01039 4.199884,-2.075523 4.199884,-2.075523 l 2.527034,-0.327705 z"
+         inkscape:path-effect="#path-effect3930"
+         id="path3928"
+         d="m 26.308727,26.741369 c -1.688322,0.302044 -3.448849,0.192042 -5.086441,-0.317815 -0.397161,-0.123654 -0.790697,-0.271199 -1.203489,-0.322482 -0.206396,-0.02564 -0.416948,-0.02668 -0.621332,0.01184 -0.204385,0.03852 -0.402685,0.117531 -0.569088,0.242298 -0.23187,0.173854 -0.39459,0.433656 -0.464641,0.714871 -0.07005,0.281215 -0.04952,0.582086 0.04353,0.85655 0.09305,0.274464 0.256909,0.522709 0.461868,0.727602 0.204958,0.204893 0.450329,0.367221 0.712677,0.490358 0.811523,0.380899 1.796162,0.370981 2.599847,-0.02619 0.803685,-0.39717 1.409666,-1.173313 1.600037,-2.049334 l 2.527034,-0.327705 z"
+         style="fill:url(#linearGradient5093);fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+      <path
+         sodipodi:nodetypes="csss"
+         inkscape:original-d="m 8.6071431,26.653358 c 0,0 -7.63909099,0.357727 -6.4027177,-1.575733 1.2363713,-1.933457 1.6809374,-7.185749 1.3328467,-4.600108 -0.3480925,2.585644 3.1257099,5.817104 1.0958451,3.338102"
+         inkscape:path-effect="#path-effect5105"
+         id="path3944"
+         d="M 8.6071431,26.653358 C 7.5379136,27.188488 6.2768261,27.329509 5.1158037,27.043777 3.9547812,26.758045 2.9031783,26.047862 2.2044254,25.077625 1.9167706,24.678209 1.6865788,24.234284 1.5553436,23.759883 1.4241084,23.285482 1.3938722,22.779825 1.4975237,22.298644 1.6011753,21.817463 1.8421031,21.362306 2.2026614,21.02723 c 0.3605583,-0.335077 0.8424231,-0.544225 1.3346107,-0.549713 0.3883157,-0.0043 0.7770288,0.118062 1.0928139,0.344087 0.3157851,0.226026 0.5569906,0.554504 0.6781164,0.92347 0.1211258,0.368967 0.1215384,0.776493 0.00116,1.145704 -0.1203784,0.369211 -0.3609183,0.698176 -0.6762451,0.924841"
+         style="fill:none;stroke:#ef6cdd;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       id="use3956"
+       transform="translate(0,32.071139)"
+       width="32"
+       height="1024" />
+    <g
+       transform="translate(1.5465567,63.930464)"
+       inkscape:tile-y0="17.729952"
+       inkscape:tile-x0="4.6482882"
+       id="use3958">
+      <path
+         sodipodi:type="arc"
+         style="fill:#f8c4f2;fill-opacity:1;stroke:#a3086a;stroke-width:0.45375946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         id="path5109"
+         sodipodi:cx="26.872206"
+         sodipodi:cy="26.1418"
+         sodipodi:rx="3.7966437"
+         sodipodi:ry="3.7966437"
+         d="m 30.668849,26.1418 a 3.7966437,3.7966437 0 1 1 -7.593287,0 3.7966437,3.7966437 0 1 1 7.593287,0 z"
+         transform="matrix(0.97296758,-0.2733955,0.32499705,1.1566086,-9.3331241,-0.64587667)" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#a3086a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path5111"
+         sodipodi:cx="25.367027"
+         sodipodi:cy="23.922211"
+         sodipodi:rx="0.64700198"
+         sodipodi:ry="1.0468712"
+         d="m 26.014029,23.922211 a 0.64700198,1.0468712 0 1 1 -1.294004,0 0.64700198,1.0468712 0 1 1 1.294004,0 z"
+         transform="matrix(1.9365851,-0.54416371,0.54961474,1.9559843,-38.250514,-10.259671)" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path3913"
+         id="use5113"
+         transform="translate(2.0711412,-0.87053126)"
+         width="32"
+         height="1024" />
+      <path
+         style="fill:url(#linearGradient5119);fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         d="m 26.308727,26.741369 c -1.688322,0.302044 -3.448849,0.192042 -5.086441,-0.317815 -0.397161,-0.123654 -0.790697,-0.271199 -1.203489,-0.322482 -0.206396,-0.02564 -0.416948,-0.02668 -0.621332,0.01184 -0.204385,0.03852 -0.402685,0.117531 -0.569088,0.242298 -0.23187,0.173854 -0.39459,0.433656 -0.464641,0.714871 -0.07005,0.281215 -0.04952,0.582086 0.04353,0.85655 0.09305,0.274464 0.256909,0.522709 0.461868,0.727602 0.204958,0.204893 0.450329,0.367221 0.712677,0.490358 0.811523,0.380899 1.796162,0.370981 2.599847,-0.02619 0.803685,-0.39717 1.409666,-1.173313 1.600037,-2.049334 l 2.527034,-0.327705 z"
+         id="path5115"
+         inkscape:path-effect="#path-effect3930"
+         inkscape:original-d="m 26.308727,26.741369 c 0,0 -3.779367,-1.227988 -5.086441,-0.317815 -1.307074,0.910173 7.323775,-0.440612 -2.393909,-0.06834 -0.774644,0.02968 0.643297,2.778991 0.753432,2.789381 0.110135,0.01039 4.199884,-2.075523 4.199884,-2.075523 l 2.527034,-0.327705 z"
+         sodipodi:nodetypes="cssscc" />
+      <path
+         style="fill:none;stroke:#ef6cdd;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         d="M 8.6071431,26.653358 C 7.5379136,27.188488 6.2768261,27.329509 5.1158037,27.043777 3.9547812,26.758045 2.9031783,26.047862 2.2044254,25.077625 1.9167706,24.678209 1.6865788,24.234284 1.5553436,23.759883 1.4241084,23.285482 1.3938722,22.779825 1.4975237,22.298644 1.6011753,21.817463 1.8421031,21.362306 2.2026614,21.02723 c 0.3605583,-0.335077 0.8424231,-0.544225 1.3346107,-0.549713 0.3883157,-0.0043 0.7770288,0.118062 1.0928139,0.344087 0.3157851,0.226026 0.5569906,0.554504 0.6781164,0.92347 0.1211258,0.368967 0.1215384,0.776493 0.00116,1.145704 -0.1203784,0.369211 -0.3609183,0.698176 -0.6762451,0.924841"
+         id="path5117"
+         inkscape:path-effect="#path-effect5105"
+         inkscape:original-d="m 8.6071431,26.653358 c 0,0 -7.63909099,0.357727 -6.4027177,-1.575733 1.2363713,-1.933457 1.6809374,-7.185749 1.3328467,-4.600108 -0.3480925,2.585644 3.1257099,5.817104 1.0958451,3.338102"
+         sodipodi:nodetypes="csss" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,96.070574)"
+       id="use3960"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,128.04282)"
+       id="use3962"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,160.00698)"
+       id="use3964"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,192.04227)"
+       id="use3966"
+       width="32"
+       height="1024" />
+    <g
+       transform="translate(1.5465567,223.90158)"
+       inkscape:tile-y0="17.729952"
+       inkscape:tile-x0="4.6482882"
+       id="use3968">
+      <path
+         sodipodi:type="arc"
+         style="fill:#f8c4f2;fill-opacity:1;stroke:#a3086a;stroke-width:0.45375946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         id="path5123"
+         sodipodi:cx="26.872206"
+         sodipodi:cy="26.1418"
+         sodipodi:rx="3.7966437"
+         sodipodi:ry="3.7966437"
+         d="m 30.668849,26.1418 a 3.7966437,3.7966437 0 1 1 -7.593287,0 3.7966437,3.7966437 0 1 1 7.593287,0 z"
+         transform="matrix(0.97296758,-0.2733955,0.32499705,1.1566086,-9.3513731,-0.64587667)" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#a3086a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path5125"
+         sodipodi:cx="25.367027"
+         sodipodi:cy="23.922211"
+         sodipodi:rx="0.64700198"
+         sodipodi:ry="1.0468712"
+         d="m 26.014029,23.922211 a 0.64700198,1.0468712 0 1 1 -1.294004,0 0.64700198,1.0468712 0 1 1 1.294004,0 z"
+         transform="matrix(1.9365851,-0.54416371,0.54961474,1.9559843,-38.268764,-10.259671)" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path3913"
+         id="use5127"
+         transform="translate(2.0528922,-0.87053126)"
+         width="32"
+         height="1024" />
+      <path
+         style="fill:url(#linearGradient5133);fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         d="m 26.308727,26.741369 c -1.688322,0.302044 -3.448849,0.192042 -5.086441,-0.317815 -0.397161,-0.123654 -0.790697,-0.271199 -1.203489,-0.322482 -0.206396,-0.02564 -0.416948,-0.02668 -0.621332,0.01184 -0.204385,0.03852 -0.402685,0.117531 -0.569088,0.242298 -0.23187,0.173854 -0.39459,0.433656 -0.464641,0.714871 -0.07005,0.281215 -0.04952,0.582086 0.04353,0.85655 0.09305,0.274464 0.256909,0.522709 0.461868,0.727602 0.204958,0.204893 0.450329,0.367221 0.712677,0.490358 0.811523,0.380899 1.796162,0.370981 2.599847,-0.02619 0.803685,-0.39717 1.409666,-1.173313 1.600037,-2.049334 l 2.527034,-0.327705 z"
+         id="path5129"
+         inkscape:path-effect="#path-effect3930"
+         inkscape:original-d="m 26.308727,26.741369 c 0,0 -3.779367,-1.227988 -5.086441,-0.317815 -1.307074,0.910173 7.323775,-0.440612 -2.393909,-0.06834 -0.774644,0.02968 0.643297,2.778991 0.753432,2.789381 0.110135,0.01039 4.199884,-2.075523 4.199884,-2.075523 l 2.527034,-0.327705 z"
+         sodipodi:nodetypes="cssscc" />
+      <path
+         style="fill:none;stroke:#ef6cdd;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         d="M 8.6071431,26.653358 C 7.5379136,27.188488 6.2768261,27.329509 5.1158037,27.043777 3.9547812,26.758045 2.9031783,26.047862 2.2044254,25.077625 1.9167706,24.678209 1.6865788,24.234284 1.5553436,23.759883 1.4241084,23.285482 1.3938722,22.779825 1.4975237,22.298644 1.6011753,21.817463 1.8421031,21.362306 2.2026614,21.02723 c 0.3605583,-0.335077 0.8424231,-0.544225 1.3346107,-0.549713 0.3883157,-0.0043 0.7770288,0.118062 1.0928139,0.344087 0.3157851,0.226026 0.5569906,0.554504 0.6781164,0.92347 0.1211258,0.368967 0.1215384,0.776493 0.00116,1.145704 -0.1203784,0.369211 -0.3609183,0.698176 -0.6762451,0.924841"
+         id="path5131"
+         inkscape:path-effect="#path-effect5105"
+         inkscape:original-d="m 8.6071431,26.653358 c 0,0 -7.63909099,0.357727 -6.4027177,-1.575733 1.2363713,-1.933457 1.6809374,-7.185749 1.3328467,-4.600108 -0.3480925,2.585644 3.1257099,5.817104 1.0958451,3.338102"
+         sodipodi:nodetypes="csss" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,256.0498)"
+       id="use3970"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,288.01395)"
+       id="use3972"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,319.97811)"
+       id="use3974"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,352.0134)"
+       id="use3976"
+       width="32"
+       height="1024" />
+    <g
+       transform="translate(1.5465567,383.87271)"
+       inkscape:tile-y0="17.729952"
+       inkscape:tile-x0="4.6482882"
+       id="use3978">
+      <path
+         sodipodi:type="arc"
+         style="fill:#f8c4f2;fill-opacity:1;stroke:#a3086a;stroke-width:0.45375946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         id="path5137"
+         sodipodi:cx="26.872206"
+         sodipodi:cy="26.1418"
+         sodipodi:rx="3.7966437"
+         sodipodi:ry="3.7966437"
+         d="m 30.668849,26.1418 a 3.7966437,3.7966437 0 1 1 -7.593287,0 3.7966437,3.7966437 0 1 1 7.593287,0 z"
+         transform="matrix(0.97296758,-0.2733955,0.32499705,1.1566086,-9.3331241,-0.64587667)" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#a3086a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path5139"
+         sodipodi:cx="25.367027"
+         sodipodi:cy="23.922211"
+         sodipodi:rx="0.64700198"
+         sodipodi:ry="1.0468712"
+         d="m 26.014029,23.922211 a 0.64700198,1.0468712 0 1 1 -1.294004,0 0.64700198,1.0468712 0 1 1 1.294004,0 z"
+         transform="matrix(1.9365851,-0.54416371,0.54961474,1.9559843,-38.250514,-10.259671)" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path3913"
+         id="use5141"
+         transform="translate(2.0711412,-0.87053126)"
+         width="32"
+         height="1024" />
+      <path
+         style="fill:url(#linearGradient5147);fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         d="m 26.308727,26.741369 c -1.688322,0.302044 -3.448849,0.192042 -5.086441,-0.317815 -0.397161,-0.123654 -0.790697,-0.271199 -1.203489,-0.322482 -0.206396,-0.02564 -0.416948,-0.02668 -0.621332,0.01184 -0.204385,0.03852 -0.402685,0.117531 -0.569088,0.242298 -0.23187,0.173854 -0.39459,0.433656 -0.464641,0.714871 -0.07005,0.281215 -0.04952,0.582086 0.04353,0.85655 0.09305,0.274464 0.256909,0.522709 0.461868,0.727602 0.204958,0.204893 0.450329,0.367221 0.712677,0.490358 0.811523,0.380899 1.796162,0.370981 2.599847,-0.02619 0.803685,-0.39717 1.409666,-1.173313 1.600037,-2.049334 l 2.527034,-0.327705 z"
+         id="path5143"
+         inkscape:path-effect="#path-effect3930"
+         inkscape:original-d="m 26.308727,26.741369 c 0,0 -3.779367,-1.227988 -5.086441,-0.317815 -1.307074,0.910173 7.323775,-0.440612 -2.393909,-0.06834 -0.774644,0.02968 0.643297,2.778991 0.753432,2.789381 0.110135,0.01039 4.199884,-2.075523 4.199884,-2.075523 l 2.527034,-0.327705 z"
+         sodipodi:nodetypes="cssscc" />
+      <path
+         style="fill:none;stroke:#ef6cdd;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         d="M 8.6071431,26.653358 C 7.5379136,27.188488 6.2768261,27.329509 5.1158037,27.043777 3.9547812,26.758045 2.9031783,26.047862 2.2044254,25.077625 1.9167706,24.678209 1.6865788,24.234284 1.5553436,23.759883 1.4241084,23.285482 1.3938722,22.779825 1.4975237,22.298644 1.6011753,21.817463 1.8421031,21.362306 2.2026614,21.02723 c 0.3605583,-0.335077 0.8424231,-0.544225 1.3346107,-0.549713 0.3883157,-0.0043 0.7770288,0.118062 1.0928139,0.344087 0.3157851,0.226026 0.5569906,0.554504 0.6781164,0.92347 0.1211258,0.368967 0.1215384,0.776493 0.00116,1.145704 -0.1203784,0.369211 -0.3609183,0.698176 -0.6762451,0.924841"
+         id="path5145"
+         inkscape:path-effect="#path-effect5105"
+         inkscape:original-d="m 8.6071431,26.653358 c 0,0 -7.63909099,0.357727 -6.4027177,-1.575733 1.2363713,-1.933457 1.6809374,-7.185749 1.3328467,-4.600108 -0.3480925,2.585644 3.1257099,5.817104 1.0958451,3.338102"
+         sodipodi:nodetypes="csss" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,416.02093)"
+       id="use3980"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,448.05622)"
+       id="use3982"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,480.02038)"
+       id="use3984"
+       width="32"
+       height="1024" />
+    <g
+       transform="translate(1.5465567,509.95083)"
+       inkscape:tile-y0="17.729952"
+       inkscape:tile-x0="4.6482882"
+       id="use3986">
+      <path
+         sodipodi:type="arc"
+         style="fill:#f8c4f2;fill-opacity:1;stroke:#a3086a;stroke-width:0.45375946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         id="path5151"
+         sodipodi:cx="26.872206"
+         sodipodi:cy="26.1418"
+         sodipodi:rx="3.7966437"
+         sodipodi:ry="3.7966437"
+         d="m 30.668849,26.1418 a 3.7966437,3.7966437 0 1 1 -7.593287,0 3.7966437,3.7966437 0 1 1 7.593287,0 z"
+         transform="matrix(0.97296758,-0.2733955,0.32499705,1.1566086,-8.5666216,-0.6458767)" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#a3086a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path5153"
+         sodipodi:cx="25.367027"
+         sodipodi:cy="23.922211"
+         sodipodi:rx="0.64700198"
+         sodipodi:ry="1.0468712"
+         d="m 26.014029,23.922211 a 0.64700198,1.0468712 0 1 1 -1.294004,0 0.64700198,1.0468712 0 1 1 1.294004,0 z"
+         transform="matrix(1.9365851,-0.54416371,0.54961474,1.9559843,-37.484014,-10.259671)" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path3913"
+         id="use5155"
+         transform="translate(2.8376433,-0.8705313)"
+         width="32"
+         height="1024" />
+      <path
+         style="fill:url(#linearGradient5161);fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         d="m 26.308727,26.741369 c -1.688322,0.302044 -3.448849,0.192042 -5.086441,-0.317815 -0.397161,-0.123654 -0.790697,-0.271199 -1.203489,-0.322482 -0.206396,-0.02564 -0.416948,-0.02668 -0.621332,0.01184 -0.204385,0.03852 -0.402685,0.117531 -0.569088,0.242298 -0.23187,0.173854 -0.39459,0.433656 -0.464641,0.714871 -0.07005,0.281215 -0.04952,0.582086 0.04353,0.85655 0.09305,0.274464 0.256909,0.522709 0.461868,0.727602 0.204958,0.204893 0.450329,0.367221 0.712677,0.490358 0.811523,0.380899 1.796162,0.370981 2.599847,-0.02619 0.803685,-0.39717 1.409666,-1.173313 1.600037,-2.049334 l 2.527034,-0.327705 z"
+         id="path5157"
+         inkscape:path-effect="#path-effect3930"
+         inkscape:original-d="m 26.308727,26.741369 c 0,0 -3.779367,-1.227988 -5.086441,-0.317815 -1.307074,0.910173 7.323775,-0.440612 -2.393909,-0.06834 -0.774644,0.02968 0.643297,2.778991 0.753432,2.789381 0.110135,0.01039 4.199884,-2.075523 4.199884,-2.075523 l 2.527034,-0.327705 z"
+         sodipodi:nodetypes="cssscc" />
+      <path
+         style="fill:none;stroke:#ef6cdd;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         d="M 8.6071431,26.653358 C 7.5379136,27.188488 6.2768261,27.329509 5.1158037,27.043777 3.9547812,26.758045 2.9031783,26.047862 2.2044254,25.077625 1.9167706,24.678209 1.6865788,24.234284 1.5553436,23.759883 1.4241084,23.285482 1.3938722,22.779825 1.4975237,22.298644 1.6011753,21.817463 1.8421031,21.362306 2.2026614,21.02723 c 0.3605583,-0.335077 0.8424231,-0.544225 1.3346107,-0.549713 0.3883157,-0.0043 0.7770288,0.118062 1.0928139,0.344087 0.3157851,0.226026 0.5569906,0.554504 0.6781164,0.92347 0.1211258,0.368967 0.1215384,0.776493 0.00116,1.145704 -0.1203784,0.369211 -0.3609183,0.698176 -0.6762451,0.924841"
+         id="path5159"
+         inkscape:path-effect="#path-effect5105"
+         inkscape:original-d="m 8.6071431,26.653358 c 0,0 -7.63909099,0.357727 -6.4027177,-1.575733 1.2363713,-1.933457 1.6809374,-7.185749 1.3328467,-4.600108 -0.3480925,2.585644 3.1257099,5.817104 1.0958451,3.338102"
+         sodipodi:nodetypes="csss" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g3948"
+       xlink:href="#g3948"
+       transform="translate(0,544.0279)"
+       id="use3988"
+       width="32"
+       height="1024" />
+    <g
+       transform="translate(1.5465567,572.95432)"
+       inkscape:tile-y0="17.729952"
+       inkscape:tile-x0="4.6482882"
+       id="use3990">
+      <path
+         sodipodi:type="arc"
+         style="fill:#f8c4f2;fill-opacity:1;stroke:#a3086a;stroke-width:0.45375946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         id="path5165"
+         sodipodi:cx="26.872206"
+         sodipodi:cy="26.1418"
+         sodipodi:rx="3.7966437"
+         sodipodi:ry="3.7966437"
+         d="m 30.668849,26.1418 a 3.7966437,3.7966437 0 1 1 -7.593287,0 3.7966437,3.7966437 0 1 1 7.593287,0 z"
+         transform="matrix(0.97296758,-0.2733955,0.32499705,1.1566086,-8.5666216,-0.64587667)" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#a3086a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path5167"
+         sodipodi:cx="25.367027"
+         sodipodi:cy="23.922211"
+         sodipodi:rx="0.64700198"
+         sodipodi:ry="1.0468712"
+         d="m 26.014029,23.922211 a 0.64700198,1.0468712 0 1 1 -1.294004,0 0.64700198,1.0468712 0 1 1 1.294004,0 z"
+         transform="matrix(1.9365851,-0.54416371,0.54961474,1.9559843,-37.484014,-10.259671)" />
+      <use
+         x="0"
+         y="0"
+         xlink:href="#path3913"
+         id="use5169"
+         transform="translate(2.8376433,-0.87053126)"
+         width="32"
+         height="1024" />
+      <path
+         style="fill:url(#linearGradient5175);fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         d="m 26.308727,26.741367 c -1.69274,-0.144977 -3.38882,-0.250953 -5.086441,-0.317813 -0.797692,-0.03142 -1.595724,-0.0542 -2.393909,-0.06834 l 4.953316,0.713858 z"
+         id="path5171"
+         inkscape:path-effect="#path-effect3930"
+         inkscape:original-d="m 26.308727,26.741367 c 0,0 -3.779367,-1.227986 -5.086441,-0.317813 -1.307074,0.910173 7.323775,-0.440612 -2.393909,-0.06834 -0.03759,4.081426 2.246998,2.086204 4.953316,0.713858 l 2.527034,-0.327705 z"
+         sodipodi:nodetypes="csccc" />
+      <path
+         style="fill:none;stroke:#ef6cdd;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         d="M 8.6071431,28.653358 C 7.5379136,29.188488 6.2768261,29.329509 5.1158037,29.043777 3.9547812,28.758045 2.9031783,28.047862 2.2044254,27.077625 1.9167706,26.678209 1.6865788,26.234284 1.5553436,25.759883 1.4241084,25.285482 1.3938722,24.779825 1.4975237,24.298644 1.6011753,23.817463 1.8421031,23.362306 2.2026614,23.02723 c 0.3605583,-0.335077 0.8424231,-0.544225 1.3346107,-0.549713 0.3883157,-0.0043 0.7770288,0.118062 1.0928139,0.344087 0.3157851,0.226026 0.5569906,0.554504 0.6781164,0.92347 0.1211258,0.368967 0.1215384,0.776493 0.00116,1.145704 -0.1203784,0.369211 -0.3609183,0.698176 -0.6762451,0.924841"
+         id="path5173"
+         inkscape:path-effect="#path-effect5177"
+         inkscape:original-d="m 8.6071431,28.653358 c 0,0 -7.63909099,0.357727 -6.4027177,-1.575733 1.2363713,-1.933457 1.6809374,-7.185749 1.3328467,-4.600108 -0.3480925,2.585644 3.1257099,5.817104 1.0958451,3.338102"
+         sodipodi:nodetypes="csss" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/zoo_elephant.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,2022 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="zoo_elephant.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="zoo_elephant.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title17203">Ganesha elephant</title>
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient5028">
+      <stop
+         style="stop-color:#e60000;stop-opacity:1;"
+         offset="0"
+         id="stop5030" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop5032" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5028"
+       id="linearGradient1069"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.64552914,0,0,1.0270171,7.6294658,-2.3758039)"
+       x1="18.942183"
+       y1="28.196667"
+       x2="18.983271"
+       y2="28.100283" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="17.97819"
+     inkscape:cx="25.970369"
+     inkscape:cy="998.14791"
+     inkscape:document-units="px"
+     inkscape:current-layer="g4656"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>Ganesha elephant</dc:title>
+        <dc:date />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat Ganesha elephant</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="template"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="47.098183"
+       id="text4913"><tspan
+         sodipodi:role="line"
+         id="tspan4915"
+         x="-15"
+         y="47.098183"
+         style="font-size:8px;line-height:1.25">01-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="79.098183"
+       id="text4917"><tspan
+         sodipodi:role="line"
+         id="tspan4919"
+         x="-15"
+         y="79.098183"
+         style="font-size:8px;line-height:1.25">02-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="111.09818"
+       id="text4921"><tspan
+         sodipodi:role="line"
+         id="tspan4923"
+         x="-15"
+         y="111.09818"
+         style="font-size:8px;line-height:1.25">03v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="143.09818"
+       id="text4925"><tspan
+         sodipodi:role="line"
+         id="tspan4927"
+         x="-15"
+         y="143.09818"
+         style="font-size:8px;line-height:1.25">04-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="175.09818"
+       id="text4929"><tspan
+         sodipodi:role="line"
+         id="tspan4931"
+         x="-15"
+         y="175.09818"
+         style="font-size:8px;line-height:1.25">05-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="207.09818"
+       id="text4933"><tspan
+         sodipodi:role="line"
+         id="tspan4935"
+         x="-15"
+         y="207.09818"
+         style="font-size:8px;line-height:1.25">06-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="239.09818"
+       id="text4937"><tspan
+         sodipodi:role="line"
+         id="tspan4939"
+         x="-15"
+         y="239.09818"
+         style="font-size:8px;line-height:1.25">07-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="271.09818"
+       id="text4941"><tspan
+         sodipodi:role="line"
+         id="tspan4943"
+         x="-15"
+         y="271.09818"
+         style="font-size:8px;line-height:1.25">08v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="303.09818"
+       id="text4945"><tspan
+         sodipodi:role="line"
+         id="tspan4947"
+         x="-15"
+         y="303.09818"
+         style="font-size:8px;line-height:1.25">09-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="335.09818"
+       id="text4949"><tspan
+         sodipodi:role="line"
+         id="tspan4951"
+         x="-15"
+         y="335.09818"
+         style="font-size:8px;line-height:1.25">10-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="367.09818"
+       id="text4953"><tspan
+         sodipodi:role="line"
+         id="tspan4955"
+         x="-15"
+         y="367.09818"
+         style="font-size:8px;line-height:1.25">11-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="399.16217"
+       id="text4957"><tspan
+         sodipodi:role="line"
+         id="tspan4959"
+         x="-15"
+         y="399.16217"
+         style="font-size:8px;line-height:1.25">12-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="431.09818"
+       id="text4961"><tspan
+         sodipodi:role="line"
+         id="tspan4963"
+         x="-15"
+         y="431.09818"
+         style="font-size:8px;line-height:1.25">13v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="463.10217"
+       id="text4965"><tspan
+         sodipodi:role="line"
+         id="tspan4967"
+         x="-15"
+         y="463.10217"
+         style="font-size:8px;line-height:1.25">14-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="495.09818"
+       id="text4969"><tspan
+         sodipodi:role="line"
+         id="tspan4971"
+         x="-15"
+         y="495.09818"
+         style="font-size:8px;line-height:1.25">15-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="527.09821"
+       id="text4973"><tspan
+         sodipodi:role="line"
+         id="tspan4975"
+         x="-15"
+         y="527.09821"
+         style="font-size:8px;line-height:1.25">16-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="559.09821"
+       id="text4977"><tspan
+         sodipodi:role="line"
+         id="tspan4979"
+         x="-15"
+         y="559.09821"
+         style="font-size:8px;line-height:1.25">17^</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="591.09821"
+       id="text4981"><tspan
+         sodipodi:role="line"
+         id="tspan4983"
+         x="-15"
+         y="591.09821"
+         style="font-size:8px;line-height:1.25">18-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="623.09821"
+       id="text4985"><tspan
+         sodipodi:role="line"
+         id="tspan4987"
+         x="-15"
+         y="623.09821"
+         style="font-size:8px;line-height:1.25">19x</tspan></text>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline">
+    <g
+       id="g4656"
+       inkscape:tile-cx="26.449853"
+       inkscape:tile-cy="17.698602"
+       inkscape:tile-w="51.623503"
+       inkscape:tile-h="22.492929"
+       inkscape:tile-x0="0.64975352"
+       inkscape:tile-y0="6.4776903">
+      <use
+         height="1024"
+         width="32"
+         transform="matrix(-0.21078745,0.628586,-0.63637474,-0.22619442,39.149017,10.098714)"
+         id="use4650"
+         xlink:href="#path3877"
+         y="0"
+         x="0"
+         style="stroke-width:0.94478756" />
+      <path
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 25.34262,16.812302 c -0.328989,0.539169 -0.989767,-0.980801 -2.137227,-1.596468 -1.147465,-0.615671 -1.934152,0.284364 -2.06814,-0.332865 -0.17135,-0.789341 2.112052,-1.655987 3.259518,-1.040316 1.147459,0.615668 1.27484,2.430479 0.945849,2.969649 z"
+         id="path6155"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssss" />
+      <path
+         inkscape:transform-center-y="0.58539927"
+         inkscape:transform-center-x="2.5090654"
+         sodipodi:nodetypes="csc"
+         inkscape:connector-curvature="0"
+         id="use4995"
+         d="m 25.635271,19.426854 c 0,0 4.078501,-2.205118 4.506675,-1.610546 0.428173,0.594573 -2.956119,3.763687 -2.956119,3.763687"
+         style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.47400224;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+      <ellipse
+         id="path4654"
+         style="fill:url(#linearGradient1069);fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:0.40711468;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         cx="20.210955"
+         cy="25.821339"
+         rx="1.7954859"
+         ry="1.7654529" />
+      <path
+         transform="matrix(0.33696843,-1.1828882,1.1828882,0.33696843,-13.479758,20.826287)"
+         d="m 4.7729707,17.787041 c -0.7672914,-0.03824 -0.3270032,-1.053162 0.063563,-1.275289 1.0584103,-0.601951 2.2217512,0.398675 2.4870145,1.402415 0.4744939,1.795455 -1.038139,3.425107 -2.7412666,3.69874 -2.4994083,0.401568 -4.65030613,-1.681283 -4.91046599,-4.080118 -0.34675219,-3.197271 2.32507839,-5.883983 5.41897019,-6.122192 3.893347,-0.299762 7.1218762,2.969025 7.3339172,6.757822 0.09348,1.670327 -0.373703,3.346853 -1.287772,4.745147"
+         sodipodi:t0="0"
+         sodipodi:argument="-9.3749771"
+         sodipodi:radius="8.1719799"
+         sodipodi:revolution="1.6"
+         sodipodi:expansion="1"
+         sodipodi:cy="17.787041"
+         sodipodi:cx="4.7729707"
+         id="path3877"
+         style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         sodipodi:type="spiral" />
+      <path
+         style="display:inline;fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 19.264411,23.371455 c -0.245489,-0.581955 1.374214,-0.230532 2.544154,-0.802328 1.169946,-0.571799 0.898872,-1.736041 1.478136,-1.48429 0.740789,0.32195 0.110566,2.681572 -1.05938,3.253372 -1.16994,0.571795 -2.717421,-0.384796 -2.96291,-0.966754 z"
+         id="path6155-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssss" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,31.973783)"
+       id="use4931"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,64.985106)"
+       id="use4933"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,96.016425)"
+       id="use4935"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,127.99629)"
+       id="use4937"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,160.01913)"
+       id="use4939"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,192.01898)"
+       id="use4941"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,225.04733)"
+       id="use4943"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,256.02168)"
+       id="use4945"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,287.99542)"
+       id="use4947"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,320.01527)"
+       id="use4949"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,351.96292)"
+       id="use4951"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,384.93726)"
+       id="use4953"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,415.94861)"
+       id="use4955"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,447.96846)"
+       id="use4957"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,479.9483)"
+       id="use4959"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,510.95965)"
+       id="use4961"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,543.971)"
+       id="use4963"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4656"
+       xlink:href="#g4656"
+       transform="translate(0,575.99084)"
+       id="use4965"
+       width="32"
+       height="1024" />
+    <path
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       d="m 16.104638,599.95705 3.115718,-0.86787 c 0,0 0.102569,0.93508 0.67967,2.03644 0.683891,1.30517 1.764193,2.11748 1.764193,2.11748 l -3.127708,1.76781 z"
+       id="rect4986"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccsccc" />
+    <path
+       style="fill:#a10669;fill-opacity:1;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 20.49331,602.32358 -1.946501,-0.81081"
+       id="path4990"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <path
+       sodipodi:type="spiral"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="use4650-8"
+       sodipodi:cx="4.7729707"
+       sodipodi:cy="17.787041"
+       sodipodi:expansion="0.80000001"
+       sodipodi:revolution="1.6"
+       sodipodi:radius="8.1719799"
+       sodipodi:argument="-9.3749771"
+       sodipodi:t0="0"
+       d="M 4.7729707,17.787041 C 3.566338,17.7269 4.149579,16.259048 4.865109,15.938434 c 1.4238524,-0.637999 2.8545454,0.664444 3.1264729,2.009029 0.436242,2.157062 -1.3794672,4.046346 -3.4405011,4.291438 -2.8066114,0.333754 -5.17318436,-2.018553 -5.38203779,-4.731172 -0.26303401,-3.416324 2.61205129,-6.247728 5.93782779,-6.419851 3.9987704,-0.206954 7.2807582,3.17408 7.4172392,7.085495 0.05859,1.679137 -0.44136,3.353857 -1.387179,4.740193"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,31.050123)"
+       inkscape:tile-cx="65.136828"
+       inkscape:tile-cy="24.327222"
+       inkscape:tile-w="11.079348"
+       inkscape:tile-h="8.608124"
+       inkscape:tile-x0="59.597154"
+       inkscape:tile-y0="20.02316" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,63.023906)"
+       d="m 4.7729707,17.787041 c -0.7672914,-0.03824 -0.3270032,-1.053162 0.063563,-1.275289 1.0584103,-0.601951 2.2217512,0.398675 2.4870145,1.402415 0.4744939,1.795455 -1.038139,3.425107 -2.7412666,3.69874 -2.4994083,0.401568 -4.65030613,-1.681283 -4.91046599,-4.080118 -0.34675219,-3.197271 2.32507839,-5.883983 5.41897019,-6.122192 3.893347,-0.299762 7.1218762,2.969025 7.3339172,6.757822 0.09348,1.670327 -0.373703,3.346853 -1.287772,4.745147"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="1"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4071"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,96.035229)"
+       d="m 4.7729707,17.787041 c -0.2575672,-0.01284 -0.062855,-0.42809 0.025125,-0.504102 0.501191,-0.433013 1.1976325,0.08901 1.4006907,0.575167 C 6.6711377,18.98899 5.7016257,20.126509 4.6424148,20.406432 2.7745165,20.900071 1.069742,19.351666 0.74015353,17.586037 0.2347822,14.878727 2.4702282,12.512236 5.0538822,12.151007 c 3.6404803,-0.508986 6.7482878,2.50553 7.1278468,6.005301 0.17877,1.648373 -0.2084,3.329771 -1.044798,4.757258"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="1.5"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4073"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,127.06655)"
+       d="m 4.7729707,17.787041 c -0.7672914,-0.03824 -0.3270032,-1.053162 0.063563,-1.275289 1.0584103,-0.601951 2.2217512,0.398675 2.4870145,1.402415 0.4744939,1.795455 -1.038139,3.425107 -2.7412666,3.69874 -2.4994083,0.401568 -4.65030613,-1.681283 -4.91046599,-4.080118 -0.34675219,-3.197271 2.32507839,-5.883983 5.41897019,-6.122192 3.893347,-0.299762 7.1218762,2.969025 7.3339172,6.757822 0.09348,1.670327 -0.373703,3.346853 -1.287772,4.745147"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="1"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4075"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,159.04641)"
+       d="M 4.7729707,17.787041 C 3.566338,17.7269 4.149579,16.259048 4.865109,15.938434 c 1.4238524,-0.637999 2.8545454,0.664444 3.1264729,2.009029 0.436242,2.157062 -1.3794672,4.046346 -3.4405011,4.291438 -2.8066114,0.333754 -5.17318436,-2.018553 -5.38203779,-4.731172 -0.26303401,-3.416324 2.61205129,-6.247728 5.93782779,-6.419851 3.9987704,-0.206954 7.2807582,3.17408 7.4172392,7.085495 0.05859,1.679137 -0.44136,3.353857 -1.387179,4.740193"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="0.80000001"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4077"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,191.06925)"
+       d="m 4.7729707,17.787041 c -0.7672914,-0.03824 -0.3270032,-1.053162 0.063563,-1.275289 1.0584103,-0.601951 2.2217512,0.398675 2.4870145,1.402415 0.4744939,1.795455 -1.038139,3.425107 -2.7412666,3.69874 -2.4994083,0.401568 -4.65030613,-1.681283 -4.91046599,-4.080118 -0.34675219,-3.197271 2.32507839,-5.883983 5.41897019,-6.122192 3.893347,-0.299762 7.1218762,2.969025 7.3339172,6.757822 0.09348,1.670327 -0.373703,3.346853 -1.287772,4.745147"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="1"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4079"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,223.0691)"
+       d="m 4.7729707,17.787041 c -0.2575672,-0.01284 -0.062855,-0.42809 0.025125,-0.504102 0.501191,-0.433013 1.1976325,0.08901 1.4006907,0.575167 C 6.6711377,18.98899 5.7016257,20.126509 4.6424148,20.406432 2.7745165,20.900071 1.069742,19.351666 0.74015353,17.586037 0.2347822,14.878727 2.4702282,12.512236 5.0538822,12.151007 c 3.6404803,-0.508986 6.7482878,2.50553 7.1278468,6.005301 0.17877,1.648373 -0.2084,3.329771 -1.044798,4.757258"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="1.5"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4081"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,256.09745)"
+       d="m 4.7729707,17.787041 c -0.08846,-0.0044 -0.010835,-0.175375 0.00993,-0.199264 0.2379786,-0.273769 0.6531269,0.0034 0.7871237,0.238991 0.4037878,0.709979 -0.2265471,1.511591 -0.8864409,1.753648 -1.3935888,0.511184 -2.755068,-0.651485 -3.0988364,-1.952283 -0.60530828,-2.290448 1.2777581,-4.386104 3.4365149,-4.822689 3.4023996,-0.688098 6.4056283,2.105221 6.9252063,5.339139 0.261327,1.62653 -0.04847,3.313285 -0.809539,4.768983"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="2"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4083"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,287.0718)"
+       d="m 4.7729707,17.787041 c -0.2575672,-0.01284 -0.062855,-0.42809 0.025125,-0.504102 0.501191,-0.433013 1.1976325,0.08901 1.4006907,0.575167 C 6.6711377,18.98899 5.7016257,20.126509 4.6424148,20.406432 2.7745165,20.900071 1.069742,19.351666 0.74015353,17.586037 0.2347822,14.878727 2.4702282,12.512236 5.0538822,12.151007 c 3.6404803,-0.508986 6.7482878,2.50553 7.1278468,6.005301 0.17877,1.648373 -0.2084,3.329771 -1.044798,4.757258"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="1.5"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4085"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,319.04554)"
+       d="m 4.7729707,17.787041 c -0.7672914,-0.03824 -0.3270032,-1.053162 0.063563,-1.275289 1.0584103,-0.601951 2.2217512,0.398675 2.4870145,1.402415 0.4744939,1.795455 -1.038139,3.425107 -2.7412666,3.69874 -2.4994083,0.401568 -4.65030613,-1.681283 -4.91046599,-4.080118 -0.34675219,-3.197271 2.32507839,-5.883983 5.41897019,-6.122192 3.893347,-0.299762 7.1218762,2.969025 7.3339172,6.757822 0.09348,1.670327 -0.373703,3.346853 -1.287772,4.745147"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="1"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4087"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,351.06539)"
+       d="M 4.7729707,17.787041 C 3.566338,17.7269 4.149579,16.259048 4.865109,15.938434 c 1.4238524,-0.637999 2.8545454,0.664444 3.1264729,2.009029 0.436242,2.157062 -1.3794672,4.046346 -3.4405011,4.291438 -2.8066114,0.333754 -5.17318436,-2.018553 -5.38203779,-4.731172 -0.26303401,-3.416324 2.61205129,-6.247728 5.93782779,-6.419851 3.9987704,-0.206954 7.2807582,3.17408 7.4172392,7.085495 0.05859,1.679137 -0.44136,3.353857 -1.387179,4.740193"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="0.80000001"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4089"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,383.01304)"
+       d="m 4.7729707,17.787041 c -0.7672914,-0.03824 -0.3270032,-1.053162 0.063563,-1.275289 1.0584103,-0.601951 2.2217512,0.398675 2.4870145,1.402415 0.4744939,1.795455 -1.038139,3.425107 -2.7412666,3.69874 -2.4994083,0.401568 -4.65030613,-1.681283 -4.91046599,-4.080118 -0.34675219,-3.197271 2.32507839,-5.883983 5.41897019,-6.122192 3.893347,-0.299762 7.1218762,2.969025 7.3339172,6.757822 0.09348,1.670327 -0.373703,3.346853 -1.287772,4.745147"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="1"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4091"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,415.98738)"
+       d="m 4.7729707,17.787041 c -0.2077032,-0.01035 -0.044837,-0.358121 0.020869,-0.418698 0.4315969,-0.397908 1.0598887,0.06128 1.2483852,0.48196 0.4617646,1.030541 -0.4268135,2.090533 -1.3902832,2.364994 -1.7618196,0.501886 -3.3907383,-0.95917 -3.7266293,-2.620032 -0.52955065,-2.618439 1.6293598,-4.927169 4.1217204,-5.30683 3.5917,-0.547122 6.6773875,2.42068 7.0870355,5.865498 0.195499,1.643994 -0.175988,3.326426 -0.997137,4.759633"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="1.6"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4093"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,446.99873)"
+       d="m 4.7729707,17.787041 c -0.7672914,-0.03824 -0.3270032,-1.053162 0.063563,-1.275289 1.0584103,-0.601951 2.2217512,0.398675 2.4870145,1.402415 0.4744939,1.795455 -1.038139,3.425107 -2.7412666,3.69874 -2.4994083,0.401568 -4.65030613,-1.681283 -4.91046599,-4.080118 -0.34675219,-3.197271 2.32507839,-5.883983 5.41897019,-6.122192 3.893347,-0.299762 7.1218762,2.969025 7.3339172,6.757822 0.09348,1.670327 -0.373703,3.346853 -1.287772,4.745147"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="1"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4095"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,479.01858)"
+       d="m 4.7729707,17.787041 c -0.9601615,-0.04786 -0.4521283,-1.266548 0.076528,-1.535418 1.2280178,-0.62456 2.5176946,0.516796 2.7886623,1.678225 0.4591925,1.968202 -1.1974547,3.722274 -3.0708895,3.984204 -2.6486753,0.370319 -4.90438331,-1.84266 -5.14093613,-4.393499 -0.30649475,-3.305048 2.46469873,-6.062807 5.67239323,-6.269324 3.9457481,-0.254034 7.200613,3.070073 7.375517,6.919659 0.07609,1.67473 -0.40742,3.350342 -1.337315,4.742678"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="0.89999998"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4097"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,510.99842)"
+       d="M 4.7729707,17.787041 C 3.566338,17.7269 4.149579,16.259048 4.865109,15.938434 c 1.4238524,-0.637999 2.8545454,0.664444 3.1264729,2.009029 0.436242,2.157062 -1.3794672,4.046346 -3.4405011,4.291438 -2.8066114,0.333754 -5.17318436,-2.018553 -5.38203779,-4.731172 -0.26303401,-3.416324 2.61205129,-6.247728 5.93782779,-6.419851 3.9987704,-0.206954 7.2807582,3.17408 7.4172392,7.085495 0.05859,1.679137 -0.44136,3.353857 -1.387179,4.740193"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="0.80000001"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4099"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,542.00977)"
+       d="m 4.7729707,17.787041 c -1.5260186,-0.07606 -0.8561599,-1.851229 0.1109324,-2.225679 1.6495041,-0.638675 3.2382357,0.848337 3.5046938,2.405889 0.4043277,2.363453 -1.5872573,4.399884 -3.8549817,4.622069 -2.9736989,0.291355 -5.45761947,-2.210212 -5.6342467,-5.095032 -0.2162029,-3.531204 2.7675425,-6.438977 6.2158475,-6.573844 4.0524197,-0.158494 7.362345,3.281125 7.45908,7.255431 0.04098,1.683546 -0.475521,3.357396 -1.437365,4.737691"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="0.69999999"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4101"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,575.02112)"
+       d="m 4.7729707,17.787041 c -1.9481609,-0.0971 -1.1693047,-2.255029 0.13356,-2.679665 1.9089148,-0.622163 3.6756284,1.076661 3.9280527,2.882104 0.3619638,2.588914 -1.8243122,4.785705 -4.3198086,4.977841 -3.1504462,0.242563 -5.7586585,-2.418991 -5.8980579,-5.487121 -0.1658274,-3.649798 2.9315991,-6.636798 6.5070529,-6.731374 4.1067017,-0.108629 7.4454062,3.391289 7.5010382,7.429566 0.02325,1.68796 -0.509907,3.360961 -1.487877,4.735174"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="0.60000002"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4103"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+    <path
+       inkscape:tile-y0="20.02316"
+       inkscape:tile-x0="59.597154"
+       transform="matrix(-0.59874022,0.5011283,-0.5301455,-0.56596852,38.41281,607.04096)"
+       d="m 4.7729707,17.787041 c -2.5215386,-0.125679 -1.5844001,-2.76504 0.1608031,-3.226254 2.2063944,-0.583095 4.1746799,1.359395 4.4018087,3.453664 0.3074749,2.835109 -2.0945789,5.206914 -4.841131,5.360625 -3.33739,0.186778 -6.0773367,-2.646359 -6.1739884,-5.909642 -0.1117254,-3.772221 3.1046704,-6.841442 6.8120743,-6.892516 4.1616222,-0.05733 7.5299736,3.504657 7.5431086,7.608008 0.0054,1.692376 -0.544518,3.364551 -1.538715,4.73264"
+       sodipodi:t0="0"
+       sodipodi:argument="-9.3749771"
+       sodipodi:radius="8.1719799"
+       sodipodi:revolution="1.6"
+       sodipodi:expansion="0.5"
+       sodipodi:cy="17.787041"
+       sodipodi:cx="4.7729707"
+       id="use4105"
+       style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a10669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       sodipodi:type="spiral" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="frame"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none"
+       id="rect20004"
+       width="32"
+       height="32"
+       x="-2.6098915e-15"
+       y="0"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="frame-0.5"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       id="rect20004-7"
+       width="31"
+       height="31"
+       x="0.5"
+       y="0.5"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,32)"
+       id="use20175-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,64)"
+       id="use20177-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,96)"
+       id="use20179-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,128)"
+       id="use20181-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,160)"
+       id="use20183-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,192)"
+       id="use20185-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,224)"
+       id="use20187-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,256)"
+       id="use20189-6"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,288)"
+       id="use20191-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,320)"
+       id="use20193-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,352)"
+       id="use20195-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,384)"
+       id="use20197-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,416)"
+       id="use20199-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,448)"
+       id="use20201-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,480)"
+       id="use20203-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,512)"
+       id="use20205-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,544)"
+       id="use20207-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,576)"
+       id="use20209-7"
+       width="32"
+       height="1024" />
+    <rect
+       inkscape:tile-y0="0"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-h="32"
+       inkscape:tile-w="32"
+       inkscape:tile-cy="16"
+       inkscape:tile-cx="16"
+       y="0.5"
+       x="0.5"
+       height="31"
+       width="31"
+       id="rect4989"
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use4991"
+       transform="translate(0,32)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use4993"
+       transform="translate(0,64)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use4996"
+       transform="translate(0,96)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use4998"
+       transform="translate(0,128)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5000"
+       transform="translate(0,160)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5002"
+       transform="translate(0,192)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5004"
+       transform="translate(0,224)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5006"
+       transform="translate(0,256)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5008"
+       transform="translate(0,288)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5010"
+       transform="translate(0,320)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5012"
+       transform="translate(0,352)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5014"
+       transform="translate(0,384)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5016"
+       transform="translate(0,416)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5018"
+       transform="translate(0,448)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5020"
+       transform="translate(0,480)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5022"
+       transform="translate(0,512)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5024"
+       transform="translate(0,544)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+    <use
+       height="1024"
+       width="32"
+       id="use5026"
+       transform="translate(0,576)"
+       xlink:href="#rect20004-7"
+       inkscape:tiled-clone-of="#rect20004-7"
+       y="0"
+       x="0"
+       style="display:inline" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1"
+       id="path3296"
+       sodipodi:cx="13.082203"
+       sodipodi:cy="31.332769"
+       sodipodi:rx="3.5490334"
+       sodipodi:ry="2.8754942"
+       d="m 16.631236,31.332769 a 3.5490334,2.8754942 0 1 1 -7.0980665,0 3.5490334,2.8754942 0 1 1 7.0980665,0 z"
+       transform="matrix(0.98618401,0,0,0.86941576,-0.40145933,3.2587965)"
+       inkscape:tile-cx="12.253232"
+       inkscape:tile-cy="30.529706"
+       inkscape:tile-w="8.5487669"
+       inkscape:tile-h="7.0462566"
+       inkscape:tile-x0="7.9788488"
+       inkscape:tile-y0="27.006578" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       id="use3526"
+       transform="translate(0,33)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,66)"
+       id="use3528"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,97)"
+       id="use3530"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,128)"
+       id="use3532"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,160)"
+       id="use3534"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,193)"
+       id="use3536"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,226)"
+       id="use3538"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,257)"
+       id="use3540"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,288)"
+       id="use3542"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,320)"
+       id="use3544"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,353)"
+       id="use3546"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,386)"
+       id="use3548"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,417)"
+       id="use3550"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,448)"
+       id="use3552"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,480)"
+       id="use3554"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,510)"
+       id="use3556"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,543)"
+       id="use3558"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,576)"
+       id="use3560"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="frame and hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,0 0,32 9.6875,0 C 9.2558025,31.584271 9,31.057361 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.557361 -0.255803,1.084271 -0.6875,1.5 L 32,32 32,0 0,0 z"
+       id="rect13136"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,32 0,32 9.0625,0 C 9.0158769,63.837256 9,63.672589 9,63.5 9,62.119288 10.567003,61 12.5,61 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.172589 -0.01588,0.337256 -0.0625,0.5 L 32,64 32,32 0,32 z"
+       id="use13138"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,64 0,32 10.0625,0 c 0.326362,-1.139208 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.860792 3.4375,2 L 32,96 32,64 0,64 z"
+       id="use13140"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,96 0,32 9.0625,0 C 9.0158769,127.83726 9,127.67259 9,127.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,128 32,96 0,96 z"
+       id="use13142"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,128 0,32 9.6875,0 C 9.2558025,159.58427 9,159.05736 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,160 32,128 0,128 z"
+       id="use13144"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,160 0,32 9.6875,0 C 9.2558025,191.58427 9,191.05736 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,192 32,160 0,160 z"
+       id="use13146"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,192 0,32 9.0625,0 C 9.0158769,223.83726 9,223.67259 9,223.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,224 32,192 0,192 z"
+       id="use13148"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,224 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,256 32,224 0,224 z"
+       id="use13150"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,256 0,32 9.0625,0 C 9.0158769,287.83726 9,287.67259 9,287.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,288 32,256 0,256 z"
+       id="use13152"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,288 0,32 9.6875,0 C 9.2558025,319.58427 9,319.05736 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,320 32,288 0,288 z"
+       id="use13154"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,320 0,32 9.6875,0 C 9.2558025,351.58427 9,351.05736 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,352 32,320 0,320 z"
+       id="use13156"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,352 0,32 9.0625,0 C 9.0158769,383.83726 9,383.67259 9,383.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,384 32,352 0,352 z"
+       id="use13158"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,384 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,416 32,384 0,384 z"
+       id="use13160"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,416 0,32 9.0625,0 C 9.0158769,447.83726 9,447.67259 9,447.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,448 32,416 0,416 z"
+       id="use13162"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,448 0,32 9.6875,0 C 9.2558025,479.58427 9,479.05736 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,480 32,448 0,448 z"
+       id="use13164"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,480 0,32 9.6875,0 C 9.2558025,511.58427 9,511.05736 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,512 32,480 0,480 z"
+       id="use13166"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,512 0,32 32,0 0,-32 -32,0 z m 12.5,26 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use13168"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,544 0,32 12.5,0 c -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 l 19.5,0 0,-32 -32,0 z"
+       id="use13170"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,576 0,32 9.6875,0 C 9.2558025,607.58427 9,607.05736 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,608 32,576 0,576 z"
+       id="use13172"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="frame-0.5 and hand"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="rect20004-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20175-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20177-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20179-3"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20181-9"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20183-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20185-4-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20187-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20189-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20191-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20193-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20195-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20197-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20199-0-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,448.5 0,31 8.8125,0 C 9.1215627,479.19131 9,478.85917 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20201-6"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,480.5 0,31 8.8125,0 C 9.1215627,511.19131 9,510.85917 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20203-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,512.5 0,31 31,0 0,-31 -31,0 z m 12,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use20205-1"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,544.5 0,31 9.90625,0 C 9.5507391,575.04422 9,574.32095 9,573.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+       id="use20207-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20209-1"
+       inkscape:connector-curvature="0" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/zoo_fish.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,3995 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="zoo_fish.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="zoo_fish.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title19658">fish</title>
+  <defs
+     id="defs4">
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect3599"
+       is_visible="true"
+       pattern="m 56.332904,177.69523 c -0.08594,-4.36872 4.24,-1.87009 7,-1.87009 2.76,0 7,-2.57057 7,1.87009 0,4.44067 -4.24,1.8701 -7,1.8701 -2.76,0 -6.914058,2.49863 -7,-1.8701 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect3597"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8218"
+       is_visible="true"
+       pattern="m 56.332904,49.485587 c -0.08594,-4.368721 4.24,-1.870092 7,-1.870092 2.76,0 7,-2.570577 7,1.870092 0,4.44067 -4.24,1.870092 -7,1.870092 -2.76,0 -6.914058,2.49863 -7,-1.870092 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8216"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8212"
+       is_visible="true"
+       pattern="m 56.332904,82.516289 c -0.08594,-4.368721 4.24,-1.870092 7,-1.870092 2.76,0 7,-2.570577 7,1.870092 0,4.44067 -4.24,1.870092 -7,1.870092 -2.76,0 -6.914058,2.49863 -7,-1.870092 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8210"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8206"
+       is_visible="true"
+       pattern="m 56.332904,113.50543 c -0.08594,-4.36872 4.24,-1.87009 7,-1.87009 2.76,0 7,-2.57058 7,1.87009 0,4.44067 -4.24,1.87009 -7,1.87009 -2.76,0 -6.914058,2.49863 -7,-1.87009 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8204"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8200"
+       is_visible="true"
+       pattern="m 56.332904,145.49441 c -0.08594,-4.36872 4.24,-1.87009 7,-1.87009 2.76,0 7,-2.57057 7,1.87009 0,4.44068 -4.24,1.8701 -7,1.8701 -2.76,0 -6.914058,2.49863 -7,-1.8701 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8198"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8188"
+       is_visible="true"
+       pattern="m 56.332904,209.55591 c -0.08594,-4.36872 4.24,-1.87009 7,-1.87009 2.76,0 7,-2.57057 7,1.87009 0,4.44067 -4.24,1.8701 -7,1.8701 -2.76,0 -6.914058,2.49863 -7,-1.8701 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8186"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8182"
+       is_visible="true"
+       pattern="m 56.332904,242.50328 c -0.08594,-4.36872 4.24,-1.87009 7,-1.87009 2.76,0 7,-2.57057 7,1.87009 0,4.44068 -4.24,1.8701 -7,1.8701 -2.76,0 -6.914058,2.49863 -7,-1.8701 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8180"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8176"
+       is_visible="true"
+       pattern="m 56.332904,273.53399 c -0.08594,-4.36872 4.24,-1.87009 7,-1.87009 2.76,0 7,-2.57057 7,1.87009 0,4.44068 -4.24,1.8701 -7,1.8701 -2.76,0 -6.914058,2.49863 -7,-1.8701 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8174"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8170"
+       is_visible="true"
+       pattern="m 56.332904,305.56474 c -0.08594,-4.36873 4.24,-1.8701 7,-1.8701 2.76,0 7,-2.57057 7,1.8701 0,4.44066 -4.24,1.87009 -7,1.87009 -2.76,0 -6.914058,2.49863 -7,-1.87009 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8168"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8164"
+       is_visible="true"
+       pattern="m 56.332904,337.55375 c -0.08594,-4.36873 4.24,-1.8701 7,-1.8701 2.76,0 7,-2.57057 7,1.8701 0,4.44066 -4.24,1.87009 -7,1.87009 -2.76,0 -6.914058,2.49863 -7,-1.87009 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8162"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8158"
+       is_visible="true"
+       pattern="m 56.332904,369.50118 c -0.08594,-4.36873 4.24,-1.8701 7,-1.8701 2.76,0 7,-2.57057 7,1.8701 0,4.44066 -4.24,1.87009 -7,1.87009 -2.76,0 -6.914058,2.49863 -7,-1.87009 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8156"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8152"
+       is_visible="true"
+       pattern="m 56.332904,402.53196 c -0.08594,-4.36873 4.24,-1.8701 7,-1.8701 2.76,0 7,-2.57057 7,1.8701 0,4.44066 -4.24,1.87009 -7,1.87009 -2.76,0 -6.914058,2.49863 -7,-1.87009 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8150"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8146"
+       is_visible="true"
+       pattern="m 56.332904,433.521 c -0.08594,-4.36873 4.24,-1.8701 7,-1.8701 2.76,0 7,-2.57057 7,1.8701 0,4.44066 -4.24,1.87009 -7,1.87009 -2.76,0 -6.914058,2.49863 -7,-1.87009 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8144"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8140"
+       is_visible="true"
+       pattern="m 56.332904,465.51001 c -0.08594,-4.36873 4.24,-1.8701 7,-1.8701 2.76,0 7,-2.57057 7,1.8701 0,4.44066 -4.24,1.87009 -7,1.87009 -2.76,0 -6.914058,2.49863 -7,-1.87009 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8138"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8134"
+       is_visible="true"
+       pattern="m 56.332904,497.49909 c -0.08594,-4.36873 4.24,-1.8701 7,-1.8701 2.76,0 7,-2.57057 7,1.8701 0,4.44066 -4.24,1.87009 -7,1.87009 -2.76,0 -6.914058,2.49863 -7,-1.87009 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8132"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8128"
+       is_visible="true"
+       pattern="m 56.332904,528.44646 c -0.08594,-4.36872 4.24,-1.87009 7,-1.87009 2.76,0 7,-2.57057 7,1.87009 0,4.44068 -4.24,1.8701 -7,1.8701 -2.76,0 -6.914058,2.49863 -7,-1.8701 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8126"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8122"
+       is_visible="true"
+       pattern="m 56.332904,561.47725 c -0.08594,-4.36873 4.24,-1.8701 7,-1.8701 2.76,0 7,-2.57057 7,1.8701 0,4.44066 -4.24,1.87009 -7,1.87009 -2.76,0 -6.914058,2.49863 -7,-1.87009 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8120"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8116"
+       is_visible="true"
+       pattern="m 56.332904,593.50801 c -0.08594,-4.36873 4.24,-1.8701 7,-1.8701 2.76,0 7,-2.57057 7,1.8701 0,4.44066 -4.24,1.87009 -7,1.87009 -2.76,0 -6.914058,2.49863 -7,-1.87009 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8114"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="skeletal"
+       id="path-effect8110"
+       is_visible="true"
+       pattern="m 73.808145,-2.4649648 c -0.08594,-4.3687215 4.24,-1.8700923 7,-1.8700923 2.76,0 7,-2.5705771 7,1.8700923 0,4.4406694 -4.24,1.8700919 -7,1.8700919 -2.76,0 -6.914058,2.4986296 -7,-1.8700919 z"
+       copytype="single_stretched"
+       prop_scale="1"
+       scale_y_rel="false"
+       spacing="0"
+       normal_offset="0"
+       tang_offset="0"
+       prop_units="false"
+       vertical_pattern="false"
+       fuse_tolerance="0"
+       pattern-nodetypes="zzzzz" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8108"
+       is_visible="true" />
+    <inkscape:path-effect
+       pattern-nodetypes="zzzzz"
+       fuse_tolerance="0"
+       vertical_pattern="false"
+       prop_units="false"
+       tang_offset="0"
+       normal_offset="0"
+       spacing="0"
+       scale_y_rel="false"
+       prop_scale="1"
+       copytype="single_stretched"
+       pattern="m 56.332904,17.695235 c -0.08594,-4.368721 4.24,-1.870092 7,-1.870092 2.76,0 7,-2.570577 7,1.870092 0,4.44067 -4.24,1.870092 -7,1.870092 -2.76,0 -6.914058,2.49863 -7,-1.870092 z"
+       is_visible="true"
+       id="path-effect8064"
+       effect="skeletal" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect8062"
+       effect="spiro" />
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7724">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path7726"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7728">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path7730"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7732">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path7734"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7736">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path7738"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7740">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path7742"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7744">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path7746"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7748">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path7750"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7752">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path7754"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7756">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path7758"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7760">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path7762"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7764">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path7766"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7768">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path7770"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7772">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path7774"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7776">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,448.5 0,31 8.8125,0 C 9.1215627,479.19131 9,478.85917 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path7778"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7780">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,480.5 0,31 8.8125,0 C 9.1215627,511.19131 9,510.85917 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path7782"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7784">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,512.5 0,31 31,0 0,-31 -31,0 z m 12,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+         id="path7786"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask7788">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,544.5 0,31 9.90625,0 C 9.5507391,575.04422 9,574.32095 9,573.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+         id="path7790"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask3557">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3559"
+         d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline" />
+    </mask>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6898-8"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <linearGradient
+       id="linearGradient4711-3-2">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="0"
+         id="stop4713-9-7" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="1"
+         id="stop4715-1-3" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6894-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6896-5"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6888-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6890-5"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6892-6"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6880-5"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6882-3"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6884-3"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6886-0"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6870-5"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6872-8"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6874-7"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6876-0"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6878-6"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6856-3"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6858-9"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6860-4"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6862-6"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6864-7"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6866-6"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6868-4"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6842-5"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6844-7"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6846-3"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6848-9"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6850-9"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6852-2"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6854-7"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6838-1"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6840-2"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6834-3"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6836-3"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6828-9"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6830-5"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6832-8"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6822-5"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6824-0"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6826-2"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6814-0"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6816-2"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6818-9"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6820-8"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6804-9"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6806-0"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6808-4"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6810-5"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6812-1"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6792-9"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6794-1"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6796-0"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6798-7"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6800-5"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6802-7"
+       gradientUnits="userSpaceOnUse"
+       cx="27.12944"
+       cy="2.5756497"
+       fx="27.12944"
+       fy="2.5756497"
+       r="1.3578864" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6778-5"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.98412698,0,0.25996466)"
+       cx="30.00618"
+       cy="16.377769"
+       fx="30.00618"
+       fy="16.377769"
+       r="0.66703194" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6780-1"
+       gradientUnits="userSpaceOnUse"
+       cx="31.351328"
+       cy="14.658904"
+       fx="31.351328"
+       fy="14.658904"
+       r="0.67761976" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6782-7"
+       gradientUnits="userSpaceOnUse"
+       cx="29.790951"
+       cy="12.476492"
+       fx="29.790951"
+       fy="12.476492"
+       r="1.2109807" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6784-4"
+       gradientUnits="userSpaceOnUse"
+       cx="31.328829"
+       cy="10.210701"
+       fx="31.328829"
+       fy="10.210701"
+       r="0.6101225" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6786-3"
+       gradientUnits="userSpaceOnUse"
+       cx="29.828009"
+       cy="6.190063"
+       fx="29.828009"
+       fy="6.190063"
+       r="2.0977097" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4711-3-2"
+       id="radialGradient6788-6"
+       gradientUnits="userSpaceOnUse"
+       cx="31.278538"
+       cy="2.6669695"
+       fx="31.278538"
+       fy="2.6669695"
+       r="0.60747552" />
+    <radialGradient
+       r="1.3578864"
+       fy="2.5756497"
+       fx="27.12944"
+       cy="2.5756497"
+       cx="27.12944"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient5515"
+       xlink:href="#linearGradient4711-3-2"
+       inkscape:collect="always" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="4.9519718"
+     inkscape:cx="26.462923"
+     inkscape:cy="1018.5929"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>fish</dc:title>
+        <dc:date />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat fish</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="frame"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#202020;fill-opacity:1;stroke:none"
+       id="rect20004"
+       width="32"
+       height="32"
+       x="-2.6098915e-15"
+       y="0"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:label="template"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="47.098183"
+       id="text4913"><tspan
+         sodipodi:role="line"
+         id="tspan4915"
+         x="-15"
+         y="47.098183"
+         style="font-size:8px;line-height:1.25">01-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="79.098183"
+       id="text4917"><tspan
+         sodipodi:role="line"
+         id="tspan4919"
+         x="-15"
+         y="79.098183"
+         style="font-size:8px;line-height:1.25">02-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="111.09818"
+       id="text4921"><tspan
+         sodipodi:role="line"
+         id="tspan4923"
+         x="-15"
+         y="111.09818"
+         style="font-size:8px;line-height:1.25">03v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="143.09818"
+       id="text4925"><tspan
+         sodipodi:role="line"
+         id="tspan4927"
+         x="-15"
+         y="143.09818"
+         style="font-size:8px;line-height:1.25">04-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="175.09818"
+       id="text4929"><tspan
+         sodipodi:role="line"
+         id="tspan4931"
+         x="-15"
+         y="175.09818"
+         style="font-size:8px;line-height:1.25">05-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="207.09818"
+       id="text4933"><tspan
+         sodipodi:role="line"
+         id="tspan4935"
+         x="-15"
+         y="207.09818"
+         style="font-size:8px;line-height:1.25">06-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="239.09818"
+       id="text4937"><tspan
+         sodipodi:role="line"
+         id="tspan4939"
+         x="-15"
+         y="239.09818"
+         style="font-size:8px;line-height:1.25">07-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="271.09821"
+       id="text4941"><tspan
+         sodipodi:role="line"
+         id="tspan4943"
+         x="-15"
+         y="271.09821"
+         style="font-size:8px;line-height:1.25">08v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="303.09821"
+       id="text4945"><tspan
+         sodipodi:role="line"
+         id="tspan4947"
+         x="-15"
+         y="303.09821"
+         style="font-size:8px;line-height:1.25">09-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="335.09821"
+       id="text4949"><tspan
+         sodipodi:role="line"
+         id="tspan4951"
+         x="-15"
+         y="335.09821"
+         style="font-size:8px;line-height:1.25">10-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="367.09821"
+       id="text4953"><tspan
+         sodipodi:role="line"
+         id="tspan4955"
+         x="-15"
+         y="367.09821"
+         style="font-size:8px;line-height:1.25">11-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="399.1622"
+       id="text4957"><tspan
+         sodipodi:role="line"
+         id="tspan4959"
+         x="-15"
+         y="399.1622"
+         style="font-size:8px;line-height:1.25">12-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="431.09821"
+       id="text4961"><tspan
+         sodipodi:role="line"
+         id="tspan4963"
+         x="-15"
+         y="431.09821"
+         style="font-size:8px;line-height:1.25">13v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="463.1022"
+       id="text4965"><tspan
+         sodipodi:role="line"
+         id="tspan4967"
+         x="-15"
+         y="463.1022"
+         style="font-size:8px;line-height:1.25">14-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="495.09821"
+       id="text4969"><tspan
+         sodipodi:role="line"
+         id="tspan4971"
+         x="-15"
+         y="495.09821"
+         style="font-size:8px;line-height:1.25">15-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="527.09821"
+       id="text4973"><tspan
+         sodipodi:role="line"
+         id="tspan4975"
+         x="-15"
+         y="527.09821"
+         style="font-size:8px;line-height:1.25">16-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="559.09821"
+       id="text4977"><tspan
+         sodipodi:role="line"
+         id="tspan4979"
+         x="-15"
+         y="559.09821"
+         style="font-size:8px;line-height:1.25">17^</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="591.09821"
+       id="text4981"><tspan
+         sodipodi:role="line"
+         id="tspan4983"
+         x="-15"
+         y="591.09821"
+         style="font-size:8px;line-height:1.25">18-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="623.09821"
+       id="text4985"><tspan
+         sodipodi:role="line"
+         id="tspan4987"
+         x="-15"
+         y="623.09821"
+         style="font-size:8px;line-height:1.25">19x</tspan></text>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <g
+       id="g7626"
+       mask="none">
+      <g
+         inkscape:tile-y0="9.59375"
+         inkscape:tile-x0="2.003229"
+         inkscape:tile-h="22.40625"
+         inkscape:tile-w="65.996771"
+         inkscape:tile-cy="20.796875"
+         inkscape:tile-cx="34.751614"
+         id="g7048">
+        <path
+           inkscape:tile-y0="14.9823"
+           inkscape:tile-x0="14.658787"
+           inkscape:tile-h="12.786359"
+           inkscape:tile-w="12.786359"
+           inkscape:tile-cy="21.37548"
+           inkscape:tile-cx="21.051967"
+           transform="matrix(1.2493931,0,0,1.2493931,30.462808,-5.7319329)"
+           d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+           sodipodi:ry="7.6036916"
+           sodipodi:rx="7.6036916"
+           sodipodi:cy="22.596518"
+           sodipodi:cx="22.440649"
+           id="path4737"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:type="arc"
+           style="fill:none;stroke:#ff0000;stroke-width:0.36590999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path7038"
+           sodipodi:cx="9.3997355"
+           sodipodi:cy="6.0568781"
+           sodipodi:rx="1.0845848"
+           sodipodi:ry="1.0845848"
+           d="m 9.3997355,7.1414629 a 1.0845848,1.0845848 0 1 1 0,-2.1691696"
+           transform="matrix(2.3628895,-1.3731583,1.3731583,2.3628895,29.413614,25.779516)"
+           sodipodi:start="1.5707963"
+           sodipodi:end="4.712389"
+           sodipodi:open="true" />
+        <g
+           id="g4669"
+           transform="translate(40,0)">
+          <use
+             height="1024"
+             width="32"
+             transform="matrix(0.85714284,0,0,0.85714284,6.2857143,1.2857142)"
+             id="use4663"
+             xlink:href="#path3893"
+             y="0"
+             x="0" />
+          <path
+             transform="matrix(1.2183994,0,0,1.2183994,-5.2153846,-4.4332579)"
+             d="m 23.157747,19.643196 a 2.8726213,2.8726213 0 1 1 -5.745243,0 2.8726213,2.8726213 0 1 1 5.745243,0 z"
+             sodipodi:ry="2.8726213"
+             sodipodi:rx="2.8726213"
+             sodipodi:cy="19.643196"
+             sodipodi:cx="20.285126"
+             id="path3893"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc" />
+          <path
+             sodipodi:type="arc"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path4665"
+             sodipodi:cx="20.285126"
+             sodipodi:cy="19.643196"
+             sodipodi:rx="2.8726213"
+             sodipodi:ry="2.8726213"
+             d="m 23.157747,19.643196 a 2.8726213,2.8726213 0 1 1 -5.745243,0 2.8726213,2.8726213 0 1 1 5.745243,0 z"
+             transform="matrix(0.52217116,0,0,0.52217116,9.9076924,9.2428895)" />
+          <use
+             height="1024"
+             width="32"
+             transform="matrix(0.83333334,0,0,0.83333334,6.9166665,1.7499999)"
+             id="use4667"
+             xlink:href="#path4665"
+             y="0"
+             x="0" />
+        </g>
+        <g
+           id="g4675"
+           transform="matrix(0.65157803,0,0,0.66456686,51.163726,8.8870318)">
+          <use
+             x="0"
+             y="0"
+             xlink:href="#path3893"
+             id="use4677"
+             transform="matrix(0.85714284,0,0,0.85714284,6.2857143,1.2857142)"
+             width="32"
+             height="1024" />
+          <path
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path4679"
+             sodipodi:cx="20.285126"
+             sodipodi:cy="19.643196"
+             sodipodi:rx="2.8726213"
+             sodipodi:ry="2.8726213"
+             d="m 23.157747,19.643196 a 2.8726213,2.8726213 0 1 1 -5.745243,0 2.8726213,2.8726213 0 1 1 5.745243,0 z"
+             transform="matrix(1.2183994,0,0,1.2183994,-5.2153846,-4.4332579)" />
+          <path
+             transform="matrix(0.52217116,0,0,0.52217116,9.9076924,9.2428895)"
+             d="m 23.157747,19.643196 a 2.8726213,2.8726213 0 1 1 -5.745243,0 2.8726213,2.8726213 0 1 1 5.745243,0 z"
+             sodipodi:ry="2.8726213"
+             sodipodi:rx="2.8726213"
+             sodipodi:cy="19.643196"
+             sodipodi:cx="20.285126"
+             id="path4681"
+             style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             sodipodi:type="arc" />
+          <use
+             x="0"
+             y="0"
+             xlink:href="#path4665"
+             id="use4683"
+             transform="matrix(0.83333334,0,0,0.83333334,6.9166665,1.7499999)"
+             width="32"
+             height="1024" />
+        </g>
+        <path
+           style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           d="m 67.674763,26.619811 c 0.746347,1.360869 0.644425,2.615917 -1.075956,2.750476 0,0 -10e-7,0 -10e-7,0 -0.719257,0.05324 -1.50953,-0.185146 -2.200436,-0.727022 -1.122983,-0.900373 -1.539682,-2.191739 -1.485532,-3.447716 0.03566,-0.565938 0.164449,-1.062342 0.318363,-1.50089 0.201019,-0.572762 0.492812,-1.189388 0.999451,-1.766932 0.894474,-0.979277 2.164237,-1.560573 3.577505,-1.340609 1.23176,0.220205 2.039056,0.973422 2.186079,1.763666 0.156165,0.83938 -0.38865,1.378584 -1.467707,1.843185 -1.210333,0.521122 -1.629125,0.580648 -1.997352,0.972308 -0.279891,0.297701 -0.11938,0.452531 0.09853,0.440886 0.313594,-0.0512 0.29426,-0.343541 0.256994,-0.543203 -0.03205,-0.12798 -0.117989,-0.134821 -0.123523,-0.122467 -0.0045,0.0101 0.03458,0.03417 0.107007,-0.0026 0.13944,-0.08237 0.389786,-0.228092 0.247869,-0.510147 -0.06628,-0.134982 -0.189746,-0.201221 -0.30667,-0.103322 0,0 0,0 0,0 -0.217373,0.187624 0.07001,0.8441 0.865375,2.294342 z"
+           id="path4693"
+           inkscape:path-effect="#path-effect8108;#path-effect8110"
+           inkscape:original-d="m 67.675486,26.619426 c 0,0 -8.156258,-4.89384 -1.92036,-0.08016 6.235897,4.813676 2.771398,-2.345309 2.771398,-2.345309"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="csc" />
+        <path
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 25.53125,9.59375 c -2.200721,0 -3.994072,1.69338 -4.1875,3.84375 2.307778,0.72575 4.231137,2.308303 5.40625,4.375 1.739445,-0.520486 3,-2.091222 3,-4 0,-2.329758 -1.888992,-4.21875 -4.21875,-4.21875 z"
+           id="use4701"
+           inkscape:connector-curvature="0" />
+        <path
+           transform="matrix(1.9020113,0,0,1.9020113,-23.546112,-18.510243)"
+           d="m 23.157747,19.643196 a 2.8726213,2.8726213 0 1 1 -5.745243,0 2.8726213,2.8726213 0 1 1 5.745243,0 z"
+           sodipodi:ry="2.8726213"
+           sodipodi:rx="2.8726213"
+           sodipodi:cy="19.643196"
+           sodipodi:cx="20.285126"
+           id="path4703"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path4705"
+           sodipodi:cx="20.285126"
+           sodipodi:cy="19.643196"
+           sodipodi:rx="2.8726213"
+           sodipodi:ry="2.8726213"
+           d="m 23.157747,19.643196 a 2.8726213,2.8726213 0 1 1 -5.745243,0 2.8726213,2.8726213 0 1 1 5.745243,0 z"
+           transform="matrix(0.73424215,0,0,0.73424215,1.9701487,4.6092403)" />
+        <use
+           height="1024"
+           width="32"
+           transform="matrix(1.1717776,0,0,1.1717776,2.929515,-9.0463728)"
+           id="use4707"
+           xlink:href="#path4665"
+           y="0"
+           x="0" />
+        <path
+           style="fill:#feee00;fill-opacity:1;fill-rule:nonzero;stroke:#9c0766;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
+           d="m 46.270605,30.218298 -4.267376,-1.571647 4.570149,-0.609811 -2.528589,-3.77979 4.055766,2.192925 0.176033,-4.544183 1.992218,4.158031 c 1.1565,2.730131 -0.136801,2.708475 -0.651924,3.238796 -0.515124,0.530323 -0.252065,1.612622 -3.346276,0.915675 z"
+           id="path7035"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccccccsc" />
+      </g>
+      <path
+         inkscape:tile-y0="21.9058"
+         inkscape:tile-x0="2.003229"
+         inkscape:tile-h="8.5393951"
+         inkscape:tile-w="8.7323993"
+         inkscape:tile-cy="26.175498"
+         inkscape:tile-cx="6.3694287"
+         style="fill:#feee00;fill-opacity:1;fill-rule:nonzero;stroke:#9c0766;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline"
+         d="m 6.248094,30.198627 -4.267376,-1.571647 4.570149,-0.609811 -2.528589,-3.77979 4.055766,2.192925 0.176033,-4.544183 1.992218,4.158031 c 1.1565,2.730131 -0.5981184,2.016498 -1.1132414,2.546819 -0.515124,0.530323 0.2092524,2.304599 -2.8849596,1.607656 z"
+         id="path7035-0"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccsc" />
+    </g>
+    <g
+       id="g7648"
+       mask="url(#mask7724)">
+      <use
+         height="1024"
+         width="32"
+         id="use7374"
+         transform="translate(0,31.989088)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7582"
+         transform="translate(-1.5455299e-8,33)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7652"
+       mask="url(#mask7728)">
+      <use
+         height="1024"
+         width="32"
+         id="use7376"
+         transform="translate(0,65.01979)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7584"
+         transform="translate(0.99999998,66)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7656"
+       mask="url(#mask7732)">
+      <use
+         height="1024"
+         width="32"
+         id="use7378"
+         transform="translate(0,96.008931)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7586"
+         transform="translate(-1.5455298e-8,97)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7660"
+       mask="url(#mask7736)">
+      <use
+         height="1024"
+         width="32"
+         id="use7380"
+         transform="translate(0,127.99792)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7588"
+         transform="translate(-1.5455299e-8,128)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7664"
+       mask="url(#mask7740)">
+      <use
+         height="1024"
+         width="32"
+         id="use7382"
+         transform="translate(0,160.07033)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7590"
+         transform="translate(-1.5455299e-8,160)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7668"
+       mask="url(#mask7744)">
+      <use
+         height="1024"
+         width="32"
+         id="use7384"
+         transform="translate(0,192.05942)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7592"
+         transform="translate(-1.5455301e-8,193)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7672"
+       mask="url(#mask7748)">
+      <use
+         height="1024"
+         width="32"
+         id="use7386"
+         transform="translate(0,225.00679)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7594"
+         transform="translate(0.99999998,226)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7676"
+       mask="url(#mask7752)">
+      <use
+         height="1024"
+         width="32"
+         id="use7388"
+         transform="translate(0,256.0375)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7596"
+         transform="translate(-1.5455302e-8,257)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7680"
+       mask="url(#mask7756)">
+      <use
+         height="1024"
+         width="32"
+         id="use7390"
+         transform="translate(0,288.06824)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7598"
+         transform="translate(-1.5455299e-8,288)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7684"
+       mask="url(#mask7760)">
+      <use
+         height="1024"
+         width="32"
+         id="use7392"
+         transform="translate(0,320.05725)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7600"
+         transform="translate(-1.5455299e-8,320)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7688"
+       mask="url(#mask7764)">
+      <use
+         height="1024"
+         width="32"
+         id="use7394"
+         transform="translate(0,352.00468)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7602"
+         transform="translate(-1.54553e-8,353)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7692"
+       mask="url(#mask7768)">
+      <use
+         height="1024"
+         width="32"
+         id="use7396"
+         transform="translate(0,385.03546)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7604"
+         transform="translate(0.99999998,386)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7696"
+       mask="url(#mask7772)">
+      <use
+         height="1024"
+         width="32"
+         id="use7398"
+         transform="translate(0,416.0245)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7606"
+         transform="translate(-1.5455301e-8,417)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7700"
+       mask="url(#mask7776)">
+      <use
+         height="1024"
+         width="32"
+         id="use7400"
+         transform="translate(0,448.01351)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7608"
+         transform="translate(-1.5455299e-8,448)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7704"
+       mask="url(#mask7780)">
+      <use
+         height="1024"
+         width="32"
+         id="use7402"
+         transform="translate(0,480.00259)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7610"
+         transform="translate(-1.5455299e-8,480)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7708"
+       mask="url(#mask7784)">
+      <use
+         height="1024"
+         width="32"
+         id="use7404"
+         transform="translate(0,510.94997)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7612"
+         transform="translate(0.04581109,509.754)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7712"
+       mask="url(#mask7788)">
+      <use
+         height="1024"
+         width="32"
+         id="use7406"
+         transform="translate(0,543.98075)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7614"
+         transform="translate(-1.54553e-8,543)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g7716"
+       mask="url(#mask3557)">
+      <use
+         height="1024"
+         width="32"
+         id="use7408"
+         transform="translate(0,576.01151)"
+         xlink:href="#g7048"
+         inkscape:tiled-clone-of="#g7048"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use7616"
+         transform="translate(-1.5455299e-8,576)"
+         xlink:href="#path7035-0"
+         inkscape:tiled-clone-of="#path7035-0"
+         y="0"
+         x="0" />
+    </g>
+    <path
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       d="m 25.53125,585.5938 c -2.200721,0 -3.994072,1.69338 -4.1875,3.84375 2.307778,0.72575 4.231137,2.3083 5.40625,4.375 1.739445,-0.52049 3,-2.09122 3,-4 0,-2.32976 -1.888992,-4.21875 -4.21875,-4.21875 z"
+       id="use4701-9"
+       inkscape:connector-curvature="0" />
+    <path
+       transform="matrix(1.9020113,0,0,1.9020113,-23.546112,557.48981)"
+       d="m 23.157747,19.643196 a 2.8726213,2.8726213 0 1 1 -5.745243,0 2.8726213,2.8726213 0 1 1 5.745243,0 z"
+       sodipodi:ry="2.8726213"
+       sodipodi:rx="2.8726213"
+       sodipodi:cy="19.643196"
+       sodipodi:cx="20.285126"
+       id="path4703-1"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+       sodipodi:type="arc" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 13.444121,597.34685 5.008594,-4.61318"
+       id="path3553"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 25.306582,589.04312 3.426933,1.31806"
+       id="path3555"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <path
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+       d="m 27.674763,26.61981 c 0.746347,1.360869 0.644425,2.615917 -1.075956,2.750476 0,0 -1e-6,0 -1e-6,0 -0.719257,0.05324 -1.50953,-0.185147 -2.200436,-0.727022 -1.122983,-0.900373 -1.539682,-2.191739 -1.485532,-3.447716 0.03566,-0.565938 0.164449,-1.062342 0.318363,-1.50089 0.201019,-0.572762 0.492812,-1.189388 0.999451,-1.766932 0.894474,-0.979277 2.164237,-1.560573 3.577505,-1.340609 1.23176,0.220205 2.039056,0.973422 2.186079,1.763666 0.156165,0.83938 -0.38865,1.378584 -1.467707,1.843184 -1.210333,0.521123 -1.629125,0.580649 -1.997352,0.972309 -0.279891,0.297701 -0.11938,0.452531 0.09853,0.440886 0.313594,-0.0512 0.29426,-0.343541 0.256994,-0.543203 -0.03205,-0.12798 -0.117989,-0.134821 -0.123523,-0.122468 -0.0045,0.01011 0.03458,0.03418 0.107007,-0.0026 0.13944,-0.08237 0.389786,-0.228092 0.247869,-0.510146 -0.06628,-0.134983 -0.189746,-0.201222 -0.30667,-0.103323 0,0 0,0 0,0 -0.217373,0.187624 0.07001,0.8441 0.865375,2.294342 z"
+       id="path4693-2"
+       inkscape:path-effect="#path-effect8062;#path-effect8064"
+       inkscape:original-d="m 27.675486,26.619425 c 0,0 -8.156258,-4.89384 -1.92036,-0.08016 6.235897,4.813676 2.771398,-2.345309 2.771398,-2.345309"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="csc"
+       inkscape:tile-cx="46.462914"
+       inkscape:tile-cy="14.959818"
+       inkscape:tile-w="7.1094797"
+       inkscape:tile-h="8.8346659"
+       inkscape:tile-x0="42.908174"
+       inkscape:tile-y0="10.542485" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,59.015596 c 0,0 -8.156258,-5.499659 -1.92036,-0.685979 6.235897,4.813676 2.771398,-2.345309 2.771398,-2.345309"
+       inkscape:path-effect="#path-effect8216;#path-effect8218"
+       id="use8068"
+       d="m 27.674821,59.015767 c 0.451982,1.685374 -0.09209,2.968087 -1.931897,2.378971 -0.783178,-0.25603 -1.45622,-0.855489 -1.882216,-1.675341 -0.512548,-1.003788 -0.501649,-2.016259 -0.328148,-2.902713 0.04122,-0.199472 0.08971,-0.387922 0.140131,-0.566522 0.181574,-0.643135 0.441164,-1.357206 0.989435,-2.022221 0,0 1e-6,0 1e-6,0 0.699894,-0.830379 1.674148,-1.376831 2.773861,-1.386706 2.465412,0.0077 2.460205,1.810438 1.090538,3.143075 -1.347657,1.311222 -2.194315,2.198085 -1.341837,2.045896 0.240356,-0.05734 0.280098,-0.313378 0.246852,-0.529711 0,0 0,0 0,0 -0.03158,-0.173045 -0.163636,-0.217597 -0.162255,-0.227292 3.83e-4,-0.0027 0.01025,-0.0044 0.02882,-0.01098 0.0779,-0.03249 0.306199,-0.06507 0.357595,-0.326911 0.03801,-0.189214 -0.01354,-0.372877 -0.179453,-0.392938 -0.489332,-0.04389 -0.278439,0.694706 0.198568,2.473389 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,92.652118 c 0,0 -8.156258,-6.105479 -1.92036,-1.291799 6.235897,4.813676 2.771398,-2.345309 2.771398,-2.345309"
+       inkscape:path-effect="#path-effect8210;#path-effect8212"
+       id="use8070"
+       d="m 27.674841,92.652148 c 0.108337,1.92567 -0.888897,3.067922 -2.609806,1.807329 0,0 -1e-6,-1e-6 -1e-6,-1e-6 -0.755427,-0.561866 -1.205391,-1.429551 -1.355058,-2.375689 0,0 0,0 0,0 -0.128544,-0.847547 0.01389,-1.590611 0.164236,-2.238372 0.0098,-0.04237 0.01988,-0.0852 0.03021,-0.128425 0.170679,-0.697929 0.409275,-1.475509 0.981254,-2.194184 0.583667,-0.724976 1.375924,-1.227877 2.254161,-1.33766 1.943823,-0.230706 2.32362,1.139716 1.386688,2.829865 -0.9423,1.699834 -1.419991,2.484483 -0.875914,2.361659 0.152602,-0.04058 0.18117,-0.249585 0.126192,-0.437485 -0.06078,-0.199603 -0.235496,-0.241508 -0.258492,-0.244414 -0.0013,-2e-4 -0.0021,-9.1e-5 -0.0022,2.55e-4 -0.0048,0.01265 0.152253,0.05288 0.288618,-0.05975 0,0 0,0 0,0 0.148181,-0.127204 0.248767,-0.326085 0.135465,-0.449956 -0.407766,-0.407847 -0.373895,0.537631 -0.265359,2.46683 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,123.03544 c 0,0 -8.156258,-5.49966 -1.92036,-0.68602 6.235897,4.81368 2.771398,-2.34531 2.771398,-2.34531"
+       inkscape:path-effect="#path-effect8204;#path-effect8206"
+       id="use8072"
+       d="m 27.674821,123.03561 c 0.451959,1.68539 -0.09215,2.9681 -1.93195,2.37894 -0.783178,-0.25605 -1.456207,-0.85554 -1.882183,-1.6754 -0.512514,-1.00379 -0.501596,-2.01624 -0.328093,-2.90267 0.04122,-0.19945 0.0897,-0.38789 0.140118,-0.56647 0.181572,-0.64314 0.44116,-1.35722 0.989434,-2.02224 10e-7,0 10e-7,0 10e-7,0 0.699883,-0.83037 1.674121,-1.37682 2.773816,-1.38671 2.465369,0.008 2.460203,1.81038 1.090562,3.14305 -1.347632,1.31126 -2.194255,2.19812 -1.341801,2.04593 0.240349,-0.0573 0.280091,-0.31338 0.246844,-0.52971 0,0 -1e-6,0 -1e-6,0 -0.03158,-0.17305 -0.163641,-0.2176 -0.16226,-0.22729 3.83e-4,-0.003 0.01025,-0.004 0.02882,-0.011 0.0779,-0.0325 0.30619,-0.065 0.357598,-0.32689 0.03802,-0.18921 -0.01352,-0.37288 -0.179435,-0.39295 -0.489332,-0.0439 -0.278452,0.69469 0.198529,2.47339 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,154.41861 c 0,0 -8.156258,-4.89385 -1.92036,-0.0802 6.235897,4.81368 2.771398,-2.3453 2.771398,-2.3453"
+       inkscape:path-effect="#path-effect8198;#path-effect8200"
+       id="use8074"
+       d="m 27.674766,154.419 c 0.746333,1.36089 0.644384,2.61595 -1.076018,2.75046 0,0 0,0 -1e-6,0 -0.719266,0.0532 -1.509538,-0.18519 -2.200431,-0.72709 -1.122937,-0.90039 -1.539594,-2.19174 -1.485428,-3.44769 0.03567,-0.56591 0.164448,-1.06229 0.318354,-1.50082 0.201018,-0.57276 0.492811,-1.1894 0.999454,-1.76695 0.894461,-0.97926 2.164201,-1.56055 3.577445,-1.3406 1.231742,0.22019 2.039035,0.97338 2.186065,1.76361 0.156172,0.83937 -0.388629,1.37858 -1.467671,1.8432 -1.210318,0.52115 -1.629114,0.58069 -1.997332,0.97236 -0.279884,0.2977 -0.119373,0.45254 0.09854,0.44089 0.313593,-0.0512 0.294269,-0.34354 0.257007,-0.5432 -0.03205,-0.12799 -0.117989,-0.13483 -0.123521,-0.12248 -0.0045,0.0101 0.03458,0.0342 0.107001,-0.003 0.139437,-0.0824 0.389782,-0.22808 0.247876,-0.51014 -0.06627,-0.13499 -0.189744,-0.20124 -0.306675,-0.10335 0,0 0,0 0,0 -0.217387,0.18761 0.06998,0.8441 0.865331,2.29437 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       inkscape:tile-h="8.8346659"
+       inkscape:tile-w="7.1094797"
+       inkscape:tile-cy="14.959818"
+       inkscape:tile-cx="46.462914"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,186.61943 c 0,0 -8.156258,-4.89384 -1.92036,-0.0802 6.235897,4.81367 2.771398,-2.34531 2.771398,-2.34531"
+       inkscape:path-effect="#path-effect3597;#path-effect3599"
+       id="path3595"
+       d="m 27.674765,186.61982 c 0.746332,1.36089 0.644383,2.61595 -1.076017,2.75046 0,0 -1e-6,0 -1e-6,0 -0.719265,0.0532 -1.509536,-0.18519 -2.200429,-0.72709 -1.122936,-0.90039 -1.539595,-2.19174 -1.48543,-3.44769 0.03567,-0.56591 0.164446,-1.06228 0.31835,-1.50081 0.201017,-0.57277 0.492809,-1.1894 0.999451,-1.76695 0.894458,-0.97927 2.164197,-1.56056 3.577441,-1.34062 1.231738,0.22019 2.039031,0.97337 2.186063,1.7636 0.156174,0.83937 -0.388624,1.37858 -1.467662,1.84321 -1.210311,0.52115 -1.629104,0.58069 -1.997322,0.97236 -0.279883,0.29771 -0.119375,0.45254 0.09854,0.44089 0.313591,-0.0512 0.294267,-0.34353 0.257004,-0.5432 -0.03205,-0.12798 -0.117989,-0.13483 -0.123522,-0.12248 -0.0045,0.0101 0.03458,0.0342 0.107001,-0.003 0.139437,-0.0824 0.389782,-0.22809 0.247877,-0.51015 -0.06627,-0.13499 -0.189744,-0.20123 -0.306675,-0.10334 0,0 0,0 0,0 -0.217386,0.18761 0.06998,0.8441 0.86533,2.29437 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,219.08592 c 0,0 -8.156258,-5.49966 -1.92036,-0.68602 6.235897,4.81368 2.771398,-2.3453 2.771398,-2.3453"
+       inkscape:path-effect="#path-effect8186;#path-effect8188"
+       id="use8078"
+       d="m 27.674822,219.0861 c 0.451961,1.68539 -0.09215,2.9681 -1.931953,2.37893 -0.78318,-0.25605 -1.456209,-0.85553 -1.882186,-1.6754 -0.512514,-1.00379 -0.501595,-2.01624 -0.32809,-2.90267 0.04122,-0.19946 0.0897,-0.38789 0.140121,-0.56648 0.181573,-0.64314 0.441164,-1.35721 0.989439,-2.02223 0,0 1e-6,0 1e-6,0 0.699885,-0.83037 1.674124,-1.37682 2.77382,-1.3867 2.465381,0.008 2.460206,1.81039 1.090559,3.14305 -1.347641,1.31125 -2.194273,2.19811 -1.341811,2.04592 0.24035,-0.0573 0.280094,-0.31337 0.246849,-0.5297 0,0 0,0 0,0 -0.03158,-0.17305 -0.163637,-0.2176 -0.162256,-0.2273 3.84e-4,-0.003 0.01025,-0.004 0.02882,-0.011 0.0779,-0.0325 0.306189,-0.0651 0.357596,-0.3269 0.03802,-0.18922 -0.01352,-0.37288 -0.17944,-0.39295 -0.489337,-0.0439 -0.278456,0.69469 0.198529,2.4734 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,252.63912 c 0,0 -8.156258,-6.10549 -1.92036,-1.29184 6.235897,4.81368 2.771398,-2.3453 2.771398,-2.3453"
+       inkscape:path-effect="#path-effect8180;#path-effect8182"
+       id="use8080"
+       d="m 27.674841,252.63916 c 0.108317,1.92568 -0.888948,3.06792 -2.609848,1.80728 0,0 0,0 0,0 -0.755425,-0.56189 -1.205372,-1.42959 -1.355022,-2.37573 0,0 0,0 0,0 -0.128524,-0.84752 0.0139,-1.59056 0.164248,-2.2383 0.0098,-0.0424 0.01989,-0.0852 0.03022,-0.12847 0.17068,-0.69792 0.409278,-1.4755 0.981253,-2.19416 0.583663,-0.72497 1.375912,-1.22786 2.254137,-1.33765 1.943798,-0.23071 2.323608,1.13969 1.386702,2.82985 -0.94228,1.69985 -1.419958,2.48449 -0.875894,2.36167 0.152597,-0.0406 0.181165,-0.24957 0.126186,-0.43747 -0.06077,-0.1996 -0.235493,-0.24151 -0.258496,-0.24442 -0.0013,-2e-4 -0.0021,-9e-5 -0.0022,2.6e-4 -0.0048,0.0126 0.152242,0.0529 0.288607,-0.0597 0,0 0,0 0,0 0.148186,-0.1272 0.248783,-0.32608 0.135485,-0.44996 -0.407757,-0.40787 -0.373897,0.53763 -0.265382,2.46684 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,283.06401 c 0,0 -8.156258,-5.49967 -1.92036,-0.68602 6.235897,4.81368 2.771398,-2.3453 2.771398,-2.3453"
+       inkscape:path-effect="#path-effect8174;#path-effect8176"
+       id="use8082"
+       d="m 27.674822,283.06419 c 0.451961,1.68539 -0.09215,2.9681 -1.931953,2.37893 -0.783181,-0.25605 -1.456211,-0.85553 -1.882188,-1.6754 -0.512514,-1.00379 -0.501595,-2.01624 -0.32809,-2.90267 0.04122,-0.19946 0.0897,-0.38789 0.140121,-0.56648 0.181574,-0.64314 0.441164,-1.35721 0.98944,-2.02223 0,0 0,0 1e-6,0 0.699885,-0.83037 1.674125,-1.37682 2.773821,-1.3867 2.465382,0.008 2.460208,1.81039 1.090561,3.14305 -1.347643,1.31125 -2.194279,2.19812 -1.341814,2.04593 0.240351,-0.0573 0.280095,-0.31338 0.246849,-0.52971 0,0 0,0 0,0 -0.03158,-0.17305 -0.163638,-0.2176 -0.162257,-0.2273 3.84e-4,-0.003 0.01025,-0.004 0.02882,-0.011 0.0779,-0.0325 0.30619,-0.0651 0.357596,-0.3269 0.03802,-0.18921 -0.01352,-0.37288 -0.179439,-0.39295 -0.489335,-0.0439 -0.278454,0.69469 0.19853,2.4734 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,314.48892 c 0,0 -8.156258,-4.89383 -1.92036,-0.0802 6.235897,4.81367 2.771398,-2.34531 2.771398,-2.34531"
+       inkscape:path-effect="#path-effect8168;#path-effect8170"
+       id="use8084"
+       d="m 27.674761,314.4893 c 0.746333,1.3609 0.644387,2.61595 -1.076013,2.75047 0,0 0,0 0,0 -0.719266,0.0532 -1.509537,-0.18519 -2.20043,-0.72709 -1.122937,-0.90039 -1.539596,-2.19174 -1.485432,-3.44769 0.03567,-0.56591 0.164447,-1.06228 0.318351,-1.50081 0.201017,-0.57277 0.492809,-1.1894 0.999451,-1.76696 0.894459,-0.97926 2.164198,-1.56055 3.577442,-1.34061 1.231738,0.22019 2.03903,0.97338 2.186061,1.7636 0.156173,0.83937 -0.388627,1.37858 -1.467668,1.84321 -1.210307,0.52115 -1.6291,0.58069 -1.997316,0.97236 -0.279881,0.29771 -0.119373,0.45254 0.09854,0.44089 0.313591,-0.0512 0.294266,-0.34353 0.257003,-0.5432 -0.03205,-0.12799 -0.11799,-0.13483 -0.123522,-0.12248 -0.0045,0.0101 0.03458,0.0342 0.107001,-0.003 0.139436,-0.0824 0.389782,-0.22808 0.247877,-0.51014 -0.06627,-0.135 -0.189743,-0.20124 -0.306674,-0.10335 0,0 0,0 0,0 -0.217386,0.18761 0.06998,0.84409 0.865326,2.29436 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,346.47793 c 0,0 -8.156258,-4.89383 -1.92036,-0.0802 6.235897,4.81367 2.771398,-2.34531 2.771398,-2.34531"
+       inkscape:path-effect="#path-effect8162;#path-effect8164"
+       id="use8086"
+       d="m 27.674761,346.47831 c 0.746333,1.3609 0.644387,2.61595 -1.076013,2.75047 0,0 0,0 0,0 -0.719266,0.0532 -1.509537,-0.18519 -2.20043,-0.72709 -1.122937,-0.90039 -1.539596,-2.19174 -1.485432,-3.44769 0.03567,-0.56591 0.164447,-1.06228 0.318351,-1.50081 0.201017,-0.57277 0.492809,-1.1894 0.999451,-1.76696 0.894459,-0.97926 2.164198,-1.56055 3.577442,-1.34061 1.231738,0.22019 2.03903,0.97338 2.186061,1.7636 0.156173,0.83937 -0.388627,1.37858 -1.467668,1.84321 -1.210307,0.52115 -1.6291,0.58069 -1.997316,0.97236 -0.279881,0.29771 -0.119373,0.45254 0.09854,0.44089 0.313591,-0.0512 0.294266,-0.34353 0.257003,-0.5432 -0.03205,-0.12799 -0.11799,-0.13483 -0.123522,-0.12248 -0.0045,0.0101 0.03458,0.0342 0.107001,-0.003 0.139436,-0.0824 0.389782,-0.22808 0.247877,-0.51014 -0.06627,-0.135 -0.189743,-0.20124 -0.306674,-0.10335 0,0 0,0 0,0 -0.217386,0.18761 0.06998,0.84409 0.865326,2.29436 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,379.03118 c 0,0 -8.156258,-5.49965 -1.92036,-0.68602 6.235897,4.81367 2.771398,-2.34531 2.771398,-2.34531"
+       inkscape:path-effect="#path-effect8156;#path-effect8158"
+       id="use8088"
+       d="m 27.67482,379.03135 c 0.45196,1.68539 -0.09215,2.9681 -1.93195,2.37894 -0.783179,-0.25605 -1.456209,-0.85553 -1.882186,-1.6754 -0.512516,-1.00378 -0.501598,-2.01624 -0.328095,-2.90267 0.04122,-0.19946 0.0897,-0.38789 0.140119,-0.56647 0.181572,-0.64314 0.441161,-1.35722 0.989437,-2.02224 0,0 0,0 0,0 0.699885,-0.83037 1.674124,-1.37682 2.773819,-1.38671 2.465369,0.008 2.4602,1.81038 1.090559,3.14305 -1.347631,1.31126 -2.194249,2.19812 -1.341798,2.04593 0.240349,-0.0573 0.280092,-0.31338 0.246846,-0.52971 0,0 -1e-6,0 -1e-6,0 -0.03158,-0.17304 -0.163639,-0.2176 -0.162258,-0.22729 3.83e-4,-0.003 0.01025,-0.004 0.02882,-0.011 0.0779,-0.0325 0.30619,-0.0651 0.357597,-0.32689 0.03802,-0.18922 -0.01352,-0.37289 -0.179437,-0.39295 -0.489333,-0.0439 -0.278454,0.69469 0.198527,2.47339 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,412.66778 c 0,0 -8.156258,-6.10547 -1.92036,-1.29184 6.235897,4.81367 2.771398,-2.34531 2.771398,-2.34531"
+       inkscape:path-effect="#path-effect8150;#path-effect8152"
+       id="use8090"
+       d="m 27.674841,412.66781 c 0.108314,1.92568 -0.888948,3.06792 -2.609846,1.80729 -1e-6,0 -1e-6,0 -1e-6,0 -0.755424,-0.56189 -1.205372,-1.42959 -1.355024,-2.37573 0,0 0,0 0,0 -0.128526,-0.84752 0.0139,-1.59057 0.164249,-2.23831 0.0098,-0.0424 0.01989,-0.0852 0.03022,-0.12846 0.17068,-0.69792 0.409278,-1.47549 0.98125,-2.19416 0.583661,-0.72497 1.375908,-1.22787 2.254133,-1.33766 1.943812,-0.23072 2.323625,1.1397 1.386713,2.82986 -0.942278,1.69984 -1.41996,2.48449 -0.875893,2.36166 0.152596,-0.0406 0.181162,-0.24958 0.126182,-0.43747 -0.06078,-0.1996 -0.235495,-0.24151 -0.258496,-0.24441 -0.0013,-2e-4 -0.0021,-9e-5 -0.0022,2.5e-4 -0.0048,0.0127 0.152243,0.0529 0.288609,-0.0597 0,0 0,0 10e-7,0 0.148185,-0.12719 0.248782,-0.32607 0.135485,-0.44995 -0.407755,-0.40787 -0.373896,0.53763 -0.265384,2.46683 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,443.051 c 0,0 -8.156258,-5.49965 -1.92036,-0.68602 6.235897,4.81368 2.771398,-2.3453 2.771398,-2.3453"
+       inkscape:path-effect="#path-effect8144;#path-effect8146"
+       id="use8092"
+       d="m 27.67482,443.05117 c 0.451962,1.68539 -0.09214,2.96811 -1.931951,2.37894 -0.78318,-0.25605 -1.45621,-0.85553 -1.882187,-1.6754 -0.512514,-1.00379 -0.501595,-2.01624 -0.32809,-2.90267 0.04122,-0.19946 0.0897,-0.38789 0.14012,-0.56648 0.181574,-0.64314 0.441164,-1.35721 0.98944,-2.02223 0,0 1e-6,0 1e-6,0 0.699886,-0.83037 1.674125,-1.37682 2.773821,-1.3867 2.465382,0.008 2.460203,1.8104 1.090553,3.14306 -1.347637,1.31124 -2.194268,2.19811 -1.341805,2.04591 0.24035,-0.0573 0.280093,-0.31337 0.246848,-0.5297 0,0 0,0 0,0 -0.03158,-0.17305 -0.163637,-0.2176 -0.162256,-0.2273 3.83e-4,-0.003 0.01025,-0.004 0.02882,-0.011 0.0779,-0.0325 0.30619,-0.0651 0.357597,-0.3269 0.03802,-0.18921 -0.01352,-0.37288 -0.179439,-0.39295 -0.489336,-0.0439 -0.278456,0.69469 0.198527,2.47339 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,474.43419 c 0,0 -8.156258,-4.89383 -1.92036,-0.0802 6.235897,4.81368 2.771398,-2.3453 2.771398,-2.3453"
+       inkscape:path-effect="#path-effect8138;#path-effect8140"
+       id="use8094"
+       d="m 27.674761,474.43457 c 0.746334,1.3609 0.644389,2.61595 -1.076013,2.75047 0,0 0,0 0,0 -0.719267,0.0532 -1.509539,-0.18519 -2.200432,-0.72709 -1.122936,-0.90039 -1.539594,-2.19174 -1.485428,-3.44769 0.03567,-0.56591 0.164449,-1.06229 0.318354,-1.50082 0.201018,-0.57276 0.492812,-1.1894 0.999455,-1.76695 0.89446,-0.97926 2.164201,-1.56055 3.577444,-1.3406 1.231741,0.22019 2.039033,0.97338 2.186061,1.76361 0.156171,0.83937 -0.388632,1.37858 -1.467677,1.8432 -1.210312,0.52115 -1.629106,0.58069 -1.997322,0.97236 -0.279882,0.2977 -0.119372,0.45253 0.09854,0.44089 0.313592,-0.0512 0.294269,-0.34354 0.257007,-0.5432 -0.03205,-0.12799 -0.117988,-0.13483 -0.123521,-0.12248 -0.0045,0.0101 0.03458,0.0342 0.107001,-0.003 0.139437,-0.0824 0.389782,-0.22808 0.247877,-0.51014 -0.06627,-0.13499 -0.189744,-0.20124 -0.306676,-0.10335 0,0 0,0 0,0 -0.217388,0.18761 0.06998,0.84409 0.865326,2.29436 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,506.42327 c 0,0 -8.156258,-4.89383 -1.92036,-0.0802 6.235897,4.81368 2.771398,-2.3453 2.771398,-2.3453"
+       inkscape:path-effect="#path-effect8132;#path-effect8134"
+       id="use8096"
+       d="m 27.674761,506.42365 c 0.746334,1.3609 0.644389,2.61595 -1.076013,2.75047 0,0 0,0 0,0 -0.719267,0.0532 -1.509539,-0.18519 -2.200432,-0.72709 -1.122936,-0.90039 -1.539594,-2.19174 -1.485428,-3.44769 0.03567,-0.56591 0.164449,-1.06229 0.318354,-1.50082 0.201018,-0.57276 0.492812,-1.1894 0.999455,-1.76695 0.89446,-0.97926 2.164201,-1.56055 3.577444,-1.3406 1.231741,0.22019 2.039033,0.97338 2.186061,1.76361 0.156171,0.83937 -0.388632,1.37858 -1.467677,1.8432 -1.210312,0.52115 -1.629106,0.58069 -1.997322,0.97236 -0.279882,0.2977 -0.119372,0.45253 0.09854,0.44089 0.313592,-0.0512 0.294269,-0.34354 0.257007,-0.5432 -0.03205,-0.12799 -0.117988,-0.13483 -0.123521,-0.12248 -0.0045,0.0101 0.03458,0.0342 0.107001,-0.003 0.139437,-0.0824 0.389782,-0.22808 0.247877,-0.51014 -0.06627,-0.13499 -0.189744,-0.20124 -0.306676,-0.10335 0,0 0,0 0,0 -0.217388,0.18761 0.06998,0.84409 0.865326,2.29436 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,537.97648 c 0,0 -8.156258,-5.49967 -1.92036,-0.68602 6.235897,4.81368 2.771398,-2.3453 2.771398,-2.3453"
+       inkscape:path-effect="#path-effect8126;#path-effect8128"
+       id="use8098"
+       d="m 27.674822,537.97666 c 0.451961,1.68539 -0.09215,2.9681 -1.931953,2.37893 -0.783181,-0.25605 -1.456211,-0.85553 -1.882188,-1.6754 -0.512514,-1.00379 -0.501595,-2.01624 -0.32809,-2.90267 0.04122,-0.19946 0.0897,-0.38789 0.140121,-0.56648 0.181574,-0.64314 0.441164,-1.35721 0.98944,-2.02223 0,0 1e-6,0 1e-6,0 0.699885,-0.83037 1.674125,-1.37682 2.773821,-1.3867 2.465382,0.008 2.460208,1.81039 1.090561,3.14305 -1.347643,1.31125 -2.194279,2.19812 -1.341814,2.04593 0.240351,-0.0573 0.280095,-0.31338 0.246849,-0.52971 0,0 0,0 0,0 -0.03158,-0.17305 -0.163638,-0.2176 -0.162257,-0.2273 3.84e-4,-0.003 0.01025,-0.004 0.02882,-0.011 0.0779,-0.0325 0.30619,-0.0651 0.357596,-0.3269 0.03802,-0.18921 -0.01352,-0.37288 -0.179439,-0.39295 -0.489335,-0.0439 -0.278454,0.69469 0.19853,2.4734 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,570.40143 c 0,0 -8.156258,-4.89383 -1.92036,-0.0802 6.235897,4.81367 2.771398,-2.34531 2.771398,-2.34531"
+       inkscape:path-effect="#path-effect8120;#path-effect8122"
+       id="use8100"
+       d="m 27.674761,570.40181 c 0.746333,1.3609 0.644387,2.61595 -1.076013,2.75047 0,0 0,0 0,0 -0.719266,0.0532 -1.509537,-0.18519 -2.20043,-0.72709 -1.122937,-0.90039 -1.539596,-2.19174 -1.485432,-3.44769 0.03567,-0.56591 0.164447,-1.06228 0.318351,-1.50081 0.201017,-0.57277 0.492809,-1.1894 0.999451,-1.76696 0.894459,-0.97926 2.164198,-1.56055 3.577442,-1.34061 1.231738,0.22019 2.03903,0.97338 2.186061,1.7636 0.156173,0.83937 -0.388627,1.37858 -1.467668,1.84321 -1.210307,0.52115 -1.6291,0.58069 -1.997316,0.97236 -0.279881,0.29771 -0.119373,0.45254 0.09854,0.44089 0.313591,-0.0512 0.294266,-0.34353 0.257003,-0.5432 -0.03205,-0.12799 -0.11799,-0.13483 -0.123522,-0.12248 -0.0045,0.0101 0.03458,0.0342 0.107001,-0.003 0.139436,-0.0824 0.389782,-0.22808 0.247877,-0.51014 -0.06627,-0.135 -0.189743,-0.20124 -0.306674,-0.10335 0,0 0,0 0,0 -0.217386,0.18761 0.06998,0.84409 0.865326,2.29436 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+    <path
+       inkscape:tile-y0="10.542485"
+       inkscape:tile-x0="42.908174"
+       sodipodi:nodetypes="csc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 27.675486,602.43219 c 0,0 -8.156258,-4.89383 -1.92036,-0.0802 6.235897,4.81368 2.771398,-2.3453 2.771398,-2.3453"
+       inkscape:path-effect="#path-effect8114;#path-effect8116"
+       id="use8102"
+       d="m 27.674761,602.43257 c 0.746334,1.3609 0.644389,2.61595 -1.076013,2.75047 0,0 0,0 0,0 -0.719267,0.0532 -1.509539,-0.18519 -2.200432,-0.72709 -1.122936,-0.90039 -1.539594,-2.19174 -1.485428,-3.44769 0.03567,-0.56591 0.164449,-1.06229 0.318354,-1.50082 0.201018,-0.57276 0.492812,-1.1894 0.999455,-1.76695 0.89446,-0.97926 2.164201,-1.56055 3.577444,-1.3406 1.231741,0.22019 2.039033,0.97338 2.186061,1.76361 0.156171,0.83937 -0.388632,1.37858 -1.467677,1.8432 -1.210312,0.52115 -1.629106,0.58069 -1.997322,0.97236 -0.279882,0.2977 -0.119372,0.45253 0.09854,0.44089 0.313592,-0.0512 0.294269,-0.34354 0.257007,-0.5432 -0.03205,-0.12799 -0.117988,-0.13483 -0.123521,-0.12248 -0.0045,0.0101 0.03458,0.0342 0.107001,-0.003 0.139437,-0.0824 0.389782,-0.22808 0.247877,-0.51014 -0.06627,-0.13499 -0.189744,-0.20124 -0.306676,-0.10335 0,0 0,0 0,0 -0.217388,0.18761 0.06998,0.84409 0.865326,2.29436 z"
+       style="fill:#ff0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="frame-0.5"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       id="rect20004-7"
+       width="31"
+       height="31"
+       x="0.5"
+       y="0.5"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,32)"
+       id="use20175-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,64)"
+       id="use20177-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,96)"
+       id="use20179-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,128)"
+       id="use20181-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,160)"
+       id="use20183-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,192)"
+       id="use20185-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,224)"
+       id="use20187-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,256)"
+       id="use20189-6"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,288)"
+       id="use20191-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,320)"
+       id="use20193-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,352)"
+       id="use20195-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,384)"
+       id="use20197-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,416)"
+       id="use20199-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,448)"
+       id="use20201-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,480)"
+       id="use20203-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,512)"
+       id="use20205-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,544)"
+       id="use20207-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,576)"
+       id="use20209-7"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.46320346;fill:#ffffff;fill-opacity:1"
+       id="path3296"
+       sodipodi:cx="13.082203"
+       sodipodi:cy="31.332769"
+       sodipodi:rx="3.5490334"
+       sodipodi:ry="2.8754942"
+       d="m 16.631236,31.332769 a 3.5490334,2.8754942 0 1 1 -7.0980665,0 3.5490334,2.8754942 0 1 1 7.0980665,0 z"
+       transform="matrix(0.98618401,0,0,0.86941576,-0.40145933,3.2587965)"
+       inkscape:tile-cx="12.253232"
+       inkscape:tile-cy="30.529706"
+       inkscape:tile-w="8.5487669"
+       inkscape:tile-h="7.0462566"
+       inkscape:tile-x0="7.9788488"
+       inkscape:tile-y0="27.006578" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       id="use3526"
+       transform="translate(0,33)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,66)"
+       id="use3528"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,97)"
+       id="use3530"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,128)"
+       id="use3532"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,160)"
+       id="use3534"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,193)"
+       id="use3536"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,226)"
+       id="use3538"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,257)"
+       id="use3540"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,288)"
+       id="use3542"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,320)"
+       id="use3544"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,353)"
+       id="use3546"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,386)"
+       id="use3548"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,417)"
+       id="use3550"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,448)"
+       id="use3552"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,480)"
+       id="use3554"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,510)"
+       id="use3556"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,543)"
+       id="use3558"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,576)"
+       id="use3560"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="frame and hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,0 0,32 9.6875,0 C 9.2558025,31.584271 9,31.057361 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.557361 -0.255803,1.084271 -0.6875,1.5 L 32,32 32,0 0,0 z"
+       id="rect13136"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,32 0,32 9.0625,0 C 9.0158769,63.837256 9,63.672589 9,63.5 9,62.119288 10.567003,61 12.5,61 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.172589 -0.01588,0.337256 -0.0625,0.5 L 32,64 32,32 0,32 z"
+       id="use13138"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,64 0,32 10.0625,0 c 0.326362,-1.139208 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.860792 3.4375,2 L 32,96 32,64 0,64 z"
+       id="use13140"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,96 0,32 9.0625,0 C 9.0158769,127.83726 9,127.67259 9,127.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,128 32,96 0,96 z"
+       id="use13142"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,128 0,32 9.6875,0 C 9.2558025,159.58427 9,159.05736 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,160 32,128 0,128 z"
+       id="use13144"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,160 0,32 9.6875,0 C 9.2558025,191.58427 9,191.05736 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,192 32,160 0,160 z"
+       id="use13146"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,192 0,32 9.0625,0 C 9.0158769,223.83726 9,223.67259 9,223.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,224 32,192 0,192 z"
+       id="use13148"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,224 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,256 32,224 0,224 z"
+       id="use13150"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,256 0,32 9.0625,0 C 9.0158769,287.83726 9,287.67259 9,287.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,288 32,256 0,256 z"
+       id="use13152"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,288 0,32 9.6875,0 C 9.2558025,319.58427 9,319.05736 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,320 32,288 0,288 z"
+       id="use13154"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,320 0,32 9.6875,0 C 9.2558025,351.58427 9,351.05736 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,352 32,320 0,320 z"
+       id="use13156"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,352 0,32 9.0625,0 C 9.0158769,383.83726 9,383.67259 9,383.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,384 32,352 0,352 z"
+       id="use13158"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,384 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,416 32,384 0,384 z"
+       id="use13160"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,416 0,32 9.0625,0 C 9.0158769,447.83726 9,447.67259 9,447.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,448 32,416 0,416 z"
+       id="use13162"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,448 0,32 9.6875,0 C 9.2558025,479.58427 9,479.05736 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,480 32,448 0,448 z"
+       id="use13164"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,480 0,32 9.6875,0 C 9.2558025,511.58427 9,511.05736 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,512 32,480 0,480 z"
+       id="use13166"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,512 0,32 32,0 0,-32 -32,0 z m 12.5,26 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use13168"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,544 0,32 12.5,0 c -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 l 19.5,0 0,-32 -32,0 z"
+       id="use13170"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,576 0,32 9.6875,0 C 9.2558025,607.58427 9,607.05736 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,608 32,576 0,576 z"
+       id="use13172"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="frame-0.5 and hand"
+     style="display:none">
+    <path
+       inkscape:connector-curvature="0"
+       id="path7722"
+       d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer10"
+     inkscape:label="vapour">
+    <g
+       style="display:inline"
+       id="g4769"
+       transform="translate(-0.0291185,95.938753)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="127.98559"
+         x="0.049365502"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627"
+         style="fill:url(#radialGradient6778-5);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.59291774,131.47944)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629"
+         style="fill:url(#radialGradient6780-1);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.59291774,131.47944)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631"
+         style="fill:url(#radialGradient6782-7);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.823406,121.06791)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633"
+         style="fill:url(#radialGradient6784-4);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.59291774,131.47944)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635"
+         style="fill:url(#radialGradient6786-3);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1190578,130.88302)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637"
+         style="fill:url(#radialGradient6788-6);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.59291774,131.47944)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639"
+         style="fill:url(#radialGradient5515);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.59291774,131.47944)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4979"
+       transform="translate(-0.0291185,95.938753)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="95.989021"
+         x="-0.006705218"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-0"
+         style="fill:url(#radialGradient6792-9);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.64898846,101.48288)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-0"
+         style="fill:url(#radialGradient6794-1);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.879477,91.071345)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-8"
+         style="fill:url(#radialGradient6796-0);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.64898846,101.48288)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-7"
+         style="fill:url(#radialGradient6798-7);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1751285,100.88645)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6"
+         style="fill:url(#radialGradient6800-5);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.64898846,101.48288)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5"
+         style="fill:url(#radialGradient6802-7);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.64898846,101.48288)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g5139"
+       transform="translate(-0.0291185,95.938753)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="63.984913"
+         x="-0.021693578"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-0-4"
+         style="fill:url(#radialGradient6804-9);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.894465,61.067236)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-8-2"
+         style="fill:url(#radialGradient6806-0);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397682,71.478771)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-7-5"
+         style="fill:url(#radialGradient6808-4);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1901169,70.882341)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2"
+         style="fill:url(#radialGradient6810-5);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397682,71.478771)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7"
+         style="fill:url(#radialGradient6812-1);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397682,71.478771)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g5277"
+       transform="translate(-0.0291185,95.938753)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="32.055748"
+         x="-0.021693539"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1-3"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-8-2-0"
+         style="fill:url(#radialGradient6814-0);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397678,41.549605)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-7-5-3"
+         style="fill:url(#radialGradient6816-2);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1901169,40.953175)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2-8"
+         style="fill:url(#radialGradient6818-9);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397678,41.549605)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7-4"
+         style="fill:url(#radialGradient6820-8);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397678,41.549605)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g5393"
+       transform="translate(-0.0291185,95.938753)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="0.033026986"
+         x="-0.021693218"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1-3-3"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-7-5-3-7"
+         style="fill:url(#radialGradient6822-5);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1901166,10.930454)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2-8-7"
+         style="fill:url(#radialGradient6824-0);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397646,11.526884)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7-4-8"
+         style="fill:url(#radialGradient6826-2);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.66397646,11.526884)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g5519"
+       transform="translate(-0.0291185,-352.06125)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="416.05029"
+         x="-0.0413635"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1-3-3-3"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-7-5-3-7-7"
+         style="fill:url(#radialGradient6828-9);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.2097869,428.94772)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2-8-7-7"
+         style="fill:url(#radialGradient6830-5);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.68364674,429.54415)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7-4-8-9"
+         style="fill:url(#radialGradient6832-8);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.68364674,429.54415)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g5615"
+       transform="translate(-0.0291185,-351.97495)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="383.95496"
+         x="-0.01025632"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1-3-3-3-9"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2-8-7-7-0"
+         style="fill:url(#radialGradient6834-3);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.65253956,399.44882)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7-4-8-9-4"
+         style="fill:url(#radialGradient6836-3);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.65253956,399.44882)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g5693"
+       transform="translate(-0.0291185,-352.06125)">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="352.06125"
+         x="0.00845432"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-1-1-3-3-3-9-0"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-6-2-8-7-7-0-4"
+         style="fill:url(#radialGradient6838-1);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.63382892,369.55512)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-5-7-4-8-9-4-7"
+         style="fill:url(#radialGradient6840-2);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.63382892,369.55512)" />
+    </g>
+    <g
+       transform="translate(0,2.4414062e-6)"
+       style="display:inline"
+       id="g5882">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4"
+         style="fill:url(#radialGradient6842-5);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,257.41819)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5"
+         style="fill:url(#radialGradient6844-7);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,257.41819)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-6"
+         style="fill:url(#radialGradient6846-3);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.852525,247.00666)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-7"
+         style="fill:url(#radialGradient6848-9);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,257.41819)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-9"
+         style="fill:url(#radialGradient6850-9);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1481763,256.82177)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-0"
+         style="fill:url(#radialGradient6852-2);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,257.41819)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-2"
+         style="fill:url(#radialGradient6854-7);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,257.41819)" />
+    </g>
+    <g
+       style="display:inline"
+       transform="translate(0,32)"
+       id="g5882-8">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6"
+         style="fill:url(#radialGradient6856-3);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,255.41819)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5-4"
+         style="fill:url(#radialGradient6858-9);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,255.41819)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-6-0"
+         style="fill:url(#radialGradient6860-4);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.852525,245.00666)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-7-0"
+         style="fill:url(#radialGradient6862-6);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,255.41819)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-9-9"
+         style="fill:url(#radialGradient6864-7);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1481763,254.82177)" />
+      <path
+         d="m 31.886013,2.6669695 c 0,0.3354995 -0.271976,0.6074756 -0.607475,0.6074756 -0.3355,0 -0.607476,-0.2719761 -0.607476,-0.6074756 0,-0.3354994 0.271976,-0.6074755 0.607476,-0.6074755 0.335499,0 0.607475,0.2719761 0.607475,0.6074755 z"
+         sodipodi:ry="0.60747552"
+         sodipodi:rx="0.60747552"
+         sodipodi:cy="2.6669695"
+         sodipodi:cx="31.278538"
+         id="path4637-0-9"
+         style="fill:url(#radialGradient6866-6);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,255.41819)" />
+      <path
+         d="m 28.487327,2.5756497 c 0,0.74994 -0.607947,1.3578865 -1.357887,1.3578865 -0.74994,0 -1.357886,-0.6079465 -1.357886,-1.3578865 0,-0.7499399 0.607946,-1.3578864 1.357886,-1.3578864 0.74994,0 1.357887,0.6079465 1.357887,1.3578864 z"
+         sodipodi:ry="1.3578864"
+         sodipodi:rx="1.3578864"
+         sodipodi:cy="2.5756497"
+         sodipodi:cx="27.12944"
+         id="path4639-2-3"
+         style="fill:url(#radialGradient6868-4);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,255.41819)" />
+    </g>
+    <g
+       style="display:inline"
+       transform="translate(0,64)"
+       id="g5882-8-7">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0-1"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6-0"
+         style="fill:url(#radialGradient6870-5);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,253.41819)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5-4-2"
+         style="fill:url(#radialGradient6872-8);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,253.41819)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-6-0-1"
+         style="fill:url(#radialGradient6874-7);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.852525,243.00666)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-7-0-6"
+         style="fill:url(#radialGradient6876-0);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,253.41819)" />
+      <path
+         d="m 31.925718,6.190063 c 0,1.1585331 -0.939176,2.0977097 -2.097709,2.0977097 -1.158533,0 -2.09771,-0.9391766 -2.09771,-2.0977097 0,-1.1585331 0.939177,-2.0977097 2.09771,-2.0977097 1.158533,0 2.097709,0.9391766 2.097709,2.0977097 z"
+         sodipodi:ry="2.0977097"
+         sodipodi:rx="2.0977097"
+         sodipodi:cy="6.190063"
+         sodipodi:cx="29.828009"
+         id="path4635-9-9-9"
+         style="fill:url(#radialGradient6878-6);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.2044164,0,0,1.1457413,-7.1481763,252.82177)" />
+    </g>
+    <g
+       style="display:inline"
+       transform="translate(0,96.000002)"
+       id="g5882-8-7-3">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0-1-8"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6-0-7"
+         style="fill:url(#radialGradient6880-5);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,251.41819)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5-4-2-5"
+         style="fill:url(#radialGradient6882-3);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,251.41819)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-6-0-1-1"
+         style="fill:url(#radialGradient6884-3);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.852525,241.00666)" />
+      <path
+         d="m 31.938951,10.210701 c 0,0.336961 -0.273161,0.610122 -0.610122,0.610122 -0.336962,0 -0.610123,-0.273161 -0.610123,-0.610122 0,-0.3369614 0.273161,-0.6101225 0.610123,-0.6101225 0.336961,0 0.610122,0.2731611 0.610122,0.6101225 z"
+         sodipodi:ry="0.6101225"
+         sodipodi:rx="0.6101225"
+         sodipodi:cy="10.210701"
+         sodipodi:cx="31.328829"
+         id="path4633-7-0-6-9"
+         style="fill:url(#radialGradient6886-0);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,251.41819)" />
+    </g>
+    <g
+       style="display:inline"
+       transform="translate(0,128)"
+       id="g5882-8-7-3-3">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0-1-8-2"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6-0-7-1"
+         style="fill:url(#radialGradient6888-0);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,249.41819)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5-4-2-5-2"
+         style="fill:url(#radialGradient6890-5);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,249.41819)" />
+      <path
+         d="m 31.001931,12.476492 c 0,0.668806 -0.542174,1.210981 -1.21098,1.210981 -0.668806,0 -1.210981,-0.542175 -1.210981,-1.210981 0,-0.668806 0.542175,-1.210981 1.210981,-1.210981 0.668806,0 1.21098,0.542175 1.21098,1.210981 z"
+         sodipodi:ry="1.2109807"
+         sodipodi:rx="1.2109807"
+         sodipodi:cy="12.476492"
+         sodipodi:cx="29.790951"
+         id="path4631-6-0-1-1-0"
+         style="fill:url(#radialGradient6892-6);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="matrix(1.9016393,0,0,1.9016393,-28.852525,239.00666)" />
+    </g>
+    <g
+       style="display:inline"
+       transform="translate(0,160)"
+       id="g5882-8-7-3-3-0">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0-1-8-2-8"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6-0-7-1-6"
+         style="fill:url(#radialGradient6894-0);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,247.41819)" />
+      <path
+         d="m 32.028948,14.658904 c 0,0.374239 -0.303381,0.67762 -0.67762,0.67762 -0.374239,0 -0.67762,-0.303381 -0.67762,-0.67762 0,-0.374239 0.303381,-0.67762 0.67762,-0.67762 0.374239,0 0.67762,0.303381 0.67762,0.67762 z"
+         sodipodi:ry="0.67761976"
+         sodipodi:rx="0.67761976"
+         sodipodi:cy="14.658904"
+         sodipodi:cx="31.351328"
+         id="path4629-5-4-2-5-2-9"
+         style="fill:url(#radialGradient6896-5);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,247.41819)" />
+    </g>
+    <g
+       style="display:inline"
+       transform="translate(0,192)"
+       id="g5882-8-7-3-3-0-6">
+      <rect
+         ry="0.03128048"
+         rx="0.093000002"
+         y="255.92433"
+         x="0.020246962"
+         height="31.988264"
+         width="32.020664"
+         id="rect4767-11-0-1-8-2-8-3"
+         style="opacity:0.43835617;fill:none;stroke:none" />
+      <path
+         d="m 30.673212,16.377769 c 0,0.362545 -0.298641,0.656445 -0.667032,0.656445 -0.368392,0 -0.667032,-0.2939 -0.667032,-0.656445 0,-0.362544 0.29864,-0.656444 0.667032,-0.656444 0.368391,0 0.667032,0.2939 0.667032,0.656444 z"
+         sodipodi:ry="0.65644413"
+         sodipodi:rx="0.66703194"
+         sodipodi:cy="16.377769"
+         sodipodi:cx="30.00618"
+         id="path4627-4-6-0-7-1-6-0"
+         style="fill:url(#radialGradient6898-8);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
+         sodipodi:type="arc"
+         transform="translate(-0.62203628,245.41819)" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/zoo_frog.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,1863 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="zoo_frog.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="zoo_frog.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title21668">frog</title>
+  <defs
+     id="defs4">
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="10.202975"
+     inkscape:cx="21.962148"
+     inkscape:cy="1009.3261"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer4"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>frog</dc:title>
+        <dc:date />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat frog</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="frame"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#202020;fill-opacity:1;stroke:none"
+       id="rect20004"
+       width="32"
+       height="32"
+       x="-2.6098915e-15"
+       y="0"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:label="template"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="47.098183"
+       id="text4913"><tspan
+         sodipodi:role="line"
+         id="tspan4915"
+         x="-15"
+         y="47.098183"
+         style="font-size:8px;line-height:1.25">01-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="79.098183"
+       id="text4917"><tspan
+         sodipodi:role="line"
+         id="tspan4919"
+         x="-15"
+         y="79.098183"
+         style="font-size:8px;line-height:1.25">02-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="111.09818"
+       id="text4921"><tspan
+         sodipodi:role="line"
+         id="tspan4923"
+         x="-15"
+         y="111.09818"
+         style="font-size:8px;line-height:1.25">03v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="143.09818"
+       id="text4925"><tspan
+         sodipodi:role="line"
+         id="tspan4927"
+         x="-15"
+         y="143.09818"
+         style="font-size:8px;line-height:1.25">04-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="175.09818"
+       id="text4929"><tspan
+         sodipodi:role="line"
+         id="tspan4931"
+         x="-15"
+         y="175.09818"
+         style="font-size:8px;line-height:1.25">05-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="207.09818"
+       id="text4933"><tspan
+         sodipodi:role="line"
+         id="tspan4935"
+         x="-15"
+         y="207.09818"
+         style="font-size:8px;line-height:1.25">06-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="239.09818"
+       id="text4937"><tspan
+         sodipodi:role="line"
+         id="tspan4939"
+         x="-15"
+         y="239.09818"
+         style="font-size:8px;line-height:1.25">07-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="271.09821"
+       id="text4941"><tspan
+         sodipodi:role="line"
+         id="tspan4943"
+         x="-15"
+         y="271.09821"
+         style="font-size:8px;line-height:1.25">08v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="303.09821"
+       id="text4945"><tspan
+         sodipodi:role="line"
+         id="tspan4947"
+         x="-15"
+         y="303.09821"
+         style="font-size:8px;line-height:1.25">09-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="335.09821"
+       id="text4949"><tspan
+         sodipodi:role="line"
+         id="tspan4951"
+         x="-15"
+         y="335.09821"
+         style="font-size:8px;line-height:1.25">10-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="367.09821"
+       id="text4953"><tspan
+         sodipodi:role="line"
+         id="tspan4955"
+         x="-15"
+         y="367.09821"
+         style="font-size:8px;line-height:1.25">11-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="399.1622"
+       id="text4957"><tspan
+         sodipodi:role="line"
+         id="tspan4959"
+         x="-15"
+         y="399.1622"
+         style="font-size:8px;line-height:1.25">12-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="431.09821"
+       id="text4961"><tspan
+         sodipodi:role="line"
+         id="tspan4963"
+         x="-15"
+         y="431.09821"
+         style="font-size:8px;line-height:1.25">13v</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="463.1022"
+       id="text4965"><tspan
+         sodipodi:role="line"
+         id="tspan4967"
+         x="-15"
+         y="463.1022"
+         style="font-size:8px;line-height:1.25">14-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="495.09821"
+       id="text4969"><tspan
+         sodipodi:role="line"
+         id="tspan4971"
+         x="-15"
+         y="495.09821"
+         style="font-size:8px;line-height:1.25">15-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="527.09821"
+       id="text4973"><tspan
+         sodipodi:role="line"
+         id="tspan4975"
+         x="-15"
+         y="527.09821"
+         style="font-size:8px;line-height:1.25">16-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="559.09821"
+       id="text4977"><tspan
+         sodipodi:role="line"
+         id="tspan4979"
+         x="-15"
+         y="559.09821"
+         style="font-size:8px;line-height:1.25">17^</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="591.09821"
+       id="text4981"><tspan
+         sodipodi:role="line"
+         id="tspan4983"
+         x="-15"
+         y="591.09821"
+         style="font-size:8px;line-height:1.25">18-</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Old Standard';-inkscape-font-specification:'Old Standard';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+       x="-15"
+       y="623.09821"
+       id="text4985"><tspan
+         sodipodi:role="line"
+         id="tspan4987"
+         x="-15"
+         y="623.09821"
+         style="font-size:8px;line-height:1.25">19x</tspan></text>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline">
+    <g
+       id="g7158"
+       inkscape:tile-cx="38.028526"
+       inkscape:tile-cy="22.58975"
+       inkscape:tile-w="62.356086"
+       inkscape:tile-h="21.609484"
+       inkscape:tile-x0="6.8504505"
+       inkscape:tile-y0="11.725234"
+       transform="translate(0,0.1582166)"
+       style="opacity:1">
+      <use
+         x="0"
+         y="0"
+         xlink:href="#g4688"
+         id="use7402"
+         transform="matrix(0.76347731,0,0,0.76347731,20.366951,-0.95815604)"
+         width="32"
+         height="1024" />
+      <path
+         sodipodi:nodetypes="szzcsscs"
+         inkscape:connector-curvature="0"
+         id="path3909"
+         d="m 29.206537,22.667878 c 0.08632,2.944302 -1.81425,6.611458 -3.124246,6.686289 -1.309996,0.07483 -5.564185,1.992321 -8.788132,-1.468671 -3.223946,-3.460993 -8.7729773,1.776303 -9.421302,-5.217618 0,-2.945566 1.1939267,-5.612276 3.124245,-7.542594 0.965159,-0.965159 2.114416,-1.746221 3.390579,-2.285992 1.276163,-0.539771 2.875253,-0.152179 4.348036,-0.152179 5.891133,0 10.372809,6.637908 10.47082,9.980765 z"
+         style="fill:#21b80b;fill-opacity:1;fill-rule:nonzero;stroke:#216c00;stroke-width:1.01400006;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+      <g
+         transform="translate(-4.324331,-0.90657512)"
+         id="g4688">
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#216c00;stroke-width:1.01400006;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path4684"
+           sodipodi:cx="13.467363"
+           sodipodi:cy="20.564636"
+           sodipodi:rx="4.2815318"
+           sodipodi:ry="4.2815318"
+           d="m 17.748895,20.564636 c 0,2.364625 -1.916907,4.281532 -4.281532,4.281532 -2.364624,0 -4.2815315,-1.916907 -4.2815315,-4.281532 0,-2.364624 1.9169075,-4.281532 4.2815315,-4.281532 2.364625,0 4.281532,1.916908 4.281532,4.281532 z" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path4686"
+           sodipodi:cx="14.245824"
+           sodipodi:cy="21.343096"
+           sodipodi:rx="1.1676905"
+           sodipodi:ry="1.1676905"
+           d="m 15.413514,21.343096 c 0,0.644897 -0.522792,1.16769 -1.16769,1.16769 -0.644898,0 -1.167691,-0.522793 -1.167691,-1.16769 0,-0.644898 0.522793,-1.167691 1.167691,-1.167691 0.644898,0 1.16769,0.522793 1.16769,1.167691 z"
+           transform="matrix(1.6,0,0,1.6,-7.6707114,-13.81358)"
+           inkscape:transform-center-x="-2.7071817"
+           inkscape:transform-center-y="-0.71823188" />
+      </g>
+      <path
+         sodipodi:nodetypes="cc"
+         inkscape:connector-curvature="0"
+         id="path7150"
+         d="m 15.024284,12.546494 c 8.407372,0.389226 14.167979,12.066135 11.599059,16.114129"
+         style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.51141555000000005" />
+      <path
+         transform="matrix(0.81598429,-0.57807408,0.57807408,0.81598429,-9.5645841,17.10614)"
+         d="m 25.625662,24.169874 a 0.82556903,1.6181153 0 1 1 -1.651138,0 0.82556903,1.6181153 0 1 1 1.651138,0 z"
+         sodipodi:ry="1.6181153"
+         sodipodi:rx="0.82556903"
+         sodipodi:cy="24.169874"
+         sodipodi:cx="24.800093"
+         id="path7152"
+         style="fill:#000000;fill-opacity:0.81278539;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <use
+         height="1024"
+         width="32"
+         transform="matrix(0.77018866,0.43755448,-0.43755448,0.77018866,18.179799,-7.0829503)"
+         id="use7156"
+         xlink:href="#path7152"
+         y="0"
+         x="0" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,32)"
+       id="use7366"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,65)"
+       id="use7368"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,96)"
+       id="use7370"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,128)"
+       id="use7372"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,160)"
+       id="use7374"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,192)"
+       id="use7376"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,225)"
+       id="use7378"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,256)"
+       id="use7380"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,288)"
+       id="use7382"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,320)"
+       id="use7384"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,352)"
+       id="use7386"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,385)"
+       id="use7388"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,416)"
+       id="use7390"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,448)"
+       id="use7392"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,480)"
+       id="use7394"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,511)"
+       id="use7396"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,544)"
+       id="use7398"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g7158"
+       xlink:href="#g7158"
+       transform="translate(0,576)"
+       id="use7400"
+       width="32"
+       height="1024" />
+    <g
+       id="g7437"
+       transform="translate(-0.999333,0.2664888)"
+       style="opacity:1">
+      <g
+         style="display:inline"
+         transform="matrix(0.76347731,0,0,0.76347731,18.062039,574.27312)"
+         id="use7402-9">
+        <path
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#216c00;stroke-width:1.01400006000000009;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
+           d="m 16.494863,17.537136 c 1.672043,1.672042 1.672042,4.382957 0,6.055 -2.086533,2.086534 -3.153225,0.02806 -4.484292,-1.7016 -1.287437,-1.380617 -4.2026269,-1.939635 -1.570708,-4.3534 1.742706,-1.598257 4.382959,-1.672042 6.055,0 z"
+           id="path7445"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sscss" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path7447"
+           sodipodi:cx="14.245824"
+           sodipodi:cy="21.343096"
+           sodipodi:rx="1.1676905"
+           sodipodi:ry="1.1676905"
+           d="m 15.413514,21.343096 a 1.1676905,1.1676905 0 1 1 -2.335381,0 1.1676905,1.1676905 0 1 1 2.335381,0 z"
+           transform="matrix(2.7402593,-1.5789994,0.39941362,0.69315854,-32.729826,28.341549)"
+           inkscape:transform-center-x="-4.457193"
+           inkscape:transform-center-y="-2.9828052" />
+      </g>
+      <g
+         id="g4688-3"
+         transform="translate(-3.3277142,574.89606)"
+         style="display:inline">
+        <path
+           d="m 17.748895,20.564636 c 0,2.364625 -1.916907,4.281532 -4.281532,4.281532 -2.364624,0 -4.2815315,-1.916907 -4.2815315,-4.281532 0,-2.364624 1.9169075,-4.281532 4.2815315,-4.281532 2.364625,0 4.281532,1.916908 4.281532,4.281532 z"
+           sodipodi:ry="4.2815318"
+           sodipodi:rx="4.2815318"
+           sodipodi:cy="20.564636"
+           sodipodi:cx="13.467363"
+           id="path4684-7"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#216c00;stroke-width:1.01400006000000009;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           sodipodi:type="arc" />
+        <path
+           inkscape:transform-center-y="-0.42213107"
+           inkscape:transform-center-x="-5.4098143"
+           transform="matrix(3.1997831,-0.03725733,0.00931433,0.79994577,-31.507138,4.1078246)"
+           d="m 15.413514,21.343096 a 1.1676905,1.1676905 0 1 1 -2.335381,0 1.1676905,1.1676905 0 1 1 2.335381,0 z"
+           sodipodi:ry="1.1676905"
+           sodipodi:rx="1.1676905"
+           sodipodi:cy="21.343096"
+           sodipodi:cx="14.245824"
+           id="path4686-9"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           sodipodi:type="arc" />
+      </g>
+    </g>
+    <path
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;display:inline;stroke-opacity:1"
+       d="m 17.053852,60.211993 c 0.230013,0.963975 -1.897127,-1.372149 -3.724405,-1.078117 -2.191136,0.352581 -2.331944,2.45e-4 -2.646288,-0.882096 -0.496512,-1.393678 0.426966,-1.372149 2.646288,-1.372149 2.219321,0 3.398651,1.967144 3.724405,3.332362 z"
+       id="path7450"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="sssss" />
+    <path
+       sodipodi:nodetypes="sssss"
+       inkscape:connector-curvature="0"
+       id="path7471"
+       d="m 18.269767,94.506021 c -0.685333,0.715872 -0.917021,-1.666181 -2.842309,-2.058223 -2.174694,-0.442828 -2.429955,-0.293787 -2.744299,-1.176128 -0.496512,-1.393678 0.720998,-1.764192 2.94032,-1.764192 2.219321,0 3.20263,4.41741 2.646288,4.998543 z"
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;stroke-opacity:1;display:inline" />
+    <path
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;display:inline;stroke-opacity:1"
+       d="m 20.367778,125.91796 c 0.230013,0.96398 -1.505085,0.29403 -3.038331,-0.8821 -1.760915,-1.35076 -2.233933,-1.3719 -2.548277,-2.25424 -0.496512,-1.39368 0.622987,-2.94032 2.842309,-2.94032 2.219321,0 2.418545,4.71144 2.744299,6.07666 z"
+       id="path7473"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="sssss" />
+    <path
+       sodipodi:nodetypes="sssss"
+       inkscape:connector-curvature="0"
+       id="path7475"
+       d="m 22.073746,157.72194 c 0.230013,0.96398 -1.407074,1.47016 -2.94032,0.29403 -1.760915,-1.35076 -2.037912,-1.17588 -2.352256,-2.05822 -0.496512,-1.39368 -0.45513,-5.29258 1.764192,-5.29258 2.219321,0 3.20263,5.69155 3.528384,7.05677 z"
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;display:inline;stroke-opacity:1" />
+    <path
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;display:inline;stroke-opacity:1"
+       d="m 24.073746,189.72194 c 0.230013,0.96398 -1.211053,1.07812 -2.646288,0.9801 -2.214162,-0.1512 -2.233933,2.5e-4 -2.548277,-0.88209 -0.496512,-1.39368 -2.121311,-7.3508 0.09801,-7.3508 2.219321,0 4.7708,5.88757 5.096554,7.25279 z"
+       id="path7477"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="sssss" />
+    <path
+       sodipodi:nodetypes="sssss"
+       inkscape:connector-curvature="0"
+       id="path7479"
+       d="m 25.583693,221.13388 c 0.230013,0.96398 -0.622989,1.27414 -2.058224,1.47015 -2.198907,0.30031 -2.331944,0.19627 -2.646288,-0.68607 -0.496512,-1.39368 -2.415343,-5.39059 -0.196022,-5.39059 2.219321,0 4.574779,3.24129 4.900534,4.60651 z"
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;display:inline;stroke-opacity:1" />
+    <path
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;display:inline;stroke-opacity:1"
+       d="m 26.897619,253.91796 c 0.230013,0.96398 -0.230947,0.78409 -1.37215,1.27413 -2.039258,0.87567 -2.331944,0.39229 -2.646288,-0.49005 -0.496512,-1.39368 -1.239215,-4.21446 0.980106,-4.21446 2.219321,0 2.712577,2.06516 3.038332,3.43038 z"
+       id="path7481"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="sssss" />
+    <path
+       sodipodi:nodetypes="sssss"
+       inkscape:connector-curvature="0"
+       id="path7483"
+       d="m 28.505576,282.93785 c 0.426035,0.96398 -0.190709,1.59065 -0.980107,2.25424 -1.039061,0.87347 -2.135923,1.27439 -2.450267,0.39205 -0.496512,-1.39368 -1.337225,-3.92043 0.882096,-3.92043 2.219321,0 1.980916,-0.01 2.548278,1.27414 z"
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;display:inline;stroke-opacity:1" />
+    <path
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;display:inline;stroke-opacity:1"
+       d="m 29.133427,313.07565 c 0.426035,0.96398 -0.190709,1.98269 -0.784086,3.03832 -0.665137,1.1833 -0.959795,1.47041 -1.274139,0.58807 -0.496512,-1.39368 -0.813618,-2.29953 0.09801,-3.52838 0.934762,-1.26003 1.392852,-1.38215 1.960214,-0.098 z"
+       id="path7485"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="sssss" />
+    <path
+       sodipodi:nodetypes="sssss"
+       inkscape:connector-curvature="0"
+       id="path7487"
+       d="m 29.62348,342.87963 c -0.01474,1.05383 0.299344,1.98269 -0.294033,3.03832 -0.665137,1.1833 -1.057805,2.25449 -1.372149,1.37215 -0.496512,-1.39368 -0.519586,-2.1035 0.392042,-3.33235 0.934762,-1.26003 1.294841,-2.55828 1.27414,-1.07812 z"
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;display:inline;stroke-opacity:1" />
+    <path
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;display:inline;stroke-opacity:1"
+       d="m 29.035416,372.68361 c 0.318565,1.00463 0.593376,1.10059 0.784084,2.54827 0.177288,1.34579 -0.27372,3.3326 -0.588064,2.45026 -0.496512,-1.39368 -0.421575,-0.63334 -0.392043,-2.84229 0.02097,-1.56877 -0.273329,-3.6364 0.196023,-2.15624 z"
+       id="path7489"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="sssss" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer10"
+     inkscape:label="eye"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <g
+       id="g6458">
+      <g
+         inkscape:tile-y0="15"
+         inkscape:tile-x0="16"
+         inkscape:tile-h="8.0000005"
+         inkscape:tile-w="9.9999997"
+         inkscape:tile-cy="19"
+         inkscape:tile-cx="21"
+         id="g4669"
+         style="display:inline">
+        <use
+           x="0"
+           y="0"
+           xlink:href="#path3893"
+           id="use4663"
+           transform="matrix(0.85714284,0,0,0.85714284,6.2857143,1.2857142)"
+           width="32"
+           height="1024" />
+        <path
+           sodipodi:type="arc"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path3893"
+           sodipodi:cx="20.285126"
+           sodipodi:cy="19.643196"
+           sodipodi:rx="2.8726213"
+           sodipodi:ry="2.8726213"
+           d="m 23.157747,19.643196 a 2.8726213,2.8726213 0 1 1 -5.745243,0 2.8726213,2.8726213 0 1 1 5.745243,0 z"
+           transform="matrix(1.2183994,0,0,1.2183994,-5.2153846,-4.4332579)" />
+        <path
+           transform="matrix(0.52217116,0,0,0.52217116,9.9076924,9.2428895)"
+           d="m 23.157747,19.643196 a 2.8726213,2.8726213 0 1 1 -5.745243,0 2.8726213,2.8726213 0 1 1 5.745243,0 z"
+           sodipodi:ry="2.8726213"
+           sodipodi:rx="2.8726213"
+           sodipodi:cy="19.643196"
+           sodipodi:cx="20.285126"
+           id="path4665"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           sodipodi:type="arc" />
+        <use
+           x="0"
+           y="0"
+           xlink:href="#path4665"
+           id="use4667"
+           transform="matrix(0.83333334,0,0,0.83333334,6.9166665,1.7499999)"
+           width="32"
+           height="1024" />
+      </g>
+    </g>
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,32.000002)"
+       id="use6422" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,64.999999)"
+       id="use6424"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,96.000007)"
+       id="use6426" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,128.00001)"
+       id="use6428" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,160.00001)"
+       id="use6430" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,192.00001)"
+       id="use6432" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,225)"
+       id="use6434"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,256.00002)"
+       id="use6436" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,288.00002)"
+       id="use6438" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,320.00002)"
+       id="use6440" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,352.00002)"
+       id="use6442" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,385)"
+       id="use6444"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,416.00003)"
+       id="use6446" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,448.00003)"
+       id="use6448" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,480.00003)"
+       id="use6450" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,511)"
+       id="use6452"
+       width="32"
+       height="1024" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,544.00004)"
+       id="use6454" />
+    <use
+       height="1052.3622"
+       width="744.09448"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4669"
+       xlink:href="#g4669"
+       transform="translate(-3.555964e-7,576.00004)"
+       id="use6456" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="frame-0.5"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       id="rect20004-7"
+       width="31"
+       height="31"
+       x="0.5"
+       y="0.5"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,32)"
+       id="use20175-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,64)"
+       id="use20177-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,96)"
+       id="use20179-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,128)"
+       id="use20181-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,160)"
+       id="use20183-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,192)"
+       id="use20185-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,224)"
+       id="use20187-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,256)"
+       id="use20189-6"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,288)"
+       id="use20191-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,320)"
+       id="use20193-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,352)"
+       id="use20195-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,384)"
+       id="use20197-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,416)"
+       id="use20199-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,448)"
+       id="use20201-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,480)"
+       id="use20203-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,512)"
+       id="use20205-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,544)"
+       id="use20207-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,576)"
+       id="use20209-7"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1"
+       id="path3296"
+       sodipodi:cx="13.082203"
+       sodipodi:cy="31.332769"
+       sodipodi:rx="3.5490334"
+       sodipodi:ry="2.8754942"
+       d="m 16.631236,31.332769 a 3.5490334,2.8754942 0 1 1 -7.0980665,0 3.5490334,2.8754942 0 1 1 7.0980665,0 z"
+       transform="matrix(0.98618401,0,0,0.86941576,-0.40145933,3.2587965)"
+       inkscape:tile-cx="12.253232"
+       inkscape:tile-cy="30.529706"
+       inkscape:tile-w="8.5487669"
+       inkscape:tile-h="7.0462566"
+       inkscape:tile-x0="7.9788488"
+       inkscape:tile-y0="27.006578" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       id="use3526"
+       transform="translate(0,33)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,66)"
+       id="use3528"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,97)"
+       id="use3530"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,128)"
+       id="use3532"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,160)"
+       id="use3534"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,193)"
+       id="use3536"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,226)"
+       id="use3538"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,257)"
+       id="use3540"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,288)"
+       id="use3542"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,320)"
+       id="use3544"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,353)"
+       id="use3546"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,386)"
+       id="use3548"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,417)"
+       id="use3550"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,448)"
+       id="use3552"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,480)"
+       id="use3554"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,510)"
+       id="use3556"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,543)"
+       id="use3558"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,576)"
+       id="use3560"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="frame and hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,0 0,32 9.6875,0 C 9.2558025,31.584271 9,31.057361 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.557361 -0.255803,1.084271 -0.6875,1.5 L 32,32 32,0 0,0 z"
+       id="rect13136"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,32 0,32 9.0625,0 C 9.0158769,63.837256 9,63.672589 9,63.5 9,62.119288 10.567003,61 12.5,61 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.172589 -0.01588,0.337256 -0.0625,0.5 L 32,64 32,32 0,32 z"
+       id="use13138"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,64 0,32 10.0625,0 c 0.326362,-1.139208 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.860792 3.4375,2 L 32,96 32,64 0,64 z"
+       id="use13140"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,96 0,32 9.0625,0 C 9.0158769,127.83726 9,127.67259 9,127.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,128 32,96 0,96 z"
+       id="use13142"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,128 0,32 9.6875,0 C 9.2558025,159.58427 9,159.05736 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,160 32,128 0,128 z"
+       id="use13144"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,160 0,32 9.6875,0 C 9.2558025,191.58427 9,191.05736 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,192 32,160 0,160 z"
+       id="use13146"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,192 0,32 9.0625,0 C 9.0158769,223.83726 9,223.67259 9,223.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,224 32,192 0,192 z"
+       id="use13148"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,224 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,256 32,224 0,224 z"
+       id="use13150"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,256 0,32 9.0625,0 C 9.0158769,287.83726 9,287.67259 9,287.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,288 32,256 0,256 z"
+       id="use13152"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,288 0,32 9.6875,0 C 9.2558025,319.58427 9,319.05736 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,320 32,288 0,288 z"
+       id="use13154"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,320 0,32 9.6875,0 C 9.2558025,351.58427 9,351.05736 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,352 32,320 0,320 z"
+       id="use13156"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,352 0,32 9.0625,0 C 9.0158769,383.83726 9,383.67259 9,383.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,384 32,352 0,352 z"
+       id="use13158"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,384 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,416 32,384 0,384 z"
+       id="use13160"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,416 0,32 9.0625,0 C 9.0158769,447.83726 9,447.67259 9,447.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,448 32,416 0,416 z"
+       id="use13162"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,448 0,32 9.6875,0 C 9.2558025,479.58427 9,479.05736 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,480 32,448 0,448 z"
+       id="use13164"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,480 0,32 9.6875,0 C 9.2558025,511.58427 9,511.05736 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,512 32,480 0,480 z"
+       id="use13166"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,512 0,32 32,0 0,-32 -32,0 z m 12.5,26 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use13168"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,544 0,32 12.5,0 c -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 l 19.5,0 0,-32 -32,0 z"
+       id="use13170"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,576 0,32 9.6875,0 C 9.2558025,607.58427 9,607.05736 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,608 32,576 0,576 z"
+       id="use13172"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="frame-0.5 and hand"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="rect20004-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20175-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20177-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20179-3"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20181-9"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20183-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20185-4-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20187-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20189-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20191-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20193-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20195-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20197-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20199-0-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,448.5 0,31 8.8125,0 C 9.1215627,479.19131 9,478.85917 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20201-6"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,480.5 0,31 8.8125,0 C 9.1215627,511.19131 9,510.85917 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20203-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,512.5 0,31 31,0 0,-31 -31,0 z m 12,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use20205-1"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,544.5 0,31 9.90625,0 C 9.5507391,575.04422 9,574.32095 9,573.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+       id="use20207-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20209-1"
+       inkscape:connector-curvature="0" />
+  </g>
+</svg>
Binary file share/hedgewars/Data/Graphics/Hats/zoo_panda.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/zoo_snail.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,2321 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="zoo_snail.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="zoo_snail.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title55060">snail</title>
+  <defs
+     id="defs4">
+    <marker
+       inkscape:stockid="DotM"
+       orient="auto"
+       refY="0.0"
+       refX="0.0"
+       id="DotM"
+       style="overflow:visible">
+      <path
+         id="path4431"
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
+         transform="scale(0.4) translate(7.4, 1)" />
+    </marker>
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="42.442998"
+     inkscape:cy="991.3858"
+     inkscape:document-units="px"
+     inkscape:current-layer="g5807"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>snail</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat snail</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>this is definitely not &quot;Leucochloridium paradoxum&quot;</dc:description>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="template"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline">
+    <use
+       height="1024"
+       width="32"
+       id="use3727"
+       transform="translate(-40,576.08264)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <path
+       transform="matrix(1.0693048,0,0.01725252,0.42244275,-5.0008243,591.45805)"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline"
+       d="m 26.922608,22.292122 c -2.344508,-4.802885 -0.461449,-2.519099 -4.680113,-0.304396 -2.835758,-7.898757 -7.19277,-1.441215 -6.808002,-2.350908 0.384768,-0.909693 0.941535,-1.728923 1.629534,-2.416922 0.687999,-0.687999 1.507229,-1.244766 2.416922,-1.629534 0.909693,-0.384768 1.909849,-0.597536 2.9597,-0.597536 1.049851,0 2.050007,0.212768 2.9597,0.597536 0.909693,0.384768 1.728923,0.941535 2.416922,1.629534 0.687999,0.687999 1.244766,1.507229 1.629534,2.416922 0.384768,0.909693 -1.025914,1.909849 -2.524197,2.655304 z"
+       id="path3101-0"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccsssssssc" />
+    <path
+       sodipodi:nodetypes="cssssssszc"
+       inkscape:connector-curvature="0"
+       id="path5843-7"
+       d="M 6.647436,21.558167 C 7.786294,21.99098 6.81123,23.615768 6.113417,23.759932 4.222388,24.150608 4.7482,21.578044 4.838735,19.934091 5.000675,16.99345 6.545848,17.555987 7.631684,18.041948 9.878313,19.047415 8.490648,22.113262 8.843875,24.103722 9.27513,26.533878 6.838252,28.390264 5.135393,28.219289 3.200377,28.025004 0.538066,20.937953 2.070467,15.118417 3.926411,8.0701789 11.918229,2.6012846 18.772065,4.5165041 22.810569,5.6450139 28.914014,8.2917484 29.292636,15.14339 c 0.378622,6.851642 -0.18984,10.890515 -5.108662,6.092109"
+       style="fill:#ef4900;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+    <path
+       style="fill:#ef9800;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="M 6.647436,53.550955 C 7.786294,53.983768 6.81123,55.608556 6.113417,55.75272 4.222388,56.143396 4.7482,53.570832 4.838735,51.926879 5.000675,48.986238 6.545848,49.548775 7.631684,50.034736 9.878313,51.040203 8.490648,54.10605 8.843875,56.09651 9.27513,58.526666 6.838252,60.383052 5.135393,60.212077 3.200377,60.017792 0.538066,52.930741 2.070467,47.111205 3.926411,40.062967 11.918229,34.594073 18.772065,36.509292 c 4.038504,1.12851 10.141949,3.775245 10.520571,10.626886 0.378622,6.851642 -0.18984,10.890515 -5.108662,6.092109"
+       id="path6367"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#efe100;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="M 6.647436,86.575366 C 7.786294,87.008179 6.81123,88.632967 6.113417,88.777131 4.222388,89.167807 4.7482,86.595243 4.838735,84.95129 5.000675,82.010649 6.545848,82.573186 7.631684,83.059147 9.878313,84.064614 8.490648,87.130461 8.843875,89.120921 9.27513,91.551077 6.838252,93.407463 5.135393,93.236488 3.200377,93.042203 0.538066,85.955152 2.070467,80.135616 3.926411,73.087378 11.918229,67.618484 18.772065,69.533703 c 4.038504,1.12851 10.141949,3.775245 10.520571,10.626886 0.378622,6.851642 -0.18984,10.890515 -5.108662,6.092109"
+       id="path6363"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#aeef00;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,117.59978 c 1.138858,0.43281 0.163794,2.0576 -0.534019,2.20176 -1.891029,0.39068 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.3781 2.792949,-1.89214 2.246629,1.00547 0.858964,4.07131 1.212191,6.06177 0.431255,2.43016 -2.005623,4.28655 -3.708482,4.11557 -1.935016,-0.19428 -4.597327,-7.28134 -3.064926,-13.10087 1.855944,-7.04824 9.847762,-12.517134 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77524 10.520571,10.62688 0.378622,6.85164 -0.18984,10.89052 -5.108662,6.09211"
+       id="path6359"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#65ef00;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,149.56198 c 1.138858,0.43282 0.163794,2.05761 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89214 2.246629,1.00546 0.858964,4.07131 1.212191,6.06177 0.431255,2.43016 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6355"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#1cef00;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,181.5548 c 1.138858,0.43282 0.163794,2.05761 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89215 2.246629,1.00547 0.858964,4.07132 1.212191,6.06178 0.431255,2.43015 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6351"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#00ef2d;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,213.59451 c 1.138858,0.43282 0.163794,2.0576 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89215 2.246629,1.00547 0.858964,4.07132 1.212191,6.06178 0.431255,2.43015 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6347"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#00ef7c;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,246.61891 c 1.138858,0.43282 0.163794,2.0576 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89215 2.246629,1.00547 0.858964,4.07132 1.212191,6.06178 0.431255,2.43015 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6343"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#00efca;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,277.59642 c 1.138858,0.43282 0.163794,2.0576 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89215 2.246629,1.00547 0.858964,4.07132 1.212191,6.06178 0.431255,2.43015 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6339"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#00caef;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,309.58924 c 1.138858,0.43282 0.163794,2.05761 -0.534019,2.20177 -1.891029,0.39068 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89214 2.246629,1.00546 0.858964,4.07131 1.212191,6.06177 0.431255,2.43016 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6335"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#0081ef;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,341.59833 c 1.138858,0.43282 0.163794,2.0576 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89215 2.246629,1.00547 0.858964,4.07132 1.212191,6.06178 0.431255,2.43015 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6331"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#0033ef;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,373.59114 c 1.138858,0.43282 0.163794,2.05761 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89215 2.246629,1.00547 0.858964,4.07132 1.212191,6.06178 0.431255,2.43016 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6327"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#1600ef;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,406.56865 c 1.138858,0.43282 0.163794,2.05761 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89215 2.246629,1.00547 0.858964,4.07132 1.212191,6.06178 0.431255,2.43015 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6323"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#6500ef;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,437.59305 c 1.138858,0.43282 0.163794,2.05761 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89214 2.246629,1.00546 0.858964,4.07131 1.212191,6.06177 0.431255,2.43015 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6319"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#ae00ef;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,469.58587 c 1.138858,0.43282 0.163794,2.05761 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89215 2.246629,1.00547 0.858964,4.07132 1.212191,6.06178 0.431255,2.43016 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6315"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#ef00e7;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,501.59496 c 1.138858,0.43282 0.163794,2.05761 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89214 2.246629,1.00546 0.858964,4.07131 1.212191,6.06177 0.431255,2.43016 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6311"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#ef0098;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,532.57247 c 1.138858,0.43282 0.163794,2.05761 -0.534019,2.20177 -1.891029,0.39068 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89215 2.246629,1.00547 0.858964,4.07132 1.212191,6.06178 0.431255,2.43015 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6307"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#ef004f;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,565.62749 c 1.138858,0.43282 0.163794,2.0576 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89215 2.246629,1.00547 0.858964,4.07132 1.212191,6.06178 0.431255,2.43015 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6303"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <path
+       style="fill:#ef0006;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 6.647436,597.63658 c 1.138858,0.43282 0.163794,2.0576 -0.534019,2.20177 -1.891029,0.39067 -1.365217,-2.18189 -1.274682,-3.82584 0.16194,-2.94064 1.707113,-2.37811 2.792949,-1.89215 2.246629,1.00547 0.858964,4.07132 1.212191,6.06178 0.431255,2.43016 -2.005623,4.28654 -3.708482,4.11557 -1.935016,-0.19429 -4.597327,-7.28134 -3.064926,-13.10088 1.855944,-7.04823 9.847762,-12.51713 16.701598,-10.60191 4.038504,1.12851 10.141949,3.77525 10.520571,10.62689 0.378622,6.85164 -0.18984,10.89051 -5.108662,6.09211"
+       id="path6299"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssszc" />
+    <g
+       inkscape:tile-y0="4.1302173"
+       inkscape:tile-x0="81.614396"
+       inkscape:tile-h="24.100014"
+       inkscape:tile-w="27.77337"
+       inkscape:tile-cy="16.180225"
+       inkscape:tile-cx="95.501081"
+       id="g5841"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90"
+       transform="translate(40,0)">
+      <path
+         style="fill:#efab00;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 6.6474364,21.558184 c 1.138858,0.432813 0.1637935,2.057601 -0.5340191,2.201765 -1.8910292,0.390676 -1.365217,-2.181888 -1.2746826,-3.825841 0.1619404,-2.940641 1.7071134,-2.378104 2.7929493,-1.892143 2.2466291,1.005467 0.8589643,4.071314 1.2121907,6.061774 C 9.27513,26.533895 6.8382516,28.390281 5.1353928,28.219306 3.2003771,28.025021 0.53806576,20.93797 2.0704674,15.118434 3.9264113,8.0701962 11.918229,2.6013019 18.772065,4.5165214 c 4.038504,1.1285098 10.141949,3.7752443 10.520571,10.6268856 0.378622,6.851642 -0.18984,10.890515 -5.108662,6.092109"
+         id="path5843"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cssssssszc" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,31.992788)"
+       id="use5885"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,65.017199)"
+       id="use5887"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,96.041611)"
+       id="use5889"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,128.00382)"
+       id="use5891"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,159.99664)"
+       id="use5893"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,192.03635)"
+       id="use5895"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,225.06075)"
+       id="use5897"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,256.03826)"
+       id="use5899"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,288.03108)"
+       id="use5901"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,320.04017)"
+       id="use5903"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,352.03298)"
+       id="use5905"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,385.01049)"
+       id="use5907"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,416.03489)"
+       id="use5909"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,448.02771)"
+       id="use5911"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,480.0368)"
+       id="use5913"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,511.01431)"
+       id="use5915"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,544.06933)"
+       id="use5917"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5841"
+       xlink:href="#g5841"
+       transform="translate(0,576.07842)"
+       id="use5919"
+       width="32"
+       height="1024"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <g
+       id="g4223"
+       inkscape:tile-cx="15.501081"
+       inkscape:tile-cy="16.757708"
+       inkscape:tile-w="27.77337"
+       inkscape:tile-h="25.186969"
+       inkscape:tile-x0="1.6143962"
+       inkscape:tile-y0="4.1302173">
+      <path
+         style="fill:#bf0d0d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="M 5.881007,17.242227 C 2.557308,8.9710715 22.082257,10.592366 7.5010859,7.72871 16.260824,1.1060888 24.370314,6.6127454 26.971393,9.8942221 26.795403,25.937459 7.2985558,7.8359412 8.5081673,18.087201 7.5458543,17.442733 6.645593,17.106179 5.881007,17.242227 z"
+         id="path4181"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path4187"
+         d="M 4.3847435,23.112187 C 3.5147213,25.637378 3.2849449,20.949503 2.6798385,23.515443 2.1282571,21.190018 1.9209654,19.760337 2.1373346,16.932947 c 2.6686773,-3.359999 0.024072,3.861284 2.2705968,2.848892 -0.1122191,1.803251 -0.2527428,2.009984 -0.023188,3.330348 z"
+         style="fill:#bf0d0d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         style="fill:#bf0d0d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 7.1376015,23.534616 c -0.4609777,1.540455 -0.3223579,1.84288 0.291733,3.330299 -0.9286891,0.894708 -2.3529409,1.170546 -2.6519804,0.717433 -1.9736507,-3.782029 1.7446017,-0.50371 0.8962411,-3.344898 0.5064173,-0.05171 0.7030685,0.139829 1.4640063,-0.702834 z"
+         id="path4189"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path4191"
+         d="m 6.0594793,18.108305 c 0.3960673,1.165317 0.013676,1.989724 0.7684429,3.055114 -0.3087754,0.658119 -0.1662315,0.345413 -0.3624489,0.772938 -1.0826988,-0.452683 -0.4782589,-0.786341 -1.2328351,-1.09535 0.060795,-1.914503 0.2876533,-2.651848 0.8268411,-2.732702 z"
+         style="fill:#bf0d0d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         sodipodi:nodetypes="ccczsc"
+         inkscape:connector-curvature="0"
+         id="rect4193"
+         d="m 9.009339,11.547116 c 7.184509,0.176251 7.873708,8.706504 7.873708,8.706504 l -7.3685067,2.954071 c 0,0 1.1101657,-5.594782 -1.8536186,-5.674469 C 4.6971377,17.453532 9.9784171,27.73225 5.6167716,27.518211 1.6607415,27.324077 0.89510626,12.260166 9.009339,11.547116 z"
+         style="fill:#000000;fill-opacity:0.39449541;fill-rule:nonzero;stroke:none" />
+      <path
+         sodipodi:nodetypes="sssss"
+         inkscape:connector-curvature="0"
+         id="path4196"
+         d="m 26.811948,10.811409 c 2.079327,2.922652 1.838745,7.033034 0.446001,8.023905 -1.392745,0.990871 -2.472405,-2.028805 -4.551732,-4.951458 -2.079328,-2.922653 -4.370924,-4.6415341 -2.97818,-5.6324051 1.392745,-0.9908711 5.004582,-0.3626959 7.083911,2.5599581 z"
+         style="fill:#ffffff;fill-opacity:0.70642204;fill-rule:nonzero;stroke:none" />
+      <path
+         style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#DotM)"
+         d="m 24.669496,21.308891 0.464209,-6.830506"
+         id="path4357"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cc" />
+      <path
+         sodipodi:open="true"
+         sodipodi:end="7.0227658"
+         sodipodi:start="2.4855494"
+         transform="matrix(0.88462904,0,0,1.5862254,2.0914306,-14.29857)"
+         d="m 11.187543,26.441697 c -3.5174536,-1.216705 -2.6646811,-2.962303 1.90472,-3.898903 4.569402,-0.9366 11.125093,-0.70953 14.642546,0.507174 3.089255,1.068589 2.853065,2.573411 -0.560274,3.569637"
+         sodipodi:ry="2.7801681"
+         sodipodi:rx="10.441075"
+         sodipodi:cy="24.745832"
+         sodipodi:cx="19.461176"
+         id="path4174"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         sodipodi:type="arc" />
+      <path
+         style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#DotM)"
+         d="M 18.458001,20.778269 17.529582,14.411973"
+         id="path4359"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cc" />
+      <path
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="M 6.6474364,21.558167 C 7.7862944,21.99098 6.8112299,23.615768 6.1134173,23.759932 4.2223881,24.150608 4.7482003,21.578044 4.8387347,19.934091 5.0006751,16.99345 6.5458481,17.555987 7.631684,18.041948 9.8783131,19.047415 8.4906483,22.113262 8.8438747,24.103722 9.27513,26.533878 6.8382516,28.390264 5.1353928,28.219289 3.2003771,28.025004 0.53806576,20.937953 2.0704674,15.118417 3.9264113,8.0701789 11.918229,2.6012846 18.772065,4.5165041 22.810569,5.6450139 28.914014,8.2917484 29.292636,15.14339 c 0.378622,6.851642 -0.18984,10.890515 -5.108662,6.092109"
+         id="path6519"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cssssssszc" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,31.992788)"
+       id="use4317"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,65.017199)"
+       id="use4319"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,96.041611)"
+       id="use4321"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,128.00382)"
+       id="use4323"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,159.99664)"
+       id="use4325"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,192.03635)"
+       id="use4327"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,225.06075)"
+       id="use4329"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,256.03826)"
+       id="use4331"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,288.03108)"
+       id="use4333"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,320.04017)"
+       id="use4335"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,352.03298)"
+       id="use4337"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,385.01049)"
+       id="use4339"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,416.03489)"
+       id="use4341"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,448.02771)"
+       id="use4343"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,480.0368)"
+       id="use4345"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,511.01431)"
+       id="use4347"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,544.06933)"
+       id="use4349"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g4223"
+       xlink:href="#g4223"
+       transform="translate(0,576.07842)"
+       id="use4351"
+       width="32"
+       height="1024" />
+    <g
+       inkscape:tile-y0="20.41309"
+       inkscape:tile-x0="15.217501"
+       inkscape:tile-h="8.9040963"
+       inkscape:tile-w="10.57321"
+       inkscape:tile-cy="25.115138"
+       inkscape:tile-cx="20.254106"
+       id="g5807"
+       transform="translate(40,0)">
+      <path
+         style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+         d="m 40.326118,25.42543 c 5.560336,-1.235631 3.397983,2.022194 0.43247,1.853445 2.780168,-0.23053 4.781086,2.803759 -0.43247,1.853445"
+         id="path5811"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccc" />
+      <g
+         id="g5825"
+         transform="translate(1.4628352,-0.39254032)">
+        <path
+           d="m 19.460264,22.710808 c 0,1.087709 -0.881763,1.969472 -1.969473,1.969472 -1.087709,0 -1.969472,-0.881763 -1.969472,-1.969472 0,-1.08771 0.881763,-1.969473 1.969472,-1.969473 1.08771,0 1.969473,0.881763 1.969473,1.969473 z"
+           sodipodi:ry="1.9694725"
+           sodipodi:rx="1.9694725"
+           sodipodi:cy="22.710808"
+           sodipodi:cx="17.490791"
+           id="path5827"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           sodipodi:type="arc"
+           transform="matrix(1.5771008,0,0,1.5771008,-8.9573654,-14.243009)" />
+        <path
+           transform="matrix(1.3635735,0,0,1.3635735,-5.1673697,-9.7681557)"
+           d="m 19.132018,23.132837 a 1.1254128,1.1254128 0 1 1 -2.250826,0 1.1254128,1.1254128 0 1 1 2.250826,0 z"
+           sodipodi:ry="1.1254128"
+           sodipodi:rx="1.1254128"
+           sodipodi:cy="23.132837"
+           sodipodi:cx="18.006605"
+           id="path5829"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:type="arc"
+           style="fill:none;stroke:#a20669;stroke-width:0.65287572;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path5831"
+           sodipodi:cx="17.490791"
+           sodipodi:cy="22.710808"
+           sodipodi:rx="1.9694725"
+           sodipodi:ry="1.9694725"
+           d="m 18.448792,24.43158 c -0.950356,0.529089 -2.149683,0.187585 -2.678773,-0.762771 -0.05118,-0.09194 -0.09492,-0.18783 -0.130781,-0.286755"
+           transform="matrix(1.5316851,0,0,1.5316851,-9.2995925,-12.074997)"
+           sodipodi:start="1.0628028"
+           sodipodi:end="2.793798"
+           sodipodi:open="true" />
+      </g>
+      <g
+         id="use5833"
+         transform="matrix(0.70238096,0,0,0.70238096,11.993602,7.1577526)">
+        <path
+           d="m 19.460264,22.710808 c 0,1.087709 -0.881763,1.969472 -1.969473,1.969472 -1.087709,0 -1.969472,-0.881763 -1.969472,-1.969472 0,-1.08771 0.881763,-1.969473 1.969472,-1.969473 1.08771,0 1.969473,0.881763 1.969473,1.969473 z"
+           sodipodi:ry="1.9694725"
+           sodipodi:rx="1.9694725"
+           sodipodi:cy="22.710808"
+           sodipodi:cx="17.490791"
+           id="path6189"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           sodipodi:type="arc"
+           transform="matrix(1.5751445,0,0,1.5751445,-8.9270014,-14.194728)" />
+        <path
+           transform="matrix(1.3142858,0,0,1.3142858,-4.1760944,-8.9165672)"
+           d="m 19.132018,23.132837 a 1.1254128,1.1254128 0 1 1 -2.250826,0 1.1254128,1.1254128 0 1 1 2.250826,0 z"
+           sodipodi:ry="1.1254128"
+           sodipodi:rx="1.1254128"
+           sodipodi:cy="23.132837"
+           sodipodi:cx="18.006605"
+           id="path6191"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:type="arc"
+           style="fill:none;stroke:#a20669;stroke-width:0.65287572;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="path6193"
+           sodipodi:cx="17.490791"
+           sodipodi:cy="22.710808"
+           sodipodi:rx="1.9694725"
+           sodipodi:ry="1.9694725"
+           d="m 18.448792,24.43158 c -0.950356,0.529089 -2.149683,0.187585 -2.678773,-0.762771 -0.05118,-0.09194 -0.09492,-0.18783 -0.130781,-0.286755"
+           transform="matrix(1.5316851,0,0,1.5316851,-9.2995925,-12.074997)"
+           sodipodi:start="1.0628028"
+           sodipodi:end="2.793798"
+           sodipodi:open="true" />
+      </g>
+    </g>
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,32.004098)"
+       id="use6151"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,65.012098)"
+       id="use6153"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,96.046059)"
+       id="use6155"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,127.99955)"
+       id="use6157"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,159.98677)"
+       id="use6159"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,192.04152)"
+       id="use6161"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,225.05843)"
+       id="use6163"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,256.03285)"
+       id="use6165"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,288.02008)"
+       id="use6167"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,320.04107)"
+       id="use6169"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,352.04517)"
+       id="use6171"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,385.01144)"
+       id="use6173"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,416.03651)"
+       id="use6175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,448.02373)"
+       id="use6177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,480.03656)"
+       id="use6179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,511.01099)"
+       id="use6181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,544.06165)"
+       id="use6183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#g5807"
+       xlink:href="#g5807"
+       transform="translate(0,576.08264)"
+       id="use6185"
+       width="32"
+       height="1024" />
+    <path
+       sodipodi:nodetypes="ccc"
+       inkscape:connector-curvature="0"
+       id="path5811-4"
+       d="m 20.326118,25.42544 c 5.560336,-1.235631 3.397983,2.022194 0.43247,1.853445 2.780168,-0.23053 4.781086,2.803759 -0.43247,1.853445"
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,57.189978 c 5.560336,-1.235631 3.254247,1.543074 0.43247,2.093005 2.82808,0.679798 4.781086,3.043319 -0.43247,2.093005"
+       id="path3848"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,89.958418 c 5.560336,-1.235631 3.062599,1.207689 0.43247,2.332565 2.684344,1.015183 4.781086,3.282879 -0.43247,2.332565"
+       id="path3827"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,120.99238 c 5.560336,-1.23563 2.966775,0.20154 0.43247,2.33256 2.732256,1.97343 4.781086,3.28288 -0.43247,2.33257"
+       id="path3807"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,153.18543 c 5.560336,-1.23563 3.254247,1.2556 0.43247,2.093 2.875992,0.77563 4.781086,3.04332 -0.43247,2.09301"
+       id="path3787"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,185.41221 c 5.560336,-1.23563 3.254247,1.35143 0.43247,1.85344 2.875992,0.58398 4.781086,2.80376 -0.43247,1.85345"
+       id="path3767"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,217.46696 c 5.560336,-1.23563 3.397983,2.02219 0.43247,1.85344 2.780168,-0.23053 4.781086,2.80376 -0.43247,1.85345"
+       id="path3747"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,250.24431 c 5.560336,-1.23563 2.352269,2.25897 0.43247,2.093 1.046056,0.60347 4.781086,3.04332 -0.43247,2.09301"
+       id="path3727"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,280.97917 c 5.560336,-1.23563 3.445895,2.21384 0.43247,2.33256 0.192919,0.87145 4.781086,3.28288 -0.43247,2.33257"
+       id="path3707"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,312.72684 c 5.560336,-1.23563 4.308311,3.55538 0.43247,2.57212 -1.292354,0.91936 4.781086,3.52244 -0.43247,2.57213"
+       id="path3687"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,344.74783 c 5.560336,-1.23563 4.068751,3.50747 0.43247,2.57213 -3.927515,1.30265 4.781086,3.52243 -0.43247,2.57212"
+       id="path3667"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,376.99149 c 5.560336,-1.23563 3.397983,2.50131 0.43247,2.33257 -0.286201,2.16507 4.781086,3.28287 -0.43247,2.33256"
+       id="path3647"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,410.19732 c 5.560336,-1.23563 3.397983,2.26175 0.43247,2.09301 2.205224,1.30265 4.781086,3.04331 -0.43247,2.093"
+       id="path3627"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,441.46195 c 5.560336,-1.23563 3.397983,2.02219 0.43247,1.85344 2.636432,0.72771 4.781086,2.80376 -0.43247,1.85345"
+       id="path3607"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,473.44917 c 4.362535,-0.56486 3.397983,2.02219 0.43247,1.85344 2.780168,-0.23053 3.774934,2.66003 -0.43247,1.85345"
+       id="path3587"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,505.462 c 2.829351,-0.42113 3.397983,2.02219 0.43247,1.85344 2.780168,-0.23053 2.193837,2.37256 -0.43247,1.85345"
+       id="path3567"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,536.43643 c 2.493967,-3.00838 3.397983,2.02219 0.43247,1.85345 2.780168,-0.23054 2.193837,3.71408 -0.43247,1.85344"
+       id="path3547"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,569.48709 c 0.0025,-3.53541 3.397983,2.02219 0.43247,1.85344 2.780168,-0.23053 -0.3455,4.81607 -0.43247,1.85345"
+       id="path3527"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       style="fill:none;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+       d="m 20.326118,601.50808 c 3.116823,-1.95431 3.397983,2.02219 0.43247,1.85344 2.780168,-0.23053 2.577133,3.66618 -0.43247,1.85345"
+       id="path3507"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <path
+       sodipodi:nodetypes="cc"
+       inkscape:connector-curvature="0"
+       id="path4461"
+       d="m 17.360466,598.03656 3.949353,1.51225"
+       style="fill:#a20669;fill-opacity:0.9254902;stroke:#a20669;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    <path
+       sodipodi:nodetypes="cc"
+       inkscape:connector-curvature="0"
+       id="path4463"
+       d="m 22.937376,599.07875 2.699598,1.12692"
+       style="fill:#a20669;fill-opacity:0.92549229;stroke:#a20669;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+    <use
+       height="1024"
+       width="32"
+       id="use3693"
+       transform="translate(-40,32.004098)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3695"
+       transform="translate(-40,65.012098)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3697"
+       transform="translate(-40,96.046059)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3699"
+       transform="translate(-40,127.99955)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3701"
+       transform="translate(-40,159.98677)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3703"
+       transform="translate(-40,192.04152)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3705"
+       transform="translate(-40,225.05843)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3707"
+       transform="translate(-40,256.03285)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3709"
+       transform="translate(-40,288.02008)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3711"
+       transform="translate(-40,320.04107)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3713"
+       transform="translate(-40,352.04517)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3715"
+       transform="translate(-40,385.01144)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3717"
+       transform="translate(-40,416.03651)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3719"
+       transform="translate(-40,448.02373)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3721"
+       transform="translate(-40,480.03656)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3723"
+       transform="translate(-40,511.01099)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       height="1024"
+       width="32"
+       id="use3725"
+       transform="translate(-40,544.06165)"
+       xlink:href="#g5807"
+       inkscape:tiled-clone-of="#g5807"
+       y="0"
+       x="0" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5807"
+       id="use3729"
+       width="32"
+       height="1024"
+       transform="translate(-40,0)" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="frame"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none"
+       id="rect20004"
+       width="32"
+       height="32"
+       x="-2.6098915e-15"
+       y="0"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer6"
+     inkscape:label="frame-0.5"
+     sodipodi:insensitive="true"
+     style="display:none">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       id="rect20004-7"
+       width="31"
+       height="31"
+       x="0.5"
+       y="0.5"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,32)"
+       id="use20175-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,64)"
+       id="use20177-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,96)"
+       id="use20179-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,128)"
+       id="use20181-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,160)"
+       id="use20183-1"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,192)"
+       id="use20185-4"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,224)"
+       id="use20187-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,256)"
+       id="use20189-6"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,288)"
+       id="use20191-7"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,320)"
+       id="use20193-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,352)"
+       id="use20195-9"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,384)"
+       id="use20197-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,416)"
+       id="use20199-0"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,448)"
+       id="use20201-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,480)"
+       id="use20203-2"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,512)"
+       id="use20205-5"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,544)"
+       id="use20207-8"
+       width="32"
+       height="1024" />
+    <use
+       style="display:inline"
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004-7"
+       xlink:href="#rect20004-7"
+       transform="translate(0,576)"
+       id="use20209-7"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1"
+       id="path3296"
+       sodipodi:cx="13.082203"
+       sodipodi:cy="31.332769"
+       sodipodi:rx="3.5490334"
+       sodipodi:ry="2.8754942"
+       d="m 16.631236,31.332769 a 3.5490334,2.8754942 0 1 1 -7.0980665,0 3.5490334,2.8754942 0 1 1 7.0980665,0 z"
+       transform="matrix(0.98618401,0,0,0.86941576,-0.40145933,3.2587965)"
+       inkscape:tile-cx="12.253232"
+       inkscape:tile-cy="30.529706"
+       inkscape:tile-w="8.5487669"
+       inkscape:tile-h="7.0462566"
+       inkscape:tile-x0="7.9788488"
+       inkscape:tile-y0="27.006578" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       id="use3526"
+       transform="translate(0,33)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,66)"
+       id="use3528"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,97)"
+       id="use3530"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,128)"
+       id="use3532"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,160)"
+       id="use3534"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,193)"
+       id="use3536"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,226)"
+       id="use3538"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,257)"
+       id="use3540"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,288)"
+       id="use3542"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,320)"
+       id="use3544"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,353)"
+       id="use3546"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,386)"
+       id="use3548"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,417)"
+       id="use3550"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,448)"
+       id="use3552"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,480)"
+       id="use3554"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,510)"
+       id="use3556"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,543)"
+       id="use3558"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,576)"
+       id="use3560"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="frame and hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,0 0,32 9.6875,0 C 9.2558025,31.584271 9,31.057361 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.557361 -0.255803,1.084271 -0.6875,1.5 L 32,32 32,0 0,0 z"
+       id="rect13136"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,32 0,32 9.0625,0 C 9.0158769,63.837256 9,63.672589 9,63.5 9,62.119288 10.567003,61 12.5,61 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.172589 -0.01588,0.337256 -0.0625,0.5 L 32,64 32,32 0,32 z"
+       id="use13138"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,64 0,32 10.0625,0 c 0.326362,-1.139208 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.860792 3.4375,2 L 32,96 32,64 0,64 z"
+       id="use13140"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,96 0,32 9.0625,0 C 9.0158769,127.83726 9,127.67259 9,127.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,128 32,96 0,96 z"
+       id="use13142"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,128 0,32 9.6875,0 C 9.2558025,159.58427 9,159.05736 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,160 32,128 0,128 z"
+       id="use13144"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,160 0,32 9.6875,0 C 9.2558025,191.58427 9,191.05736 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,192 32,160 0,160 z"
+       id="use13146"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,192 0,32 9.0625,0 C 9.0158769,223.83726 9,223.67259 9,223.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,224 32,192 0,192 z"
+       id="use13148"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,224 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,256 32,224 0,224 z"
+       id="use13150"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,256 0,32 9.0625,0 C 9.0158769,287.83726 9,287.67259 9,287.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,288 32,256 0,256 z"
+       id="use13152"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,288 0,32 9.6875,0 C 9.2558025,319.58427 9,319.05736 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,320 32,288 0,288 z"
+       id="use13154"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,320 0,32 9.6875,0 C 9.2558025,351.58427 9,351.05736 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,352 32,320 0,320 z"
+       id="use13156"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,352 0,32 9.0625,0 C 9.0158769,383.83726 9,383.67259 9,383.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,384 32,352 0,352 z"
+       id="use13158"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,384 0,32 10.0625,0 c 0.326362,-1.13921 1.746128,-2 3.4375,-2 1.691372,0 3.111138,0.86079 3.4375,2 L 32,416 32,384 0,384 z"
+       id="use13160"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,416 0,32 9.0625,0 C 9.0158769,447.83726 9,447.67259 9,447.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.17259 -0.01588,0.33726 -0.0625,0.5 L 32,448 32,416 0,416 z"
+       id="use13162"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,448 0,32 9.6875,0 C 9.2558025,479.58427 9,479.05736 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,480 32,448 0,448 z"
+       id="use13164"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,480 0,32 9.6875,0 C 9.2558025,511.58427 9,511.05736 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,512 32,480 0,480 z"
+       id="use13166"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,512 0,32 32,0 0,-32 -32,0 z m 12.5,26 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use13168"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,544 0,32 12.5,0 c -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 l 19.5,0 0,-32 -32,0 z"
+       id="use13170"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0,576 0,32 9.6875,0 C 9.2558025,607.58427 9,607.05736 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 L 32,608 32,576 0,576 z"
+       id="use13172"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="frame-0.5 and hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="rect20004-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20175-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20177-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20179-3"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20181-9"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20183-0"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20185-4-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20187-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20189-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20191-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20193-2"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20195-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+       id="use20197-4"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+       id="use20199-0-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,448.5 0,31 8.8125,0 C 9.1215627,479.19131 9,478.85917 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20201-6"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,480.5 0,31 8.8125,0 C 9.1215627,511.19131 9,510.85917 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20203-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,512.5 0,31 31,0 0,-31 -31,0 z m 12,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+       id="use20205-1"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,544.5 0,31 9.90625,0 C 9.5507391,575.04422 9,574.32095 9,573.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+       id="use20207-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+       d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+       id="use20209-1"
+       inkscape:connector-curvature="0" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Graphics/Hats/zoo_turtle.svg	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,1790 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="32"
+   height="1024"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="zoo_turtle.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="zoo_turtle.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.1">
+  <title
+     id="title63987">turtle</title>
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient6494"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6496" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter4090">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.15412888"
+         id="feGaussianBlur4092" />
+    </filter>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask8318-4">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m -20,17.25842 0,32 9.6875,0 C -10.744198,48.84269 -11,48.31578 -11,47.75842 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.55736 -0.255803,1.08427 -0.6875,1.5 l 16.6875,0 0,-32 -32,0 z"
+         id="path8320-9"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6083">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,0.5 0,31 8.8125,0 C 9.1215627,31.191311 9,30.859172 9,30.5 9,29.119288 10.567003,28 12.5,28 c 1.932997,0 3.5,1.119288 3.5,2.5 0,0.359172 -0.121563,0.691311 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6085"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6087">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,32.5 0,31 8.5,0 c 0,-1.380712 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.119288 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6089"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6091">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,64.5 0,31 9.8125,0 C 10.855555,94.62204 12.069844,94 13.5,94 c 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path6093"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6095">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,96.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6097"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6099">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,128.5 0,31 8.8125,0 C 9.1215627,159.19131 9,158.85917 9,158.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6101"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6103">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,160.5 0,31 8.8125,0 C 9.1215627,191.19131 9,190.85917 9,190.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6105"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6107">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,192.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6109"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6111">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,224.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path6113"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6115">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,256.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6117"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6119">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,288.5 0,31 8.8125,0 C 9.1215627,319.19131 9,318.85917 9,318.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6121"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6123">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,320.5 0,31 8.8125,0 C 9.1215627,351.19131 9,350.85917 9,350.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6125"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6127">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,352.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6129"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6131">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,384.5 0,31 9.8125,0 c 0.543055,-0.87796 1.757344,-1.5 3.1875,-1.5 1.430156,0 2.644445,0.62204 3.1875,1.5 l 14.8125,0 0,-31 -31,0 z"
+         id="path6133"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6135">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,416.5 0,31 8.5,0 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 l 15.5,0 0,-31 -31,0 z"
+         id="path6137"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6139">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,448.5 0,31 8.8125,0 C 9.1215627,479.19131 9,478.85917 9,478.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6141"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6143">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,480.5 0,31 8.8125,0 C 9.1215627,511.19131 9,510.85917 9,510.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6145"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6147">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,512.5 0,31 31,0 0,-31 -31,0 z m 12,25.5 c 1.932997,0 3.5,1.11929 3.5,2.5 0,1.38071 -1.567003,2.5 -3.5,2.5 -1.932997,0 -3.5,-1.11929 -3.5,-2.5 0,-1.38071 1.567003,-2.5 3.5,-2.5 z"
+         id="path6149"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6151">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,544.5 0,31 9.90625,0 C 9.5507391,575.04422 9,574.32095 9,573.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.82095 -0.550739,1.54422 -1.40625,2 l 16.90625,0 0,-31 -31,0 z"
+         id="path6153"
+         inkscape:connector-curvature="0" />
+    </mask>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask6155">
+      <path
+         style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
+         d="m 0.5,576.5 0,31 8.8125,0 C 9.1215627,607.19131 9,606.85917 9,606.5 c 0,-1.38071 1.567003,-2.5 3.5,-2.5 1.932997,0 3.5,1.11929 3.5,2.5 0,0.35917 -0.121563,0.69131 -0.3125,1 l 15.8125,0 0,-31 -31,0 z"
+         id="path6157"
+         inkscape:connector-curvature="0" />
+    </mask>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="4.8038415"
+     inkscape:cx="20.493507"
+     inkscape:cy="463.37646"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer4"
+     showgrid="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="779"
+     inkscape:window-x="0"
+     inkscape:window-y="21"
+     inkscape:window-maximized="0"
+     inkscape:snap-nodes="false"
+     inkscape:snap-global="true"
+     inkscape:object-paths="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-page="true"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>turtle</dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Roman V. Prikhodchenko (chujoii@gmail.com)</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>hedgewars hat turtle</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="template"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     transform="translate(0,-28.362183)"
+     sodipodi:insensitive="true">
+    <path
+       style="fill:none;stroke:#258ff0;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-opacity:0;stroke-dasharray:none;stroke-dashoffset:0"
+       d="m 355.21392,58.741246 3.5393,3.99458"
+       id="path3833"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3086"
+       d="m -6.431788,112.02831 c 0.06964,0.35491 0.02699,-0.002 -0.0338,0.44752 -0.01127,0.0833 -4.32e-4,0.16812 -6.48e-4,0.25218 0.0037,0.0132 -0.183032,0.0659 -0.186759,0.0527 l 0,0 c -0.02797,-0.0703 -0.04036,-0.14907 -0.0839,-0.21097 -0.334516,-0.47554 -0.06414,0.11051 -0.241626,-0.31511 -0.016,-0.0387 0.530726,-0.26498 0.546729,-0.22632 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3090"
+       d="m -9.716695,81.439326 c 0.733161,-0.275885 1.561693,-0.27371 2.335584,-0.317386 0.769061,-0.02593 1.532627,-0.112922 2.294873,-0.212661 0.195255,-0.02555 0.389478,-0.06105 0.585801,-0.07636 0.192289,-0.01499 0.385627,-0.0096 0.57844,-0.01443 0.187969,-8.65e-4 0.375938,-0.0017 0.563907,-0.0026 0.033632,-0.0021 0.063438,0.473524 0.029806,0.475632 l 0,0 c -0.1876211,0.08474 -0.3752422,0.169488 -0.5628634,0.254231 -0.1992236,0.07469 -0.3930856,0.165641 -0.5976696,0.224066 -0.20252,0.05784 -0.411594,0.09082 -0.619647,0.123575 -0.783553,0.123372 -1.581564,0.127333 -2.372442,0.12034 -0.454067,-0.01065 -0.908808,-0.02001 -1.363036,-0.01933 -0.166562,2.51e-4 -0.472476,0.01323 -0.647552,0.0071 -0.07319,-0.0026 -0.145943,-0.01232 -0.218914,-0.01848 -0.03844,4.44e-4 -0.04473,-0.543226 -0.0063,-0.54367 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3092"
+       d="m -10.433872,48.527731 c 0.488798,-0.378729 1.114304,-0.433161 1.710207,-0.462485 0.876878,0.0063 1.752003,0.0149 2.628145,-0.02983 0.325374,-0.01895 0.648326,-0.06999 0.973677,-0.08923 0.154516,-0.0091 0.310604,-0.0308 0.464209,-0.01172 0.15228,0.01891 0.295478,0.08294 0.443216,0.124417 0.02662,-7.87e-4 0.03776,0.375692 0.01114,0.37648 l 0,0 c -0.151531,0.09742 -0.290202,0.218585 -0.454594,0.292254 -0.441563,0.197879 -1.053838,0.193506 -1.527015,0.23098 -0.429963,0.0083 -0.582809,0.01825 -1.009024,-9.05e-4 -0.536258,-0.02409 -1.0697,-0.09523 -1.606484,-0.109978 -0.247254,0.0037 -0.371095,-7.43e-4 -0.614105,0.02655 -0.292921,0.0329 -0.575577,0.116702 -0.863626,0.175295 -0.0369,0.01101 -0.192643,-0.510818 -0.155744,-0.521831 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3094"
+       d="m -9.390582,145.62156 c 0.604661,-0.18352 1.242397,-0.21462 1.868035,-0.27247 0.673854,-0.0452 1.34769,-0.0914 2.023326,-0.0897 0.360725,0.0198 0.733142,0.005 1.089237,0.0793 0.07945,0.0165 0.156315,0.0437 0.234472,0.0655 0.3684348,0.14653 0.171259,0.11491 0.5943616,0.0751 0.019299,0.002 -0.0023,0.27446 -0.021599,0.27293 l 0,0 c -0.4442116,0.008 -0.2301715,-0.0326 -0.6425596,0.11941 -0.08609,0.0174 -0.171197,0.0407 -0.258272,0.0523 -0.348314,0.0462 -0.708226,-0.001 -1.055901,0.0612 -0.671974,0.0708 -1.344709,0.1332 -2.018881,0.17945 -0.611005,0.0269 -1.226029,0.08 -1.836349,0.0164 -0.03955,-0.002 -0.01542,-0.56104 0.02413,-0.55933 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3096"
+       d="m -10.769221,176.51105 c 0.823313,-0.31045 1.713571,-0.37544 2.583435,-0.44441 0.824191,-0.0515 1.649951,-0.0524 2.47525,-0.0644 0.980274,-0.007 1.9536209,-0.14952 2.9323142,-0.18368 0.2564428,-0.009 0.5131906,-0.003 0.769786,-0.004 0.2531467,0.0302 0.5062934,0.0604 0.7594401,0.0906 0.045063,0.003 -9.091e-4,0.64054 -0.045972,0.63729 l 0,0 c -0.2622793,0.0632 -0.5245586,0.12633 -0.7868379,0.18949 -0.2625711,0.027 -0.5242382,0.0651 -0.7877132,0.081 -0.9785656,0.0592 -1.9561552,-0.0522 -2.9328432,-0.0899 -0.813036,-0.0143 -1.621877,0.0459 -2.428904,0.14552 -0.83759,0.0716 -1.680416,0.15331 -2.521585,0.11102 -0.03313,0.001 -0.0495,-0.46729 -0.01637,-0.46845 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3098"
+       d="m -10.554447,207.91849 c 0.711269,0.0189 1.421172,0.0802 2.1319,0.11765 0.565164,0.0227 1.130179,-7e-5 1.694413,-0.0317 0.502272,-0.026 1.005098,-0.006 1.507241,0.0116 0.369172,0.0229 0.740101,6.9e-4 1.109268,0.0192 0.08443,0.004 0.1703726,0.003 0.2526683,0.0219 0.080723,0.019 0.154129,0.0612 0.2311935,0.0918 0.072787,0.0324 0.1455734,0.0648 0.2183601,0.0972 0.013361,0.001 -0.00315,0.19011 -0.016515,0.18894 l 0,0 c -0.080368,0.0394 -0.1607356,0.0789 -0.2411034,0.11829 -0.085953,0.0362 -0.1677857,0.0845 -0.2578597,0.10868 -0.086551,0.0233 -0.1775238,0.0259 -0.2669128,0.0325 -0.379495,0.0277 -0.762367,-0.004 -1.141419,-0.02 -0.479363,-0.0328 -0.959714,-0.0817 -1.440543,-0.0478 -0.587401,0.0407 -1.170729,0.14755 -1.7615,0.13769 -0.742114,-0.011 -1.514011,-0.0614 -2.190208,-0.39608 -0.03181,-0.0121 0.139209,-0.46192 0.171017,-0.44983 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3100"
+       d="m -13.078396,242.02084 c 0.732491,-0.0853 1.473998,-0.03 2.208792,-0.003 0.866561,0.068 1.734472,0.0963 2.603389,0.0916 0.72888,0.005 1.458711,-0.0989 2.187722,-0.0481 0.139313,0.01 0.277404,0.0325 0.416106,0.0488 0.513404,0.0797 0.259296,0.052 0.762097,0.0852 0.02178,0.002 -0.004,0.30984 -0.02574,0.30802 l 0,0 c -0.514921,0.0849 -0.253838,0.0307 -0.782613,0.16576 -0.14267,0.0307 -0.284123,0.0677 -0.42801,0.0921 -0.734001,0.12433 -1.483692,0.10209 -2.224652,0.12477 -0.884423,0.003 -1.768394,-0.0185 -2.651381,-0.0708 -0.726178,-0.0637 -1.470955,-0.0947 -2.16949,-0.31855 -0.03362,-0.007 0.07016,-0.48275 0.103779,-0.47541 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3102"
+       d="m -8.800561,273.44566 c 0.326074,-0.21876 0.773052,-0.26241 1.086529,0.0131 0.06862,0.0603 0.116277,0.14093 0.174415,0.2114 0.0695,0.20578 0.139271,0.31475 0.08273,0.54019 -0.02499,0.0996 -0.09212,0.18374 -0.1338,0.27763 -0.03952,0.089 -0.0731,0.18059 -0.109648,0.27089 -1.44e-4,0.0154 -0.217959,0.0134 -0.217815,-0.002 l 0,0 c -0.0084,-0.0835 -0.0041,-0.16929 -0.02514,-0.25053 -0.01842,-0.071 -0.06839,-0.13045 -0.09176,-0.19996 -0.01277,-0.038 -0.03123,-0.19389 -0.03811,-0.24776 -0.0052,-0.0222 -0.0036,-0.0471 -0.01554,-0.0665 -0.08669,-0.14093 -0.431302,-0.0144 -0.557402,-0.009 -0.03803,0.0109 -0.192493,-0.52694 -0.15446,-0.53786 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3104"
+       d="m -12.020053,305.56567 c 0.366077,0.0244 0.72982,0.0808 1.096494,0.0976 0.316158,0.0145 0.394381,0.003 0.712056,-0.0117 0.768735,-0.053 1.524028,-0.2131 2.284912,-0.32659 0.828928,-0.1331 1.666379,-0.20278 2.50072,-0.29275 0.572105,-0.0967 1.149011,-0.0841 1.7256944,-0.0592 0.026172,-6.3e-4 0.035117,0.36948 0.00895,0.37012 l 0,0 c -0.5683444,0.22812 -1.1422904,0.43286 -1.7611874,0.4648 -0.824654,0.0913 -1.65118,0.16532 -2.473612,0.27628 -0.786192,0.12119 -1.571592,0.26925 -2.367678,0.30378 -0.654831,-0.006 -1.333464,-0.0391 -1.917947,-0.36815 -0.03212,-0.0136 0.159487,-0.46775 0.191603,-0.4542 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3106"
+       d="m -10.975856,335.04318 c 0.628354,-0.0827 1.266003,-0.0166 1.894492,0.0355 0.588053,0.0732 1.178821,0.0496 1.76867,0.0266 0.705754,-0.0553 1.407411,-0.1462 2.11307,-0.20165 0.450764,-0.009 0.957483,-0.0971 1.4004681,0.0279 0.059956,0.0169 0.1160036,0.0454 0.1740054,0.0682 0.1772966,0.15806 0.083519,0.0951 0.277154,0.19504 0.00849,0.002 -0.020471,0.12215 -0.028963,0.1201 l 0,0 c -0.2196871,0.0446 -0.1112753,0.006 -0.3224055,0.12379 -0.497716,0.14903 -1.02363,0.16483 -1.536459,0.22997 -0.713793,0.0776 -1.429937,0.14684 -2.148652,0.14933 -0.61056,0.0131 -1.221446,-0.002 -1.831635,-0.0248 -0.621211,-0.0386 -1.251271,-0.0798 -1.851819,-0.25381 -0.03508,-0.007 0.05699,-0.50263 0.09207,-0.49611 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3108"
+       d="m -12.993886,368.42727 c 0.08178,-0.0105 0.163103,-0.0256 0.245345,-0.0314 0.399236,-0.0284 0.802326,0.005 1.201117,0.022 0.60286,0.0261 0.402052,0.0181 1.020126,0.0347 1.090404,0.0349 2.179489,-0.051 3.266775,-0.12058 0.174604,-0.0138 0.349089,-0.0293 0.523812,-0.0416 0.176662,-0.0124 0.353203,-0.0315 0.530297,-0.0325 0.404164,-0.002 0.710255,0.0456 1.112064,0.0918 0.03367,0.002 0.0098,0.47785 -0.02385,0.47616 l 0,0 c -0.420309,0.12215 -0.704111,0.21869 -1.133865,0.29029 -0.175722,0.0293 -0.353929,0.041 -0.531125,0.0594 -0.175669,0.0182 -0.351624,0.0335 -0.527436,0.0503 -1.121575,0.11431 -2.249213,0.19709 -3.376301,0.10744 -0.803535,-0.0805 -1.613691,-0.18255 -2.384276,-0.4345 -0.03334,-0.005 0.04398,-0.4769 0.07732,-0.47143 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3110"
+       d="m -9.794599,400.0806 c 0.07997,-0.0157 0.159048,-0.0369 0.23991,-0.0471 0.642363,-0.0806 1.32868,-0.0491 1.975803,-0.0485 0.780554,0.007 1.555965,-0.0651 2.327996,-0.17223 0.441545,-0.0406 0.876646,-0.16565 1.3220785,-0.17053 1.8719329,-0.0205 -0.9223265,0.1157 1.0470917,0.004 0.031943,-5e-5 0.03262,0.45169 6.776e-4,0.45174 l 0,0 c -0.1810176,0.0448 -0.3620353,0.0897 -0.5430529,0.13455 -0.1697629,0.0607 -0.3355436,0.13402 -0.5092885,0.18219 -0.4343114,0.12042 -0.8914504,0.12793 -1.3341124,0.1974 -0.802402,0.0904 -1.608448,0.16787 -2.417043,0.14933 -0.727631,-0.0159 -1.470379,-0.0273 -2.177919,-0.21318 -0.03306,-0.005 0.0348,-0.47238 0.06786,-0.46758 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3112"
+       d="m -7.065058,429.65763 c 0.0521,0.0605 0.111555,0.11549 0.156304,0.18167 0.216546,0.32023 0.397053,0.73991 0.448565,1.1234 0.04064,0.30252 -0.0055,0.68934 -0.029,0.99037 0.0075,0.0251 -0.347053,0.13082 -0.354531,0.10575 l 0,0 c -0.141049,-0.25816 -0.301007,-0.50685 -0.42303,-0.77453 -0.08937,-0.19603 -0.185062,-0.53024 -0.253599,-0.73874 -0.03123,-0.095 -0.06797,-0.18819 -0.09716,-0.28384 -0.02147,-0.0703 -0.03649,-0.1425 -0.05473,-0.21375 -0.0276,-0.0429 0.579588,-0.43327 0.607189,-0.39033 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3114"
+       d="m -9.594309,464.83691 c 0.528672,-0.27587 1.131939,-0.31664 1.716988,-0.3335 0.698601,0.0177 1.396032,0.0408 2.095037,0.0358 0.433012,-0.01 0.867411,-0.046 1.300794,-0.0378 0.399252,0.008 0.5863832,0.0385 0.9861204,0.0838 0.030056,10e-4 0.010211,0.42646 -0.019845,0.42506 l 0,0 c -0.4086745,0.1205 -0.6067744,0.1944 -1.0252014,0.25855 -0.444689,0.0682 -0.899996,0.069 -1.348278,0.0576 -0.689465,-0.0189 -1.376141,-0.0864 -2.065965,-0.0944 -0.52413,0.01 -1.042258,0.0614 -1.562931,0.11892 -0.03635,0.005 -0.113067,-0.50862 -0.07672,-0.51405 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3116"
+       d="m -9.783353,496.86108 c 0.627426,-0.17993 1.286031,-0.21974 1.933526,-0.27654 0.73692,-0.051 1.475638,-0.0546 2.213943,-0.0571 0.986911,0.002 1.9693415,-0.10063 2.9551497,-0.13291 0.9304284,0.0195 0.4626316,0.001 1.4033644,0.056 0.041812,0.003 -3.234e-4,0.59428 -0.042135,0.5913 l 0,0 c -0.9601631,0.17849 -0.4813742,0.10008 -1.4362421,0.23601 -0.2218806,0.0143 -0.4434254,0.0355 -0.6656417,0.0429 -0.7715563,0.0259 -1.5415973,-0.0544 -2.3123413,-0.0681 -0.723505,-0.0172 -1.446527,0.001 -2.168035,0.0613 -0.635771,0.0269 -1.283816,0.0808 -1.912562,-0.0439 -0.02893,-0.002 0.002,-0.41126 0.03097,-0.40907 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3118"
+       d="m -11.902089,529.1797 c 0.787618,-0.28786 1.63231,-0.35796 2.46233,-0.41757 0.645913,-0.0367 1.292969,-0.007 1.938435,0.0239 0.592495,0.0222 1.185396,-0.0262 1.777445,-0.0483 0.366534,0.007 0.525239,-0.003 0.891676,0.0562 0.152983,0.0247 0.301291,0.0742 0.454291,0.0988 0.149571,0.0241 0.301362,0.0314 0.4520429,0.0471 0.02633,0.004 -0.02571,0.37604 -0.05204,0.37236 l 0,0 c -0.1531969,0.0109 -0.3073709,0.0124 -0.4595899,0.0328 -0.160261,0.0215 -0.316203,0.069 -0.476124,0.0929 -0.393474,0.0589 -0.516456,0.0491 -0.907602,0.0568 -0.588555,-0.0252 -1.175094,-0.0821 -1.763627,-0.0989 -0.636584,0.0154 -1.267653,0.0993 -1.901365,0.15619 -0.804276,0.0708 -1.614794,0.18038 -2.422757,0.12831 -0.0354,-4.8e-4 -0.02851,-0.50107 0.0069,-0.50059 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3126"
+       d="m -10.698329,559.45319 c 0.093,-0.0268 0.184715,-0.0585 0.279001,-0.0804 0.289704,-0.0671 0.650393,-0.11843 0.939412,-0.15653 0.680638,-0.0897 1.36516,-0.15083 2.04762,-0.22472 0.775352,-0.0658 1.551408,-0.19233 2.332431,-0.1373 0.24226,0.0171 0.480968,0.0678 0.721451,0.1017 0.04259,0.002 0.01706,0.60407 -0.02552,0.60226 l 0,0 c -0.244388,0.0821 -0.484315,0.179 -0.733163,0.24643 -0.772166,0.20926 -1.572024,0.26139 -2.365734,0.32077 -1.077026,0.047 -2.173625,0.11507 -3.240178,-0.0801 -0.04187,-0.003 0.0028,-0.59526 0.04468,-0.5921 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3128"
+       d="m -10.258194,561.49226 c 0.777837,-0.13062 1.573021,-0.12088 2.359605,-0.12982 0.935712,0.0315 1.913248,0.0258 2.826612,0.26089 0.193106,0.0497 0.378985,0.12415 0.568478,0.18622 0.195154,0.039 0.390309,0.0781 0.585464,0.11707 0.034507,0.007 -0.067832,0.49523 -0.102339,0.488 l 0,0 c -0.206016,1.9e-4 -0.412032,3.8e-4 -0.618048,5.7e-4 -0.209113,0.0175 -0.41753,0.0487 -0.62734,0.0525 -0.304415,0.005 -0.853671,-0.0554 -1.158899,-0.0855 -0.633374,-0.0624 -0.454088,-0.0535 -1.080571,-0.0884 -0.17282,-0.01 -0.345768,-0.0168 -0.518652,-0.0252 -0.781797,-0.0309 -1.590681,-0.0132 -2.342947,-0.25502 -0.03687,-0.008 0.07177,-0.52907 0.108637,-0.52139 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3130"
+       d="m -11.347408,593.55905 c 1.267949,-0.42968 2.61904,-0.56118 3.943796,-0.70193 0.787042,-0.0665 1.574636,-0.13381 2.364744,-0.14935 0.208236,-0.004 0.417208,-0.0167 0.624827,-1.8e-4 0.18235,0.0145 0.35954,0.0687 0.5408469,0.093 0.156766,0.021 0.3150443,0.0285 0.4725665,0.0428 0.02786,10e-4 0.00738,0.39545 -0.020478,0.394 l 0,0 c -0.1601644,0.0422 -0.3221808,0.078 -0.4804933,0.12668 -0.1863921,0.0573 -0.3641641,0.14216 -0.5528931,0.19128 -0.206802,0.0538 -0.419564,0.0817 -0.630369,0.11668 -0.786394,0.13061 -1.579608,0.21181 -2.372001,0.29534 -1.291727,0.10251 -2.597164,0.20076 -3.891028,0.0828 -0.03473,-3e-5 -0.03425,-0.49117 4.82e-4,-0.49114 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#00ff14;fill-opacity:1;fill-rule:nonzero;stroke:#464646;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       id="path3132"
+       d="m -8.591302,623.56954 c 0.730235,0.0706 1.460199,0.10091 2.193821,0.0969 0.727863,-0.007 1.454848,-0.0466 2.181915,-0.0783 0.170601,-0.007 0.3409799,-0.0263 0.5117267,-0.024 0.1604303,0.002 0.3199125,0.025 0.4798687,0.0375 0.1509854,0.0216 0.3019708,0.0432 0.4529562,0.0648 0.026986,3.7e-4 0.021854,0.38201 -0.00513,0.38165 l 0,0 c -0.1547872,0.0627 -0.3095744,0.12539 -0.4643616,0.18808 -0.1666205,0.0514 -0.3297222,0.11607 -0.4998616,0.15428 -0.1752362,0.0394 -0.3549084,0.0558 -0.5331684,0.0777 -0.75037,0.0922 -1.507327,0.098 -2.261918,0.067 -0.764061,-0.0607 -1.576105,-0.11032 -2.256167,-0.49874 -0.03302,-0.0142 0.167301,-0.48115 0.200321,-0.46698 z"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="hat"
+     style="display:inline">
+    <g
+       id="g4997"
+       mask="url(#mask6083)">
+      <g
+         inkscape:tile-y0="3.1660389"
+         inkscape:tile-x0="1.2256876"
+         inkscape:tile-h="26.97967"
+         inkscape:tile-w="38.772566"
+         inkscape:tile-cy="16.655874"
+         inkscape:tile-cx="20.611971"
+         transform="translate(63.481837,-0.1433596)"
+         id="g6669">
+        <use
+           x="0"
+           y="0"
+           xlink:href="#rect6667"
+           id="use3894"
+           transform="matrix(0.52216855,-0.85284231,0.85284231,0.52216855,-32.366554,-15.513932)"
+           width="32"
+           height="1024" />
+        <use
+           x="0"
+           y="0"
+           xlink:href="#rect6667"
+           id="use3896"
+           transform="matrix(0.12418819,-0.99225868,0.99225868,0.12418819,-48.995256,-20.867863)"
+           width="32"
+           height="1024" />
+        <rect
+           inkscape:tile-y0="20.44328"
+           inkscape:tile-x0="-13.573596"
+           inkscape:tile-h="5.1885314"
+           inkscape:tile-w="8.1843262"
+           inkscape:tile-cy="23.037545"
+           inkscape:tile-cx="-9.4814329"
+           style="fill:#309a00;fill-opacity:1;stroke:#093f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           id="rect6667"
+           width="5"
+           height="5"
+           x="-28.483583"
+           y="5.1770563"
+           rx="2"
+           ry="2" />
+        <use
+           height="1024"
+           width="32"
+           id="use6675"
+           transform="matrix(-0.06029183,-0.99818079,0.99818079,-0.06029183,-58.760753,-17.04169)"
+           xlink:href="#rect6667"
+           inkscape:tiled-clone-of="#rect6667"
+           y="0"
+           x="0" />
+        <use
+           height="1024"
+           width="32"
+           id="use6677"
+           transform="matrix(0.46633722,0.88460703,-0.88460703,0.46633722,-36.788805,26.648174)"
+           xlink:href="#rect6667"
+           inkscape:tiled-clone-of="#rect6667"
+           y="0"
+           x="0" />
+        <use
+           height="1024"
+           width="32"
+           id="use6679"
+           transform="matrix(0.93702629,0.34925882,-0.34925882,0.93702629,-29.124289,15.174841)"
+           xlink:href="#rect6667"
+           inkscape:tiled-clone-of="#rect6667"
+           y="0"
+           x="0" />
+        <use
+           height="1024"
+           width="32"
+           id="use6681"
+           transform="matrix(0.99923845,-0.03901927,0.03901927,0.99923845,-34.072734,9.1041409)"
+           xlink:href="#rect6667"
+           inkscape:tiled-clone-of="#rect6667"
+           y="0"
+           x="0" />
+        <use
+           height="1024"
+           width="32"
+           id="use6683"
+           transform="matrix(0.9813809,-0.1920717,0.16974788,0.86731849,-32.718992,10.898525)"
+           xlink:href="#rect6667"
+           inkscape:tiled-clone-of="#rect6667"
+           y="0"
+           x="0" />
+        <use
+           height="1024"
+           width="32"
+           id="use6685"
+           transform="matrix(0.98281402,-0.18459847,0.18459847,0.98281402,-35.162375,15.363064)"
+           xlink:href="#rect6667"
+           inkscape:tiled-clone-of="#rect6667"
+           y="0"
+           x="0" />
+        <path
+           sodipodi:nodetypes="zzzzzzzzz"
+           inkscape:connector-curvature="0"
+           id="path3797"
+           d="m -38.32784,19.409073 c 0,3.58985 -0.912323,6.861535 -2.527268,9.235757 -1.614945,2.374221 -3.308844,1.448113 -6.119333,1.448113 -2.810489,0 -7.512248,0.717179 -7.877802,-1.767957 -0.365554,-2.485136 -0.838328,-4.641702 -0.751893,-8.611001 0.08643,-3.969299 0.172672,-4.909821 2.16286,-8.140615 1.990188,-3.2307945 3.59273,-2.7520881 6.026415,-2.0143914 2.433685,0.7376964 7.610125,-0.3937999 9.733822,1.6618274 2.123696,2.055627 -0.646801,4.598416 -0.646801,8.188267 z"
+           style="fill:#460303;fill-opacity:1;stroke:#2e9f00;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+      </g>
+      <g
+         inkscape:tile-y0="5.0222204"
+         inkscape:tile-x0="52.755215"
+         inkscape:tile-h="21.755669"
+         inkscape:tile-w="13.282263"
+         inkscape:tile-cy="15.900055"
+         inkscape:tile-cx="59.396347"
+         transform="translate(-60,0)"
+         id="g4596">
+        <rect
+           transform="translate(60,0)"
+           y="10.933679"
+           x="16.964083"
+           height="5.6148725"
+           width="6.0927339"
+           id="rect4995"
+           style="fill:#ff0000;fill-opacity:1;stroke:none" />
+        <path
+           style="fill:#f49ee9;fill-opacity:1;fill-rule:nonzero;stroke:#a3086a;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline"
+           d="m 79.149874,6.6663535 c -0.816297,2.262231 0.535276,3.5680125 1.436615,4.0539115 0.90134,0.4859 0.782699,2.75071 0.754302,3.433387 -0.0284,0.682676 -3.007762,0.403954 -3.033487,-0.206163 -0.02572,-0.610118 1.584659,-0.625272 2.125492,-1.102345 0.540832,-0.477073 2.565388,-1.906812 1.321931,-5.1654975 -1.243457,-3.258675 -6.296181,-2.336697 -7.243585,0.01836 -0.947404,2.3550705 0.03446,3.7946425 0.764314,4.4074315 0.729854,0.612789 1.095245,0.978419 1.195487,1.618018 0.100243,0.639599 -1.432054,0.907551 -2.295253,1.53966 -0.796992,0.678811 -0.142736,0.659603 -0.581943,1.646151 -0.528587,0.974061 -0.741233,2.080052 -0.811613,3.176851 -0.103954,0.833788 0.102632,1.671328 0.456763,2.424488 0.366566,0.864478 0.871159,1.690839 1.558156,2.3372 0.636892,0.629304 1.385085,1.141762 2.223287,1.462753 0.971446,0.295946 1.988339,0.549148 3.010907,0.44246 1.006826,-0.207787 1.989253,-0.57425 2.886785,-1.076794 0.967983,-0.487011 1.656444,-1.370795 2.175715,-2.298206 0.439596,-0.929297 0.864905,-1.901137 0.9375,-2.9375 0.0594,-0.956918 -0.317765,-1.863385 -0.625,-2.75 -0.346673,-0.91306 -0.844966,-1.795583 -1.593747,-2.4375 -0.7308,-0.590677 -0.587885,-0.848695 -0.629561,-1.49375 -0.04168,-0.645056 -0.206816,-2.278483 0.210138,-2.985274 0.416954,-0.70679 2.000802,-1.693042 1.292859,-3.9810795 -0.707942,-2.288035 -4.719764,-2.388793 -5.536062,-0.126562 z"
+           id="path3101-9"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="zzzzzzzzzcccccccccccczzzz" />
+        <g
+           id="g6763"
+           transform="matrix(0.72337124,0,0,0.72337124,69.007956,15.73576)">
+          <path
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;stroke:none"
+             id="path6765"
+             sodipodi:cx="-13.338083"
+             sodipodi:cy="5.7885423"
+             sodipodi:rx="3.8258853"
+             sodipodi:ry="3.8258853"
+             d="m -9.512198,5.7885423 a 3.8258853,3.8258853 0 1 1 -7.651771,0 3.8258853,3.8258853 0 1 1 7.651771,0 z"
+             transform="matrix(0.91482094,0,0,0.91482094,29.961371,-16.048429)" />
+          <path
+             transform="matrix(0.39206612,0,0,0.39206612,23.488823,-13.022441)"
+             d="m -9.512198,5.7885423 a 3.8258853,3.8258853 0 1 1 -7.651771,0 3.8258853,3.8258853 0 1 1 7.651771,0 z"
+             sodipodi:ry="3.8258853"
+             sodipodi:rx="3.8258853"
+             sodipodi:cy="5.7885423"
+             sodipodi:cx="-13.338083"
+             id="path6767"
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             sodipodi:type="arc" />
+        </g>
+        <g
+           id="g6759"
+           transform="translate(58.183024,-42.075764)">
+          <path
+             transform="matrix(0.91482094,0,0,0.91482094,32.201958,46.20452)"
+             d="m -9.512198,5.7885423 a 3.8258853,3.8258853 0 1 1 -7.651771,0 3.8258853,3.8258853 0 1 1 7.651771,0 z"
+             sodipodi:ry="3.8258853"
+             sodipodi:rx="3.8258853"
+             sodipodi:cy="5.7885423"
+             sodipodi:cx="-13.338083"
+             id="path6753"
+             style="fill:#ffffff;fill-opacity:1;stroke:none"
+             sodipodi:type="arc" />
+          <path
+             sodipodi:type="arc"
+             style="fill:#000000;fill-opacity:1;stroke:none"
+             id="path6757"
+             sodipodi:cx="-13.338083"
+             sodipodi:cy="5.7885423"
+             sodipodi:rx="3.8258853"
+             sodipodi:ry="3.8258853"
+             d="m -9.512198,5.7885423 a 3.8258853,3.8258853 0 1 1 -7.651771,0 3.8258853,3.8258853 0 1 1 7.651771,0 z"
+             transform="matrix(0.39206612,0,0,0.39206612,25.72941,49.230508)" />
+        </g>
+      </g>
+      <g
+         inkscape:tile-y0="10.26946"
+         inkscape:tile-x0="69.237093"
+         inkscape:tile-h="20.349274"
+         inkscape:tile-w="19.940879"
+         inkscape:tile-cy="20.444097"
+         inkscape:tile-cx="79.207533"
+         id="g6661"
+         transform="translate(0,-0.9240008)">
+        <path
+           style="fill:#ffab0a;fill-opacity:1;stroke:#a46c00;stroke-opacity:1"
+           d="m 27.0948,29.270588 c 1.045307,-0.336706 2.266991,-1.022839 2.882853,-2.705115 0.615861,-1.682275 0.09872,-3.196169 -0.05265,-4.429413 -0.151375,-1.233245 -1.430045,-2.850253 -1.121509,-3.906516 0.308537,-1.056262 1.391043,-1.637365 0.870033,-2.569989 -0.52101,-0.932624 -2.207114,-1.488665 -2.873318,-1.499016 -0.666204,-0.01035 0.03668,-0.0553 -0.675205,0.02696 -0.711889,0.08226 -3.162825,0.836365 -4.915385,0.66938 C 19.457055,14.689894 17.411751,14.213463 15.6875,14.25 c -1.724251,0.03654 -1.690083,-0.146817 -3.25,1.21875 -1.559917,1.365567 -1.970061,4.350068 -2.072404,6.707356 -0.102344,2.357288 0.333918,3.455849 0.557855,4.301628 0.223937,0.845778 3.228149,0.339262 4.398103,1.442438 1.169953,1.103175 0.537674,2.882506 1.139177,3.556801 0.601503,0.674295 1.640421,0.495614 3.152571,0.146886 1.512149,-0.348727 1.746576,-0.402526 3.254063,-0.487603 1.507487,-0.08507 2.487112,0.241496 3.422201,0.437973 0.93509,0.196473 1.472275,0.659642 2.744824,0.112094 1.272549,-0.547543 1.323789,-1.658716 1.223174,-2.379165 -0.100616,-0.720449 -0.552321,-1.622246 -1.105097,-2.044772"
+           id="path6500"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czzzzzzzzzzzzzzzzzzc"
+           transform="matrix(1,0,0,1.1428571,-1.1126995,-4.9653721)" />
+        <path
+           sodipodi:nodetypes="zzzzzzzzz"
+           inkscape:connector-curvature="0"
+           id="path6549"
+           d="m 20.253929,13.857459 c 1.563647,0.597096 -3.953523,0.23667 -4.672907,3.436391 -0.719384,3.199721 -0.129916,6.433033 1.451491,8.25829 1.581406,1.825256 4.384205,2.109435 5.919501,2.88852 1.535296,0.779084 -3.567141,0.430485 -5.185931,0.323821 -1.618791,-0.106664 -0.899031,-2.318584 -2.960981,-3.922071 -2.061951,-1.603488 -3.675538,1.131174 -3.777235,-4.422309 -0.101697,-5.553483 0.476354,-4.761827 1.669509,-6.530699 1.193155,-1.768871 5.992905,-0.629039 7.556553,-0.03194 z"
+           style="fill:#a46c00;fill-opacity:1;stroke:none" />
+        <path
+           style="fill:none;stroke:#a46c00;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+           d="m 21.145538,22.585333 c 3.080395,-1.843944 5.016151,0.993246 4.736606,3.215426"
+           id="path6571"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cc" />
+        <path
+           style="fill:none;stroke:#a46c00;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+           d="m 24.412454,22.889366 c -0.790335,1.146078 -1.475825,1.882469 -2.712417,2.4284"
+           id="path6573"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cc" />
+      </g>
+    </g>
+    <g
+       id="g5024"
+       mask="url(#mask6087)">
+      <use
+         height="1024"
+         width="32"
+         id="use5951"
+         transform="translate(0,32.010722)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4883"
+         transform="translate(0,30.010722)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4959"
+         transform="translate(0,32.010722)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5029"
+       mask="url(#mask6091)">
+      <use
+         height="1024"
+         width="32"
+         id="use5953"
+         transform="translate(0,64.992147)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4885"
+         transform="translate(0,60.992147)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4961"
+         transform="translate(0,64.992147)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5034"
+       mask="url(#mask6095)">
+      <use
+         height="1024"
+         width="32"
+         id="use5955"
+         transform="translate(0,96.027497)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4887"
+         transform="translate(0,94.027537)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4963"
+         transform="translate(0,96.027497)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5039"
+       mask="url(#mask6099)">
+      <use
+         height="1024"
+         width="32"
+         id="use5957"
+         transform="translate(0,128.03354)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4889"
+         transform="translate(0,128.03358)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4965"
+         transform="translate(0,128.03354)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5044"
+       mask="url(#mask6103)">
+      <use
+         height="1024"
+         width="32"
+         id="use5959"
+         transform="translate(0,160.0488)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4891"
+         transform="translate(0,160.04884)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4967"
+         transform="translate(0,160.0488)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5049"
+       mask="url(#mask6107)">
+      <use
+         height="1024"
+         width="32"
+         id="use5961"
+         transform="translate(0,192.00096)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4893"
+         transform="translate(0,190.001)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4969"
+         transform="translate(0,192.00096)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5054"
+       mask="url(#mask6111)">
+      <use
+         height="1024"
+         width="32"
+         id="use5963"
+         transform="translate(0,224.92845)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4895"
+         transform="translate(0,220.92849)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4971"
+         transform="translate(0,224.92845)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5059"
+       mask="url(#mask6115)">
+      <use
+         height="1024"
+         width="32"
+         id="use5965"
+         transform="translate(0,256.01774)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4897"
+         transform="translate(0,254.01778)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4973"
+         transform="translate(0,256.01774)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5064"
+       mask="url(#mask6119)">
+      <use
+         height="1024"
+         width="32"
+         id="use5967"
+         transform="translate(0,288.01923)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4899"
+         transform="translate(0,288.01927)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4975"
+         transform="translate(0,288.01923)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5069"
+       mask="url(#mask6123)">
+      <use
+         height="1024"
+         width="32"
+         id="use5969"
+         transform="translate(0,320.02991)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4901"
+         transform="translate(0,320.02995)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4977"
+         transform="translate(0,320.02991)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5074"
+       mask="url(#mask6127)">
+      <use
+         height="1024"
+         width="32"
+         id="use5971"
+         transform="translate(0,352.036)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4903"
+         transform="translate(0,350.03604)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4979"
+         transform="translate(0,352.036)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5079"
+       mask="url(#mask6131)">
+      <use
+         height="1024"
+         width="32"
+         id="use5973"
+         transform="translate(0,385.01283)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4905"
+         transform="translate(0,381.01287)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4981"
+         transform="translate(0,385.01283)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5084"
+       mask="url(#mask6135)">
+      <use
+         height="1024"
+         width="32"
+         id="use5975"
+         transform="translate(0,415.99883)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4907"
+         transform="translate(0,413.99887)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4983"
+         transform="translate(0,415.99883)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5089"
+       mask="url(#mask6139)">
+      <use
+         height="1024"
+         width="32"
+         id="use5977"
+         transform="translate(0,448.00492)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4909"
+         transform="translate(0,448.00496)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4985"
+         transform="translate(0,448.00492)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5094"
+       mask="url(#mask6143)">
+      <use
+         height="1024"
+         width="32"
+         id="use5979"
+         transform="translate(0,480.0156)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4911"
+         transform="translate(0,480.01564)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4987"
+         transform="translate(0,480.0156)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5099"
+       mask="url(#mask6147)">
+      <use
+         height="1024"
+         width="32"
+         id="use5981"
+         transform="translate(0,510.94309)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4913"
+         transform="translate(0,512.94313)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4989"
+         transform="translate(0,510.94309)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5104"
+       mask="url(#mask6151)">
+      <use
+         height="1024"
+         width="32"
+         id="use5983"
+         transform="translate(0,544.03237)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4915"
+         transform="translate(0,544.03241)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4991"
+         transform="translate(0,544.03237)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+    <g
+       id="g5109"
+       mask="url(#mask6155)">
+      <use
+         height="1024"
+         width="32"
+         id="use5985"
+         transform="translate(0,575.98453)"
+         xlink:href="#g6669"
+         inkscape:tiled-clone-of="#g6669"
+         y="0"
+         x="0" />
+      <use
+         height="1024"
+         width="32"
+         id="use4917"
+         transform="translate(0,575.98457)"
+         xlink:href="#g4596"
+         inkscape:tiled-clone-of="#g4596"
+         y="0"
+         x="0" />
+      <g
+         style="display:inline"
+         inkscape:tile-y0="2.2352121"
+         inkscape:tile-x0="0.9999999"
+         id="use3415"
+         transform="translate(20,558.74158)"
+         mask="url(#mask8318-4)">
+        <g
+           id="g3449"
+           transform="matrix(0.72337124,0,0,0.72337124,9.0079555,12.948741)">
+          <path
+             sodipodi:type="arc"
+             style="fill:#ffffff;fill-opacity:1;stroke:none"
+             id="path3451"
+             sodipodi:cx="-13.338083"
+             sodipodi:cy="5.7885423"
+             sodipodi:rx="3.8258853"
+             sodipodi:ry="3.8258853"
+             d="m -9.512198,5.7885423 a 3.8258853,3.8258853 0 1 1 -7.651771,0 3.8258853,3.8258853 0 1 1 7.651771,0 z"
+             transform="matrix(0.91482094,0,0,0.91482094,2.3130503,11.599892)" />
+        </g>
+        <g
+           id="g3455"
+           transform="translate(-21.816976,-24.862783)">
+          <path
+             transform="matrix(0.91482094,0,0,0.91482094,32.201958,46.20452)"
+             d="m -9.512198,5.7885423 a 3.8258853,3.8258853 0 1 1 -7.651771,0 3.8258853,3.8258853 0 1 1 7.651771,0 z"
+             sodipodi:ry="3.8258853"
+             sodipodi:rx="3.8258853"
+             sodipodi:cy="5.7885423"
+             sodipodi:cx="-13.338083"
+             id="path3457"
+             style="fill:#ffffff;fill-opacity:1;stroke:none"
+             sodipodi:type="arc" />
+        </g>
+        <path
+           style="fill:none;stroke:#a3086a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           d="M 1.1507196,25.587877 3.4213307,24.321435"
+           id="path4229"
+           inkscape:connector-curvature="0" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path4242"
+           d="m -3.5839634,27.497377 3.53397503,-1.72032"
+           style="fill:none;stroke:#a3086a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+      </g>
+      <use
+         height="1024"
+         width="32"
+         id="use4993"
+         transform="translate(0,575.98453)"
+         xlink:href="#g6661"
+         inkscape:tiled-clone-of="#g6661"
+         y="0"
+         x="0" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="cleanface"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#f49fe9;fill-opacity:1;fill-rule:nonzero;stroke:#faa200;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline;filter:url(#filter4090)"
+       id="path3101"
+       sodipodi:cx="22.440649"
+       sodipodi:cy="22.596518"
+       sodipodi:rx="7.6036916"
+       sodipodi:ry="7.6036916"
+       d="m 30.044341,22.596518 a 7.6036916,7.6036916 0 1 1 -15.207384,0 7.6036916,7.6036916 0 1 1 15.207384,0 z"
+       transform="matrix(0.88750896,0,0,0.88750896,1.0396555,0.65521562)"
+       inkscape:tile-cx="21.051967"
+       inkscape:tile-cy="21.37548"
+       inkscape:tile-w="12.786359"
+       inkscape:tile-h="12.786359"
+       inkscape:tile-x0="14.658787"
+       inkscape:tile-y0="14.9823" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       id="use4006"
+       transform="translate(0,32)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,65.01394)"
+       id="use4008"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,96.003339)"
+       id="use4010"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,127.99875)"
+       id="use4012"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,160.0188)"
+       id="use4014"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,192.02656)"
+       id="use4016"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,225.01593)"
+       id="use4018"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,256.00529)"
+       id="use4020"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,287.98851)"
+       id="use4022"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,319.99628)"
+       id="use4024"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,352.01632)"
+       id="use4026"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,385.01795)"
+       id="use4028"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,416.00731)"
+       id="use4030"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,448.01508)"
+       id="use4032"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,480.01058)"
+       id="use4034"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,511.02494)"
+       id="use4036"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,544.00112)"
+       id="use4038"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3101"
+       xlink:href="#path3101"
+       transform="translate(0,576.02116)"
+       id="use4040"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer8"
+     inkscape:label="frame-0.5"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none"
+       id="rect20004"
+       width="31"
+       height="31"
+       x="0.5"
+       y="0.5"
+       inkscape:tile-cx="16"
+       inkscape:tile-cy="16"
+       inkscape:tile-w="32"
+       inkscape:tile-h="32"
+       inkscape:tile-x0="-2.6098915e-15"
+       inkscape:tile-y0="0" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,32)"
+       id="use20175"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,64)"
+       id="use20177"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,96)"
+       id="use20179"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,128)"
+       id="use20181"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,160)"
+       id="use20183"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,192)"
+       id="use20185"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,224)"
+       id="use20187"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,256)"
+       id="use20189"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,288)"
+       id="use20191"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,320)"
+       id="use20193"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,352)"
+       id="use20195"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,384)"
+       id="use20197"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,416)"
+       id="use20199"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,448)"
+       id="use20201"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,480)"
+       id="use20203"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,512)"
+       id="use20205"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,544)"
+       id="use20207"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#rect20004"
+       xlink:href="#rect20004"
+       transform="translate(0,576)"
+       id="use20209"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="hand"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1"
+       id="path3296"
+       sodipodi:cx="13.082203"
+       sodipodi:cy="31.332769"
+       sodipodi:rx="3.5490334"
+       sodipodi:ry="2.8754942"
+       d="m 16.631236,31.332769 a 3.5490334,2.8754942 0 1 1 -7.0980665,0 3.5490334,2.8754942 0 1 1 7.0980665,0 z"
+       transform="matrix(0.98618401,0,0,0.86941576,-0.40145933,3.2587965)"
+       inkscape:tile-cx="12.253232"
+       inkscape:tile-cy="30.529706"
+       inkscape:tile-w="8.5487669"
+       inkscape:tile-h="7.0462566"
+       inkscape:tile-x0="7.9788488"
+       inkscape:tile-y0="27.006578" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       id="use3526"
+       transform="translate(0,33)"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,66)"
+       id="use3528"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,97)"
+       id="use3530"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,128)"
+       id="use3532"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,160)"
+       id="use3534"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,193)"
+       id="use3536"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,226)"
+       id="use3538"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,257)"
+       id="use3540"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,288)"
+       id="use3542"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,320)"
+       id="use3544"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,353)"
+       id="use3546"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(1,386)"
+       id="use3548"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,417)"
+       id="use3550"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,448)"
+       id="use3552"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,480)"
+       id="use3554"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,510)"
+       id="use3556"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,543)"
+       id="use3558"
+       width="32"
+       height="1024" />
+    <use
+       x="0"
+       y="0"
+       inkscape:tiled-clone-of="#path3296"
+       xlink:href="#path3296"
+       transform="translate(0,576)"
+       id="use3560"
+       width="32"
+       height="1024" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="frame-0.5 and hand"
+     style="display:inline" />
+</svg>
Binary file share/hedgewars/Data/Graphics/Hedgehog/Bubble.png has changed
Binary file share/hedgewars/Data/Graphics/Hedgehog/Happy.png has changed
Binary file share/hedgewars/Data/Graphics/Missions/Scenario/Big_Armory@2x.png has changed
Binary file share/hedgewars/Data/Graphics/dynamiteDefused.png has changed
--- a/share/hedgewars/Data/Locale/campaigns_de.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/campaigns_de.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -54,7 +54,7 @@
 A_Space_Adventure-desert02.desc="Unser Held suchte nach dem Teil in diesem Tunnel, als er unerwarteterweise anfing, geflutet zu werden! Komm so schnell wie möglich zur Oberfläche und pass auf, keine Mine auszulösen."
 
 A_Space_Adventure-desert03.name="Nebenmission: Präzisionsfliegen"
-A_Space_Adventure-desert03.desc="Unser Held hat etwas Zeit, um mit Funkflugzeugen zu spielen und etwas Spaß zu haben. Flieg das Funkflugzeug und triff alle Ziele!"
+A_Space_Adventure-desert03.desc="Unser Held hat etwas Zeit, um mit Funkflugzeugen zu spielen und etwas Spaß zu haben. Flieg das Funkflugzeug und triff alle Ziele! Wenn du es schaffst, erhältst du zusätzliche Munition für die Hauptmission."
 
 A_Space_Adventure-fruit01.name="Hauptmission: Schlechtes Timing"
 A_Space_Adventure-fruit01.desc="Auf dem Obstplaneten laufen die Dinge nicht so gut. Igel sammeln kein Obst, sondern sie bereiten sich auf den Kampf vor. Du musst dich entscheiden, ob du kämpfen oder fliehen wirst."
@@ -69,7 +69,7 @@
 A_Space_Adventure-death01.desc="Auf dem Todesplaneten, dem sterilsten Planeten in der Gegend, ist unser Held ganz kurz davor, das letzte Teil des Geräts zu holen! Allerdings erwartet ihn eine unangenehme Überraschung."
 
 A_Space_Adventure-death02.name="Nebenmission: Die Spezialisten töten"
-A_Space_Adventure-death02.desc="Unser Held ist wieder in eine schwierige Situation geraten. Besiege die »5 tödlichen Igel« in ihrem eigenem Spiel!"
+A_Space_Adventure-death02.desc="Unser Held ist wieder in eine schwierige Situation geraten. Besiege die »5 tödlichen Igel« in ihrem eigenem Spiel! Wenn du gewinnst, erhältst du ein paar Extras für die Hauptmission."
 
 A_Space_Adventure-final.name="Hauptmission: Der große Knall"
 A_Space_Adventure-final.desc="Unser Held muss ein paar Sprengkörper, die auf dem Meteoriten platziert wurden, detonieren. Beende diese Mission, ohne verletzt zu werden!"
--- a/share/hedgewars/Data/Locale/campaigns_en.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/campaigns_en.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -46,7 +46,7 @@
 A_Space_Adventure-desert02.name="Side Mission: Running for survival"
 A_Space_Adventure-desert02.desc="Our hero was searching for the part in this tunnel when it unexpectedly start getting flooded! Get to the surface as soon as possible and be careful not to trigger a mine."
 A_Space_Adventure-desert03.name="Side Mission: Precise flying"
-A_Space_Adventure-desert03.desc="Our hero has some time to play with RC planes and have some fun. Fly the RC plane and hit all the targets!"
+A_Space_Adventure-desert03.desc="Our hero has some time to play with RC planes and have some fun. Fly the RC plane and hit all the targets! If you win, you will gain some bonus ammo for the main mission."
 A_Space_Adventure-fruit01.name="Main Mission: Bad timing"
 A_Space_Adventure-fruit01.desc="On the fruit planet things aren't going so well. Hogs aren't collecting fruits but they are preparing for battle. You'll have to choose if you'll fight or if you'll flee."
 A_Space_Adventure-fruit02.name="Main Mission: Getting to the device"
@@ -56,6 +56,6 @@
 A_Space_Adventure-death01.name="Main Mission: The last encounter"
 A_Space_Adventure-death01.desc="On the Death Planet, the most infertile planet around, our hero is very close to get the last part of the device! However, an unpleasant surprise awaits ..."
 A_Space_Adventure-death02.name="Side Mission: Killing the specialists"
-A_Space_Adventure-death02.desc="Again our hero has gotten in a difficult situation. Defeat the “5 Deadly Hogs“ in their own game!"
+A_Space_Adventure-death02.desc="Again our hero has gotten in a difficult situation. Defeat the “5 Deadly Hogs“ in their own game! If you win, you will gain bonuses for the main mission."
 A_Space_Adventure-final.name="Main Mission: The big bang"
 A_Space_Adventure-final.desc="Our hero has to detonate some explosives that have been placed on the meteorite. Complete this mission without getting hurt!"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Locale/campaigns_zh_CN.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,61 @@
+A_Classic_Fairytale.name="经典童话"
+
+A_Classic_Fairytale-first_blood.name="任务 1: 第一滴血"
+A_Classic_Fairytale-first_blood.desc="帮助 Leaks a Lot 完成他的训练,成为一个合格的刺猬战士。你将训练使用绳索、降落伞、升龙拳和沙漠之鹰"
+
+A_Classic_Fairytale-shadow.name="任务 2: 暗影降临"
+A_Classic_Fairytale-shadow.desc="Leaks a Lot 和 Dense Cloud 外出打猎。准备好应对在森林等待你的危险。记住,做出明智的选择"
+
+A_Classic_Fairytale-journey.name="任务 3: 归途"
+A_Classic_Fairytale-journey.desc="Leaks a Lot 必须去岛屿的另一边。要快且谨慎."
+
+A_Classic_Fairytale-united.name="任务 4: 团结则存"
+A_Classic_Fairytale-united.desc="经过漫长的旅途,Leaks a Lot 终于回到村庄。然而,没有时间休息。你必须从食人族的愤怒中保卫村庄"
+
+A_Classic_Fairytale-backstab.name="任务 5: 背刺"
+A_Classic_Fairytale-backstab.desc="可怕的食人族正在追杀 Leaks a Lot 和他的朋友们。再次打败他们,保护你的盟友。 相应地使用你的资源打败来袭的敌人!"
+
+A_Classic_Fairytale-dragon.name="任务 6: 龙的巢穴"
+A_Classic_Fairytale-dragon.desc="我们的英雄必须到湖的另一边。成为绳索大师,避免被敌人击中"
+
+A_Classic_Fairytale-family.name="任务 7: 家人团聚"
+A_Classic_Fairytale-family.desc="我们的英雄必须再次拯救部落。消灭敌人,解救战友。小心使用你的资源,因为它们是有限的。在正确的位置钻一些洞并靠近公主。"
+
+A_Classic_Fairytale-queen.name="任务 8: 女王万岁"
+A_Classic_Fairytale-queen.desc="部落必须再次战斗。为了胜利,他们必须和叛徒战斗,并使用所有可用的资源。打败敌人!"
+
+A_Classic_Fairytale-enemy.name="任务 9: 敌人的敌人"
+A_Classic_Fairytale-enemy.desc="多棒的转折!Leaks a Lot 必须和食人族并肩作战,对抗共同的敌人:邪恶机器人!"
+
+A_Classic_Fairytale-epil.name="任务 10: 后记"
+A_Classic_Fairytale-epil.desc="恭喜!Leaks a Lot 终于能在和平中离开,并受到新朋友和部落的赞扬。为你的成功感到自豪!你可以重玩之前的任务,并查看其他可能的结局"
+
+A_Space_Adventure.name="太空冒险"
+A_Space_Adventure-cosmos.name="菜单: 太空旅行"
+A_Space_Adventure-cosmos.desc="Hogera,刺猬的星球,快被巨大的陨石击中. 在这场求生的竞赛中,你必须带领受刺猬星球协会(PAotH)委托的勇敢刺猬,在邻星周围太空旅行,收集所有四个失落已久的反重力设备部件"
+A_Space_Adventure-moon01.name="主要任务: 第一站"
+A_Space_Adventure-moon01.desc="我们的英雄要在月球着陆,为飞碟加满燃料,但 Hogevil 教授先到那里并设好埋伏!救出 PAotH 研究员并赶走 Hogevil 教授!"
+A_Space_Adventure-moon02.name="支线任务: 追逐蓝刺猬"
+A_Space_Adventure-moon02.desc="我们的英雄拜访了一位隐士,住在月球上的 PAotH 老兵。然而,为了收集一些关于 Hogevil 教授的情报,你必须先在追逐游戏中打败隐士 Crazy Runner!"
+A_Space_Adventure-ice01.name="主要任务: 冰冻冒险"
+A_Space_Adventure-ice01.desc="欢迎来到冰雪星球,这里太冷了导致大多数武器不能用。你必须使用在那里找到的武器,从强盗首领 Thanta 手中得到丢失的部件!"
+A_Space_Adventure-ice02.name="支线任务: 艰难飞行"
+A_Space_Adventure-ice02.desc="我们的英雄来到冰雪星球,不可能不参观飞碟的奥林匹克体育场。在这个任务,你可以证明自己飞行技能,并宣称你是最棒的!"
+A_Space_Adventure-desert01.name="主要任务: 尘中搜索"
+A_Space_Adventure-desert01.desc="你在沙漠星球着陆!我们的英雄必须在地下隧道找到丢失的部件。请小心,恶毒的走私者在等着,攻击并抢劫你!"
+A_Space_Adventure-desert02.name="支线任务: 逃命"
+A_Space_Adventure-desert02.desc="我们的英雄在隧道中搜索部件时,隧道意外开始被淹没!尽快回到地面,请小心不要触发地雷。"
+A_Space_Adventure-desert03.name="支线任务: 精确飞行"
+A_Space_Adventure-desert03.desc="我们的英雄有时喜欢玩遥控飞机。控制遥控飞机,击中所有目标!如果你赢了会在主要任务得到奖励"
+A_Space_Adventure-fruit01.name="主要任务: 坏时机"
+A_Space_Adventure-fruit01.desc="在水果星球上,事情进行得不那么顺利。刺猬们没在收集水果,而是准备战斗。你必须选择打或跑。"
+A_Space_Adventure-fruit02.name="主要任务: 取得设备"
+A_Space_Adventure-fruit02.desc="我们的英雄在水果星球上接近了丢失的部件,Captain Lime 会帮你获得这个部件吗?"
+A_Space_Adventure-fruit03.name="主要任务: 精确射击"
+A_Space_Adventure-fruit03.desc="我们的英雄在红色草莓中迷路并被埋伏。消灭他们并为“取得设备”任务赢得额外子弹。"
+A_Space_Adventure-death01.name="主要任务: 最后的遭遇战"
+A_Space_Adventure-death01.desc="在死亡星球,周围最贫瘠的星球,我们的英雄非常接近最后的部件。然而,一个不愉快的惊喜在等着……"
+A_Space_Adventure-death02.name="支线任务: 杀死专家"
+A_Space_Adventure-death02.desc="我们的英雄再次陷入困境。在“致命五刺猬”自己的游戏中打败他们!如果你赢了会在主要任务得到奖励"
+A_Space_Adventure-final.name="主要任务: 大爆炸"
+A_Space_Adventure-final.desc="我们的英雄必须引爆一些放置在陨石上的爆炸物。无伤完成这个任务!"
--- a/share/hedgewars/Data/Locale/cs.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/cs.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -677,11 +677,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1540,6 +1542,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2849,6 +2852,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/cs.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/cs.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -304,7 +304,7 @@
 02:07=Ou, tahle bedna je těžká
 02:07=Možná bys mohl potřebovat tohle
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 je nudný...
 02:08=%1 se nemusel obtěžovat
 02:08=%1 je líný ježek
@@ -342,7 +342,7 @@
 02:08=%1 je slušně vystrašený
 02:08=%1 usnul
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 by měl trénovat míření!
 02:09=%1 se asi nenávidí
 02:09=%1 je na špatné straně!
--- a/share/hedgewars/Data/Locale/da.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/da.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -677,11 +677,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1540,6 +1542,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2849,6 +2852,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/da.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/da.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -304,7 +304,7 @@
 02:07=Åh, den her er tung
 02:07=Måske får du brug for den her
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 er sååå kedelig...
 02:08=%1 gad ikke lige
 02:08=%1 er et dovent pindsvin
@@ -342,7 +342,7 @@
 02:08=%1 er stiv af skræk
 02:08=%1 er vist faldet i søvn
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 burde øve sig i at sigte!
 02:09=%1 hader vist sig selv
 02:09=%1 står på den forkerte side!
--- a/share/hedgewars/Data/Locale/de.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/de.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -499,8 +499,8 @@
 ["Destroy him, Leaks A Lot! He is responsible for the deaths of many of us!"]="Zerstöre ihn, Undichte Stelle! Er ist verantwortlich für viele Tote auf unserer Seite!",
 ["Destroy invaders and collect bonuses to score points."] = "Zerstöre Invasoren und sammle Boni auf, um zu punkten.", -- Space_Invasion
 ["- Destroy the enemy"] = "- Vernichte den Feind", -- HedgeEditor
+["- Destroy the red targets"] = "- Zerstöre die roten Ziele", -- HedgeEditor
 ["- Destroy the red target"] = "- Zerstöre das rote Ziel", -- HedgeEditor
-["- Destroy the red targets"] = "- Zerstöre die roten Ziele", -- HedgeEditor
 ["Destroy the targets!"] = "Zerstöre die Zielscheiben!", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
 ["+%d flamer fuel!"] = "+%d Flammenwerfertreibstoff", -- Tumbler
 ["%d-Hit Combo! +%d points!"] = "%d-Treffer-Kombi! +%d Punkte!", -- Space_Invasion
@@ -692,6 +692,7 @@
 ["Flawless victory!"]="Perfekter Sieg!",
 ["Flee: Press [Jump]"] = "Fliehen: Drücke [Springen]", -- A_Space_Adventure:fruit01
 ["Flesh for Brainz"]="Fleisch gegen Hirn",
+["Flower Power"] = "Flower-Power", -- Basic_Training_-_Rope
 ["Fly around and hurl explosives to your enemies."] = "Flieg herum und wirf Sprengkörper auf deine Gegner.", -- Tumbler
 ["Flying Saucer Training"] = "Grundausbildung: Fliegende Untertasse", -- Basic_Training_-_Flying_Saucer
 ["Fly into space to fight off the invaders with barrels!"] = "Flieg in den Weltraum, um die Invasoren mit Fässern abzuwehren!", -- Space_Invasion
@@ -699,6 +700,7 @@
 ["Fly to the moon"]="Flieg zum Mond.",
 ["Fly to the moon."] = "Flieg zum Mond.", -- A_Space_Adventure:cosmos
 ["Follow the path and destroy the next target."] = "Folge dem Pfad und zerstöre die nächste Zielscheibe.", -- Basic_Training_-_Rope
+["For each kill you win %d seconds."] = "Für jeden toten Igel erhältst du %d Sekunden.", -- RopeKnocking
 ["Forgetfulness: You will lose all your weapons each turn."] = "Vergesslichkeit: Du wirst jeden Zug alle Waffen verlieren.", -- Continental_supplies
 ["For the next crate, you have to do back jumps."] = "Für die nächste Kiste brauchst du Rückwärtssprünge.", -- Basic_Training_-_Movement
 ["Four Eyes"] = "Vier Augen", -- 
@@ -1097,7 +1099,7 @@
 ["I love you."] = "Ich liebe dich.", -- A_Classic_Fairytale:epil
 ["I'm afraid I can't let you proceed!"] = "Ich fürchte, ich kann euch nicht weitergehen lassen.", -- A_Classic_Fairytale:queen
 ["I'm afraid we cannot afford that."] = "Ich fürchte, wir können uns das nicht leisten.", -- A_Classic_Fairytale:queen
-["Imagine those targets are the wolves that killed your parents! Take your anger out on them!"]="Stell dir vor, diese Zielscheiben sind die Wölfe, die eine Eltern getötet haben! Lass deine Wut an ihnen aus!",
+["Imagine those targets are the wolves that killed your parents! Take your anger out on them!"]="Stell dir vor, diese Zielscheiben sind die Wölfe, die deine Eltern getötet haben! Lass deine Wut an ihnen aus!",
 ["I'm...alive? How? Why?"]="Ich lebe? Wie? Warum?",
 ["I'm a ninja."]="Ich bin ein Ninja.",
 ["I marked the place of their arrival. You're welcome!"]="Ich habe ihren Ankunftsort markiert. Gern geschehen!",
@@ -1545,6 +1547,7 @@
 ["One tribe was peaceful, spending their time hunting and training, enjoying the small pleasures of life..."]="Ein Stamm war friedlich und verbrachte die Zeit mit der Jagd, Übungen und den kleinen Freuden des Lebens.",
 ["Oneye"] = "Einauge", -- portal
 ["Only one hog per team allowed! Excess hogs will be removed."] = "Nur ein Igel pro Team erlaubt! Überschüssige Igel werden entfernt.", -- Mutant
+["Only one team per clan allowed! Excess teams will be removed."] = "Nur ein Team pro Klan erlaubt! Überschüssige Teams werden entfernt.", -- Mutant
 ["Only %s can be trusted with the crate."] = "Die Kiste kann nur %s anvertraut werden.", -- A_Space_Adventure:fruit02
 ["Only the best pilots can master the following stunts."] = "Nur die besten Piloten können die folgenden Stunts meistern.", -- Basic_Training_-_Flying_Saucer
 ["Only two clans allowed! Excess hedgehogs will be removed."] = "Nur zwei Klans erlaubt! Überschüssige Igel werden entfernt.", -- CTF_Blizzard
@@ -2485,8 +2488,8 @@
 ["Use it wisely!"]="Benutze sie weise!",
 ["Use it with precaution!"]="Benutze sie weise.",
 ["User Challenge"]="Benutzerherausforderung",
+["User Mission"] = "Benutzermission", -- HedgeEditor
 ["!"] = "!", -- User_Mission_-_Dangerous_Ducklings
-["User Mission"] = "Benutzermission", -- HedgeEditor
 ["Use space button twice to change flying saucer while being in air."]="Drücke die Angriffstaste 2 mal, um die fliegende Untertasse im Flug zu wechseln",
 ["Use space button twice to change flying saucer while floating in mid-air."]="Drücke die Angriffstaste 2 mal, um die fliegende Untertasse im Flug zu wechseln.",
 ["Use the attack key twice to change the flying saucer while being in air."] = "Benutze die Angriffstaste 2 mal, um die fliegende Untertasse in der Luft zu wechseln.", -- A_Space_Adventure:ice02
@@ -2838,6 +2841,7 @@
 ["You have kidnapped our whole tribe!"]="Ihr habt unseren ganzen Stamm entführt!",
 ["You have killed an innocent hedgehog!"]="Du hast einen unschuldigen Igel getötet!",
 ["You have killed %d of 16 hedgehogs (+%d points)."] = "Du hast %d von 16 Igeln getötet (+%d Punkte).", -- User_Mission_-_Rope_Knock_Challenge
+["You have killed %d of %d hedgehogs (+%d points)."] = "Du hast %d von %d Igeln getötet (+%d Punkte).", -- RopeKnocking
 ["You have launched %d bazookas."]="Du hast %d Bazookas abgefeuert.",
 ["You have launched %d homing bees."]="Du hast %d zielsuchende Bienen abgefeuert.",
 ["You have made %d shots."]="Du hast %d Schüsse abgegeben.",
--- a/share/hedgewars/Data/Locale/de.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/de.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -61,6 +61,7 @@
 00:58=Luftmine
 00:59=Creeper
 00:60=Minigun
+00:61=Wachroboter
 
 01:00=Laden …
 01:01=Unentschieden
@@ -111,6 +112,7 @@
 01:46=[Klan] %1: %2
 01:47=[%1]: %2
 01:48=?
+01:49=Videos können nicht aufgenommen werden, nachdem der /lua-Befehl benutzt wurde.
 
 ; Event messages
 ; Hog (%1) died
@@ -269,7 +271,7 @@
 02:01=%1 wird für immer Blasen machen
 02:01=%1 war ganz, ganz knapp vor einem Floß
 02:01=%1 dachte, Salzwasser sei gut für die Haut
-02:01=%1 bekommt Salzwasser in seine Wunden
+02:01=%1 bekommt Salzwasser in die Wunden
 02:01=%1 ging über die Planke
 02:01=%1 geht baden
 02:01=%1 ist nass, nass, nass
@@ -483,7 +485,7 @@
 02:05=Notvorräte!
 02:05=Hartnäckige Igel sind gute Igel
 02:05=Vergiss nicht deine Vitamine!
-02:05=Jemand hat wohl seine Pillen vergessen
+02:05=Jemand hat wohl die Pillen vergessen
 02:05=Wir denken an euch!
 02:05=Hilfe für die Verletzten
 02:05=Lasst uns deine Hartnäckigkeit erhöhen
@@ -753,7 +755,7 @@
 02:07=Direkt aus dem Baumarkt
 02:07=Erwecke den Erfinder in dir
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 ist so ein Langeweiler …
 02:08=%1 will nicht gestört werden
 02:08=%1 denkt weiter nach …
@@ -823,7 +825,7 @@
 
 02:08=%1 will nicht gestört werden
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 sollte lieber zielen üben!
 02:09=%1 scheint sich zu hassen
 02:09=%1 steht auf der falschen Seite!
@@ -844,7 +846,7 @@
 02:09=%1 verletzt sich selbst
 02:09=%1 blamiert sich!
 02:09=%1 ist ungeschickt
-02:09=%1 zeigt dem Feind, wozu er fähig ist
+02:09=%1 zeigt dem Feind, wo der Hammer hängt
 02:09=%1 ist nicht perfekt
 02:09=Mach dir keine Sorgen, %1, piemand ist nerfekt
 02:09=%1 hat das bestimmt mit Absicht getan
@@ -931,7 +933,7 @@
 ; Hog (%1) has to leave (team is gone)
 02:11=%1 muss ins Bett!
 02:11=%1 scheint zu beschäftigt zu sein
-02:11=Beam ihn hoch, Scotty!
+02:11=Beam sie hoch, Scotty!
 02:11=%1 muss weg
 02:11=%1 verkrümelt sich
 02:11=%1 macht sich vom Acker
@@ -1302,6 +1304,7 @@
 03:58=Schwebende Annäherungsmine
 03:59=Unfertige Waffe
 03:60=Die ultimative Feuerwaffe
+03:61=Unfertige Waffe
 
 ; Weapon Descriptions (use | as line breaks)
 04:00=Greife deine Feinde mit einfachen Granaten an.|Der Zeitzünder steuert den Explosionszeitpunkt.|1–5: Zeitzünder einstellen|Genaues Zielen + 1-5: Sprungkraft einstellen|Angriff: Halten, um mit mehr Kraft zu werfen
@@ -1363,8 +1366,9 @@
 04:56=Du kannst zwei Hackebeile auf deinen Feind schleudern,|Passagen und Tunnel blockieren, und sie sogar zum Klettern|benutzen! Der Schaden erhöht sich mit der Geschwindigkeit.|Aber sei vorsichtig! Es ist gefährlich, mit Messern zu spielen.|Angriff: Gedrückt halten, um mit mehr Schwung zu werfen (zwei mal)
 04:57=Bau einen SEHR elastischen Balken aus Gummi,|von dem Igel und andere Sachen abprallen,|ohne Fallschaden zu nehmen.|Links/Rechts: Ausrichtung des Gummis wählen|Cursor: Gummi platzieren
 04:58=Diese Annäherungsmine wird frei in der Luft schweben und|verfolgt törichte Igel, die dumm genug sind, ihr zu nahe zu|kommen. Allerdings ist ihre Explosion schwächer als|die der Landmine.|Angriff: Halten, um mit mehr Kraft zu werfen
-04:59=Diese Waffe ist unfertig und experimentell.|Benutze sie auf eigene Gefahr!
+04:59=Diese Waffe ist unfertig und experimentell.|Benutze sie auf eigene Gefahr!|Angriff: Einsetzen
 04:60=Lass es Kugeln auf deine Gegner hageln!|Und sie dachten wirklich, sie seien hinter|drei Trägerschichten sicher.|Angriff: Mit voller Kraft feuern|Hoch/Runter: Weiterzielen
+04:61=Diese Waffe ist unfertig und experimentell.|Benutze sie auf eigene Gefahr!|Angriff: Roboter platzieren
 
 ; Game goal strings
 05:00=Spielmodifikationen
@@ -1421,3 +1425,6 @@
 06:26=Unbekannter Befehl oder ungültige Parameter. Sag »/help« im Chat für eine Liste an Befehlen.
 06:27=/help room: Raum-Chatbefehle auflisten
 06:28=Du bist nicht online!
+06:29=/bubble: Igel die Luft anhalten lassen
+06:30=/happy: Igel glücklich aussehen lassen
+06:31=/sad: Igel unglücklich aussehen lassen
--- a/share/hedgewars/Data/Locale/el.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/el.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -286,7 +286,7 @@
 02:07=Ωωωχ! Αυτό το κουτί είναι βαρύ!
 02:07=Μπορεί να σου χρησιμεύσει σε κάτι!
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=Ο %1 είναι τόσο βαρετός...
 02:08=Ο %1 βαριέται ασυστόλως!
 02:08=Ο %1 είναι ένας τεμπέλης σκαντζόχοιρος!
@@ -326,7 +326,7 @@
 02:08=Ο %1 έχει κλάσει μέντες!
 02:08=Ο %1 αποκοιμήθηκε!
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=Ο %1 πρέπει να εξασκηθεί στην σκοποβολή!
 02:09=Ο %1 φαίνεται να έχει αυτοκτονικές τάσεις!
 02:09=Ο %1 πολεμάει στην λάθος πλευρά!
--- a/share/hedgewars/Data/Locale/en.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/en.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -63,6 +63,7 @@
 00:58=Air Mine
 00:59=Creeper
 00:60=Minigun
+00:61=Sentry Bot
 
 ; Game messages and HUD texts
 01:00=Loading …
@@ -121,6 +122,7 @@
 01:47=[%1]: %2
 ; Symbol for unknown mine timer
 01:48=?
+01:49=Videos can't be recorded after the /lua command was used.
 
 ; Event messages
 ; Normal hog (%1) died (0 health)
@@ -129,24 +131,24 @@
 02:00=%1 never saw that coming!
 02:00=%1 waves goodbye!
 02:00=%1 has gone to a better place!
-02:00=%1 meets his maker!
+02:00=%1 meets their maker!
 02:00=%1 can hang on no longer!
-02:00=%1 has done his duty!
+02:00=%1 has done their duty!
 02:00=%1 makes the ultimate sacrifice!
 02:00=%1 departs this mortal coil!
 02:00=%1 makes like a tree and leaves!
 02:00=%1 has timed out!
 02:00=%1 says peace out!
 02:00=%1 will be fondly remembered!
-02:00=%1 leaves behind a wife and child
-02:00=%1 has launched his last bazooka
-02:00=%1 has tossed his last grenade
-02:00=%1 has baked his last cake
-02:00=%1 has swung on his last rope
-02:00=%1 has called his last airstrike
-02:00=%1 has pumped his last shotgun
-02:00=%1 has thrown his last melon
-02:00=%1 has drawn his last deagle
+02:00=%1 leaves behind a sad family
+02:00=%1 has launched their last bazooka
+02:00=%1 has tossed their last grenade
+02:00=%1 has baked their last cake
+02:00=%1 has swung on their last rope
+02:00=%1 has called their last airstrike
+02:00=%1 has pumped their last shotgun
+02:00=%1 has thrown their last melon
+02:00=%1 has drawn their last deagle
 02:00=%1 took one shot too many
 02:00=%1 could really have used a health crate
 02:00=%1 has gone to play a better game
@@ -154,9 +156,9 @@
 02:00=%1 fails
 02:00=Poor, poor %1 ...
 02:00=%1 prefers WarMUX
-02:00=%1 has been blocking shots with his face
+02:00=%1 has been blocking shots with their face
 02:00=%1 is a hero amongst me...err...hogs
-02:00=%1 finds his place in Valhalla
+02:00=%1 finds their place in Valhalla
 02:00=%1 has left the building
 02:00=%1 goes the way of the dinosaurs
 02:00=%1 brings hedgehogs one step closer to extinction
@@ -230,22 +232,22 @@
 02:01=%1 checks out the deep end
 02:01=%1 goes glug glug glug
 02:01=%1 goes splash
-02:01=%1 forgot his armbands
+02:01=%1 forgot their armbands
 02:01=%1 really should have taken swimming lessons
-02:01=%1 left his surfboard at home
+02:01=%1 left their surfboard at home
 02:01=%1 is washed up
 02:01=%1 is one soggy hog
-02:01=%1 forgot to bring his life jacket
+02:01=%1 forgot to bring their life jacket
 02:01=%1 goes splish splash splish
 02:01=%1 is sleeping with the fishes
 02:01=%1 thinks the water physics suck in this game
 02:01=%1 looks thirsty
 02:01=The sea claims %1
 02:01=%1 is lost at sea
-02:01=%1 should have brought his scuba gear
+02:01=%1 should have brought their scuba gear
 02:01=%1 gets a burial at sea
 02:01=%1 has that sinking feeling
-02:01=%1 is practicing his backstroke
+02:01=%1 is practicing their backstroke
 02:01=%1 goes in search of the Titanic
 02:01=%1 is not Jesus
 02:01=%1 is finding Nemo
@@ -253,7 +255,7 @@
 02:01=You've gotta wonder how many hogs are down there
 02:01=%1 makes the ocean slightly higher
 02:01=%1 didn't enlist in the Navy
-02:01=%1 is doing his impersonation of a dead fish
+02:01=%1 is doing their impersonation of a dead fish
 02:01=At least you didn't go down the toilet, %1
 02:01=Sonic couldn't swim and neither can %1
 02:01=%1 wants to play Ecco the dolphin
@@ -265,11 +267,11 @@
 02:01=%1 is forever blowing bubbles
 02:01=%1 is short of a raft
 02:01=%1 thinks salt water is good for the skin
-02:01=%1 gets salt water in his wounds
+02:01=%1 gets salt water in their wounds
 02:01=%1 has walked the plank
 02:01=%1 has a bath
 02:01=%1 is wet wet wet
-02:01=%1 gets his quills wet
+02:01=%1 gets their quills wet
 02:01=It's Davy Jones' locker for %1
 02:01=%1 explores the Sea
 02:01=Hedgehogs have quills, not gills, %1!
@@ -466,7 +468,7 @@
 02:05=Emergency supplies!
 02:05=Strong hedgehogs are good hedgehogs
 02:05=Don't forget to take your vitamins!
-02:05=Somebody must have forgotten his daily pills
+02:05=Somebody must have forgotten their daily pills
 02:05=Adds to your total health
 02:05=We got you covered!
 02:05=Hurt hedgehogs have help
@@ -745,7 +747,7 @@
 02:07=Collect all the tools!
 02:07=Tools!
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 is sooo boring ...
 02:08=%1 couldn't be bothered
 02:08=%1 is one lazy hog
@@ -759,20 +761,20 @@
 02:08=%1 has a breather
 02:08=%1 has a rest
 02:08=%1 chills out
-02:08=%1 has no faith in his own abilities
+02:08=%1 has no faith in their own abilities
 02:08=%1 decides to do nothing at all
 02:08=%1 lets the enemy destroy itself
 02:08=%1 would be terrible at parties
 02:08=%1 hides out
 02:08=%1 has decided to pass on this opportunity
-02:08=%1 decides the best thing he can do is...nothing
+02:08=%1 decides the best thing to do is...nothing
 02:08=%1 is a big wuss
 02:08=Buck Buck Buck, %1 is a chicken
 02:08=%1 is looking a little yellow
 02:08=%1 is a coward!
 02:08=%1 is waiting for sudden death
 02:08=%1 is not the fighting type
-02:08=%1 is reconsidering his purpose in life
+02:08=%1 is reconsidering their purpose in life
 02:08=%1 was never much of a good shot anyway
 02:08=%1 didn't want to join the army in the first place
 02:08=Stop wasting our time, %1
@@ -800,12 +802,12 @@
 02:08=%1 attacked with nothing
 02:08=%1 is passive
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 should practice aiming!
-02:09=%1 seems to hate himself
+02:09=%1 seems to hate themselves
 02:09=%1 is standing on the wrong side!
 02:09=%1 makes like an emo
-02:09=%1 was holding his weapon the wrong way around
+02:09=%1 was holding their weapon the wrong way around
 02:09=%1 is a little sadistic
 02:09=%1 is a masochist
 02:09=%1 has no instinct of self-preservation
@@ -823,17 +825,17 @@
 02:09=%1 lives by the mantra of "no pain, no gain"
 02:09=%1 is confused
 02:09=%1 hurts itself in its confusion
-02:09=%1 has a knack for embarrassing himself
+02:09=%1 has a knack for embarrassing themselves
 02:09=%1 is a klutz!
 02:09=%1 is clumsy
-02:09=%1 shows the enemy what he's capable of
+02:09=%1 shows the enemy what they're capable of
 02:09=%1 can't be expected to be perfect all the time
 02:09=Don't worry %1, pobody's nerfect
 02:09=%1 totally did that on purpose
 02:09=I won't tell anyone if you don't, %1
 02:09=How embarrassing!
 02:09=I'm sure nobody saw that, %1
-02:09=%1 needs to review his field manual
+02:09=%1 needs to review their field manual
 02:09=%1's weapon clearly malfunctioned
 02:09=%1 is still practicing
 02:09=%1's shot backfired
@@ -850,7 +852,7 @@
 02:09=%1 confuses the enemy
 02:09=Something is wrong with %1
 02:09=Better luck next time, %1!
-02:09=%1 is his worst enemy
+02:09=%1 is their worst enemy
 02:09=Let's call that a technical difficulty, %1?
 02:09=%1 is drunk
 02:09=%1 says “Ouchywawa!”
@@ -894,7 +896,7 @@
 ; Hog (%1) has to leave (team is gone)
 02:11=%1 has to go to bed!
 02:11=%1 seems too busy to play
-02:11=Beam him up, Scotty!
+02:11=Beam 'em up, Scotty!
 02:11=%1 has to go
 02:11=%1 teleports into a parallel universe
 02:11=%1 vanishes into thin air
@@ -1214,6 +1216,7 @@
 03:58=Floating proximity bomb
 03:59=Incomplete weapon
 03:60=The ultimate firearm
+03:61=Incomplete weapon
 
 ; Weapon descriptions (use | as line breaks)
 04:00=Attack your enemies using a simple grenade.|It will explode once its timer reaches zero.|1-5: Set grenade's timer|Precise + 1-5: Set bounce strength|Attack: Hold to throw with more power
@@ -1239,8 +1242,8 @@
 04:20=Allows you to play the current turn with|a different hog.|Attack: Enable switching hogs|Switch: Select next hog|Precise + Switch: Select previous hog
 04:21=Shoot a projectile that will release|multiple clusters upon impact. The|clusters are hurled backwards and are|more dangerous than the main projectile.|Attack: Shoot at full power
 04:22=Not just for Indiana Jones! The whip is a|useful weapon in many situations. Especially|when you'd like to shove someone off a cliff.|Attack: Strike everything in front of you
-04:23=If you have nothing to lose, this might be|quite handy. Sacrifice your hog by launching|it into a specific direction hurting everything|on his way and exploding at the end.|Attack: Launch the devastating and deadly attack
-04:24=Happy Birthday! Launch this cake, let it walk right|next to your enemies and let them have an explosive|party. The cake is able to pass almost all terrain|but he might detonate earlier this way.|Attack: Start the cake or let it stop and explode
+04:23=If you have nothing to lose, this might be|quite handy. Sacrifice your hog by launching|it into a specific direction hurting everything|on the way and exploding at the end.|Attack: Launch the devastating and deadly attack
+04:24=Happy Birthday! Launch this cake, let it walk right|next to your enemies and let them have an explosive|party. The cake is able to pass almost all terrain|but it might detonate earlier this way.|Attack: Start the cake or let it stop and explode
 04:25=With this costume kit your hog becomes irresistibly|attractive and makes nearby hogs jump in blind love|towards it (and into some gap or hole). The seduction is|so heartwarming, it even breaks the ice of frozen hogs.|Attack: Use the irresistible seduction
 04:26=Throw this juicy (and bouncy) watermelon at|your enemies. Once the timer expires, it will|split into several explosive pieces.|1-5: Set watermelon's timer|Attack: Hold to shoot with more power
 04:27=Let hellfire rain onto your opponents by using|this fiendish explosive. Don't get too close to|the explosion as smaller fires might last longer.|Attack: Hold to shoot with more power
@@ -1275,8 +1278,9 @@
 04:56=You can throw two cleavers at your enemy, block|passages and tunnels and even use them for|climbing! Its damage increases with its speed.|But be careful! Playing with knives is dangerous.|Attack: Hold to shoot with more power (twice)
 04:57=Build a VERY elastic rubber band, from which|hedgehogs and other things bounce off|without taking fall damage.|Left/Right: Change rubber band orientation|Cursor: Place rubber band in a valid position
 04:58=This proximity bomb will float freely in the air and follow|hedgehogs careless enough to come too close to it.|Its explosion is weaker than that of the land mine, however.|Attack: Hold to shoot with more power
-04:59=This weapon is unfinished and experimental.|Use at your own risk!
+04:59=This weapon is unfinished and experimental.|Use at your own risk!|Attack: Deploy
 04:60=Unleash a rain of bullets upon your foes!|And they thought they were safe|behind a triple layer of girders.|Attack: Shoot at full power|Up/Down: Continue aiming
+04:61=This weapon is unfinished and experimental.|Use at your own risk!|Attack: Deploy the bot
 
 ; Game goal strings
 05:00=Game Modes
@@ -1333,3 +1337,6 @@
 06:26=Unknown command or invalid parameters. Say “/help” in chat for a list of commands.
 06:27=/help room: List room chat commands
 06:28=You're not online!
+06:29=/bubble: Make hedgehog hold its breath
+06:30=/happy: Make hedgehog look happy
+06:31=/sad: Make hedgehog look sad
--- a/share/hedgewars/Data/Locale/es.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/es.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -677,11 +677,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1540,6 +1542,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2849,6 +2852,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/es.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/es.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -1,528 +1,538 @@
-; Spanish locale
-; Revision 4632
-
-00:00=Granada
-00:01=Granada de frag.
-00:02=Bazuca
-00:03=Abejorro
-00:04=Escopeta
-00:05=Taladro
-00:06=Pasar
-00:07=Cuerda
-00:08=Mina
-00:09=Desert Eagle
-00:10=Dinamita
-00:11=Bate de béisbol
-00:12=Shoryuken
-00:13=seg.
-00:14=Paracaídas
-00:15=Bombardeo aéreo
-00:16=Minado aéreo
-00:17=Soplete
-00:18=Construcción
-00:19=Teletransporte
-00:20=Cambiar erizo
-00:21=Mortero
-00:22=Látigo
-00:23=Kamikaze
-00:24=Tarta
-00:25=Seducción
-00:26=Sandía bomba
-00:27=Granada infernal
-00:28=Misil perforador
-00:29=Lanzapelotas
-00:30=Napalm
-00:31=Avión teledirigido
-00:32=Baja gravedad
-00:33=Daño extra
-00:34=Invulnerabilidad
-00:35=Tiempo extra
-00:36=Mira láser
-00:37=Vampirismo
-00:38=Rifle francotirador
-00:39=Platillo volante
-00:40=Cóctel molotov
-00:41=Birdy
-00:42=Dispositivo portátil de portales
-00:43=Piano
-00:44=Limbuger añejo
-00:45=Rifle sinusoidal (beta)
-00:46=Lanzallamas
-00:47=Bomba lapa
-00:48=Mazo
-00:49=Resurrección
-00:50=Bombardeo perforador aéreo
-00:51=Bola de barro
-00:52=No hay arma seleccionada
-00:53=Cabina del tiempo
-00:54=Pistola de barro
-
-; 01:00=Loading …
-01:01=Empate
-01:02=¡%1 venció!
-01:03=Volumen %1%
-01:04=Pausa
-01:05=¿Seguro que quieres salir (%1 / %2)?
-01:06=¡Muerte súbita!
-01:07=%1 restante
-01:08=Combustible: %1%
-01:09=Sincronizando...
-01:10=Usar esta herramienta no hará que acabe tu turno.
-01:11=Esta herramienta o arma todavía no está disponible.
-01:12=¡Última ronda antes de la muerte súbita!
-01:13=¡%1 rondas hasta la muerte súbita!
-01:14=¡Prepárate, %1!
-01:15=mínimo
-01:16=bajo
-01:17=normal
-01:18=alto
-01:19=extremo
-01:20=Nivel de elasticidad: %1
-
-; Eventos
-; El erizo (%1) ha muerto
-02:00=¡%1 ha estirado la pata!
-02:00=¡%1 ha visto la luz!
-02:00=¡%1 no lo vio venir!
-02:00=¡%1 se despide!
-02:00=¡%1 ahora está en un lugar mejor!
-02:00=¡%1 pasea por verdes praderas!
-02:00=¡%1 acaba de conocer a su Creador!
-02:00=¡%1 no pudo aguantar más!
-02:00=¡%1 ha cumplido con su deber!
-02:00=¡%1 hizo el sacrificio supremo!
-02:00=¡%1 deja atrás este mundo mortal!
-02:00=¡%1 ha expirado!
-02:00=¡%1 será recordado con cariño!
-02:00=¡%1 ha tenido un aneurisma!
-02:00=%1 deja atrás una mujer y tres niños
-02:00=%1 ha disparado su última bazuca
-02:00=%1 ha lanzado su última granada
-02:00=%1 ha cocinado su última tarta
-02:00=%1 se ha columpiado de su última cuerda
-02:00=%1 ha solicitado su último bombardeo aéreo
-02:00=%1 ha disparado su última escopeta
-02:00=%1 ha lanzado su último melón
-02:00=%1 ha apuntado su última pistola
-02:00=%1 pensó que aguantaría una más
-02:00=%1 habría agradecido un botiquín más
-02:00=%1 se ha ido a jugar a un juego mejor
-02:00=%1 se ha picado
-02:00=%1 falló
-02:00=Pobrecito %1...
-02:00=%1 prefiere Warmux
-02:00=%1 intentó parar las balas con su cara
-02:00=%1 es un héroe entre los hom... digo.. erizos
-02:00=%1 encontró el camino al Valhala
-02:00=%1 has left the building
-02:00=%1 siguió la misma suerte que los dinosaurios
-02:00=%1 acerca los erizos un poco más a la extinción
-02:00=%1, haces que se me humedezcan los ojos
-02:00=%1 es un ex-erizo
-02:00=%1 se fue a criar malvas
-02:00=%1 ha dejado de ser
-02:00=Despedíos de %1
-02:00=No hay esperanza para %1
-02:00=%1 recorrió la última milla
-02:00=%1 sufrió un Error Fatal
-02:00=%1 está frío como una piedra
-02:00=%1 ha expirado
-02:00=%1 se une al coro celestial
-02:00=¡Cuídate, %1, ojalá nos hubiéramos llegado a conocer mejor!
-02:00=%1 tenía intolerancia a las balas
-02:00=%1 habría necesitado una vida extra
-02:00=¿Hay algún médico en la sala?
-02:00=¡Zas! ¡En toda la boca!
-
-; El erizo (%1) se ha ahogado
-02:01=¡%1 hace el submarino!
-02:01=¡%1 imita al Titanic!
-02:01=¡%1 nada como una piedra!
-02:01=¡%1 flota como un ladrillo!
-02:01=¡%1 flota como el plomo!
-02:01=%1 investiga a fondo
-02:01=%1 hizo "glu, glu, glu"
-02:01=%1 hizo "splash"
-02:01=%1 olvidó sus brazaletes
-02:01=A %1 le habrían venido realmente bien aquellas clases de natación
-02:01=%1 olvidó su tabla de surf
-02:01=%1 tiene los dedos arrugados
-02:01=%1 está chorreando
-02:01=%1 olvidó su salvavidas
-02:01=%1 está durmiendo con los peces
-02:01=%1 piensa que la simulación de fluidos de este juego apesta
-02:01=%1 tenía sed, MUCHA sed
-02:01=El océano reclamó a %1
-02:01=%1 está perdido en el mar
-02:01=%1 debería haber traído sus gafas de bucear
-02:01=%1 ha sido enterrado en el mar
-02:01=%1 tuvo una sensación de pesadez
-02:01=%1 está practicando su zambullida
-02:01=%1 se fue a buscar el Titanic
-02:01=%1 no es como Jesús
-02:01=%1 está buscando a Nemo
-02:01=Te asombraría saber cuántos erizos hay ahí abajo
-02:01=%1 hizo que el nivel del mar subiera un pelín
-02:01=%1 no se alistó a la marina
-02:01=%1 hace su imitación del pez muerto
-02:01=Al menos no te tiraron por el váter, %1
-02:01=Sonic no podía nadar y tú tampoco, %1
-02:01=%1 prefiere jugar a Ecco the dolphin
-02:01=%1 ha ido a visitar Aquaria
-02:01=%1 ha encontrado la ciudad perdida de la Atlántida
-02:01=Necesitas practicar más tu estilo perrito, %1
-02:01=Necesitas practicar más tu brazada, %1
-02:01=Necesitas practicar más tu estilo mariposa, %1
-02:01=%1 debería haber traído sus esquís acuáticos
-02:01=A %1 no le gustan los deportes acuáticos
-02:01=%1 estará haciendo burbujas para siempre
-02:01=%1 no pensó que fuera tan profundo
-02:01=%1 cree que el agua salada es buena para la piel
-02:01=El agua salada cura las heridas, %1
-02:01=%1 paseó por la tabla
-02:01=%1 se bañó
-02:01=%1 se remojó
-02:01=%1 está mojado, mojado, mojado
-02:01=No olvides el jabón, %1
-02:01=¡No salpiques, %1!
-02:01=¿Estaba fría el agua?
-
-; El combate empieza
-02:02=¡Luchad!
-02:02=¡Armado y listo!
-02:02=Vamos a montar una buena fiesta
-02:02=El último erizo en pie gana
-02:02=¡Vamos!
-02:02=¡Let's rock!
-02:02=¡Al lío!
-02:02=En el comienzo...
-02:02=Este es el principio de algo grande
-02:02=Bienvenidos a Hedgewars
-02:02=Bienvenido al frente, soldado
-02:02=¡Machaca al enemigo!
-02:02=Que gane el mejor erizo
-02:02=Victoria o muerte
-02:02=Hasta la victoria, siempre
-02:02=Perder no es una opción
-02:02=¡Soltad los erizos de la guerra!
-02:02=Hedgewars, presentado por Hedgewars.org
-02:02=Tienes suerte si no juegas contra Tiyuri
-02:02=Tienes suerte si no juegas contra unC0Rr
-02:02=Tienes suerte si no juegas contra Nemo
-02:02=Tienes suerte si no juegas contra Smaxx
-02:02=Tienes suerte si no juegas contra Jessor
-02:02=¡Da lo mejor!
-02:02=¡El que pierda, paga!
-02:02=Que empiece la batalla del milenio
-02:02=Que empiece la batalla del siglo
-02:02=Que empiece la batalla de la década
-02:02=Que empiece la batalla del año
-02:02=Que empiece la batalla del mes
-02:02=Que empiece la batalla de la semana
-02:02=Que empiece la batalla del día
-02:02=Que empiece la batalla de la hora
-02:02=¡Hazlo lo mejor que puedas!
-02:02=¡Destruye al enemigo!
-02:02=Buena suerte
-02:02=Diviértete
-02:02=Lucha limpiamente
-02:02=Lucha suciamente
-02:02=Lucha con honore
-02:02=Si haces trampas, procura que no te pillen
-02:02=Nunca abandones
-02:02=Nunca te rindas
-02:02=¡Que empiece la marcha!
-02:02=¡Espero que estés listo para el meneo!
-02:02=¡Vamos, vamos, vamos!
-02:02=Tropas, ¡avanzad!
-02:02=¡Dadles caña!
-02:02=¡No temáis!
-
-; Round ends and team/clan (%1) wins
-02:03=¡%1 venció!
-
-; Round ends in a draw
-02:04=Empate
-
-; Botiquín
-02:05=¡Ayuda en camino!
-02:05=¡Médico!
-02:05=¡Primeros auxilios desde el cielo!
-02:05=Un buen lote de medicamentos para ti
-02:05=¡Buena salud... en forma de caja!
-02:05=La llamada del doctor
-02:05=¡Tiritas frescas!
-02:05=Vendas limpias
-02:05=Esto te hará sentir mejor
-02:05=¡Una poción para ti! Ups, juego equivocado
-02:05=¡Un paquete para recoger!
-02:05=Cógelo
-02:05=Una barrita saludable
-02:05=Una cura para el dolor
-02:05=Posología: ¡tantos como puedas conseguir!
-02:05=Envío urgente
-02:05=¡Víveres!
-
-; Caja de armamento
-02:06=¡Más armas!
-02:06=¡Refuerzos!
-02:06=¡Armado y listo!
-02:06=Me pregunto qué arma habrá ahí dentro...
-02:06=¡Víveres!
-02:06=¿Qué habrá dentro?
-02:06=La navidad llega antes a Hedgewars
-02:06=¡Un regalito!
-02:06=¡Envío especial!
-02:06=No sabes qué pesadilla ha sido atravesar la aduana con esto
-02:06=Juguetes destructivos del Cielo
-02:06=¡Cuidado! Volátil
-02:06=¡Cuidado! Inflamable
-02:06=Cógelo o reviéntalo, la elección es tuya
-02:06=¡Mmmmm, armas!
-02:06=Una caja de poder destructivo
-02:06=¡Correo aéreo!
-02:06=Contenga lo que contenga esa caja, seguro que no es pizza
-02:06=¡Cógelo!
-02:06=Envío de armas en camino
-02:06=Refuerzos en camino
-02:06=¡No dejes que el enemigo te lo quite!
-02:06=¡Nuevos juguetitos!
-02:06=¡Una caja misteriosa!
-
-; Caja de herramientas
-02:07=¡La hora de la herramienta!
-02:07=Esto podría ser útil...
-02:07=¡Herramientas!
-02:07=Usa esta caja
-02:07=Cuidado los de abajo
-02:07=¡Más herramientas!
-02:07=¡Herramientas para ti!
-02:07=¡Esto te vendrá bien!
-02:07=Úsalo correctamente
-02:07=Guau, esta caja es pesada
-02:07=Podrías necesitarlo
-
-; El erizo %1 pasa su turno
-02:08=%1 es un muermo...
-02:08=%1 ni se molesta
-02:08=%1 es un erizo perezoso
-02:08=%1 tiene la mente en blanco
-02:08=%1 abandona
-02:08=El que quiera peces debe mojarse el culo, %1
-02:08=%1 abandona vergonzosamente el frente
-02:08=%1 es muy muy vago
-02:08=%1 necesita un poco más de motivación
-02:08=%1 es un pacifista
-02:08=%1 necesita su inhalador
-02:08=%1 echa una cabezada
-02:08=%1 se relaja
-02:08=%1 se tumba a la bartola
-02:08=Ommmmmm...
-02:08=%1 no tiene confianza en sí mismo
-02:08=%1 decide no hacer nada en absoluto
-02:08=%1 deja que el enemigo se destruya a sí mismo
-02:08=%1 debe ser un muermo en las fiestas
-02:08=%1 se esconde
-02:08=%1 ha dejado pasar esta oportunidad
-02:08=%1 ha decidido que lo mejor que puede hacer es... nada
-02:08=%1 es un cobardica
-02:08=Co-Co-Cococó, %1 es un gallina
-02:08=¡%1 es un cobarde!
-02:08=%1 está esperando a la muerte súbita
-02:08=%1 no se encuentra en forma
-02:08=%1 está reconsiderando el sentido de su vida
-02:08=%1 nunca tuvo mucha puntería, de todas formas
-02:08=%1 nunca quiso alistarse en el ejército en realidad
-02:08=No nos hagas perder el tiempo, %1
-02:08=Me has decepcionado, %1
-02:08=Vamos, %1, eres capaz de hacerlo mejor
-02:08=La voluntad de %1 se quebró
-02:08=Por lo visto %1 tiene mejores cosas que hacer
-02:08=%1 está paralizado de terror
-02:08=%1 se ha dormido
-
-; El erizo %1 se daña únicamente a sí mismo
-02:09=¡%1 debería ir al campo de tiro a practicar!
-02:09=%1 se odia a sí mismo
-02:09=¡%1 estaba en el lado equivocado!
-02:09=%1 es un poco emo
-02:09=%1 tenía el arma del revés
-02:09=%1 es un poco sádico
-02:09=%1 es un masoquista
-02:09=%1 no tiene instinto de supervivencia
-02:09=%1 la pifió
-02:09=%1 la fastidió
-02:09=Ese fue un tiro pésimo, %1
-02:09=%1 es demasiado descuidado como para usar armas peligrosas
-02:09=%1, deberías considerar un cambio de profesión
-02:09=¡Peor! ¡Tiro! ¡Historia!
-02:09=¡No, no, no, %1, debes disparar AL ENEMIGO!
-02:09=%1 debería estar destruyendo enemigos
-02:09=%1 se acerca un poco más al suicidio
-02:09=%1 le echa una mano al enemigo
-02:09=Eso fue una estupidez, %1
-02:09=%1 vive con la máxima "sin dolor no hay honor"
-02:09=%1 está confuso
-02:09=%1 se dispara a sí mismo en su confusión
-02:09=¡%1 tiene un don para hacerse daño!
-02:09=¡%1 es un patoso!
-02:09=%1 es torpe
-02:09=%1 le acaba de demostrar al enemigo de lo que es capaz
-02:09=No se puede esperar que %1 sea perfecto todo el tiempo
-02:09=No te preocupes, %1, nabie es ferpecto
-02:09=¡Pues claro que %1 hizo eso a propósito!
-02:09=No se lo diré a nadie si tú tampoco lo haces, %1
-02:09=¡Qué vergüenza!
-02:09=Seguro que nadie te ha visto, %1
-02:09=%1 necesita revisar el manual
-02:09=Las armas de %1 eran obviamente defectuosas
-
-; Home run (usando el bate de béisbol)
-02:10=¡Home Run!
-02:10=Es un pájaro, es un avión...
-02:10=¡Eliminado!
-
-; El erizo (%1) abandona (el equipo ha salido de la partida)
-02:11=¡%1 tiene que irse a mimir!
-02:11=¡%1 tiene que irse a la cama!
-02:11=Parece que %1 está demasiado ocupado para seguir jugando
-02:11=¡Teletranspórtame, Scotty!
-02:11=%1 tiene que irse
-
-; Categorías de armamento
-03:00=Arma arrojadiza
-03:01=Arma arrojadiza
-03:02=Artillería
-03:03=Misil
-03:04=Arma de fuego (múltiples disparos)
-03:05=Herramienta de excavación
-03:06=Acción
-03:07=Herramienta de transporte
-03:08=Bomba de proximidad
-03:09=Arma de fuego (disparo único)
-03:10=¡BUM!
-03:11=¡Bonk!
-03:12=Artes marciales
-03:13=SIN USAR
-03:14=Herramienta de transporte
-03:15=Ataque por aire
-03:16=Ataque por aire
-03:17=Herramienta de excavación
-03:18=Herramienta
-03:19=Herramienta de transporte
-03:20=Acción
-03:21=Arma balística
-03:22=¡Llámame Indiana!
-03:23=Artes marciales (en serio)
-03:24=¡La tarta NO ES una mentira!
-03:25=Disfraz
-03:26=Arma arrojadiza jugosa
-03:27=Arma arrojadiza fogosa
-03:28=Artillería
-03:29=Artillería
-03:30=Ataque por aire
-03:31=Bomba radiocontrolada
-03:32=Efecto temporal
-03:33=Efecto temporal
-03:34=Efecto temporal
-03:35=Efecto temporal
-03:36=Efecto temporal
-03:37=Efecto temporal
-03:38=Arma de fuego (disparo único)
-03:39=Herramienta de transporte
-03:40=Bomba incendiaria
-03:41=Amigo chillón
-03:42=Creo que voy a tomar una nota...
-03:43=E interpretando el Cascanueces tenemos a...
-03:44=Consumir preferentemente antes de 1923
-03:45=¡El poder de la ciencia!
-03:46=¡Caliente caliente caliente!
-03:47=¡Pégalo en un buen sitio!
-03:48=Pablo clavó un clavito
-03:49=Hace exactamente lo que dice
-03:50=Para los amantes de los topos
-03:51=Me la encontré por el suelo
-03:52=SIN USAR
-03:53=Tipo 40
-03:54=Herramienta
-
-; Descripciones de armamento ( líneas delimitadas con | )
-04:00=Ataca a tus enemigos usando una sencilla granada.|Explotará una vez el temporizador llegue a cero.|1-5: ajustar temporizador.|Atacar: mantener presionado para lanzar más lejos.
-04:01=Ataca a tus enemigos usando una granada de fragmentación.|Se fragmentará en metralla explosiva|una vez el temporizador llegue a cero.|1-5: ajustar temporizador.|Atacar: mantener presionado para lanzar más lejos.
-04:02=Ataca a tus enemigos usando un proyectil balístico.|¡Atención al viento, modificará su trayectoria!|Atacar: mantener presionado para lanzar más lejos.
-04:03=Lanza un abejorro explosivo que buscará el objetivo marcado.|No dispares a máxima potencia para mejorar su precisión.|Ratón: seleccionar objetivo.|Atacar: mantener presionado para lanzar más lejos.
-04:04=Ataca a tus enemigos usando una escopeta de dos cañones.|Las balas se dispersan, así que no necesitarás|un tiro directo para herir a tus oponentes.|Atacar: abrir fuego (dos tiros).
-04:05=¡Entiérrate! Usa el martillo neumático para excavar|un pozo en el suelo y alcanzar otras áreas.|Atacar: empezar o terminar de cavar.
-04:06=¿Aburrido? ¿Sin posibilidad de atacar? ¿Racionas tu munición?|¡No hay problema! ¡Adelante, pasa esta turno, gallina!|Atacar: pasa este turno sin hacer nada.
-04:07=Cubre grandes distancias usando hábilmente la cuerda.|Gana inercia para empujar a otros erizos|o deja caer granadas u otras armas sobre ellos.|Atacar: lanza o suelta la cuerda.|Salto: deja caer el arma seleccionada.
-04:08=Mantén alejados a tus enemigos desplegando minas|en pasadizos estrechos o justo bajo sus pies.|¡Asegúrate de alejarte rápidamente para no activarla tú mismo!|Atacar: deposita una mina ante ti.
-04:09=¿No confías en tu puntería? Con la desert eagle|tienes 4 disparos para conseguir alcanzar a tu enemigo.|Atacar: abrir fuego (hasta 4 veces).
-04:10=La fuerza bruta siempre es una opción. Coloca este clásico|explosivo cerca de tus enemigos y huye.|Atacar: deposita la dinamita ante ti.
-04:11=¡Manda a tus enemigos lejos de ti de un buen batazo!|Acaba con ellos lanzándolos fuera del mapa o al agua.|¿O qué tal lanzarles algunas minas?|Atacar: batear cualquier cosa delante de ti.
-04:12=Enfréntate cara a cara con tus enemigos|y libera el poder de tus puños sobre ellos.|Útil para lanzarlos fuera del mapa o al agua.|Atacar: ejecutar el puño de fuego.
-04:13=SIN USAR
-04:14=¿Te dan miedo las alturas? Nunca más con un buen paracaídas.|Se desplegará automáticamente cuando caigas suficientemente lejos.|Atacar: desplegar/replegar el paracaídas.|Cursores: controlar el descenso.
-04:15=Haz llover bombas sobre tus enemigos solicitando un bombardeo aéreo.|Derecha/izquierda: determinar dirección del ataque.|Ratón: seleccionar objetivo.
-04:16=Haz llover minas sobre tus enemigos solicitando un minado aéreo.|Derecha/izquierda: determinar dirección del ataque.|Ratón: seleccionar objetivo.
-04:17=¿Buscas refugio? ¿Necesitas salir de una cueva?|Usa el soplete para cavar un túnel a través del terreno.|Atacar: encender/apagar el soplete.
-04:18=¿Necesitas protección adicional o quieres atravesar algún abismo?|Coloca tantas vigas como quieras/puedas.|Derecha/izquierda: seleccionar tipo de viga.|Ratón: colocar viga.
-04:19=Usado en el momento adecuado, el teletransporte puede ser|tu mayor aliado, ayudándote a escapar de situaciones mortales|o alcanzar víveres valiosos.|Ratón: seleccionar objetivo.
-04:20=Te permite jugar este turno con otro de tus erizos.|Atacar: activar.|Tabulador: cambiar entre erizos una vez activada.
-04:21=Lanza un proyectil que se fragmentará al impactar, enviando|una lluvia explosiva sobre tus enemigos.|Atacar: lanzar a máxima potencia.
-04:22=¡Siéntete como Indiana Jones! El látigo es un arma muy útil|en ciertas situaciones, especialmente para deshacerte de|erizos enemigos enviándolos fuera del mapa o al agua.|Atacar: golpear cualquier cosa delante de ti.
-04:23=Si no tienes nada que perder, esto puede serte útil.|Sacrifica a tu erizo lanzándolo como un cohete que despejará|cualquier cosa que encuentre en su camino, detonando al final.|Atacar: manda a tu erizo a la perdición.
-04:24=¡Feliz cumpleaños! Esta tarta bípeda caminará|hasta tus enemigos para darles una fiesta sorpresa explosiva.|La tarta es capaz de atravesar casi cualquier tipo de terreno,|pero evita que se quede atascada.|Atacar: enviar la tarta de camino o hacerla detonar.
-04:25=Utiliza este disfraz para seducir a tus enemigos,|haciéndoles perder la cabeza y saltar como locos hacia ti|(y de paso hacia el agua o una mina).|Atacar: disfrazarte y lanzar un beso a tus enemigos.
-04:26=Lanza esta jugosa sandía a tus enemigos.|Una vez el temporizador llegue a cero se fragmentará|en rodajas deliciosamente explosivas sobre tus enemigos.|Atacar: mantener presionado para lanzar más lejos.
-04:27=Haz  que el fuego del averno chamusque a tus enemigos|usando esta granada infernal.|¡Aléjate todo lo que puedas de la explosión,|la onda expansiva y el fuego tienen gran alcance!|Atacar: mantener presionado para lanzar más lejos.
-04:28=Una vez lanzado, este proyectil comenzará a cavar tan pronto toque tierra|y explotará al volver a salir a la superficie o al encontrar algún obstáculo,|como un erizo enemigo o una caja.|Atacar: mantener presionado para lanzar más lejos.
-04:29=¡Puede parecer un juguete, pero no lo es!|El lanzapelotas dispara montones de pelotas multicolores|llenas de explosivos que rebotarán hasta tus enemigos.|Atacar: lanzar a máxima potencia.|Arriba/abajo: modificar ángulo de disparo.
-04:30=Haz llover fuego sobre tus enemigos solicitando un ataque aéreo.|Con la destreza adecuada, este ataque puede erradicar grandes áreas de tierra.|Derecha/izquierda: determinar dirección del ataque.|Ratón: seleccionar objetivo.
-04:31=El avión teledirigido es el arma ideal para recoger cajas|o atacar enemigos lejanos.|Cargado con 3 bombas, el avión explotará|si choca contra algo.|Atacar: lanzar el avión o dejar caer las bombas.|Cursores: controlar el avión.
-04:32=¡Mucho mejor que cualquier dieta! Salta más alto y más lejos|o haz que tus enemigos vuelen incluso más lejos.|Atacar: activar.
-04:33=A veces uno necesita una pequeña ayuda para acabar con sus enemigos.|Atacar: activar.
-04:34=¡Na, na, na, no me tocas!|Atacar: activar.
-04:35=A veces el reloj corre demasiado deprisa. Consigue un poco|de tiempo extra para finalizar tu ataque.|Atacar: activar.
-04:36=Vaya, parece que tu puntería apesta. Por suerte para ti|la tecnología moderna está de tu lado.|Atacar: activar.
-04:37=No le temas a la luz del día. Sólo durará un turno, pero|te permitirá absorber la fuerza vital de tus enemigos|cuando les ataques.|Atacar: activar.
-04:38=El rifle de francotirador puede ser el arma más destructiva|de todo tu arsenal, pero es muy inefectiva en distancias cortas.|El daño infligido es proporcional a la distancia respecto del objetivo.|Atacar: abrir fuego (un disparo).
-04:39=Vuela hasta otras partes del mapa usando un platillo volante.|Puede ser complicado de controlar, pero conseguirás llegar|a sitios que nunca hubieras imaginado accesibles.|Atacar: activar.|Cursores: acelerar en esa dirección (un golpe cada vez).
-04:40=Alza un muro de fuego usando esta botella|llena de (en breve, ardiendo) líquido inflamable.|Atacar: mantener presionado para lanzar más lejos.
-04:41=¡Demostrando que lo natural puede ser mejor|que lo artificial, Birdy puede no sólo|transportar tu erizo como el platillo volante,|sino también lanzar huevos envenenados a tus enemigos!|Atacar: activar/lanzar huevos.|Cursores: aletear en esa dirección.
-04:42=El dispositivo portátil de portales es capaz de|transportar instantáneamente minas, armas o ¡incluso erizos!|Úsalo adecuadamente y tu campaña será un... |¡ÉXITO ALUCINANTE!|Atacar: disparar un portal.|Cambiar: alternar el color a disparar.
-04:43=¡Haz un debut explosivo en el mundo del espectáculo!|Lanza un piano desde lo más alto del firmamento, pero ten cuidado...|¡alguien debe tocarlo, y eso puede costarte la vida!|Ratón: seleccionar objetivo.|F1-F9: tocar el piano.
-04:44=¡No es simplemente queso, es un arma biológica!|No causará mucho daño al detonar, pero ten por seguro|que cualquiera que se acerque demasiado|a su oloroso rastro quedará gravemente intoxicado.|1-5: ajustar temporizador.|Atacar: mantener presionado para lanzar más lejos.
-04:45=Al fin una utilidad para todas esas clases de física.|Dispara una devastadora onda sinusoidal que mandará|a tus enemigos al infierno matemático.|Ten cuidado, el retroceso de este arma es considerable.|Atacar: disparar.
-04:46=Envuelve a tus enemigos en siseante fuego líquido.|¡Se derretirán de placer!|Atacar: activar.|Arriba/abajo: modificar trayectoria.|Izquierda/derecha: modificar potencia de fuego.
-04:47=¡Dos bombas lapa, doble diversión!|Útiles para planear reacciones en cadena, atrincherarte...|¡o las dos cosas!.|Atacar: mantener presionado para lanzar más lejos (dos disparos).
-04:48=¿Por qué la gente siempre la toma con los topos?|¡Golpear erizos es aún más divertido!|Un buen mazazo puede reducir en un tercio la|vida de cualquier erizo y enterrarlo completamente.|Atacar: activar.
-04:49=¡Resucita a tus aliados!|Pero ten cuidado, también resucitarás a tus enemigos.|Atacar: mantener presionado para resucitar lentamente.|Arriba: acelerar resurrección.
-04:50=¿Alguien está oculto bajo tierra?|¡Desentiérralos con un bombardeo perforador!|El temporizador controla la profundidad a alcanzar.
-04:51=¿Qué hay más barato que el barro?|Un tiro gratis gracias a la bola de barro.|Hará que el enemigo salga volando|y escuece un poco si te entra en los ojos.
-04:52=SIN USAR
-04:53=Vive una trepidante aventura a través del|espacio y el tiempo mientras tus compañeros|siguen luchando en tu lugar.|Estate preparado para volver en cualquier momento,|o al llegar la Muerte súbita si te has quedado solo.|Aviso: no funciona durante la Muerte súbita,|si estás solo o si eres el rey.
-04:54=Esparce un chorro de pegajoso barro.|Construye puentes, entierra enemigos o cierra túneles.|¡Ten especial cuidado de no mancharte!
-
-; Game goal strings
-05:00=Modos de juego
-05:01=Las siguientes reglas están activas:
-05:02=Posicionar el rey: elige un buen cobijo para tu rey
-05:03=Baja gravedad: mira bien dónde pisas
-05:04=Invulnerabilidad: todos los erizos tienen un campo de fuerza personal que los protege
-05:05=Vampirismo: dañar a tus enemigos te curará a ti
-05:06=Karma: compartirás parte del daño que inflijas
-05:07=Rey: ¡no permitas que tu rey muera!
-05:08=Posicionar erizos: los jugadores posicionan a mano su erizos por turnos antes de empezar a jugar
-05:09=Artillería: afina tu puntería, los erizos no pueden moverse
-05:10=Terreno indestructible: la mayoría de armas no pueden dañar el terreno de juego
-05:11=Munición compartida: los equipos del mismo color comparten la munición
-05:12=Minas: las minas detonarán a cabo de %1 segundo(s)
-05:13=Minas: las minas detonarán al instante
-05:14=Minas: las minas detonarán aleatoriamente al cabo de 0 - 3 segundos
-05:15=Modificador al daño: las armas harán un %1% de su daño habitual
-05:16=La salud de todos los erizos se restaura al final de cada turno
-05:17=La computadora resucita al morir
-05:18=Sin límite de ataques por turno
-05:19=El arsenal se restaura al final de cada turno
-05:20=Los erizos no comparten arsenal
-05:21=Tag Team: los equipos del mismo clan se van turnando entre ellos.|Turno compartido: los equipos del mismo clan comparten la duración del turno.
+; Spanish locale
+; Revision 4632
+
+00:00=Granada
+00:01=Granada de frag.
+00:02=Bazuca
+00:03=Abejorro
+00:04=Escopeta
+00:05=Taladro
+00:06=Pasar
+00:07=Cuerda
+00:08=Mina
+00:09=Desert Eagle
+00:10=Dinamita
+00:11=Bate de béisbol
+00:12=Shoryuken
+00:13=seg.
+00:14=Paracaídas
+00:15=Bombardeo aéreo
+00:16=Minado aéreo
+00:17=Soplete
+00:18=Construcción
+00:19=Teletransporte
+00:20=Cambiar erizo
+00:21=Mortero
+00:22=Látigo
+00:23=Kamikaze
+00:24=Tarta
+00:25=Seducción
+00:26=Sandía bomba
+00:27=Granada infernal
+00:28=Misil perforador
+00:29=Lanzapelotas
+00:30=Napalm
+00:31=Avión teledirigido
+00:32=Baja gravedad
+00:33=Daño extra
+00:34=Invulnerabilidad
+00:35=Tiempo extra
+00:36=Mira láser
+00:37=Vampirismo
+00:38=Rifle francotirador
+00:39=Platillo volante
+00:40=Cóctel molotov
+00:41=Birdy
+00:42=Dispositivo portátil de portales
+00:43=Piano
+00:44=Limbuger añejo
+00:45=Rifle sinusoidal (beta)
+00:46=Lanzallamas
+00:47=Bomba lapa
+00:48=Mazo
+00:49=Resurrección
+00:50=Bombardeo perforador aéreo
+00:51=Bola de barro
+00:52=No hay arma seleccionada
+00:53=Cabina del tiempo
+00:54=Pistola de barro
+
+; 01:00=Loading …
+01:01=Empate
+01:02=¡%1 venció!
+01:03=Volumen %1%
+01:04=Pausa
+01:05=¿Seguro que quieres salir (%1 / %2)?
+01:06=¡Muerte súbita!
+01:07=%1 restante
+01:08=Combustible: %1%
+01:09=Sincronizando...
+01:10=Usar esta herramienta no hará que acabe tu turno.
+01:11=Esta herramienta o arma todavía no está disponible.
+01:12=¡Última ronda antes de la muerte súbita!
+01:13=¡%1 rondas hasta la muerte súbita!
+01:14=¡Prepárate, %1!
+01:15=mínimo
+01:16=bajo
+01:17=normal
+01:18=alto
+01:19=extremo
+01:20=Nivel de elasticidad: %1
+
+; Eventos
+; El erizo (%1) ha muerto
+02:00=¡%1 ha estirado la pata!
+02:00=¡%1 ha visto la luz!
+02:00=¡%1 no lo vio venir!
+02:00=¡%1 se despide!
+02:00=¡%1 ahora está en un lugar mejor!
+02:00=¡%1 pasea por verdes praderas!
+02:00=¡%1 acaba de conocer a su Creador!
+02:00=¡%1 no pudo aguantar más!
+02:00=¡%1 ha cumplido con su deber!
+02:00=¡%1 hizo el sacrificio supremo!
+02:00=¡%1 deja atrás este mundo mortal!
+02:00=¡%1 ha expirado!
+02:00=¡%1 será recordado con cariño!
+02:00=¡%1 ha tenido un aneurisma!
+02:00=%1 deja atrás una mujer y tres niños
+02:00=%1 ha disparado su última bazuca
+02:00=%1 ha lanzado su última granada
+02:00=%1 ha cocinado su última tarta
+02:00=%1 se ha columpiado de su última cuerda
+02:00=%1 ha solicitado su último bombardeo aéreo
+02:00=%1 ha disparado su última escopeta
+02:00=%1 ha lanzado su último melón
+02:00=%1 ha apuntado su última pistola
+02:00=%1 pensó que aguantaría una más
+02:00=%1 habría agradecido un botiquín más
+02:00=%1 se ha ido a jugar a un juego mejor
+02:00=%1 se ha picado
+02:00=%1 falló
+02:00=Pobrecito %1...
+02:00=%1 prefiere Warmux
+02:00=%1 intentó parar las balas con su cara
+02:00=%1 es un héroe entre los hom... digo.. erizos
+02:00=%1 encontró el camino al Valhala
+02:00=%1 has left the building
+02:00=%1 siguió la misma suerte que los dinosaurios
+02:00=%1 acerca los erizos un poco más a la extinción
+02:00=%1, haces que se me humedezcan los ojos
+02:00=%1 es un ex-erizo
+02:00=%1 se fue a criar malvas
+02:00=%1 ha dejado de ser
+02:00=Despedíos de %1
+02:00=No hay esperanza para %1
+02:00=%1 recorrió la última milla
+02:00=%1 sufrió un Error Fatal
+02:00=%1 está frío como una piedra
+02:00=%1 ha expirado
+02:00=%1 se une al coro celestial
+02:00=¡Cuídate, %1, ojalá nos hubiéramos llegado a conocer mejor!
+02:00=%1 tenía intolerancia a las balas
+02:00=%1 habría necesitado una vida extra
+02:00=¿Hay algún médico en la sala?
+02:00=¡Zas! ¡En toda la boca!
+
+; El erizo (%1) se ha ahogado
+02:01=¡%1 hace el submarino!
+02:01=¡%1 imita al Titanic!
+02:01=¡%1 nada como una piedra!
+02:01=¡%1 flota como un ladrillo!
+02:01=¡%1 flota como el plomo!
+02:01=%1 investiga a fondo
+02:01=%1 hizo "glu, glu, glu"
+02:01=%1 hizo "splash"
+02:01=%1 olvidó sus brazaletes
+02:01=A %1 le habrían venido realmente bien aquellas clases de natación
+02:01=%1 olvidó su tabla de surf
+02:01=%1 tiene los dedos arrugados
+02:01=%1 está chorreando
+02:01=%1 olvidó su salvavidas
+02:01=%1 está durmiendo con los peces
+02:01=%1 piensa que la simulación de fluidos de este juego apesta
+02:01=%1 tenía sed, MUCHA sed
+02:01=El océano reclamó a %1
+02:01=%1 está perdido en el mar
+02:01=%1 debería haber traído sus gafas de bucear
+02:01=%1 ha sido enterrado en el mar
+02:01=%1 tuvo una sensación de pesadez
+02:01=%1 está practicando su zambullida
+02:01=%1 se fue a buscar el Titanic
+02:01=%1 no es como Jesús
+02:01=%1 está buscando a Nemo
+02:01=Te asombraría saber cuántos erizos hay ahí abajo
+02:01=%1 hizo que el nivel del mar subiera un pelín
+02:01=%1 no se alistó a la marina
+02:01=%1 hace su imitación del pez muerto
+02:01=Al menos no te tiraron por el váter, %1
+02:01=Sonic no podía nadar y tú tampoco, %1
+02:01=%1 prefiere jugar a Ecco the dolphin
+02:01=%1 ha ido a visitar Aquaria
+02:01=%1 ha encontrado la ciudad perdida de la Atlántida
+02:01=Necesitas practicar más tu estilo perrito, %1
+02:01=Necesitas practicar más tu brazada, %1
+02:01=Necesitas practicar más tu estilo mariposa, %1
+02:01=%1 debería haber traído sus esquís acuáticos
+02:01=A %1 no le gustan los deportes acuáticos
+02:01=%1 estará haciendo burbujas para siempre
+02:01=%1 no pensó que fuera tan profundo
+02:01=%1 cree que el agua salada es buena para la piel
+02:01=El agua salada cura las heridas, %1
+02:01=%1 paseó por la tabla
+02:01=%1 se bañó
+02:01=%1 se remojó
+02:01=%1 está mojado, mojado, mojado
+02:01=No olvides el jabón, %1
+02:01=¡No salpiques, %1!
+02:01=¿Estaba fría el agua?
+
+; El combate empieza
+02:02=¡Luchad!
+02:02=¡Armado y listo!
+02:02=Vamos a montar una buena fiesta
+02:02=El último erizo en pie gana
+02:02=¡Vamos!
+02:02=¡Let's rock!
+02:02=¡Al lío!
+02:02=En el comienzo...
+02:02=Este es el principio de algo grande
+02:02=Bienvenidos a Hedgewars
+02:02=Bienvenido al frente, soldado
+02:02=¡Machaca al enemigo!
+02:02=Que gane el mejor erizo
+02:02=Victoria o muerte
+02:02=Hasta la victoria, siempre
+02:02=Perder no es una opción
+02:02=¡Soltad los erizos de la guerra!
+02:02=Hedgewars, presentado por Hedgewars.org
+02:02=Tienes suerte si no juegas contra Tiyuri
+02:02=Tienes suerte si no juegas contra unC0Rr
+02:02=Tienes suerte si no juegas contra Nemo
+02:02=Tienes suerte si no juegas contra Smaxx
+02:02=Tienes suerte si no juegas contra Jessor
+02:02=¡Da lo mejor!
+02:02=¡El que pierda, paga!
+02:02=Que empiece la batalla del milenio
+02:02=Que empiece la batalla del siglo
+02:02=Que empiece la batalla de la década
+02:02=Que empiece la batalla del año
+02:02=Que empiece la batalla del mes
+02:02=Que empiece la batalla de la semana
+02:02=Que empiece la batalla del día
+02:02=Que empiece la batalla de la hora
+02:02=¡Hazlo lo mejor que puedas!
+02:02=¡Destruye al enemigo!
+02:02=Buena suerte
+02:02=Diviértete
+02:02=Lucha limpiamente
+02:02=Lucha suciamente
+02:02=Lucha con honore
+02:02=Si haces trampas, procura que no te pillen
+02:02=Nunca abandones
+02:02=Nunca te rindas
+02:02=¡Que empiece la marcha!
+02:02=¡Espero que estés listo para el meneo!
+02:02=¡Vamos, vamos, vamos!
+02:02=Tropas, ¡avanzad!
+02:02=¡Dadles caña!
+02:02=¡No temáis!
+
+; Round ends and team/clan (%1) wins
+02:03=¡%1 venció!
+
+; Round ends in a draw
+02:04=Empate
+
+; Botiquín
+02:05=¡Ayuda en camino!
+02:05=¡Médico!
+02:05=¡Primeros auxilios desde el cielo!
+02:05=Un buen lote de medicamentos para ti
+02:05=¡Buena salud... en forma de caja!
+02:05=La llamada del doctor
+02:05=¡Tiritas frescas!
+02:05=Vendas limpias
+02:05=Esto te hará sentir mejor
+02:05=¡Una poción para ti! Ups, juego equivocado
+02:05=¡Un paquete para recoger!
+02:05=Cógelo
+02:05=Una barrita saludable
+02:05=Una cura para el dolor
+02:05=Posología: ¡tantos como puedas conseguir!
+02:05=Envío urgente
+02:05=¡Víveres!
+
+; Caja de armamento
+02:06=¡Más armas!
+02:06=¡Refuerzos!
+02:06=¡Armado y listo!
+02:06=Me pregunto qué arma habrá ahí dentro...
+02:06=¡Víveres!
+02:06=¿Qué habrá dentro?
+02:06=La navidad llega antes a Hedgewars
+02:06=¡Un regalito!
+02:06=¡Envío especial!
+02:06=No sabes qué pesadilla ha sido atravesar la aduana con esto
+02:06=Juguetes destructivos del Cielo
+02:06=¡Cuidado! Volátil
+02:06=¡Cuidado! Inflamable
+02:06=Cógelo o reviéntalo, la elección es tuya
+02:06=¡Mmmmm, armas!
+02:06=Una caja de poder destructivo
+02:06=¡Correo aéreo!
+02:06=Contenga lo que contenga esa caja, seguro que no es pizza
+02:06=¡Cógelo!
+02:06=Envío de armas en camino
+02:06=Refuerzos en camino
+02:06=¡No dejes que el enemigo te lo quite!
+02:06=¡Nuevos juguetitos!
+02:06=¡Una caja misteriosa!
+
+; Caja de herramientas
+02:07=¡La hora de la herramienta!
+02:07=Esto podría ser útil...
+02:07=¡Herramientas!
+02:07=Usa esta caja
+02:07=Cuidado los de abajo
+02:07=¡Más herramientas!
+02:07=¡Herramientas para ti!
+02:07=¡Esto te vendrá bien!
+02:07=Úsalo correctamente
+02:07=Guau, esta caja es pesada
+02:07=Podrías necesitarlo
+
+; El erizo %1 pasa su turno
+02:08=%1 es un muermo...
+02:08=%1 ni se molesta
+02:08=%1 es un erizo perezoso
+02:08=%1 tiene la mente en blanco
+02:08=%1 abandona
+02:08=El que quiera peces debe mojarse el culo, %1
+02:08=%1 abandona vergonzosamente el frente
+02:08=%1 es muy muy vago
+02:08=%1 necesita un poco más de motivación
+02:08=%1 es un pacifista
+02:08=%1 necesita su inhalador
+02:08=%1 echa una cabezada
+02:08=%1 se relaja
+02:08=%1 se tumba a la bartola
+02:08=Ommmmmm...
+02:08=%1 no tiene confianza en sí mismo
+02:08=%1 decide no hacer nada en absoluto
+02:08=%1 deja que el enemigo se destruya a sí mismo
+02:08=%1 debe ser un muermo en las fiestas
+02:08=%1 se esconde
+02:08=%1 ha dejado pasar esta oportunidad
+02:08=%1 ha decidido que lo mejor que puede hacer es... nada
+02:08=%1 es un cobardica
+02:08=Co-Co-Cococó, %1 es un gallina
+02:08=¡%1 es un cobarde!
+02:08=%1 está esperando a la muerte súbita
+02:08=%1 no se encuentra en forma
+02:08=%1 está reconsiderando el sentido de su vida
+02:08=%1 nunca tuvo mucha puntería, de todas formas
+02:08=%1 nunca quiso alistarse en el ejército en realidad
+02:08=No nos hagas perder el tiempo, %1
+02:08=Me has decepcionado, %1
+02:08=Vamos, %1, eres capaz de hacerlo mejor
+02:08=La voluntad de %1 se quebró
+02:08=Por lo visto %1 tiene mejores cosas que hacer
+02:08=%1 está paralizado de terror
+02:08=%1 se ha dormido
+
+; El erizo %1 se daña únicamente a sí mismo
+02:09=¡%1 debería ir al campo de tiro a practicar!
+02:09=%1 se odia a sí mismo
+02:09=¡%1 estaba en el lado equivocado!
+02:09=%1 es un poco emo
+02:09=%1 tenía el arma del revés
+02:09=%1 es un poco sádico
+02:09=%1 es un masoquista
+02:09=%1 no tiene instinto de supervivencia
+02:09=%1 la pifió
+02:09=%1 la fastidió
+02:09=Ese fue un tiro pésimo, %1
+02:09=%1 es demasiado descuidado como para usar armas peligrosas
+02:09=%1, deberías considerar un cambio de profesión
+02:09=¡Peor! ¡Tiro! ¡Historia!
+02:09=¡No, no, no, %1, debes disparar AL ENEMIGO!
+02:09=%1 debería estar destruyendo enemigos
+02:09=%1 se acerca un poco más al suicidio
+02:09=%1 le echa una mano al enemigo
+02:09=Eso fue una estupidez, %1
+02:09=%1 vive con la máxima "sin dolor no hay honor"
+02:09=%1 está confuso
+02:09=%1 se dispara a sí mismo en su confusión
+02:09=¡%1 tiene un don para hacerse daño!
+02:09=¡%1 es un patoso!
+02:09=%1 es torpe
+02:09=%1 le acaba de demostrar al enemigo de lo que es capaz
+02:09=No se puede esperar que %1 sea perfecto todo el tiempo
+02:09=No te preocupes, %1, nabie es ferpecto
+02:09=¡Pues claro que %1 hizo eso a propósito!
+02:09=No se lo diré a nadie si tú tampoco lo haces, %1
+02:09=¡Qué vergüenza!
+02:09=Seguro que nadie te ha visto, %1
+02:09=%1 necesita revisar el manual
+02:09=Las armas de %1 eran obviamente defectuosas
+
+; Home run (usando el bate de béisbol)
+02:10=¡Home Run!
+02:10=Es un pájaro, es un avión...
+02:10=¡Eliminado!
+
+; El erizo (%1) abandona (el equipo ha salido de la partida)
+02:11=¡%1 tiene que irse a mimir!
+02:11=¡%1 tiene que irse a la cama!
+02:11=Parece que %1 está demasiado ocupado para seguir jugando
+02:11=¡Teletranspórtame, Scotty!
+02:11=%1 tiene que irse
+
+; Categorías de armamento
+03:00=Arma arrojadiza
+03:01=Arma arrojadiza
+03:02=Artillería
+03:03=Misil
+03:04=Arma de fuego (múltiples disparos)
+03:05=Herramienta de excavación
+03:06=Acción
+03:07=Herramienta de transporte
+03:08=Bomba de proximidad
+03:09=Arma de fuego (disparo único)
+03:10=¡BUM!
+03:11=¡Bonk!
+03:12=Artes marciales
+03:13=SIN USAR
+03:14=Herramienta de transporte
+03:15=Ataque por aire
+03:16=Ataque por aire
+03:17=Herramienta de excavación
+03:18=Herramienta
+03:19=Herramienta de transporte
+03:20=Acción
+03:21=Arma balística
+03:22=¡Llámame Indiana!
+03:23=Artes marciales (en serio)
+03:24=¡La tarta NO ES una mentira!
+03:25=Disfraz
+03:26=Arma arrojadiza jugosa
+03:27=Arma arrojadiza fogosa
+03:28=Artillería
+03:29=Artillería
+03:30=Ataque por aire
+03:31=Bomba radiocontrolada
+03:32=Efecto temporal
+03:33=Efecto temporal
+03:34=Efecto temporal
+03:35=Efecto temporal
+03:36=Efecto temporal
+03:37=Efecto temporal
+03:38=Arma de fuego (disparo único)
+03:39=Herramienta de transporte
+03:40=Bomba incendiaria
+03:41=Amigo chillón
+03:42=Creo que voy a tomar una nota...
+03:43=E interpretando el Cascanueces tenemos a...
+03:44=Consumir preferentemente antes de 1923
+03:45=¡El poder de la ciencia!
+03:46=¡Caliente caliente caliente!
+03:47=¡Pégalo en un buen sitio!
+03:48=Pablo clavó un clavito
+03:49=Hace exactamente lo que dice
+03:50=Para los amantes de los topos
+03:51=Me la encontré por el suelo
+03:52=SIN USAR
+03:53=Tipo 40
+03:54=Herramienta
+03:55=No se ve genial con esto!
+03:56=Porfavor usalo o dejalo
+03:57=Utilidad
+03:58=Bomba de proximidad flotante.
+03:59=El ultimo poder
+; Descripciones de armamento ( líneas delimitadas con | )
+04:00=Ataca a tus enemigos usando una sencilla granada.|Explotará una vez el temporizador llegue a cero.|1-5: ajustar temporizador.|Atacar: mantener presionado para lanzar más lejos.
+04:01=Ataca a tus enemigos usando una granada de fragmentación.|Se fragmentará en metralla explosiva|una vez el temporizador llegue a cero.|1-5: ajustar temporizador.|Atacar: mantener presionado para lanzar más lejos.
+04:02=Ataca a tus enemigos usando un proyectil balístico.|¡Atención al viento, modificará su trayectoria!|Atacar: mantener presionado para lanzar más lejos.
+04:03=Lanza un abejorro explosivo que buscará el objetivo marcado.|No dispares a máxima potencia para mejorar su precisión.|Ratón: seleccionar objetivo.|Atacar: mantener presionado para lanzar más lejos.
+04:04=Ataca a tus enemigos usando una escopeta de dos cañones.|Las balas se dispersan, así que no necesitarás|un tiro directo para herir a tus oponentes.|Atacar: abrir fuego (dos tiros).
+04:05=¡Entiérrate! Usa el martillo neumático para excavar|un pozo en el suelo y alcanzar otras áreas.|Atacar: empezar o terminar de cavar.
+04:06=¿Aburrido? ¿Sin posibilidad de atacar? ¿Racionas tu munición?|¡No hay problema! ¡Adelante, pasa esta turno, gallina!|Atacar: pasa este turno sin hacer nada.
+04:07=Cubre grandes distancias usando hábilmente la cuerda.|Gana inercia para empujar a otros erizos|o deja caer granadas u otras armas sobre ellos.|Atacar: lanza o suelta la cuerda.|Salto: deja caer el arma seleccionada.
+04:08=Mantén alejados a tus enemigos desplegando minas|en pasadizos estrechos o justo bajo sus pies.|¡Asegúrate de alejarte rápidamente para no activarla tú mismo!|Atacar: deposita una mina ante ti.
+04:09=¿No confías en tu puntería? Con la desert eagle|tienes 4 disparos para conseguir alcanzar a tu enemigo.|Atacar: abrir fuego (hasta 4 veces).
+04:10=La fuerza bruta siempre es una opción. Coloca este clásico|explosivo cerca de tus enemigos y huye.|Atacar: deposita la dinamita ante ti.
+04:11=¡Manda a tus enemigos lejos de ti de un buen batazo!|Acaba con ellos lanzándolos fuera del mapa o al agua.|¿O qué tal lanzarles algunas minas?|Atacar: batear cualquier cosa delante de ti.
+04:12=Enfréntate cara a cara con tus enemigos|y libera el poder de tus puños sobre ellos.|Útil para lanzarlos fuera del mapa o al agua.|Atacar: ejecutar el puño de fuego.
+04:13=SIN USAR
+04:14=¿Te dan miedo las alturas? Nunca más con un buen paracaídas.|Se desplegará automáticamente cuando caigas suficientemente lejos.|Atacar: desplegar/replegar el paracaídas.|Cursores: controlar el descenso.
+04:15=Haz llover bombas sobre tus enemigos solicitando un bombardeo aéreo.|Derecha/izquierda: determinar dirección del ataque.|Ratón: seleccionar objetivo.
+04:16=Haz llover minas sobre tus enemigos solicitando un minado aéreo.|Derecha/izquierda: determinar dirección del ataque.|Ratón: seleccionar objetivo.
+04:17=¿Buscas refugio? ¿Necesitas salir de una cueva?|Usa el soplete para cavar un túnel a través del terreno.|Atacar: encender/apagar el soplete.
+04:18=¿Necesitas protección adicional o quieres atravesar algún abismo?|Coloca tantas vigas como quieras/puedas.|Derecha/izquierda: seleccionar tipo de viga.|Ratón: colocar viga.
+04:19=Usado en el momento adecuado, el teletransporte puede ser|tu mayor aliado, ayudándote a escapar de situaciones mortales|o alcanzar víveres valiosos.|Ratón: seleccionar objetivo.
+04:20=Te permite jugar este turno con otro de tus erizos.|Atacar: activar.|Tabulador: cambiar entre erizos una vez activada.
+04:21=Lanza un proyectil que se fragmentará al impactar, enviando|una lluvia explosiva sobre tus enemigos.|Atacar: lanzar a máxima potencia.
+04:22=¡Siéntete como Indiana Jones! El látigo es un arma muy útil|en ciertas situaciones, especialmente para deshacerte de|erizos enemigos enviándolos fuera del mapa o al agua.|Atacar: golpear cualquier cosa delante de ti.
+04:23=Si no tienes nada que perder, esto puede serte útil.|Sacrifica a tu erizo lanzándolo como un cohete que despejará|cualquier cosa que encuentre en su camino, detonando al final.|Atacar: manda a tu erizo a la perdición.
+04:24=¡Feliz cumpleaños! Esta tarta bípeda caminará|hasta tus enemigos para darles una fiesta sorpresa explosiva.|La tarta es capaz de atravesar casi cualquier tipo de terreno,|pero evita que se quede atascada.|Atacar: enviar la tarta de camino o hacerla detonar.
+04:25=Utiliza este disfraz para seducir a tus enemigos,|haciéndoles perder la cabeza y saltar como locos hacia ti|(y de paso hacia el agua o una mina).|Atacar: disfrazarte y lanzar un beso a tus enemigos.
+04:26=Lanza esta jugosa sandía a tus enemigos.|Una vez el temporizador llegue a cero se fragmentará|en rodajas deliciosamente explosivas sobre tus enemigos.|Atacar: mantener presionado para lanzar más lejos.
+04:27=Haz  que el fuego del averno chamusque a tus enemigos|usando esta granada infernal.|¡Aléjate todo lo que puedas de la explosión,|la onda expansiva y el fuego tienen gran alcance!|Atacar: mantener presionado para lanzar más lejos.
+04:28=Una vez lanzado, este proyectil comenzará a cavar tan pronto toque tierra|y explotará al volver a salir a la superficie o al encontrar algún obstáculo,|como un erizo enemigo o una caja.|Atacar: mantener presionado para lanzar más lejos.
+04:29=¡Puede parecer un juguete, pero no lo es!|El lanzapelotas dispara montones de pelotas multicolores|llenas de explosivos que rebotarán hasta tus enemigos.|Atacar: lanzar a máxima potencia.|Arriba/abajo: modificar ángulo de disparo.
+04:30=Haz llover fuego sobre tus enemigos solicitando un ataque aéreo.|Con la destreza adecuada, este ataque puede erradicar grandes áreas de tierra.|Derecha/izquierda: determinar dirección del ataque.|Ratón: seleccionar objetivo.
+04:31=El avión teledirigido es el arma ideal para recoger cajas|o atacar enemigos lejanos.|Cargado con 3 bombas, el avión explotará|si choca contra algo.|Atacar: lanzar el avión o dejar caer las bombas.|Cursores: controlar el avión.
+04:32=¡Mucho mejor que cualquier dieta! Salta más alto y más lejos|o haz que tus enemigos vuelen incluso más lejos.|Atacar: activar.
+04:33=A veces uno necesita una pequeña ayuda para acabar con sus enemigos.|Atacar: activar.
+04:34=¡Na, na, na, no me tocas!|Atacar: activar.
+04:35=A veces el reloj corre demasiado deprisa. Consigue un poco|de tiempo extra para finalizar tu ataque.|Atacar: activar.
+04:36=Vaya, parece que tu puntería apesta. Por suerte para ti|la tecnología moderna está de tu lado.|Atacar: activar.
+04:37=No le temas a la luz del día. Sólo durará un turno, pero|te permitirá absorber la fuerza vital de tus enemigos|cuando les ataques.|Atacar: activar.
+04:38=El rifle de francotirador puede ser el arma más destructiva|de todo tu arsenal, pero es muy inefectiva en distancias cortas.|El daño infligido es proporcional a la distancia respecto del objetivo.|Atacar: abrir fuego (un disparo).
+04:39=Vuela hasta otras partes del mapa usando un platillo volante.|Puede ser complicado de controlar, pero conseguirás llegar|a sitios que nunca hubieras imaginado accesibles.|Atacar: activar.|Cursores: acelerar en esa dirección (un golpe cada vez).
+04:40=Alza un muro de fuego usando esta botella|llena de (en breve, ardiendo) líquido inflamable.|Atacar: mantener presionado para lanzar más lejos.
+04:41=¡Demostrando que lo natural puede ser mejor|que lo artificial, Birdy puede no sólo|transportar tu erizo como el platillo volante,|sino también lanzar huevos envenenados a tus enemigos!|Atacar: activar/lanzar huevos.|Cursores: aletear en esa dirección.
+04:42=El dispositivo portátil de portales es capaz de|transportar instantáneamente minas, armas o ¡incluso erizos!|Úsalo adecuadamente y tu campaña será un... |¡ÉXITO ALUCINANTE!|Atacar: disparar un portal.|Cambiar: alternar el color a disparar.
+04:43=¡Haz un debut explosivo en el mundo del espectáculo!|Lanza un piano desde lo más alto del firmamento, pero ten cuidado...|¡alguien debe tocarlo, y eso puede costarte la vida!|Ratón: seleccionar objetivo.|F1-F9: tocar el piano.
+04:44=¡No es simplemente queso, es un arma biológica!|No causará mucho daño al detonar, pero ten por seguro|que cualquiera que se acerque demasiado|a su oloroso rastro quedará gravemente intoxicado.|1-5: ajustar temporizador.|Atacar: mantener presionado para lanzar más lejos.
+04:45=Al fin una utilidad para todas esas clases de física.|Dispara una devastadora onda sinusoidal que mandará|a tus enemigos al infierno matemático.|Ten cuidado, el retroceso de este arma es considerable.|Atacar: disparar.
+04:46=Envuelve a tus enemigos en siseante fuego líquido.|¡Se derretirán de placer!|Atacar: activar.|Arriba/abajo: modificar trayectoria.|Izquierda/derecha: modificar potencia de fuego.
+04:47=¡Dos bombas lapa, doble diversión!|Útiles para planear reacciones en cadena, atrincherarte...|¡o las dos cosas!.|Atacar: mantener presionado para lanzar más lejos (dos disparos).
+04:48=¿Por qué la gente siempre la toma con los topos?|¡Golpear erizos es aún más divertido!|Un buen mazazo puede reducir en un tercio la|vida de cualquier erizo y enterrarlo completamente.|Atacar: activar.
+04:49=¡Resucita a tus aliados!|Pero ten cuidado, también resucitarás a tus enemigos.|Atacar: mantener presionado para resucitar lentamente.|Arriba: acelerar resurrección.
+04:50=¿Alguien está oculto bajo tierra?|¡Desentiérralos con un bombardeo perforador!|El temporizador controla la profundidad a alcanzar.
+04:51=¿Qué hay más barato que el barro?|Un tiro gratis gracias a la bola de barro.|Hará que el enemigo salga volando|y escuece un poco si te entra en los ojos.
+04:52=SIN USAR
+04:53=Vive una trepidante aventura a través del|espacio y el tiempo mientras tus compañeros|siguen luchando en tu lugar.|Estate preparado para volver en cualquier momento,|o al llegar la Muerte súbita si te has quedado solo.|Aviso: no funciona durante la Muerte súbita,|si estás solo o si eres el rey.
+04:54=Esparce un chorro de pegajoso barro.|Construye puentes, entierra enemigos o cierra túneles.|¡Ten especial cuidado de no mancharte!
+04:55=Retorna a la Edad de Hielo!|Congela los erizos y vuelve el piso mas resbaloso|Salvate congelando el agua.|Ataque: activa o desactiva rayo congelador |Arriba o abajo: Continua apuntando
+04:56=Puedes tirar 2 cuchillos al enemigo y bloques|pazadisos y tuneles en vez usarlos|Escalarlos! Su daño incrementa con su velocidad.|Pero se cauteloso, jugar con cuchillos es peligroso.|Attaque: Presiona para disparar con mas poder.
+04:57=Construye una banda elastica muy resistente, desde donde|los erizos y otros rebotan|sin tomar daño de caida.|Izquierda/Derecha: cambiar la orientacion de la banda|Cursor: Coloca la banda en una posicion adecuada.
+04:58=Este bomba de promixidad flota en el aire y sigue|los erizos que se acerquen a esto.|Su explosion es mas debil que una mina.|Ataque: Presiona para obtener mas poder.
+04:59=Esta arma no esta terminada y es experimental.|Usar a su propio riesgo!
+04:60=Libera una lluvia de balas encima de tu amigo!|Y pensaban que estaban a salvo|Detras de una capa triple de vigas.|Ataque: Dispara a poder maximo|Arriba/Abajo: Continua disparando.
+; Game goal strings
+05:00=Modos de juego
+05:01=Las siguientes reglas están activas:
+05:02=Posicionar el rey: elige un buen cobijo para tu rey
+05:03=Baja gravedad: mira bien dónde pisas
+05:04=Invulnerabilidad: todos los erizos tienen un campo de fuerza personal que los protege
+05:05=Vampirismo: dañar a tus enemigos te curará a ti
+05:06=Karma: compartirás parte del daño que inflijas
+05:07=Rey: ¡no permitas que tu rey muera!
+05:08=Posicionar erizos: los jugadores posicionan a mano su erizos por turnos antes de empezar a jugar
+05:09=Artillería: afina tu puntería, los erizos no pueden moverse
+05:10=Terreno indestructible: la mayoría de armas no pueden dañar el terreno de juego
+05:11=Munición compartida: los equipos del mismo color comparten la munición
+05:12=Minas: las minas detonarán a cabo de %1 segundo(s)
+05:13=Minas: las minas detonarán al instante
+05:14=Minas: las minas detonarán aleatoriamente al cabo de 0 - 3 segundos
+05:15=Modificador al daño: las armas harán un %1% de su daño habitual
+05:16=La salud de todos los erizos se restaura al final de cada turno
+05:17=La computadora resucita al morir
+05:18=Sin límite de ataques por turno
+05:19=El arsenal se restaura al final de cada turno
+05:20=Los erizos no comparten arsenal
+05:21=Tag Team: los equipos del mismo clan se van turnando entre ellos.|Turno compartido: los equipos del mismo clan comparten la duración del turno.
+05:22=Viento pesado: el viento afecta casi todo.
--- a/share/hedgewars/Data/Locale/fi.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/fi.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -299,7 +299,7 @@
 02:07=Saatat tarvita tätä
 02:07=Vasara ja nauloja
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 on niin tylsä...
 02:08=%1:ää ei voisi vähempää kiinnostaa
 02:08=%1 on laiska siili
@@ -337,7 +337,7 @@
 02:08=%1 on kangistunut pelosta
 02:08=%1 on nukahtanut
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1:n pitäisi harjoitella tähtäämistä
 02:09=%1 vihaa itseään
 02:09=%1 on väärällä puolella!
--- a/share/hedgewars/Data/Locale/fr.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/fr.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -685,11 +685,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
       ["Flesh for Brainz"] = "Flesh for Brainz",
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1553,6 +1555,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2864,6 +2867,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
       ["You have killed an innocent hedgehog!"] = "Tu as tué un innocent !",
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/fr.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/fr.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -281,7 +281,7 @@
 02:07=Bob le bricoleur sait être généreux !
 02:07=Le moment donné par le hasard vaut mieux que le moment choisi !
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 est une lopette...
 02:08=%1 est trooooop rasant...
 02:08=%1 est un hérisson flemmard
@@ -323,7 +323,7 @@
 02:08=Ne crains pas d'avancer lentement, crains seulement de t'arrêter %1
 02:08=Patience ! Avec le temps, l'herbe devient du lait
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 devrait apprendre à viser !
 02:09=%1 s'en veut
 02:09=%1 joue contre son camp !
--- a/share/hedgewars/Data/Locale/gd.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/gd.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -435,7 +435,7 @@
 02:07=Cruinnich na h-acainnean uile!
 02:07=Seo acainnean dhut!
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=Abair thusa gu bheil %1 ràsanach…
 02:08=Tha %1 coma
 02:08=Tha %1 ’na ghraineag leisg
@@ -473,7 +473,7 @@
 02:08=Tha %1 chun a bhith gòrach leis an eagal
 02:08=Thuit %1 ’na chadal
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=Chan eil amas math aig %1!
 02:09=Tha coltas gur lugha air %1 e fhèin
 02:09=Sheas %1 air an taobh chearr!
--- a/share/hedgewars/Data/Locale/gl.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/gl.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -188,7 +188,7 @@
 02:07=Sexa o que sexa, seguro que lle sacamos partido!
 02:07=Ferramentas?! Queremos armas!
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 case mexa por riba!
 02:08=%1 está feito un preguiceiro...
 02:08=%1 non dá
--- a/share/hedgewars/Data/Locale/hedgewars_bg.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_bg.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -340,6 +340,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -544,12 +545,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>
 
 Your password wasn&apos;t saved either.</source>
@@ -615,6 +610,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1391,7 +1393,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation type="unfinished">Запазване</translation>
+        <translation type="obsolete">Запазване</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1442,6 +1444,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2093,6 +2103,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2853,6 +2867,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3753,10 +3775,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3764,6 +3782,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4648,6 +4670,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_cs.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_cs.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -346,6 +346,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -550,12 +551,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>
 
 Your password wasn&apos;t saved either.</source>
@@ -621,6 +616,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1419,7 +1421,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation type="unfinished">Uložit</translation>
+        <translation type="obsolete">Uložit</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1476,6 +1478,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2148,6 +2158,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2909,6 +2923,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3810,10 +3832,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3821,6 +3839,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4845,6 +4867,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_da.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_da.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -344,6 +344,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -548,12 +549,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>
 
 Your password wasn&apos;t saved either.</source>
@@ -619,6 +614,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1413,7 +1415,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation type="unfinished">Gem</translation>
+        <translation type="obsolete">Gem</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1464,6 +1466,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2135,6 +2145,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2903,6 +2917,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3803,10 +3825,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3814,6 +3832,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4842,6 +4864,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_de.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_de.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -380,6 +380,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>Das Schema »%1« wird nicht unterstützt</translation>
     </message>
     <message>
@@ -598,7 +599,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>Dein Spitzname ist nicht registriert.
+        <translation type="vanished">Dein Spitzname ist nicht registriert.
 Um Andere von der Benutzung abzuhalten, registrier
 ihn bitte auf www.hedgewars.org</translation>
     </message>
@@ -680,6 +681,16 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation>Interner Fehler: Reply-Objekt ist ungültig.</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation>Dein Spitzname ist nicht registriert.
+Um laufenden Spielen wieder beitreten zu können
+und Andere von der Benutzung deines Spitznamens
+abzuhalten, registriere ihn bitte auf www.hedgewars.org.</translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1604,7 +1615,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Speichern</translation>
+        <translation type="vanished">Speichern</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1655,6 +1666,14 @@
             <numerusform>(%1 Kisten)</numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation>Wiederholung speichern</translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation>Wiederholung speichern (nicht möglich, da der /lua-Befehl benutzt wurde)</translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2115,7 +2134,7 @@
     </message>
     <message>
         <source>Share your opponents pain, share their damage</source>
-        <translation>Teile den Schmerz deines Gegners, teile seinen erleideten Schaden</translation>
+        <translation>Teile den Schmerz deines Gegners, teile seinen erlittenen Schaden</translation>
     </message>
     <message>
         <source>Your hogs are unable to move, put your artillery skills to the test</source>
@@ -2330,6 +2349,10 @@
         <source>%1 (%2)</source>
         <translation>%1 (%2)</translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation>Durchschnittliche Anzahl der Wachroboter, die auf mittelgroßen Inselkarten platziert werden. Dieser Wert wird für andere Karten skaliert.</translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -3171,6 +3194,14 @@
         <source>Zoom (%)</source>
         <translation>Zoom (%)</translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation>Chatgröße (%)</translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation>Wachroboter</translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -4204,7 +4235,7 @@
     </message>
     <message>
         <source>precise + switch + toggle hedgehog tags</source>
-        <translation>Genaues Zielen + wechseln + Igelschilder umschalten</translation>
+        <translation type="vanished">Genaues Zielen + wechseln + Igelschilder umschalten</translation>
     </message>
     <message>
         <source>high jump (twice)</source>
@@ -4214,6 +4245,10 @@
         <source>precise + screenshot</source>
         <translation>Genaues Zielen + Bildschirmfoto</translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation>Genaues Zielen + Wechseln + Teamleisten umschalten</translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
--- a/share/hedgewars/Data/Locale/hedgewars_el.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_el.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -336,6 +336,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -542,12 +543,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>
 
 Your password wasn&apos;t saved either.</source>
@@ -613,6 +608,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1401,10 +1403,6 @@
         <source>Play again</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <source>Save</source>
-        <translation type="unfinished"></translation>
-    </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
         <extracomment>For custom number of points in the stats screen, written after the team name. %1 is the number, %2 is the word. Example: “4 points”</extracomment>
@@ -1454,6 +1452,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2125,6 +2131,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2881,6 +2891,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3777,10 +3795,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3788,6 +3802,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4816,6 +4834,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_en.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_en.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -344,6 +344,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>Scheme ‘%1’ not supported</translation>
     </message>
     <message>
@@ -563,7 +564,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>Your nickname is not registered.
+        <translation type="vanished">Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</translation>
     </message>
@@ -657,6 +658,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation>Internal error: Reply object is invalid.</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1515,7 +1523,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Save</translation>
+        <translation type="vanished">Save</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1566,6 +1574,14 @@
             <numerusform>(%1 crates)</numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2217,6 +2233,10 @@
         <source>%1 (%2)</source>
         <translation>%1 (%2)</translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -3004,6 +3024,14 @@
         <source>Zoom (%)</source>
         <translation></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3985,10 +4013,6 @@
         <translation></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation></translation>
     </message>
@@ -3996,6 +4020,10 @@
         <source>precise + screenshot</source>
         <translation></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -5024,6 +5052,10 @@
         <source>Project founder</source>
         <translation></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_es.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_es.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -14,7 +14,7 @@
     </message>
     <message>
         <source>Revision %1 (%2)</source>
-        <translation type="unfinished"></translation>
+        <translation>Revision %1 (%2)</translation>
     </message>
     <message>
         <source>Visit our homepage: %1</source>
@@ -22,7 +22,7 @@
     </message>
     <message>
         <source>This program is distributed under the %1.</source>
-        <translation type="unfinished"></translation>
+        <translation>Este programa es distribuido bajo el 1%.</translation>
     </message>
     <message>
         <source>GNU GPL v2</source>
@@ -80,11 +80,11 @@
     </message>
     <message>
         <source>Credits</source>
-        <translation type="unfinished"></translation>
+        <translation>Créditos</translation>
     </message>
     <message>
         <source>Other people</source>
-        <translation type="unfinished"></translation>
+        <translation>Otras personas</translation>
     </message>
     <message>
         <source>%1 (alias %2)</source>
@@ -107,11 +107,11 @@
     </message>
     <message>
         <source>Extended Credits</source>
-        <translation type="unfinished"></translation>
+        <translation>Créditos extendidos</translation>
     </message>
     <message>
         <source>An extended credits list can be found in the CREDITS text file.</source>
-        <translation type="unfinished"></translation>
+        <translation>Una lista de créditos extendidos puede encontrarse en el archivo de texto CREDITS.</translation>
     </message>
     <message>
         <source>&lt;a href=&quot;https://visualstudio.microsoft.com&quot;&gt;VC++&lt;/a&gt;: %1</source>
@@ -119,14 +119,14 @@
     </message>
     <message>
         <source>Unknown Compiler: %1</source>
-        <translation type="unfinished"></translation>
+        <translation>Compilador Desconocido: %1</translation>
     </message>
 </context>
 <context>
     <name>AbstractPage</name>
     <message>
         <source>Go back</source>
-        <translation type="unfinished"></translation>
+        <translation>Atrás</translation>
     </message>
 </context>
 <context>
@@ -137,23 +137,23 @@
     </message>
     <message>
         <source>Nick</source>
-        <translation type="unfinished"></translation>
+        <translation>Apodo</translation>
     </message>
     <message>
         <source>IP/Nick</source>
-        <translation type="unfinished"></translation>
+        <translation>IP/Apodo</translation>
     </message>
     <message>
         <source>Reason</source>
-        <translation type="unfinished"></translation>
+        <translation>Razón</translation>
     </message>
     <message>
         <source>Duration</source>
-        <translation type="unfinished"></translation>
+        <translation>Duración</translation>
     </message>
     <message>
         <source>Ok</source>
-        <translation type="unfinished"></translation>
+        <translation>Ok</translation>
     </message>
     <message>
         <source>Cancel</source>
@@ -165,15 +165,15 @@
     </message>
     <message>
         <source>Warning</source>
-        <translation type="unfinished"></translation>
+        <translation>Alerta</translation>
     </message>
     <message>
         <source>permanent</source>
-        <translation type="unfinished"></translation>
+        <translation>permanente</translation>
     </message>
     <message>
         <source>Ban player</source>
-        <translation type="unfinished"></translation>
+        <translation>Banear Jugador</translation>
     </message>
     <message>
         <source>Please specify an IP address.</source>
@@ -188,14 +188,14 @@
     <name>DataManager</name>
     <message>
         <source>Use Default</source>
-        <translation type="unfinished"></translation>
+        <translation>Usar Default</translation>
     </message>
 </context>
 <context>
     <name>FeedbackDialog</name>
     <message>
         <source>View</source>
-        <translation type="unfinished"></translation>
+        <translation>Ver</translation>
     </message>
     <message>
         <source>Cancel</source>
@@ -203,15 +203,15 @@
     </message>
     <message>
         <source>Send Feedback</source>
-        <translation type="unfinished"></translation>
+        <translation>Enviar Feedback</translation>
     </message>
     <message>
         <source>We are always happy about suggestions, ideas, or bug reports.</source>
-        <translation type="unfinished"></translation>
+        <translation>Sugerencias, ideas y reportes de fallos son bienvenidos.</translation>
     </message>
     <message>
         <source>Send us feedback!</source>
-        <translation type="unfinished"></translation>
+        <translation>Envíe sus comentarios!</translation>
     </message>
     <message>
         <source>If you found a bug, you can see if it&apos;s already been reported here: </source>
@@ -344,6 +344,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -548,12 +549,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>
 
 Your password wasn&apos;t saved either.</source>
@@ -619,6 +614,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1409,7 +1411,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation type="unfinished">Guardar</translation>
+        <translation type="obsolete">Guardar</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1460,6 +1462,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2131,6 +2141,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2895,6 +2909,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3795,10 +3817,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3806,6 +3824,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4834,6 +4856,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_fi.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_fi.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -340,6 +340,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>Säännöt &apos;%1&apos; ei ole tuettu</translation>
     </message>
     <message>
@@ -555,7 +556,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>Nimimerkkiäsi ei ole rekisteröity.
+        <translation type="vanished">Nimimerkkiäsi ei ole rekisteröity.
 Estääksesi muita käyttämästä sitä,
 voit rekisteröidä sen osoitteessa hedgewars.org</translation>
     </message>
@@ -637,6 +638,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1468,7 +1476,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Tallenna</translation>
+        <translation type="vanished">Tallenna</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1519,6 +1527,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2142,6 +2158,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2924,6 +2944,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3867,10 +3895,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3878,6 +3902,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4902,6 +4930,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_fr.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_fr.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -360,6 +360,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>Règle %1 incomprise</translation>
     </message>
     <message>
@@ -575,7 +576,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>Votre pseudo n&apos;est pas enregistré.
+        <translation type="vanished">Votre pseudo n&apos;est pas enregistré.
 Pour éviter que d&apos;autre joueurs l&apos;utilisent,
 veuillez l&apos;enregistrer sur www.hedgewars.org</translation>
     </message>
@@ -657,6 +658,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation>Erreur interne : L&apos;objet de réponse est invalide.</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1493,7 +1501,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Enregistrer</translation>
+        <translation type="vanished">Enregistrer</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1544,6 +1552,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2220,6 +2236,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -3052,6 +3072,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -4045,10 +4073,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4056,6 +4080,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -5084,6 +5112,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_gd.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_gd.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -352,6 +352,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>Cha chuir sinn taic ris ann sgeama “%1”</translation>
     </message>
     <message>
@@ -571,7 +572,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>Chan eil d’ fhar-ainm clàraichte.
+        <translation type="vanished">Chan eil d’ fhar-ainm clàraichte.
 ’S urrainn dhut a chlàradh air www.hedgewars.org
 ach nach cleachd duine eile e.</translation>
     </message>
@@ -665,6 +666,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation>Mearachd taobh a-staigh: Chan eil oibseact na freagairt dligheach.</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1535,7 +1543,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Sàbhail</translation>
+        <translation type="vanished">Sàbhail</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1598,6 +1606,14 @@
             <numerusform>(%1 creat)</numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2227,6 +2243,10 @@
         <source>%1 (%2)</source>
         <translation>%1 (%2)</translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2996,6 +3016,14 @@
         <source>Zoom (%)</source>
         <translation>Sùm (%)</translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3961,7 +3989,7 @@
     </message>
     <message>
         <source>precise + switch + toggle hedgehog tags</source>
-        <translation>amas pongail + dèan suidse + toglaich thagaichean gràineige</translation>
+        <translation type="vanished">amas pongail + dèan suidse + toglaich thagaichean gràineige</translation>
     </message>
     <message>
         <source>high jump (twice)</source>
@@ -3971,6 +3999,10 @@
         <source>precise + screenshot</source>
         <translation>amas pongail + glacadh-sgrìn</translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4995,6 +5027,10 @@
         <source>Project founder</source>
         <translation>Stèidheadair a’ phròiseict</translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_gl.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_gl.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -336,6 +336,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -536,12 +537,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>
 
 Your password wasn&apos;t saved either.</source>
@@ -607,6 +602,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1381,10 +1383,6 @@
         <source>Play again</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <source>Save</source>
-        <translation type="unfinished"></translation>
-    </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
         <extracomment>For custom number of points in the stats screen, written after the team name. %1 is the number, %2 is the word. Example: “4 points”</extracomment>
@@ -1434,6 +1432,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2093,6 +2099,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2825,6 +2835,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3720,10 +3738,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3731,6 +3745,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4759,6 +4777,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_hu.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_hu.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE TS>
-<TS version="2.0" language="hu">
+<TS version="2.1" language="hu">
 <context>
     <name>About</name>
     <message>
@@ -330,6 +330,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>A(z) %1 séma nem támogatott</translation>
     </message>
     <message>
@@ -541,7 +542,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>A beceneved nincs regisztrálva.
+        <translation type="vanished">A beceneved nincs regisztrálva.
 Nehogy más is használja, kérjük,
 regisztráld a www.hedgewars.org címen</translation>
     </message>
@@ -615,6 +616,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation>Belső hiba: Érvénytelen válaszobjektum.</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -874,7 +882,7 @@
     </message>
     <message>
         <source>Connection refused</source>
-        <translation>Kapcsolat visszautasítva</translation>
+        <translation type="vanished">Kapcsolat visszautasítva</translation>
     </message>
     <message>
         <source>Room destroyed</source>
@@ -882,7 +890,7 @@
     </message>
     <message>
         <source>Quit reason: </source>
-        <translation>Kilépés oka:</translation>
+        <translation type="vanished">Kilépés oka:</translation>
     </message>
     <message>
         <source>You got kicked</source>
@@ -1407,7 +1415,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Mentés</translation>
+        <translation type="vanished">Mentés</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1452,6 +1460,14 @@
             <numerusform>(%1 csomag)</numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -1891,7 +1907,7 @@
     </message>
     <message>
         <source>Land can not be destroyed!</source>
-        <translation>A talajt nem lehet elpusztítani!</translation>
+        <translation type="vanished">A talajt nem lehet elpusztítani!</translation>
     </message>
     <message>
         <source>Lower gravity</source>
@@ -2110,6 +2126,10 @@
         <source>%1 (%2)</source>
         <translation>%1 (%2)</translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2851,6 +2871,14 @@
         <source>Zoom (%)</source>
         <translation>Nagyítás (%)</translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -2886,7 +2914,7 @@
     <name>QMessageBox</name>
     <message>
         <source>Connection to server is lost</source>
-        <translation>A kapcsolat a szerverrel megszakadt</translation>
+        <translation type="vanished">A kapcsolat a szerverrel megszakadt</translation>
     </message>
     <message>
         <source>Error</source>
@@ -3160,7 +3188,7 @@
     </message>
     <message>
         <source>Specify</source>
-        <translation>Beállítás</translation>
+        <translation type="vanished">Beállítás</translation>
     </message>
     <message>
         <source>Start</source>
@@ -3560,7 +3588,7 @@
     </message>
     <message>
         <source>pause</source>
-        <translation>szünet</translation>
+        <translation type="vanished">szünet</translation>
     </message>
     <message>
         <source>confirmation</source>
@@ -3580,7 +3608,7 @@
     </message>
     <message>
         <source>capture</source>
-        <translation>elfogás</translation>
+        <translation type="vanished">elfogás</translation>
     </message>
     <message>
         <source>quit</source>
@@ -3596,7 +3624,7 @@
     </message>
     <message>
         <source>reset zoom</source>
-        <translation>nagyítás visszaállítása</translation>
+        <translation type="vanished">nagyítás visszaállítása</translation>
     </message>
     <message>
         <source>long jump</source>
@@ -3759,7 +3787,7 @@
     </message>
     <message>
         <source>precise + switch + toggle hedgehog tags</source>
-        <translation>pontos célzás + váltás + süncímkék kapcsolása</translation>
+        <translation type="vanished">pontos célzás + váltás + süncímkék kapcsolása</translation>
     </message>
     <message>
         <source>high jump (twice)</source>
@@ -3769,6 +3797,10 @@
         <source>precise + screenshot</source>
         <translation>pontos célzás + képernyőkép készítése</translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -3810,7 +3842,7 @@
     </message>
     <message>
         <source>Talk to your team or all participants:</source>
-        <translation>Beszélgetés a csapattal vagy minden résztvevővel:</translation>
+        <translation type="vanished">Beszélgetés a csapattal vagy minden résztvevővel:</translation>
     </message>
     <message>
         <source>Pause, continue or leave your game:</source>
@@ -3830,7 +3862,7 @@
     </message>
     <message>
         <source>Toggle labels above hedgehogs:</source>
-        <translation>Sünik feletti címkék beállítása:</translation>
+        <translation type="vanished">Sünik feletti címkék beállítása:</translation>
     </message>
     <message>
         <source>Record video:</source>
@@ -3861,31 +3893,31 @@
     <name>binds (keys)</name>
     <message>
         <source>Axis</source>
-        <translation>Tengely</translation>
+        <translation type="vanished">Tengely</translation>
     </message>
     <message>
         <source>(Up)</source>
-        <translation>(Fel)</translation>
+        <translation type="vanished">(Fel)</translation>
     </message>
     <message>
         <source>(Down)</source>
-        <translation>(Le)</translation>
+        <translation type="vanished">(Le)</translation>
     </message>
     <message>
         <source>Hat</source>
-        <translation>Fejfedő</translation>
+        <translation type="vanished">Fejfedő</translation>
     </message>
     <message>
         <source>(Left)</source>
-        <translation>(Balra)</translation>
+        <translation type="vanished">(Balra)</translation>
     </message>
     <message>
         <source>(Right)</source>
-        <translation>(Jobbra)</translation>
+        <translation type="vanished">(Jobbra)</translation>
     </message>
     <message>
         <source>Button</source>
-        <translation>Gomb</translation>
+        <translation type="vanished">Gomb</translation>
     </message>
     <message>
         <source>Keyboard</source>
@@ -3945,71 +3977,71 @@
     </message>
     <message>
         <source>Numpad 0</source>
-        <translation>Numerikus 0</translation>
+        <translation type="vanished">Numerikus 0</translation>
     </message>
     <message>
         <source>Numpad 1</source>
-        <translation>Numerikus 1</translation>
+        <translation type="vanished">Numerikus 1</translation>
     </message>
     <message>
         <source>Numpad 2</source>
-        <translation>Numerikus 2</translation>
+        <translation type="vanished">Numerikus 2</translation>
     </message>
     <message>
         <source>Numpad 3</source>
-        <translation>Numerikus 3</translation>
+        <translation type="vanished">Numerikus 3</translation>
     </message>
     <message>
         <source>Numpad 4</source>
-        <translation>Numerikus 4</translation>
+        <translation type="vanished">Numerikus 4</translation>
     </message>
     <message>
         <source>Numpad 5</source>
-        <translation>Numerikus 5</translation>
+        <translation type="vanished">Numerikus 5</translation>
     </message>
     <message>
         <source>Numpad 6</source>
-        <translation>Numerikus 6</translation>
+        <translation type="vanished">Numerikus 6</translation>
     </message>
     <message>
         <source>Numpad 7</source>
-        <translation>Numerikus 7</translation>
+        <translation type="vanished">Numerikus 7</translation>
     </message>
     <message>
         <source>Numpad 8</source>
-        <translation>Numerikus 8</translation>
+        <translation type="vanished">Numerikus 8</translation>
     </message>
     <message>
         <source>Numpad 9</source>
-        <translation>Numerikus 9</translation>
+        <translation type="vanished">Numerikus 9</translation>
     </message>
     <message>
         <source>Numpad .</source>
-        <translation>Numerikus .</translation>
+        <translation type="vanished">Numerikus .</translation>
     </message>
     <message>
         <source>Numpad /</source>
-        <translation>Numerikus /</translation>
+        <translation type="vanished">Numerikus /</translation>
     </message>
     <message>
         <source>Numpad *</source>
-        <translation>Numerikus *</translation>
+        <translation type="vanished">Numerikus *</translation>
     </message>
     <message>
         <source>Numpad -</source>
-        <translation>Numerikus -</translation>
+        <translation type="vanished">Numerikus -</translation>
     </message>
     <message>
         <source>Numpad +</source>
-        <translation>Numerikus +</translation>
+        <translation type="vanished">Numerikus +</translation>
     </message>
     <message>
         <source>Enter</source>
-        <translation>Enter</translation>
+        <translation type="vanished">Enter</translation>
     </message>
     <message>
         <source>Equals</source>
-        <translation>Egyenlő</translation>
+        <translation type="vanished">Egyenlő</translation>
     </message>
     <message>
         <source>Up</source>
@@ -4041,55 +4073,55 @@
     </message>
     <message>
         <source>Page up</source>
-        <translation>Page Up</translation>
+        <translation type="vanished">Page Up</translation>
     </message>
     <message>
         <source>Page down</source>
-        <translation>Page Down</translation>
+        <translation type="vanished">Page Down</translation>
     </message>
     <message>
         <source>Num lock</source>
-        <translation>Num Lock</translation>
+        <translation type="vanished">Num Lock</translation>
     </message>
     <message>
         <source>Caps lock</source>
-        <translation>Caps Lock</translation>
+        <translation type="vanished">Caps Lock</translation>
     </message>
     <message>
         <source>Scroll lock</source>
-        <translation>Scroll Lock</translation>
+        <translation type="vanished">Scroll Lock</translation>
     </message>
     <message>
         <source>Right shift</source>
-        <translation>Jobb oldali Shift</translation>
+        <translation type="vanished">Jobb oldali Shift</translation>
     </message>
     <message>
         <source>Left shift</source>
-        <translation>Bal oldali Shift</translation>
+        <translation type="vanished">Bal oldali Shift</translation>
     </message>
     <message>
         <source>Right ctrl</source>
-        <translation>Jobb oldali Ctrl</translation>
+        <translation type="vanished">Jobb oldali Ctrl</translation>
     </message>
     <message>
         <source>Left ctrl</source>
-        <translation>Bal oldali Ctrl</translation>
+        <translation type="vanished">Bal oldali Ctrl</translation>
     </message>
     <message>
         <source>Right alt</source>
-        <translation>Jobb oldali Alt</translation>
+        <translation type="vanished">Jobb oldali Alt</translation>
     </message>
     <message>
         <source>Left alt</source>
-        <translation>Bal oldali Alt</translation>
+        <translation type="vanished">Bal oldali Alt</translation>
     </message>
     <message>
         <source>Right meta</source>
-        <translation>Jobb oldali Meta</translation>
+        <translation type="vanished">Jobb oldali Meta</translation>
     </message>
     <message>
         <source>Left meta</source>
-        <translation>Bal oldali Meta</translation>
+        <translation type="vanished">Bal oldali Meta</translation>
     </message>
     <message>
         <source>A button</source>
@@ -4173,7 +4205,7 @@
     </message>
     <message>
         <source>DPad</source>
-        <translation>DPad</translation>
+        <translation type="vanished">DPad</translation>
     </message>
     <message>
         <source>D-pad</source>
@@ -4797,6 +4829,10 @@
         <source>Project founder</source>
         <translation>Projektalapító</translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_it.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_it.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -348,6 +348,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>Schema &apos;%1&apos; non supportato</translation>
     </message>
     <message>
@@ -563,7 +564,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>Il tuo nome non è registrato.
+        <translation type="vanished">Il tuo nome non è registrato.
 Per evitare che qualcun altro lo usi,
 per favore registralo su www.hedgewars.org</translation>
     </message>
@@ -645,6 +646,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation>Errore interno: Oggetto di risposta non valido.</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1495,7 +1503,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Salva</translation>
+        <translation type="vanished">Salva</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1546,6 +1554,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2185,6 +2201,10 @@
         <source>%1 (%2)</source>
         <translation>%1 (%2)</translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2983,6 +3003,14 @@
         <source>Zoom (%)</source>
         <translation>Zoom (%)</translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3940,7 +3968,7 @@
     </message>
     <message>
         <source>precise + switch + toggle hedgehog tags</source>
-        <translation>Shift + cambia riccio + attiva tags del riccio</translation>
+        <translation type="vanished">Shift + cambia riccio + attiva tags del riccio</translation>
     </message>
     <message>
         <source>high jump (twice)</source>
@@ -3950,6 +3978,10 @@
         <source>precise + screenshot</source>
         <translation>Shift + screenshot</translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4974,6 +5006,10 @@
         <source>Project founder</source>
         <translation>Fondatore del progetto</translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_ja.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_ja.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -326,6 +326,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>スキーム「%1」はサポートされていません</translation>
     </message>
     <message>
@@ -525,7 +526,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>指定されたニックネームは登録されていません。
+        <translation type="vanished">指定されたニックネームは登録されていません。
 他のプレーヤーからの使用を防ぐためには,
 「www.hedgewars.org」をアクセスして登録してください。</translation>
     </message>
@@ -615,6 +616,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation>内部エラー:返事オブジェクトは無効です。</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1394,7 +1402,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>セーブ</translation>
+        <translation type="vanished">セーブ</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1439,6 +1447,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2062,6 +2078,10 @@
         <source>%1 (%2)</source>
         <translation>%1(%2)</translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2785,6 +2805,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3674,10 +3702,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3685,6 +3709,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4705,6 +4733,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_ko.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_ko.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -326,6 +326,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -526,12 +527,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>
 
 Your password wasn&apos;t saved either.</source>
@@ -597,6 +592,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1346,10 +1348,6 @@
         <source>Play again</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <source>Save</source>
-        <translation type="unfinished"></translation>
-    </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
         <extracomment>For custom number of points in the stats screen, written after the team name. %1 is the number, %2 is the word. Example: “4 points”</extracomment>
@@ -1393,6 +1391,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2011,6 +2017,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2730,6 +2740,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3580,10 +3598,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3591,6 +3605,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4455,6 +4473,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_lt.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_lt.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -330,22 +330,22 @@
 <context>
     <name>GameSchemeModel</name>
     <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1025"/>
+        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1091"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1030"/>
+        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1096"/>
         <source>New (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1039"/>
+        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1105"/>
         <source>Copy of %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1044"/>
+        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1110"/>
         <source>Copy of %1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -353,7 +353,7 @@
 <context>
     <name>GameUIConfig</name>
     <message>
-        <location filename="../../../../QTfrontend/gameuiconfig.cpp" line="536"/>
+        <location filename="../../../../QTfrontend/gameuiconfig.cpp" line="557"/>
         <source>Guest</source>
         <translation type="unfinished"></translation>
     </message>
@@ -411,8 +411,9 @@
         </translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/HWApplication.cpp" line="93"/>
+        <location filename="../../../../QTfrontend/HWApplication.cpp" line="94"/>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -505,82 +506,82 @@
 <context>
     <name>HWChatWidget</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="214"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="213"/>
         <source>Chat log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="231"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="230"/>
         <source>Enter chat messages here and send them with [Enter]</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="243"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="242"/>
         <source>List of players</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="522"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="521"/>
         <source>%1 has joined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="553"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="552"/>
         <source>%1 has left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="558"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="557"/>
         <source>%1 has left (%2)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="697"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="696"/>
         <source>%1 has been removed from your ignore list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="707"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="706"/>
         <source>%1 has been added to your ignore list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="737"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="736"/>
         <source>%1 has been removed from your friends list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="746"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="745"/>
         <source>%1 has been added to your friends list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="813"/>
+        <source>Stylesheet imported from %1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="814"/>
-        <source>Stylesheet imported from %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="815"/>
         <source>Enter %1 if you want to use the current StyleSheet in future, enter %2 to reset!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="823"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="822"/>
         <source>Couldn&apos;t read %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="831"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="830"/>
         <source>StyleSheet discarded</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="855"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="854"/>
         <source>StyleSheet saved to %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="858"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="857"/>
         <source>Failed to save StyleSheet to %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -588,56 +589,64 @@
 <context>
     <name>HWForm</name>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="767"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="768"/>
         <source>Game aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1266"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1253"/>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1270"/>
         <source>Nickname</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1271"/>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1596"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1275"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1600"/>
         <source>No nickname supplied.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1266"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1270"/>
         <source>Someone already uses your nickname %1 on the server.
 Please pick another nickname:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="544"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="545"/>
         <source>Team 1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="549"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="550"/>
         <source>%1&apos;s Team</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="569"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="570"/>
         <source>Team %1</source>
         <extracomment>Default team name</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="581"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="582"/>
         <source>Computer %1</source>
         <extracomment>Default computer team name</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1220"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1224"/>
         <source>Hedgewars - Nick registered</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1221"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1225"/>
         <source>This nick is registered, and you haven&apos;t specified a password.
 
 If this nick isn&apos;t yours, please register your own nick at www.hedgewars.org
@@ -646,102 +655,95 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1249"/>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1254"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1258"/>
         <source>
 
 Your password wasn&apos;t saved either.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1271"/>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1596"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1275"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1600"/>
         <source>Hedgewars - Empty nickname</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1298"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1302"/>
         <source>Hedgewars - Wrong password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1298"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1302"/>
         <source>You entered a wrong password.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1310"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1314"/>
         <source>Room password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1310"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1314"/>
         <source>The room is protected with password.
 Please, enter the password:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1326"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1330"/>
         <source>Try Again</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1700"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1704"/>
         <source>Hedgewars - Connection error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1700"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1704"/>
         <source>You reconnected too fast.
 Please wait a few seconds and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1889"/>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2412"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1900"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2423"/>
         <source>Cannot save record to file %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2341"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2352"/>
         <source>Hedgewars Demo File</source>
         <comment>File Types</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2342"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2353"/>
         <source>Hedgewars Save File</source>
         <comment>File Types</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2404"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2415"/>
         <source>Demo name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2404"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2415"/>
         <source>Demo name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2478"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2493"/>
         <source>Unknown network error (possibly missing SSL library).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2482"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2497"/>
         <source>This feature requires an Internet connection, but you don&apos;t appear to be online (error code: %1).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2487"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2502"/>
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -749,7 +751,7 @@
 <context>
     <name>HWGame</name>
     <message>
-        <location filename="../../../../QTfrontend/game.cpp" line="433"/>
+        <location filename="../../../../QTfrontend/game.cpp" line="440"/>
         <source>A fatal ERROR occured! The game engine had to stop.
 
 We are very sorry for the inconvenience. :-(
@@ -761,14 +763,14 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/game.cpp" line="587"/>
+        <location filename="../../../../QTfrontend/game.cpp" line="610"/>
         <location filename="../../../../QTfrontend/net/recorder.cpp" line="125"/>
         <source>en.txt</source>
         <extracomment>IMPORTANT: This text has a special meaning, do not translate it directly. This is the file name of translation files for the game engine, found in Data/Locale/. Usually, you replace “en” with the ISO-639-1 language code of your language.</extracomment>
         <translation>lt.txt</translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/game.cpp" line="646"/>
+        <location filename="../../../../QTfrontend/game.cpp" line="673"/>
         <source>Cannot open demofile %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1110,7 +1112,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1721"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1725"/>
         <source>Reason:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1346,17 +1348,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="110"/>
+        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="112"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="111"/>
+        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="113"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="112"/>
+        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="114"/>
         <source>Remove</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1564,43 +1566,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="202"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="203"/>
         <source>Randomize the team name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="205"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="206"/>
         <source>Randomize the grave</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="208"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="209"/>
         <source>Randomize the flag</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="217"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="218"/>
         <source>Play a random example of this voice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="220"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="221"/>
         <source>Randomize the voice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="233"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="234"/>
         <source>Randomize the fort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="438"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="439"/>
         <source>CPU %1</source>
         <extracomment>Name of a flag for computer-controlled enemies. %1 is replaced with the computer level</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="664"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="665"/>
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1608,33 +1610,38 @@
 <context>
     <name>PageGameStats</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="59"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="60"/>
         <source>Details</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="74"/>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="177"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="75"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="187"/>
         <source>Health graph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="93"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="94"/>
         <source>Ranking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="119"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="120"/>
         <source>Play again</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="124"/>
-        <source>Save</source>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="179"/>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="181"/>
+        <source>Save demo (unavailable because the /lua command was used)</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="309"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="319"/>
         <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">
             <numerusform></numerusform>
@@ -1643,7 +1650,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="317"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="327"/>
         <source>The best killer is &lt;b&gt;%1&lt;/b&gt; with &lt;b&gt;%2&lt;/b&gt; kills in a turn.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -1652,7 +1659,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="324"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="334"/>
         <source>A total of &lt;b&gt;%1&lt;/b&gt; hedgehog(s) were killed during this round.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -1661,7 +1668,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="399"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="409"/>
         <source>(%1 kill)</source>
         <extracomment>Number of kills in stats screen, written after the team name</extracomment>
         <translation type="unfinished">
@@ -1671,7 +1678,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="402"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="412"/>
         <source>(%1 point(s))</source>
         <extracomment>Number of points in stats screen, written after the team name</extracomment>
         <translation type="unfinished">
@@ -1681,8 +1688,8 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="405"/>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="409"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="415"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="419"/>
         <source>(%L1 second(s))</source>
         <extracomment>Time in seconds</extracomment>
         <translation type="unfinished">
@@ -1692,7 +1699,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="413"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="423"/>
         <source>(%1 crate(s))</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -1701,7 +1708,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="418"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="428"/>
         <source>(%1 %2)</source>
         <extracomment>For custom number of points in the stats screen, written after the team name. %1 is the number, %2 is the word. Example: “4 points”</extracomment>
         <translation type="unfinished">
@@ -1711,7 +1718,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="433"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="443"/>
         <source>&lt;b&gt;%1&lt;/b&gt; thought it&apos;s good to shoot their own hedgehogs for &lt;b&gt;%2&lt;/b&gt; pts.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -1720,7 +1727,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="441"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="451"/>
         <source>&lt;b&gt;%1&lt;/b&gt; killed &lt;b&gt;%2&lt;/b&gt; of their own hedgehogs.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -1729,7 +1736,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="449"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="459"/>
         <source>&lt;b&gt;%1&lt;/b&gt; was scared and skipped turn &lt;b&gt;%2&lt;/b&gt; times.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -1738,7 +1745,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="466"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="476"/>
         <source>With everyone having the same clan color, there was no reason to fight. And so the hedgehogs happily lived in peace ever after.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1798,6 +1805,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../../../../QTfrontend/net/tcpBase.cpp" line="262"/>
         <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="86"/>
         <source>Feedback</source>
         <translation type="unfinished"></translation>
@@ -2054,125 +2062,125 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="292"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="829"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="291"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="842"/>
         <source>x</source>
         <extracomment>Multiplication sign, to be used between two numbers. Note the “x” is only a dummy character, we recommend to use “×” if your language permits it</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="437"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="449"/>
         <source>Frontend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="455"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="467"/>
         <source>Custom colors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="485"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="497"/>
         <source>Reset to default colors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="498"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="510"/>
         <source>Game audio</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="544"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="556"/>
         <source>Frontend audio</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="567"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="579"/>
         <source>Account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="593"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="605"/>
         <source>Proxy settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="599"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="611"/>
         <source>Proxy host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="600"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="612"/>
         <source>Proxy port</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="601"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="613"/>
         <source>Proxy login</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="602"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="614"/>
         <source>Proxy password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="615"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="627"/>
         <source>No proxy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="616"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="628"/>
         <source>System proxy settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="617"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="629"/>
         <source>Socks5 proxy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="618"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="630"/>
         <source>HTTP proxy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="653"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="665"/>
         <source>Miscellaneous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="690"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="702"/>
         <source>MISSING LANGUAGE NAME [%1]</source>
         <extracomment>In the case of an error, this is shown in the language selection for a language with unknown name. %1 = language code</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="722"/>
-        <source>Updates</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="735"/>
+        <source>Updates</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="748"/>
         <source>Check for updates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="736"/>
-        <source>Check now</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="749"/>
+        <source>Check now</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="762"/>
         <source>Video recording options</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="1018"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="1033"/>
         <source>Can&apos;t delete last team</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="1018"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="1033"/>
         <source>You can&apos;t delete the last team!</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2452,61 +2460,66 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="194"/>
-        <source>Affects the left and right boundaries of the map</source>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="195"/>
-        <source>Time you get after an attack</source>
+        <source>Affects the left and right boundaries of the map</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="196"/>
+        <source>Time you get after an attack</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="197"/>
         <source>Additional parameter to configure game styles. The meaning depends on the used style, refer to the documentation. When in doubt, leave it empty.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="495"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="513"/>
         <source>None (Default)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="496"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="514"/>
         <source>Wrap (World wraps)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="497"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="515"/>
         <source>Bounce (Edges reflect)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="498"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="516"/>
         <source>Sea (Edges connect to sea)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="526"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="544"/>
         <source>Name of this scheme</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="541"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="559"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="543"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="561"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="545"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="563"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="713"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="741"/>
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2570,12 +2583,12 @@
 <context>
     <name>PageTraining</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="101"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="99"/>
         <source>Pick the training to play</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="104"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="103"/>
         <source>Pick the challenge to play</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2585,66 +2598,66 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="109"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="110"/>
         <source>Trainings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="110"/>
-        <source>Challenges</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="111"/>
+        <source>Challenges</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="112"/>
         <source>Scenarios</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="114"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="115"/>
         <source>Team</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="132"/>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="338"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="133"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="339"/>
         <source>Start fighting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="344"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="345"/>
         <source>No description available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="355"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="356"/>
         <source>Team highscore: %1</source>
         <extracomment>Highest score of a team</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="360"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="361"/>
         <source>Team lowscore: %1</source>
         <extracomment>Lowest score of a team</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="365"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="366"/>
         <source>Team&apos;s top accuracy: %1%</source>
         <extracomment>Best accuracy of a team (in a challenge)</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="370"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="371"/>
         <source>Team&apos;s best time: %L1 s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="375"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="376"/>
         <source>Team&apos;s longest time: %L1 s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="383"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="384"/>
         <source>Select a mission!</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2662,7 +2675,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="259"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="261"/>
         <source>%1 bytes</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -2671,34 +2684,34 @@
         </translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="336"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="338"/>
         <source>%1%</source>
         <extracomment>Video encoding progress. %1 = number</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="544"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="546"/>
         <source>(in progress...)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="548"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="550"/>
         <source>Date: %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="549"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="551"/>
         <source>Size: %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="763"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="765"/>
         <source>%1 (%2%) - %3</source>
         <extracomment>Video encoding list entry. %1 = file name, %2 = percent complete, %3 = video operation type (e.g. “encoding”)</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="766"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="768"/>
         <source>encoding</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2706,49 +2719,49 @@
 <context>
     <name>QAction</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="262"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="261"/>
         <source>Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="266"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="265"/>
         <source>Kick</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="270"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="269"/>
         <source>Ban</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="274"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="273"/>
         <source>Delegate room control</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="278"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="277"/>
         <source>Follow</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="282"/>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="954"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="281"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="953"/>
         <source>Ignore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="286"/>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="966"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="285"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="965"/>
         <source>Add friend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="949"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="948"/>
         <source>Unignore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="961"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="960"/>
         <source>Remove friend</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2791,146 +2804,146 @@
 <context>
     <name>QCheckBox</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="399"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="398"/>
         <source>Show ammo menu tooltips</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="393"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="392"/>
         <source>Alternative damage show</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="414"/>
-        <source>Team</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="415"/>
-        <source>Enable team tags by default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="418"/>
-        <source>Hog</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="419"/>
-        <source>Enable hedgehog tags by default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="422"/>
-        <source>Health</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="423"/>
-        <source>Enable health tags by default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="426"/>
-        <source>Translucent</source>
+        <source>Team</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="427"/>
+        <source>Enable team tags by default</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="430"/>
+        <source>Hog</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="431"/>
+        <source>Enable hedgehog tags by default</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="434"/>
+        <source>Health</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="435"/>
+        <source>Enable health tags by default</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="438"/>
+        <source>Translucent</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="439"/>
         <source>Enable translucent tags by default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="449"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="461"/>
         <source>Visual effects</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="450"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="462"/>
         <source>Enable visual effects such as animated menu transitions and falling stars</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="523"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="548"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="535"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="560"/>
         <source>Sound</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="524"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="536"/>
         <source>In-game sound effects</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="530"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="553"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="542"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="565"/>
         <source>Music</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="531"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="543"/>
         <source>In-game music</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="538"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="550"/>
         <source>Dampen when losing focus</source>
         <extracomment>Checkbox text. If checked, the in-game audio volume is reduced (=dampened) when the game window loses its focus</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="539"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="551"/>
         <source>Reduce the game audio volume if the game window has lost its focus</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="549"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="561"/>
         <source>Frontend sound effects</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="554"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="566"/>
         <source>Frontend music</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="707"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="719"/>
         <source>Append date and time to record file name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="708"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="720"/>
         <source>If enabled, Hedgewars adds the date and time in the form &quot;YYYY-MM-DD_hh-mm&quot; for automatically created demos.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="728"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="741"/>
         <source>Check for updates at startup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="443"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="455"/>
         <source>Fullscreen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="382"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="381"/>
         <source>Show FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/dialog/input_password.cpp" line="55"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="584"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="596"/>
         <source>Save password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="791"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="804"/>
         <source>Record audio</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="841"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="854"/>
         <source>Use game resolution</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2948,117 +2961,117 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="406"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="407"/>
         <source>Community</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="667"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="679"/>
         <source>(System default)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="345"/>
+        <source>Disabled</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="343"/>
+        <source>Stereoscopy creates an illusion of depth when you wear 3D glasses.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="346"/>
-        <source>Disabled</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="344"/>
-        <source>Stereoscopy creates an illusion of depth when you wear 3D glasses.</source>
+        <source>Red/Cyan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="347"/>
-        <source>Red/Cyan</source>
+        <source>Cyan/Red</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="348"/>
-        <source>Cyan/Red</source>
+        <source>Red/Blue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="349"/>
-        <source>Red/Blue</source>
+        <source>Blue/Red</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="350"/>
-        <source>Blue/Red</source>
+        <source>Red/Green</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="351"/>
-        <source>Red/Green</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="352"/>
         <source>Green/Red</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="358"/>
+        <source>Side-by-side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="359"/>
-        <source>Side-by-side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="360"/>
         <source>Top-Bottom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="851"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="864"/>
         <source>24 FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="852"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="865"/>
         <source>25 FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="853"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="866"/>
         <source>30 FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="854"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="867"/>
         <source>50 FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="855"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="868"/>
         <source>60 FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="352"/>
+        <source>Red/Cyan grayscale</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="353"/>
-        <source>Red/Cyan grayscale</source>
+        <source>Cyan/Red grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="354"/>
-        <source>Cyan/Red grayscale</source>
+        <source>Red/Blue grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="355"/>
-        <source>Red/Blue grayscale</source>
+        <source>Blue/Red grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="356"/>
-        <source>Blue/Red grayscale</source>
+        <source>Red/Green grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="357"/>
-        <source>Red/Green grayscale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="358"/>
         <source>Green/Red grayscale</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3076,7 +3089,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="223"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="224"/>
         <source>Fort</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3106,7 +3119,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="152"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="154"/>
         <source>Description</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3185,38 +3198,38 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="659"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="671"/>
         <source>Locale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="573"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="585"/>
         <source>Nickname</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="340"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="339"/>
         <source>Stereoscopy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="696"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="708"/>
         <source>This setting will be effective at next restart.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="817"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="830"/>
         <source>Resolution</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="862"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="875"/>
         <source>Bitrate (Kibit/s)</source>
         <extracomment>“Kibit/s” is the symbol for 1024 bits per second</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="313"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="312"/>
         <source>Quality</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3236,118 +3249,128 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="327"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="326"/>
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="405"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="403"/>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="417"/>
         <source>Displayed tags above hogs and translucent tags</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="506"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="518"/>
         <source>Initial sound volume</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="373"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="372"/>
         <source>FPS limit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="199"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="200"/>
         <source>Damage Modifier</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="216"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="217"/>
         <source>Turn Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="233"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="234"/>
         <source>Initial Health</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="250"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="251"/>
         <source>Sudden Death Timeout</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="279"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="280"/>
         <source>Sudden Death Water Rise</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="296"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="297"/>
         <source>Sudden Death Health Decrease</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="313"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="314"/>
         <source>% Rope Length</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="330"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="331"/>
         <source>Crate Drops</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="346"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="347"/>
         <source>% Health Crates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="363"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="364"/>
         <source>Health in Crates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="380"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="381"/>
         <source>Mines Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="397"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="398"/>
         <source>Mines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="414"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="415"/>
         <source>% Dud Mines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="431"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="432"/>
         <source>Barrels</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="466"/>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="484"/>
         <source>% Retreat Time</source>
         <extracomment>Label of game scheme setting for the time you get after an attack</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="448"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="449"/>
         <source>Air Mines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="483"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="501"/>
         <source>World Edge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="504"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="522"/>
         <source>Script parameter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="520"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="538"/>
         <source>Scheme Name:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3389,22 +3412,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="758"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="771"/>
         <source>Format</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="779"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="792"/>
         <source>Audio codec</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="805"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="818"/>
         <source>Video codec</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="847"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="860"/>
         <source>Framerate</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3412,22 +3435,22 @@
 <context>
     <name>QLineEdit</name>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1088"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1092"/>
         <source>unnamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1094"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1098"/>
         <source>unnamed (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="418"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="419"/>
         <source>hedgehog %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="578"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="590"/>
         <source>anonymous</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3448,69 +3471,69 @@
 <context>
     <name>QMessageBox</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="503"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="504"/>
         <source>Teams - Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="504"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="505"/>
         <source>Do you really want to delete the team &apos;%1&apos;?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="672"/>
-        <source>Teams - Name already taken</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="673"/>
+        <source>Teams - Name already taken</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="674"/>
         <source>The team name &apos;%1&apos; is already taken, so your team has been renamed to &apos;%2&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1126"/>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="655"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1130"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="675"/>
         <source>Cannot delete default scheme &apos;%1&apos;!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1152"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1156"/>
         <source>Please select a record from the list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1247"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1251"/>
         <source>Hedgewars - Nick not registered</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1659"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1663"/>
         <source>Unable to start server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1721"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1725"/>
         <source>The connection to the server is lost.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1736"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1740"/>
         <source>Server redirection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1737"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1741"/>
         <source>This server supports secure connections on port %1.
 Would you like to reconnect securely?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2495"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2510"/>
         <source>Not all players are ready</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2496"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2511"/>
         <source>Are you sure you want to start this game?
 Not all players are ready.</source>
         <translation type="unfinished"></translation>
@@ -3543,18 +3566,18 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2381"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2392"/>
         <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="419"/>
         <source>Hedgewars - Success</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2382"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2393"/>
         <source>All file associations have been set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2388"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2399"/>
         <source>File association failed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3563,7 +3586,7 @@
         <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="167"/>
         <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="185"/>
         <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="201"/>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="404"/>
+        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="405"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3621,43 +3644,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="654"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="674"/>
         <source>Schemes - Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="664"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="684"/>
         <source>Schemes - Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="665"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="685"/>
         <source>Do you really want to delete the game scheme &apos;%1&apos;?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="726"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="754"/>
         <source>Schemes - Name already taken</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="728"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="756"/>
         <source>A scheme with the name &apos;%1&apos; already exists. Your scheme has been renamed to &apos;%2&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="635"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="665"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="637"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="667"/>
         <source>Videos - Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="636"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="638"/>
         <source>Do you really want to delete the video &apos;%1&apos;?</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="666"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="668"/>
         <source>Do you really want to remove %1 file(s)?</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -3684,28 +3707,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="312"/>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="358"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="331"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="378"/>
         <source>Weapons - Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="313"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="332"/>
         <source>A weapon scheme with the name &apos;%1&apos; already exists. Changes made to the weapon scheme have been discarded.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="359"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="379"/>
         <source>Cannot delete default weapon set &apos;%1&apos;!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="369"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="389"/>
         <source>Weapons - Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="370"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="390"/>
         <source>Do you really want to delete the weapon set &apos;%1&apos;?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3732,7 +3755,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="405"/>
+        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="406"/>
         <source>Cannot use the weapon scheme &apos;%1&apos;!</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3740,8 +3763,8 @@
 <context>
     <name>QObject</name>
     <message>
-        <location filename="../../../../QTfrontend/campaign.cpp" line="153"/>
-        <location filename="../../../../QTfrontend/campaign.cpp" line="175"/>
+        <location filename="../../../../QTfrontend/campaign.cpp" line="156"/>
+        <location filename="../../../../QTfrontend/campaign.cpp" line="178"/>
         <source>No description available</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3760,7 +3783,7 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/dialog/input_ip.cpp" line="58"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="538"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="540"/>
         <source>Cancel</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3807,7 +3830,7 @@
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagecampaign.cpp" line="96"/>
         <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="99"/>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="131"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="132"/>
         <source>Start</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3817,7 +3840,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="714"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="726"/>
         <source>Associate file extensions</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3833,8 +3856,8 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="48"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="186"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="538"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="188"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="540"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3849,37 +3872,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="876"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="889"/>
         <source>Set default options</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="877"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="890"/>
         <source>Restore default coding parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="138"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="140"/>
         <source>Open videos directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="139"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="141"/>
         <source>Open the video directory in your system</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="182"/>
-        <source>Play</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="184"/>
+        <source>Play</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="186"/>
         <source>Play this video</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="188"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="190"/>
         <source>Delete this video</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3887,7 +3910,7 @@
 <context>
     <name>QSpinBox</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="870"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="883"/>
         <source>Specify the bitrate of recorded videos as a multiple of 1024 bits per second</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4023,42 +4046,42 @@
 <context>
     <name>SelWeaponWidget</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="173"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="183"/>
         <source>Weapon set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="174"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="184"/>
         <source>Probabilities</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="175"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="185"/>
         <source>Ammo in boxes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="176"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="186"/>
         <source>Delays</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="387"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="407"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="392"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="412"/>
         <source>New (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="433"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="453"/>
         <source>Copy of %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="438"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="458"/>
         <source>Copy of %1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4493,7 +4516,7 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/binds.cpp" line="87"/>
-        <source>precise + switch + toggle hedgehog tags</source>
+        <source>precise + switch + toggle team bars</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -5508,71 +5531,76 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="103"/>
-        <source>Italian</source>
+        <source>Hungarian</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="104"/>
-        <source>Japanese</source>
+        <source>Italian</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="105"/>
-        <source>Korean</source>
+        <source>Japanese</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="106"/>
-        <source>Lithuanian</source>
+        <source>Korean</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="107"/>
-        <source>Polish</source>
+        <source>Lithuanian</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="108"/>
-        <source>Portuguese</source>
+        <source>Polish</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="109"/>
-        <source>Russian</source>
+        <source>Portuguese</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="110"/>
-        <source>Scottish Gaelic</source>
+        <source>Russian</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="111"/>
-        <source>Slovak</source>
+        <source>Scottish Gaelic</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="112"/>
-        <source>Spanish</source>
+        <source>Slovak</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="113"/>
-        <source>Swedish</source>
+        <source>Spanish</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="114"/>
-        <source>Ukrainian</source>
+        <source>Swedish</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="115"/>
-        <source>Special thanks</source>
+        <source>Ukrainian</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="116"/>
+        <source>Special thanks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/creditsmessages.h" line="117"/>
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5616,7 +5644,7 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/servermessages.h" line="49"/>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="870"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="869"/>
         <source>Unknown command or invalid parameters. Say &apos;/help&apos; in chat for a list of commands.</source>
         <translation type="unfinished"></translation>
     </message>
--- a/share/hedgewars/Data/Locale/hedgewars_ms.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_ms.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -328,22 +328,22 @@
 <context>
     <name>GameSchemeModel</name>
     <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1025"/>
+        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1091"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1030"/>
+        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1096"/>
         <source>New (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1039"/>
+        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1105"/>
         <source>Copy of %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1044"/>
+        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1110"/>
         <source>Copy of %1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -351,7 +351,7 @@
 <context>
     <name>GameUIConfig</name>
     <message>
-        <location filename="../../../../QTfrontend/gameuiconfig.cpp" line="536"/>
+        <location filename="../../../../QTfrontend/gameuiconfig.cpp" line="557"/>
         <source>Guest</source>
         <translation type="unfinished"></translation>
     </message>
@@ -399,8 +399,9 @@
         </translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/HWApplication.cpp" line="93"/>
+        <location filename="../../../../QTfrontend/HWApplication.cpp" line="94"/>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -493,82 +494,82 @@
 <context>
     <name>HWChatWidget</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="214"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="213"/>
         <source>Chat log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="231"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="230"/>
         <source>Enter chat messages here and send them with [Enter]</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="243"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="242"/>
         <source>List of players</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="522"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="521"/>
         <source>%1 has joined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="553"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="552"/>
         <source>%1 has left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="558"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="557"/>
         <source>%1 has left (%2)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="697"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="696"/>
         <source>%1 has been removed from your ignore list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="707"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="706"/>
         <source>%1 has been added to your ignore list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="737"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="736"/>
         <source>%1 has been removed from your friends list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="746"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="745"/>
         <source>%1 has been added to your friends list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="813"/>
+        <source>Stylesheet imported from %1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="814"/>
-        <source>Stylesheet imported from %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="815"/>
         <source>Enter %1 if you want to use the current StyleSheet in future, enter %2 to reset!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="823"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="822"/>
         <source>Couldn&apos;t read %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="831"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="830"/>
         <source>StyleSheet discarded</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="855"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="854"/>
         <source>StyleSheet saved to %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="858"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="857"/>
         <source>Failed to save StyleSheet to %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -576,39 +577,39 @@
 <context>
     <name>HWForm</name>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="544"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="545"/>
         <source>Team 1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="549"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="550"/>
         <source>%1&apos;s Team</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="569"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="570"/>
         <source>Team %1</source>
         <extracomment>Default team name</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="581"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="582"/>
         <source>Computer %1</source>
         <extracomment>Default computer team name</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="767"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="768"/>
         <source>Game aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1220"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1224"/>
         <source>Hedgewars - Nick registered</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1221"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1225"/>
         <source>This nick is registered, and you haven&apos;t specified a password.
 
 If this nick isn&apos;t yours, please register your own nick at www.hedgewars.org
@@ -617,119 +618,120 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1249"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1253"/>
         <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1254"/>
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1258"/>
         <source>
 
 Your password wasn&apos;t saved either.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1266"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1270"/>
         <source>Nickname</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1266"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1270"/>
         <source>Someone already uses your nickname %1 on the server.
 Please pick another nickname:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1271"/>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1596"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1275"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1600"/>
         <source>No nickname supplied.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1271"/>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1596"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1275"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1600"/>
         <source>Hedgewars - Empty nickname</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1298"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1302"/>
         <source>Hedgewars - Wrong password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1298"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1302"/>
         <source>You entered a wrong password.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1310"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1314"/>
         <source>Room password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1310"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1314"/>
         <source>The room is protected with password.
 Please, enter the password:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1326"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1330"/>
         <source>Try Again</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1700"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1704"/>
         <source>Hedgewars - Connection error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1700"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1704"/>
         <source>You reconnected too fast.
 Please wait a few seconds and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1889"/>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2412"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1900"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2423"/>
         <source>Cannot save record to file %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2341"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2352"/>
         <source>Hedgewars Demo File</source>
         <comment>File Types</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2342"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2353"/>
         <source>Hedgewars Save File</source>
         <comment>File Types</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2404"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2415"/>
         <source>Demo name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2404"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2415"/>
         <source>Demo name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2478"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2493"/>
         <source>Unknown network error (possibly missing SSL library).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2482"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2497"/>
         <source>This feature requires an Internet connection, but you don&apos;t appear to be online (error code: %1).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2487"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2502"/>
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -737,7 +739,7 @@
 <context>
     <name>HWGame</name>
     <message>
-        <location filename="../../../../QTfrontend/game.cpp" line="433"/>
+        <location filename="../../../../QTfrontend/game.cpp" line="440"/>
         <source>A fatal ERROR occured! The game engine had to stop.
 
 We are very sorry for the inconvenience. :-(
@@ -749,14 +751,14 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/game.cpp" line="587"/>
+        <location filename="../../../../QTfrontend/game.cpp" line="610"/>
         <location filename="../../../../QTfrontend/net/recorder.cpp" line="125"/>
         <source>en.txt</source>
         <extracomment>IMPORTANT: This text has a special meaning, do not translate it directly. This is the file name of translation files for the game engine, found in Data/Locale/. Usually, you replace “en” with the ISO-639-1 language code of your language.</extracomment>
         <translation>ms.txt</translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/game.cpp" line="646"/>
+        <location filename="../../../../QTfrontend/game.cpp" line="673"/>
         <source>Cannot open demofile %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1098,7 +1100,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1721"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1725"/>
         <source>Reason:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1332,17 +1334,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="110"/>
+        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="112"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="111"/>
+        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="113"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="112"/>
+        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="114"/>
         <source>Remove</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1550,43 +1552,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="202"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="203"/>
         <source>Randomize the team name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="205"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="206"/>
         <source>Randomize the grave</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="208"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="209"/>
         <source>Randomize the flag</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="217"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="218"/>
         <source>Play a random example of this voice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="220"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="221"/>
         <source>Randomize the voice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="233"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="234"/>
         <source>Randomize the fort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="438"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="439"/>
         <source>CPU %1</source>
         <extracomment>Name of a flag for computer-controlled enemies. %1 is replaced with the computer level</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="664"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="665"/>
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1594,54 +1596,59 @@
 <context>
     <name>PageGameStats</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="59"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="60"/>
         <source>Details</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="74"/>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="177"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="75"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="187"/>
         <source>Health graph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="93"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="94"/>
         <source>Ranking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="119"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="120"/>
         <source>Play again</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="124"/>
-        <source>Save</source>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="179"/>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="181"/>
+        <source>Save demo (unavailable because the /lua command was used)</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="309"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="319"/>
         <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">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="317"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="327"/>
         <source>The best killer is &lt;b&gt;%1&lt;/b&gt; with &lt;b&gt;%2&lt;/b&gt; kills in a turn.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="324"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="334"/>
         <source>A total of &lt;b&gt;%1&lt;/b&gt; hedgehog(s) were killed during this round.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="399"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="409"/>
         <source>(%1 kill)</source>
         <extracomment>Number of kills in stats screen, written after the team name</extracomment>
         <translation type="unfinished">
@@ -1649,7 +1656,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="402"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="412"/>
         <source>(%1 point(s))</source>
         <extracomment>Number of points in stats screen, written after the team name</extracomment>
         <translation type="unfinished">
@@ -1657,8 +1664,8 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="405"/>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="409"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="415"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="419"/>
         <source>(%L1 second(s))</source>
         <extracomment>Time in seconds</extracomment>
         <translation type="unfinished">
@@ -1666,14 +1673,14 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="413"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="423"/>
         <source>(%1 crate(s))</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="418"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="428"/>
         <source>(%1 %2)</source>
         <extracomment>For custom number of points in the stats screen, written after the team name. %1 is the number, %2 is the word. Example: “4 points”</extracomment>
         <translation type="unfinished">
@@ -1681,28 +1688,28 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="433"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="443"/>
         <source>&lt;b&gt;%1&lt;/b&gt; thought it&apos;s good to shoot their own hedgehogs for &lt;b&gt;%2&lt;/b&gt; pts.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="441"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="451"/>
         <source>&lt;b&gt;%1&lt;/b&gt; killed &lt;b&gt;%2&lt;/b&gt; of their own hedgehogs.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="449"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="459"/>
         <source>&lt;b&gt;%1&lt;/b&gt; was scared and skipped turn &lt;b&gt;%2&lt;/b&gt; times.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="466"/>
+        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="476"/>
         <source>With everyone having the same clan color, there was no reason to fight. And so the hedgehogs happily lived in peace ever after.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1762,6 +1769,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../../../../QTfrontend/net/tcpBase.cpp" line="262"/>
         <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="86"/>
         <source>Feedback</source>
         <translation type="unfinished"></translation>
@@ -2018,125 +2026,125 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="292"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="829"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="291"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="842"/>
         <source>x</source>
         <extracomment>Multiplication sign, to be used between two numbers. Note the “x” is only a dummy character, we recommend to use “×” if your language permits it</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="437"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="449"/>
         <source>Frontend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="455"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="467"/>
         <source>Custom colors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="485"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="497"/>
         <source>Reset to default colors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="498"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="510"/>
         <source>Game audio</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="544"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="556"/>
         <source>Frontend audio</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="567"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="579"/>
         <source>Account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="593"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="605"/>
         <source>Proxy settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="599"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="611"/>
         <source>Proxy host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="600"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="612"/>
         <source>Proxy port</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="601"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="613"/>
         <source>Proxy login</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="602"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="614"/>
         <source>Proxy password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="615"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="627"/>
         <source>No proxy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="616"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="628"/>
         <source>System proxy settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="617"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="629"/>
         <source>Socks5 proxy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="618"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="630"/>
         <source>HTTP proxy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="653"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="665"/>
         <source>Miscellaneous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="690"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="702"/>
         <source>MISSING LANGUAGE NAME [%1]</source>
         <extracomment>In the case of an error, this is shown in the language selection for a language with unknown name. %1 = language code</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="722"/>
-        <source>Updates</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="735"/>
+        <source>Updates</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="748"/>
         <source>Check for updates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="736"/>
-        <source>Check now</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="749"/>
+        <source>Check now</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="762"/>
         <source>Video recording options</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="1018"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="1033"/>
         <source>Can&apos;t delete last team</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="1018"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="1033"/>
         <source>You can&apos;t delete the last team!</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2414,61 +2422,66 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="194"/>
-        <source>Affects the left and right boundaries of the map</source>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="195"/>
-        <source>Time you get after an attack</source>
+        <source>Affects the left and right boundaries of the map</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="196"/>
+        <source>Time you get after an attack</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="197"/>
         <source>Additional parameter to configure game styles. The meaning depends on the used style, refer to the documentation. When in doubt, leave it empty.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="495"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="513"/>
         <source>None (Default)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="496"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="514"/>
         <source>Wrap (World wraps)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="497"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="515"/>
         <source>Bounce (Edges reflect)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="498"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="516"/>
         <source>Sea (Edges connect to sea)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="526"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="544"/>
         <source>Name of this scheme</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="541"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="559"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="543"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="561"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="545"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="563"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="713"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="741"/>
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2532,12 +2545,12 @@
 <context>
     <name>PageTraining</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="101"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="99"/>
         <source>Pick the training to play</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="104"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="103"/>
         <source>Pick the challenge to play</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2547,66 +2560,66 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="109"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="110"/>
         <source>Trainings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="110"/>
-        <source>Challenges</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="111"/>
+        <source>Challenges</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="112"/>
         <source>Scenarios</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="114"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="115"/>
         <source>Team</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="132"/>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="338"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="133"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="339"/>
         <source>Start fighting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="344"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="345"/>
         <source>No description available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="355"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="356"/>
         <source>Team highscore: %1</source>
         <extracomment>Highest score of a team</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="360"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="361"/>
         <source>Team lowscore: %1</source>
         <extracomment>Lowest score of a team</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="365"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="366"/>
         <source>Team&apos;s top accuracy: %1%</source>
         <extracomment>Best accuracy of a team (in a challenge)</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="370"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="371"/>
         <source>Team&apos;s best time: %L1 s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="375"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="376"/>
         <source>Team&apos;s longest time: %L1 s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="383"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="384"/>
         <source>Select a mission!</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2624,41 +2637,41 @@
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="259"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="261"/>
         <source>%1 bytes</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="336"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="338"/>
         <source>%1%</source>
         <extracomment>Video encoding progress. %1 = number</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="544"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="546"/>
         <source>(in progress...)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="548"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="550"/>
         <source>Date: %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="549"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="551"/>
         <source>Size: %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="763"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="765"/>
         <source>%1 (%2%) - %3</source>
         <extracomment>Video encoding list entry. %1 = file name, %2 = percent complete, %3 = video operation type (e.g. “encoding”)</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="766"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="768"/>
         <source>encoding</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2681,49 +2694,49 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="262"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="261"/>
         <source>Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="266"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="265"/>
         <source>Kick</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="270"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="269"/>
         <source>Ban</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="274"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="273"/>
         <source>Delegate room control</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="278"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="277"/>
         <source>Follow</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="282"/>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="954"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="281"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="953"/>
         <source>Ignore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="286"/>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="966"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="285"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="965"/>
         <source>Add friend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="949"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="948"/>
         <source>Unignore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="961"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="960"/>
         <source>Remove friend</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2752,145 +2765,145 @@
     <name>QCheckBox</name>
     <message>
         <location filename="../../../../QTfrontend/ui/dialog/input_password.cpp" line="55"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="584"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="596"/>
         <source>Save password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="728"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="741"/>
         <source>Check for updates at startup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="443"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="455"/>
         <source>Fullscreen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="393"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="392"/>
         <source>Alternative damage show</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="382"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="381"/>
         <source>Show FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="399"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="398"/>
         <source>Show ammo menu tooltips</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="414"/>
-        <source>Team</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="415"/>
-        <source>Enable team tags by default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="418"/>
-        <source>Hog</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="419"/>
-        <source>Enable hedgehog tags by default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="422"/>
-        <source>Health</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="423"/>
-        <source>Enable health tags by default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="426"/>
-        <source>Translucent</source>
+        <source>Team</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="427"/>
+        <source>Enable team tags by default</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="430"/>
+        <source>Hog</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="431"/>
+        <source>Enable hedgehog tags by default</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="434"/>
+        <source>Health</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="435"/>
+        <source>Enable health tags by default</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="438"/>
+        <source>Translucent</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="439"/>
         <source>Enable translucent tags by default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="449"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="461"/>
         <source>Visual effects</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="450"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="462"/>
         <source>Enable visual effects such as animated menu transitions and falling stars</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="523"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="548"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="535"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="560"/>
         <source>Sound</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="524"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="536"/>
         <source>In-game sound effects</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="530"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="553"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="542"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="565"/>
         <source>Music</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="531"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="543"/>
         <source>In-game music</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="538"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="550"/>
         <source>Dampen when losing focus</source>
         <extracomment>Checkbox text. If checked, the in-game audio volume is reduced (=dampened) when the game window loses its focus</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="539"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="551"/>
         <source>Reduce the game audio volume if the game window has lost its focus</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="549"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="561"/>
         <source>Frontend sound effects</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="554"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="566"/>
         <source>Frontend music</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="707"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="719"/>
         <source>Append date and time to record file name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="708"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="720"/>
         <source>If enabled, Hedgewars adds the date and time in the form &quot;YYYY-MM-DD_hh-mm&quot; for automatically created demos.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="791"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="804"/>
         <source>Record audio</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="841"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="854"/>
         <source>Use game resolution</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2908,117 +2921,117 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="406"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="407"/>
         <source>Community</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="667"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="679"/>
         <source>(System default)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="345"/>
+        <source>Disabled</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="343"/>
+        <source>Stereoscopy creates an illusion of depth when you wear 3D glasses.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="346"/>
-        <source>Disabled</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="344"/>
-        <source>Stereoscopy creates an illusion of depth when you wear 3D glasses.</source>
+        <source>Red/Cyan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="347"/>
-        <source>Red/Cyan</source>
+        <source>Cyan/Red</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="348"/>
-        <source>Cyan/Red</source>
+        <source>Red/Blue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="349"/>
-        <source>Red/Blue</source>
+        <source>Blue/Red</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="350"/>
-        <source>Blue/Red</source>
+        <source>Red/Green</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="351"/>
-        <source>Red/Green</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="352"/>
         <source>Green/Red</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="358"/>
+        <source>Side-by-side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="359"/>
-        <source>Side-by-side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="360"/>
         <source>Top-Bottom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="851"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="864"/>
         <source>24 FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="852"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="865"/>
         <source>25 FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="853"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="866"/>
         <source>30 FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="854"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="867"/>
         <source>50 FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="855"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="868"/>
         <source>60 FPS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="352"/>
+        <source>Red/Cyan grayscale</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="353"/>
-        <source>Red/Cyan grayscale</source>
+        <source>Cyan/Red grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="354"/>
-        <source>Cyan/Red grayscale</source>
+        <source>Red/Blue grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="355"/>
-        <source>Red/Blue grayscale</source>
+        <source>Blue/Red grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="356"/>
-        <source>Blue/Red grayscale</source>
+        <source>Red/Green grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="357"/>
-        <source>Red/Green grayscale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="358"/>
         <source>Green/Red grayscale</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3036,7 +3049,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="223"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="224"/>
         <source>Fort</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3061,7 +3074,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="152"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="154"/>
         <source>Description</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3172,38 +3185,38 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="659"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="671"/>
         <source>Locale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="573"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="585"/>
         <source>Nickname</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="340"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="339"/>
         <source>Stereoscopy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="696"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="708"/>
         <source>This setting will be effective at next restart.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="817"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="830"/>
         <source>Resolution</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="862"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="875"/>
         <source>Bitrate (Kibit/s)</source>
         <extracomment>“Kibit/s” is the symbol for 1024 bits per second</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="313"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="312"/>
         <source>Quality</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3223,138 +3236,148 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="327"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="326"/>
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="405"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="403"/>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="417"/>
         <source>Displayed tags above hogs and translucent tags</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="506"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="518"/>
         <source>Initial sound volume</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="373"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="372"/>
         <source>FPS limit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="199"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="200"/>
         <source>Damage Modifier</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="216"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="217"/>
         <source>Turn Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="233"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="234"/>
         <source>Initial Health</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="250"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="251"/>
         <source>Sudden Death Timeout</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="279"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="280"/>
         <source>Sudden Death Water Rise</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="296"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="297"/>
         <source>Sudden Death Health Decrease</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="313"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="314"/>
         <source>% Rope Length</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="330"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="331"/>
         <source>Crate Drops</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="346"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="347"/>
         <source>% Health Crates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="363"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="364"/>
         <source>Health in Crates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="380"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="381"/>
         <source>Mines Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="397"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="398"/>
         <source>Mines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="414"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="415"/>
         <source>% Dud Mines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="431"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="432"/>
         <source>Barrels</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="466"/>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="484"/>
         <source>% Retreat Time</source>
         <extracomment>Label of game scheme setting for the time you get after an attack</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="448"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="449"/>
         <source>Air Mines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="483"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="501"/>
         <source>World Edge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="504"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="522"/>
         <source>Script parameter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="520"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="538"/>
         <source>Scheme Name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="758"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="771"/>
         <source>Format</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="779"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="792"/>
         <source>Audio codec</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="805"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="818"/>
         <source>Video codec</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="847"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="860"/>
         <source>Framerate</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3372,22 +3395,22 @@
 <context>
     <name>QLineEdit</name>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1088"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1092"/>
         <source>unnamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1094"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1098"/>
         <source>unnamed (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="418"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="419"/>
         <source>hedgehog %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="578"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="590"/>
         <source>anonymous</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3408,69 +3431,69 @@
 <context>
     <name>QMessageBox</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="503"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="504"/>
         <source>Teams - Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="504"/>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="505"/>
         <source>Do you really want to delete the team &apos;%1&apos;?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="672"/>
-        <source>Teams - Name already taken</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="673"/>
+        <source>Teams - Name already taken</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="674"/>
         <source>The team name &apos;%1&apos; is already taken, so your team has been renamed to &apos;%2&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1126"/>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="655"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1130"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="675"/>
         <source>Cannot delete default scheme &apos;%1&apos;!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1152"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1156"/>
         <source>Please select a record from the list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1247"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1251"/>
         <source>Hedgewars - Nick not registered</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1659"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1663"/>
         <source>Unable to start server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1721"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1725"/>
         <source>The connection to the server is lost.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1736"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1740"/>
         <source>Server redirection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1737"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="1741"/>
         <source>This server supports secure connections on port %1.
 Would you like to reconnect securely?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2495"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2510"/>
         <source>Not all players are ready</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2496"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2511"/>
         <source>Are you sure you want to start this game?
 Not all players are ready.</source>
         <translation type="unfinished"></translation>
@@ -3503,18 +3526,18 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2381"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2392"/>
         <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="419"/>
         <source>Hedgewars - Success</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2382"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2393"/>
         <source>All file associations have been set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2388"/>
+        <location filename="../../../../QTfrontend/hwform.cpp" line="2399"/>
         <source>File association failed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3556,43 +3579,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="654"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="674"/>
         <source>Schemes - Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="664"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="684"/>
         <source>Schemes - Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="665"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="685"/>
         <source>Do you really want to delete the game scheme &apos;%1&apos;?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="726"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="754"/>
         <source>Schemes - Name already taken</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="728"/>
+        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="756"/>
         <source>A scheme with the name &apos;%1&apos; already exists. Your scheme has been renamed to &apos;%2&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="635"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="665"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="637"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="667"/>
         <source>Videos - Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="636"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="638"/>
         <source>Do you really want to delete the video &apos;%1&apos;?</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="666"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="668"/>
         <source>Do you really want to remove %1 file(s)?</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -3621,7 +3644,7 @@
         <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="167"/>
         <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="185"/>
         <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="201"/>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="404"/>
+        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="405"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3642,28 +3665,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="312"/>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="358"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="331"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="378"/>
         <source>Weapons - Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="313"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="332"/>
         <source>A weapon scheme with the name &apos;%1&apos; already exists. Changes made to the weapon scheme have been discarded.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="359"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="379"/>
         <source>Cannot delete default weapon set &apos;%1&apos;!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="369"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="389"/>
         <source>Weapons - Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="370"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="390"/>
         <source>Do you really want to delete the weapon set &apos;%1&apos;?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3690,7 +3713,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="405"/>
+        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="406"/>
         <source>Cannot use the weapon scheme &apos;%1&apos;!</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3698,8 +3721,8 @@
 <context>
     <name>QObject</name>
     <message>
-        <location filename="../../../../QTfrontend/campaign.cpp" line="153"/>
-        <location filename="../../../../QTfrontend/campaign.cpp" line="175"/>
+        <location filename="../../../../QTfrontend/campaign.cpp" line="156"/>
+        <location filename="../../../../QTfrontend/campaign.cpp" line="178"/>
         <source>No description available</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3723,7 +3746,7 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/dialog/input_ip.cpp" line="58"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="538"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="540"/>
         <source>Cancel</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3770,7 +3793,7 @@
     <message>
         <location filename="../../../../QTfrontend/ui/page/pagecampaign.cpp" line="96"/>
         <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="99"/>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="131"/>
+        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="132"/>
         <source>Start</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3780,7 +3803,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="714"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="726"/>
         <source>Associate file extensions</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3796,8 +3819,8 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="48"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="186"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="538"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="188"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="540"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3807,37 +3830,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="876"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="889"/>
         <source>Set default options</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="877"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="890"/>
         <source>Restore default coding parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="138"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="140"/>
         <source>Open videos directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="139"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="141"/>
         <source>Open the video directory in your system</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="182"/>
-        <source>Play</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="184"/>
+        <source>Play</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="186"/>
         <source>Play this video</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="188"/>
+        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="190"/>
         <source>Delete this video</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3845,7 +3868,7 @@
 <context>
     <name>QSpinBox</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="870"/>
+        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="883"/>
         <source>Specify the bitrate of recorded videos as a multiple of 1024 bits per second</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3981,42 +4004,42 @@
 <context>
     <name>SelWeaponWidget</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="173"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="183"/>
         <source>Weapon set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="174"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="184"/>
         <source>Probabilities</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="175"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="185"/>
         <source>Ammo in boxes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="176"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="186"/>
         <source>Delays</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="387"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="407"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="392"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="412"/>
         <source>New (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="433"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="453"/>
         <source>Copy of %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="438"/>
+        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="458"/>
         <source>Copy of %1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4451,7 +4474,7 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/binds.cpp" line="87"/>
-        <source>precise + switch + toggle hedgehog tags</source>
+        <source>precise + switch + toggle team bars</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -5466,71 +5489,76 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="103"/>
-        <source>Italian</source>
+        <source>Hungarian</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="104"/>
-        <source>Japanese</source>
+        <source>Italian</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="105"/>
-        <source>Korean</source>
+        <source>Japanese</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="106"/>
-        <source>Lithuanian</source>
+        <source>Korean</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="107"/>
-        <source>Polish</source>
+        <source>Lithuanian</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="108"/>
-        <source>Portuguese</source>
+        <source>Polish</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="109"/>
-        <source>Russian</source>
+        <source>Portuguese</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="110"/>
-        <source>Scottish Gaelic</source>
+        <source>Russian</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="111"/>
-        <source>Slovak</source>
+        <source>Scottish Gaelic</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="112"/>
-        <source>Spanish</source>
+        <source>Slovak</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="113"/>
-        <source>Swedish</source>
+        <source>Spanish</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="114"/>
-        <source>Ukrainian</source>
+        <source>Swedish</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="115"/>
-        <source>Special thanks</source>
+        <source>Ukrainian</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../../../../QTfrontend/creditsmessages.h" line="116"/>
+        <source>Special thanks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../../../../QTfrontend/creditsmessages.h" line="117"/>
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5574,7 +5602,7 @@
     </message>
     <message>
         <location filename="../../../../QTfrontend/servermessages.h" line="49"/>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="870"/>
+        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="869"/>
         <source>Unknown command or invalid parameters. Say &apos;/help&apos; in chat for a list of commands.</source>
         <translation type="unfinished"></translation>
     </message>
--- a/share/hedgewars/Data/Locale/hedgewars_nl.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_nl.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -332,6 +332,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -532,12 +533,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>
 
 Your password wasn&apos;t saved either.</source>
@@ -603,6 +598,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1358,10 +1360,6 @@
         <source>Play again</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <source>Save</source>
-        <translation type="unfinished"></translation>
-    </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
         <extracomment>For custom number of points in the stats screen, written after the team name. %1 is the number, %2 is the word. Example: “4 points”</extracomment>
@@ -1411,6 +1409,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2030,6 +2036,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2750,6 +2760,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3601,10 +3619,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3612,6 +3626,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4476,6 +4494,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_pl.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_pl.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -362,6 +362,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>Shemat &apos;%1&apos; nie jest wspierany</translation>
     </message>
     <message>
@@ -581,7 +582,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>Twój nick nie jest zarejestrowany.
+        <translation type="vanished">Twój nick nie jest zarejestrowany.
 By zapobiec używania go przez kogoś innego
 zarejestruj go na www.hedgewars.org</translation>
     </message>
@@ -681,6 +682,13 @@
 
 Twoje hasło nie zostało zapisane.</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1576,7 +1584,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Zapisz</translation>
+        <translation type="vanished">Zapisz</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1633,6 +1641,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2309,6 +2325,10 @@
         <source>%1 (%2)</source>
         <translation>%1 (%2)</translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -3148,6 +3168,14 @@
         <source>Zoom (%)</source>
         <translation>Przybliżenie (%)</translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -4187,7 +4215,7 @@
     </message>
     <message>
         <source>precise + switch + toggle hedgehog tags</source>
-        <translation>precyzja + zmiana + przełącz tagi jeży</translation>
+        <translation type="vanished">precyzja + zmiana + przełącz tagi jeży</translation>
     </message>
     <message>
         <source>high jump (twice)</source>
@@ -4197,6 +4225,10 @@
         <source>precise + screenshot</source>
         <translation>precyzja + zrzut ekranu</translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -5225,6 +5257,10 @@
         <source>Project founder</source>
         <translation>Fundator projektu</translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -348,6 +348,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>O esquema &quot;%1&quot; não é suportado</translation>
     </message>
     <message>
@@ -563,7 +564,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>Seu apelido não está registrado.
+        <translation type="vanished">Seu apelido não está registrado.
 Para evitar de outra pessoa usá-lo,
 registre-o em www.hedgewars.org</translation>
     </message>
@@ -640,6 +641,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1466,7 +1474,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Salvar</translation>
+        <translation type="vanished">Salvar</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1517,6 +1525,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2192,6 +2208,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -3024,6 +3044,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3995,10 +4023,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4006,6 +4030,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -5036,6 +5064,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -352,6 +352,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>Esquema &apos;%1&apos; não suportado</translation>
     </message>
     <message>
@@ -567,7 +568,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>O teu nome de utilizador não está registado.
+        <translation type="vanished">O teu nome de utilizador não está registado.
 De forma a prevenir que alguém o utilize,
 por favor regista-o em www.hedgewars.org</translation>
     </message>
@@ -644,6 +645,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1474,7 +1482,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Gravar</translation>
+        <translation type="vanished">Gravar</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1525,6 +1533,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2176,6 +2192,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2996,6 +3016,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3999,10 +4027,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4010,6 +4034,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -5038,6 +5066,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_ro.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_ro.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -342,6 +342,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -546,12 +547,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>
 
 Your password wasn&apos;t saved either.</source>
@@ -617,6 +612,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1397,10 +1399,6 @@
         <source>Play again</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <source>Save</source>
-        <translation type="unfinished"></translation>
-    </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
         <extracomment>For custom number of points in the stats screen, written after the team name. %1 is the number, %2 is the word. Example: “4 points”</extracomment>
@@ -1456,6 +1454,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2112,6 +2118,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2853,6 +2863,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3750,10 +3768,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3761,6 +3775,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4637,6 +4655,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_ru.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_ru.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -354,6 +354,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>Схема &quot;%1&quot; не поддерживается</translation>
     </message>
     <message>
@@ -565,7 +566,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>Ваше имя пользователя не зарегистрировано.
+        <translation type="vanished">Ваше имя пользователя не зарегистрировано.
 Чтобы никто другой не воспользовался им,
 зарегистрируйте его на www.hedgewars.org</translation>
     </message>
@@ -637,6 +638,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation>Внутренняя ошибка: невалидный ответ</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1446,7 +1454,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Сохранить</translation>
+        <translation type="vanished">Сохранить</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1475,7 +1483,7 @@
     </message>
     <message>
         <source>With everyone having the same clan color, there was no reason to fight. And so the hedgehogs happily lived in peace ever after.</source>
-        <translation>Когда все имеют один и тот же цвет клана, нет причины воевать. И так ёжики жили долго и и счастливо в мире и согласии.</translation>
+        <translation>Когда все имеют один и тот же цвет союза, нет причины воевать. И так ёжики жили долго и и счастливо в мире и согласии.</translation>
     </message>
     <message numerus="yes">
         <source>(%1 point(s))</source>
@@ -1503,6 +1511,14 @@
             <numerusform>(%1 ящиков)</numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2056,7 +2072,7 @@
     </message>
     <message>
         <source>Teams in each clan take successive turns sharing their turn time.</source>
-        <translation>Команды в каждом клане будут последовательно получать право хода, имея общее время на ход.</translation>
+        <translation>Команды в каждом союзе будут последовательно получать право хода, имея общее время на ход.</translation>
     </message>
     <message>
         <source>Add an indestructible border around the terrain</source>
@@ -2084,7 +2100,7 @@
     </message>
     <message>
         <source>Each clan starts in its own part of the terrain.</source>
-        <translation>Каждый клан стартует в своей части карты.</translation>
+        <translation>Каждый союз стартует в своей части карты.</translation>
     </message>
     <message>
         <source>Overall damage and knockback in percent</source>
@@ -2175,6 +2191,10 @@
         <source>%1 (%2)</source>
         <translation></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2956,6 +2976,14 @@
         <source>Zoom (%)</source>
         <translation>Масштаб (%)</translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3745,7 +3773,7 @@
     </message>
     <message>
         <source>clan chat</source>
-        <translation>чат клана</translation>
+        <translation>чат союза</translation>
     </message>
     <message>
         <source>unselect weapon</source>
@@ -3855,7 +3883,7 @@
     </message>
     <message>
         <source>precise + switch + toggle hedgehog tags</source>
-        <translation>точность + переключить + вкл ярлыки над ёжиками</translation>
+        <translation type="vanished">точность + переключить + вкл ярлыки над ёжиками</translation>
     </message>
     <message>
         <source>high jump (twice)</source>
@@ -3865,6 +3893,10 @@
         <source>precise + screenshot</source>
         <translation>точность + снимок экрана</translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -3942,7 +3974,7 @@
     </message>
     <message>
         <source>Talk to your clan or all participants:</source>
-        <translation>Общение с кланом или другими игроками:</translation>
+        <translation>Общение с союзом или другими игроками:</translation>
     </message>
 </context>
 <context>
@@ -4733,6 +4765,10 @@
         <source>Project founder</source>
         <translation>Основатель проекта</translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_sk.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_sk.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -350,6 +350,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>Schéma &apos;%1&apos; nie je podporovaná</translation>
     </message>
     <message>
@@ -561,12 +562,6 @@
 Heslo:</translation>
     </message>
     <message>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>
 
 Your password wasn&apos;t saved either.</source>
@@ -637,6 +632,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation>Interná chyba: Objekt odpovede nie je platný.</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1463,7 +1465,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation type="unfinished">Uložiť</translation>
+        <translation type="obsolete">Uložiť</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1520,6 +1522,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2192,6 +2202,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -3009,6 +3023,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3990,10 +4012,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4001,6 +4019,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -5029,6 +5051,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_sv.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_sv.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -344,6 +344,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -548,12 +549,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>
 
 Your password wasn&apos;t saved either.</source>
@@ -619,6 +614,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1409,7 +1411,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation type="unfinished">Spara</translation>
+        <translation type="obsolete">Spara</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1460,6 +1462,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2131,6 +2141,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2895,6 +2909,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3795,10 +3817,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3806,6 +3824,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4834,6 +4856,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -354,6 +354,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>&apos;%1&apos; planı desteklenmiyor</translation>
     </message>
     <message>
@@ -572,7 +573,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>Takma adın kayıtlı değil.
+        <translation type="vanished">Takma adın kayıtlı değil.
 Başkasının kullanmaması için lütfen,
 www.hedgewars.org sitesinden kaydet.</translation>
     </message>
@@ -645,6 +646,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1463,7 +1471,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation type="unfinished">Kaydet</translation>
+        <translation type="obsolete">Kaydet</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1508,6 +1516,14 @@
             <numerusform></numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2170,6 +2186,10 @@
         <source>%1 (%2)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2997,6 +3017,14 @@
         <source>Zoom (%)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3997,10 +4025,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <source>high jump (twice)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4008,6 +4032,10 @@
         <source>precise + screenshot</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -5036,6 +5064,10 @@
         <source>Project founder</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_uk.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_uk.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -358,6 +358,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>Схема &apos;%1&apos; не підтримується</translation>
     </message>
     <message>
@@ -573,7 +574,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>Ваш нікнейм не зареєстрований.
+        <translation type="vanished">Ваш нікнейм не зареєстрований.
 Щоб ніхто інший ним не користувався,
 зареєструйте його на www.hedgewars.org</translation>
     </message>
@@ -655,6 +656,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation>Внутрішня помилка: об&apos;єкт відповіді недійсний.</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1506,7 +1514,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>Зберегти</translation>
+        <translation type="vanished">Зберегти</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1563,6 +1571,14 @@
             <numerusform>(%1 ящиків)</numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2235,6 +2251,10 @@
         <source>%1 (%2)</source>
         <translation>%1 (%2)</translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -3058,6 +3078,14 @@
         <source>Zoom (%)</source>
         <translation>Масштаб (%)</translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -4030,7 +4058,7 @@
     </message>
     <message>
         <source>precise + switch + toggle hedgehog tags</source>
-        <translation>приціл + переключення + перемкнути теги їжаків</translation>
+        <translation type="vanished">приціл + переключення + перемкнути теги їжаків</translation>
     </message>
     <message>
         <source>high jump (twice)</source>
@@ -4040,6 +4068,10 @@
         <source>precise + screenshot</source>
         <translation>приціл + знімок</translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -5060,6 +5092,10 @@
         <source>Project founder</source>
         <translation>Засновник проекту</translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -2,1154 +2,4416 @@
 <!DOCTYPE TS>
 <TS version="2.1" language="zh_CN">
 <context>
-    <name>About</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="92"/>
-        <source>Credits</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="171"/>
-        <source>Other people</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="181"/>
-        <source>%1 (alias %2)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="202"/>
-        <source>%1 &amp;lt;%2&amp;gt;</source>
-        <extracomment>Part of credits. %1: Contributor name. %2: E-mail address</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="208"/>
-        <source>%1: %2</source>
-        <extracomment>Part of credits. %1: Description of contribution. %2: Contributor name</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="217"/>
-        <source>%1: %2 &amp;lt;%3&amp;gt;</source>
-        <extracomment>Part of credits. %1: Description of contribution. %2: Contributor name. %3: E-mail address</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="265"/>
-        <source>Hedgewars %1</source>
-        <extracomment>%1 contains Hedgewars&apos; version number</extracomment>
-        <translation type="unfinished">刺猬大作战 %1</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="267"/>
-        <source>Revision %1 (%2)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="269"/>
-        <source>Visit our homepage: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="272"/>
-        <source>This program is distributed under the %1.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="275"/>
-        <source>GNU GPL v2</source>
-        <extracomment>Short for “GNU General Public License version 2”</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="304"/>
-        <source>Extended Credits</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="305"/>
-        <source>An extended credits list can be found in the CREDITS text file.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="314"/>
-        <source>Dependency versions:</source>
-        <extracomment>For the version numbers of Hedgewars&apos; software dependencies</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="317"/>
-        <source>&lt;a href=&quot;https://gcc.gnu.org&quot;&gt;GCC&lt;/a&gt;: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="319"/>
-        <source>&lt;a href=&quot;https://visualstudio.microsoft.com&quot;&gt;VC++&lt;/a&gt;: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="321"/>
-        <source>Unknown Compiler: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="323"/>
-        <source>Unknown Compiler</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="331"/>
-        <source>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2&lt;/a&gt;: %1.%2.%3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="338"/>
-        <source>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_mixer&lt;/a&gt;: %1.%2.%3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="352"/>
-        <source>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_net&lt;/a&gt;: %1.%2.%3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="367"/>
-        <source>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_image&lt;/a&gt;: %1.%2.%3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="382"/>
-        <source>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_ttf&lt;/a&gt;: %1.%2.%3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="392"/>
-        <source>&lt;a href=&quot;https://www.qt.io/developers/&quot;&gt;Qt&lt;/a&gt;: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="396"/>
-        <source>&lt;a href=&quot;https://libav.org&quot;&gt;libavcodec&lt;/a&gt;: %1.%2.%3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="401"/>
-        <source>&lt;a href=&quot;https://libav.org&quot;&gt;libavformat&lt;/a&gt;: %1.%2.%3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="406"/>
-        <source>&lt;a href=&quot;https://libav.org&quot;&gt;libavutil&lt;/a&gt;: %1.%2.%3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/about.cpp" line="413"/>
-        <source>&lt;a href=&quot;https://icculus.org/physfs/&quot;&gt;PhysFS&lt;/a&gt;: %1.%2.%3</source>
-        <translation type="unfinished"></translation>
+    <name>RoomsListModel</name>
+    <message>
+        <source>C</source>
+        <translation>人数</translation>
+    </message>
+    <message>
+        <source>T</source>
+        <translation>队伍</translation>
+    </message>
+    <message>
+        <source>Map</source>
+        <translation>地图</translation>
+    </message>
+    <message>
+        <source>Forts</source>
+        <translation>堡垒</translation>
+    </message>
+    <message>
+        <source>Owner</source>
+        <translation>房主</translation>
+    </message>
+    <message>
+        <source>Rules</source>
+        <translation>规则</translation>
+    </message>
+    <message>
+        <source>Script</source>
+        <translation>脚本</translation>
+    </message>
+    <message>
+        <source>Random Maze</source>
+        <translation>随机迷宫</translation>
+    </message>
+    <message>
+        <source>Room Name</source>
+        <translation>房间名</translation>
+    </message>
+    <message>
+        <source>Hand-drawn</source>
+        <translation>手绘</translation>
+    </message>
+    <message>
+        <source>In progress</source>
+        <translation>进行中</translation>
+    </message>
+    <message>
+        <source>Random Map</source>
+        <translation>随机地图</translation>
+    </message>
+    <message>
+        <source>Weapons</source>
+        <translation>武器</translation>
+    </message>
+    <message>
+        <source>Random Perlin</source>
+        <translation>随机 Perlin</translation>
     </message>
 </context>
 <context>
-    <name>AbstractPage</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/AbstractPage.cpp" line="55"/>
-        <source>Go back</source>
-        <translation type="unfinished"></translation>
+    <name>PageOptions</name>
+    <message>
+        <source>x</source>
+        <translation>×</translation>
+    </message>
+    <message>
+        <source>Game</source>
+        <translation>游戏</translation>
+    </message>
+    <message>
+        <source>Audio</source>
+        <translation>声音</translation>
+    </message>
+    <message>
+        <source>Teams</source>
+        <translation>队伍</translation>
+    </message>
+    <message>
+        <source>Edit team</source>
+        <translation>编辑队伍</translation>
+    </message>
+    <message>
+        <source>Check for updates</source>
+        <translation>检查更新</translation>
+    </message>
+    <message>
+        <source>No proxy</source>
+        <translation>无代理</translation>
+    </message>
+    <message>
+        <source>Proxy password</source>
+        <translation>代理密码</translation>
+    </message>
+    <message>
+        <source>HTTP proxy</source>
+        <translation>HTTP 代理</translation>
+    </message>
+    <message>
+        <source>Socks5 proxy</source>
+        <translation>Socks5 代理</translation>
+    </message>
+    <message>
+        <source>You can&apos;t edit teams from team selection. Go back to main menu to add, edit or delete teams.</source>
+        <translation>你不能从队伍选择编辑队伍,回到主菜单来添加、编辑、删除队伍。</translation>
+    </message>
+    <message>
+        <source>Video Recording</source>
+        <translation>录制视频</translation>
+    </message>
+    <message>
+        <source>Select an action to change what key controls it</source>
+        <translation>选择一个动作来改变控制它的按键</translation>
+    </message>
+    <message>
+        <source>Network</source>
+        <translation>网络</translation>
+    </message>
+    <message>
+        <source>Proxy settings</source>
+        <translation>代理设置</translation>
+    </message>
+    <message>
+        <source>Controls</source>
+        <translation>控制</translation>
+    </message>
+    <message>
+        <source>Miscellaneous</source>
+        <translation>杂项</translation>
+    </message>
+    <message>
+        <source>Reset to default</source>
+        <translation>重设为默认</translation>
+    </message>
+    <message>
+        <source>Edit weapon set</source>
+        <translation>编辑武器集</translation>
+    </message>
+    <message>
+        <source>Game audio</source>
+        <translation>游戏声音</translation>
+    </message>
+    <message>
+        <source>Account</source>
+        <translation>账号</translation>
+    </message>
+    <message>
+        <source>New scheme</source>
+        <translation>新方案</translation>
+    </message>
+    <message>
+        <source>Reset all binds</source>
+        <translation>重设所有绑定按键</translation>
+    </message>
+    <message>
+        <source>Edit scheme</source>
+        <translation>编辑方案</translation>
+    </message>
+    <message>
+        <source>Graphics</source>
+        <translation>图形</translation>
+    </message>
+    <message>
+        <source>Can&apos;t delete last team</source>
+        <translation>不能删除最后一个队伍</translation>
+    </message>
+    <message>
+        <source>Frontend</source>
+        <translation>前端</translation>
+    </message>
+    <message>
+        <source>Schemes</source>
+        <translation>方案</translation>
+    </message>
+    <message>
+        <source>Delete team</source>
+        <translation>删除队伍</translation>
+    </message>
+    <message>
+        <source>You can&apos;t delete the last team!</source>
+        <translation>你不能删除最后一个队伍!</translation>
+    </message>
+    <message>
+        <source>Proxy login</source>
+        <translation>代理登录</translation>
+    </message>
+    <message>
+        <source>Reset to default colors</source>
+        <translation>重设为默认颜色</translation>
+    </message>
+    <message>
+        <source>Check now</source>
+        <translation>现在检查</translation>
+    </message>
+    <message>
+        <source>Advanced</source>
+        <translation>高级</translation>
+    </message>
+    <message>
+        <source>New weapon set</source>
+        <translation>新武器集</translation>
+    </message>
+    <message>
+        <source>Updates</source>
+        <translation>更新</translation>
+    </message>
+    <message>
+        <source>Custom colors</source>
+        <translation>自定义颜色</translation>
+    </message>
+    <message>
+        <source>New team</source>
+        <translation>新队伍</translation>
+    </message>
+    <message>
+        <source>Delete scheme</source>
+        <translation>删除方案</translation>
+    </message>
+    <message>
+        <source>Delete weapon set</source>
+        <translation>删除武器集</translation>
+    </message>
+    <message>
+        <source>Weapons</source>
+        <translation>武器</translation>
+    </message>
+    <message>
+        <source>Frontend audio</source>
+        <translation>前端声音</translation>
+    </message>
+    <message>
+        <source>MISSING LANGUAGE NAME [%1]</source>
+        <translation>缺少语言名字[%1]</translation>
+    </message>
+    <message>
+        <source>System proxy settings</source>
+        <translation>系统代理设置</translation>
+    </message>
+    <message>
+        <source>Proxy port</source>
+        <translation>代理端口</translation>
+    </message>
+    <message>
+        <source>Proxy host</source>
+        <translation>代理 host</translation>
+    </message>
+    <message>
+        <source>Video recording options</source>
+        <translation>录制视频选项</translation>
     </message>
 </context>
 <context>
     <name>BanDialog</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="38"/>
-        <source>permanent</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="41"/>
         <source>IP</source>
-        <translation type="unfinished">IP</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="42"/>
-        <source>Nick</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="43"/>
-        <source>IP/Nick</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="44"/>
-        <source>Reason</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="45"/>
-        <source>Duration</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="51"/>
+        <translation>IP</translation>
+    </message>
+    <message>
         <source>Ok</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="52"/>
+        <translation>确定</translation>
+    </message>
+    <message>
+        <source>Nick</source>
+        <translation>昵称</translation>
+    </message>
+    <message>
         <source>Cancel</source>
-        <translation type="unfinished">取消</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="61"/>
+        <translation>取消</translation>
+    </message>
+    <message>
+        <source>Reason</source>
+        <translation>理由</translation>
+    </message>
+    <message>
         <source>Ban player</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="81"/>
+        <translation>封禁玩家</translation>
+    </message>
+    <message>
+        <source>permanent</source>
+        <translation>永久</translation>
+    </message>
+    <message>
+        <source>Please specify an IP address.</source>
+        <translation>请指定一个 IP 地址。</translation>
+    </message>
+    <message>
+        <source>Please specify a nickname.</source>
+        <translation>请指定一个昵称。</translation>
+    </message>
+    <message>
+        <source>Duration</source>
+        <translation>时长</translation>
+    </message>
+    <message>
         <source>you know why</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="90"/>
-        <source>Please specify an IP address.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="92"/>
-        <source>Please specify a nickname.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="94"/>
+        <translation>你知道为什么</translation>
+    </message>
+    <message>
         <source>Warning</source>
-        <translation type="unfinished"></translation>
+        <translation>警告</translation>
+    </message>
+    <message>
+        <source>IP/Nick</source>
+        <translation>IP/昵称</translation>
+    </message>
+</context>
+<context>
+    <name>HWNetServersModel</name>
+    <message>
+        <source>IP</source>
+        <translation>IP</translation>
+    </message>
+    <message>
+        <source>Port</source>
+        <translation>端口</translation>
+    </message>
+    <message>
+        <source>Title</source>
+        <translation>标题</translation>
+    </message>
+</context>
+<context>
+    <name>QPushButton</name>
+    <message>
+        <source>OK</source>
+        <translation>确定</translation>
+    </message>
+    <message>
+        <source>Load</source>
+        <translation>加载</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>播放</translation>
+    </message>
+    <message>
+        <source>Reset</source>
+        <translation>重置</translation>
+    </message>
+    <message>
+        <source>Start</source>
+        <translation>开始</translation>
+    </message>
+    <message>
+        <source>Open videos directory</source>
+        <translation>打开视频目录</translation>
+    </message>
+    <message>
+        <source>Invite your friends to your server in just 1 click!</source>
+        <translation>一键邀请你的朋友到你的服务器!</translation>
+    </message>
+    <message>
+        <source>Start server</source>
+        <translation>启动服务器</translation>
+    </message>
+    <message>
+        <source>Set default options</source>
+        <translation>设置默认选项</translation>
+    </message>
+    <message>
+        <source>Click to copy your unique server URL to your clipboard. Send this link to your friends and they will be able to join you.</source>
+        <translation>点击以复制你的唯一服务器网址到剪贴板,发送这个链接给你的朋友,他们就能加入你。</translation>
+    </message>
+    <message>
+        <source>Start private server</source>
+        <translation>启动私人服务器</translation>
+    </message>
+    <message>
+        <source>Cancel</source>
+        <translation>取消</translation>
+    </message>
+    <message>
+        <source>Delete</source>
+        <translation>删除</translation>
+    </message>
+    <message>
+        <source>Rename</source>
+        <translation>重命名</translation>
+    </message>
+    <message>
+        <source>Update</source>
+        <translation>更新</translation>
+    </message>
+    <message>
+        <source>Restore default coding parameters</source>
+        <translation>还原默认编码参数</translation>
+    </message>
+    <message>
+        <source>More info</source>
+        <translation>更多信息</translation>
+    </message>
+    <message>
+        <source>Play demo</source>
+        <translation>播放 demo</translation>
+    </message>
+    <message>
+        <source>Associate file extensions</source>
+        <translation>关联文件扩展名</translation>
+    </message>
+    <message>
+        <source>Connect</source>
+        <translation>连接</translation>
+    </message>
+    <message>
+        <source>default</source>
+        <translation>默认</translation>
+    </message>
+    <message>
+        <source>Specify address</source>
+        <translation>指定地址</translation>
+    </message>
+    <message>
+        <source>Play this video</source>
+        <translation>播放这个视频</translation>
+    </message>
+    <message>
+        <source>Set the default server port for Hedgewars</source>
+        <translation>为刺猬战争设置默认服务器端口</translation>
+    </message>
+    <message>
+        <source>Delete this video</source>
+        <translation>删除这个视频</translation>
+    </message>
+    <message>
+        <source>Open the video directory in your system</source>
+        <translation>在你的系统打开视频目录</translation>
+    </message>
+</context>
+<context>
+    <name>binds (keys)</name>
+    <message>
+        <source>Up</source>
+        <translation>上</translation>
+    </message>
+    <message>
+        <source>End</source>
+        <translation>End</translation>
+    </message>
+    <message>
+        <source>Tab</source>
+        <translation>Tab</translation>
+    </message>
+    <message>
+        <source>Down</source>
+        <translation>下</translation>
+    </message>
+    <message>
+        <source>Home</source>
+        <translation>Home</translation>
+    </message>
+    <message>
+        <source>Left</source>
+        <translation>左</translation>
+    </message>
+    <message>
+        <source>Menu</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>D-pad</source>
+        <translation>D-pad</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Clear</translation>
+    </message>
+    <message>
+        <source>Pause</source>
+        <translation>Pause</translation>
+    </message>
+    <message>
+        <source>Right</source>
+        <translation>右</translation>
+    </message>
+    <message>
+        <source>Space</source>
+        <translation>空格</translation>
+    </message>
+    <message>
+        <source>Right stick (Down)</source>
+        <translation>Right stick (Down)</translation>
+    </message>
+    <message>
+        <source>Right stick (Left)</source>
+        <translation>Right stick (Left)</translation>
+    </message>
+    <message>
+        <source>Mouse: X1 button </source>
+        <translation>鼠标: 后退</translation>
+    </message>
+    <message>
+        <source>Left stick (Right)</source>
+        <translation>Left stick (Right)</translation>
+    </message>
+    <message>
+        <source>Mouse: Wheel up</source>
+        <translation>鼠标: 滚轮上</translation>
+    </message>
+    <message>
+        <source>Start button</source>
+        <translation>Start button</translation>
+    </message>
+    <message>
+        <source>Keypad Enter</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Right trigger</source>
+        <translation>Right trigger</translation>
+    </message>
+    <message>
+        <source>Mouse: Wheel down</source>
+        <translation>鼠标: 滚轮下</translation>
+    </message>
+    <message>
+        <source>Mouse: Middle button</source>
+        <translation>鼠标: 中键</translation>
+    </message>
+    <message>
+        <source>Delete</source>
+        <translation>Delete</translation>
+    </message>
+    <message>
+        <source>Left stick (Up)</source>
+        <translation>Left stick (Up)</translation>
+    </message>
+    <message>
+        <source>Escape</source>
+        <translation>Escape</translation>
+    </message>
+    <message>
+        <source>Insert</source>
+        <translation>Insert</translation>
+    </message>
+    <message>
+        <source>Axis %1 %2</source>
+        <translation>Axis %1 %2</translation>
+    </message>
+    <message>
+        <source>Left stick (Down)</source>
+        <translation>Left stick (Down)</translation>
+    </message>
+    <message>
+        <source>Left stick (Left)</source>
+        <translation>Left stick (Left)</translation>
+    </message>
+    <message>
+        <source>PageUp</source>
+        <translation>Page Up</translation>
+    </message>
+    <message>
+        <source>Return</source>
+        <translation>回车键</translation>
+    </message>
+    <message>
+        <source>Numlock</source>
+        <translation>Numlock</translation>
+    </message>
+    <message>
+        <source>Right Shift</source>
+        <translation>右 Shift</translation>
+    </message>
+    <message>
+        <source>Right stick</source>
+        <translation>Right stick</translation>
+    </message>
+    <message>
+        <source>ScrollLock</source>
+        <translation>Scroll Lock</translation>
+    </message>
+    <message>
+        <source>Left Shift</source>
+        <translation>左 Shift</translation>
+    </message>
+    <message>
+        <source>D-pad %1 %2</source>
+        <translation>D-pad %1 %2</translation>
+    </message>
+    <message>
+        <source>Left stick</source>
+        <translation>Left stick</translation>
+    </message>
+    <message>
+        <source>B button</source>
+        <translation>B button</translation>
+    </message>
+    <message>
+        <source>A button</source>
+        <translation>A button</translation>
+    </message>
+    <message>
+        <source>Y button</source>
+        <translation>Y button</translation>
+    </message>
+    <message>
+        <source>X button</source>
+        <translation>X button</translation>
+    </message>
+    <message>
+        <source>LB button</source>
+        <translation>LB button</translation>
+    </message>
+    <message>
+        <source>RB button</source>
+        <translation>RB button</translation>
+    </message>
+    <message>
+        <source>Right stick (Up)</source>
+        <translation>Right stick (Up)</translation>
+    </message>
+    <message>
+        <source>(QWERTY)</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Back button</source>
+        <translation>Back button</translation>
+    </message>
+    <message>
+        <source>Mouse: Right button</source>
+        <translation>鼠标: 右键</translation>
+    </message>
+    <message>
+        <source>PageDown</source>
+        <translation>Page Down</translation>
+    </message>
+    <message>
+        <source>CapsLock</source>
+        <translation>Caps Lock</translation>
+    </message>
+    <message>
+        <source>Backspace</source>
+        <translation>Backspace</translation>
+    </message>
+    <message>
+        <source>Button %1</source>
+        <translation>Button %1</translation>
+    </message>
+    <message>
+        <source>Left Alt</source>
+        <translation>左 Alt</translation>
+    </message>
+    <message>
+        <source>Left GUI</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keyboard</source>
+        <translation>键盘</translation>
+    </message>
+    <message>
+        <source>Keypad 0</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad 1</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad 2</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad 3</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad 4</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad 5</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad 6</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad 7</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad 8</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad 9</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad *</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad +</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad -</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad .</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keypad /</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Left Ctrl</source>
+        <translation>左 Ctrl</translation>
+    </message>
+    <message>
+        <source>Right GUI</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Right Alt</source>
+        <translation>右 Alt</translation>
+    </message>
+    <message>
+        <source>(Don&apos;t use)</source>
+        <translation>(不使用)</translation>
+    </message>
+    <message>
+        <source>Left trigger</source>
+        <translation>Left trigger</translation>
+    </message>
+    <message>
+        <source>Mouse: X2 button</source>
+        <translation>鼠标: 前进</translation>
+    </message>
+    <message>
+        <source>Right Ctrl</source>
+        <translation>右 Ctrl</translation>
+    </message>
+    <message>
+        <source>Mouse: Left button</source>
+        <translation>鼠标: 左键</translation>
+    </message>
+    <message>
+        <source>Right stick (Right)</source>
+        <translation>Right stick (Right)</translation>
+    </message>
+</context>
+<context>
+    <name>binds</name>
+    <message>
+        <source>up</source>
+        <translation>上</translation>
+    </message>
+    <message>
+        <source>put</source>
+        <translation>放</translation>
+    </message>
+    <message>
+        <source>chat</source>
+        <translation>聊天</translation>
+    </message>
+    <message>
+        <source>down</source>
+        <translation>下</translation>
+    </message>
+    <message>
+        <source>left</source>
+        <translation>左</translation>
+    </message>
+    <message>
+        <source>quit</source>
+        <translation>退出</translation>
+    </message>
+    <message>
+        <source>right</source>
+        <translation>右</translation>
+    </message>
+    <message>
+        <source>precise aim</source>
+        <translation>精确瞄准</translation>
+    </message>
+    <message>
+        <source>zoom in</source>
+        <translation>放大</translation>
+    </message>
+    <message>
+        <source>change timer</source>
+        <translation>改变定时器</translation>
+    </message>
+    <message>
+        <source>save map as image</source>
+        <translation>保存地图为图片</translation>
+    </message>
+    <message>
+        <source>set zoom to 100%</source>
+        <translation>缩放 100%</translation>
+    </message>
+    <message>
+        <source>volume down</source>
+        <translation>音量减</translation>
+    </message>
+    <message>
+        <source>volume up</source>
+        <translation>音量加</translation>
+    </message>
+    <message>
+        <source>ammo menu</source>
+        <translation>弹药菜单</translation>
+    </message>
+    <message>
+        <source>change direction without moving</source>
+        <translation>不移动改变方向</translation>
+    </message>
+    <message>
+        <source>timer 1 sec</source>
+        <translation>定时 1 秒</translation>
+    </message>
+    <message>
+        <source>timer 5 sec</source>
+        <translation>定时 5 秒</translation>
+    </message>
+    <message>
+        <source>timer 4 sec</source>
+        <translation>定时 4 秒</translation>
+    </message>
+    <message>
+        <source>timer 3 sec</source>
+        <translation>定时 3 秒</translation>
+    </message>
+    <message>
+        <source>timer 2 sec</source>
+        <translation>定时 2 秒</translation>
+    </message>
+    <message>
+        <source>long jump</source>
+        <translation>远跳</translation>
+    </message>
+    <message>
+        <source>switch backwards</source>
+        <translation>向后切换</translation>
+    </message>
+    <message>
+        <source>zoom out</source>
+        <translation>缩小</translation>
+    </message>
+    <message>
+        <source>attack</source>
+        <translation>攻击</translation>
+    </message>
+    <message>
+        <source>mute audio</source>
+        <translation>静音</translation>
+    </message>
+    <message>
+        <source>record</source>
+        <translation>录制</translation>
+    </message>
+    <message>
+        <source>slot 1</source>
+        <translation>槽位 1</translation>
+    </message>
+    <message>
+        <source>slot 2</source>
+        <translation>槽位 2</translation>
+    </message>
+    <message>
+        <source>slot 3</source>
+        <translation>槽位 3</translation>
+    </message>
+    <message>
+        <source>slot 4</source>
+        <translation>槽位 4</translation>
+    </message>
+    <message>
+        <source>slot 5</source>
+        <translation>槽位 5</translation>
+    </message>
+    <message>
+        <source>slot 6</source>
+        <translation>槽位 6</translation>
+    </message>
+    <message>
+        <source>slot 7</source>
+        <translation>槽位 7</translation>
+    </message>
+    <message>
+        <source>slot 8</source>
+        <translation>槽位 8</translation>
+    </message>
+    <message>
+        <source>slot 9</source>
+        <translation>槽位 9</translation>
+    </message>
+    <message>
+        <source>switch</source>
+        <translation>切换</translation>
+    </message>
+    <message>
+        <source>clan chat</source>
+        <translation>战队聊天</translation>
+    </message>
+    <message>
+        <source>stand still on slippery land</source>
+        <translation>在光滑地面上站稳</translation>
+    </message>
+    <message>
+        <source>change bounciness</source>
+        <translation>改变弹力</translation>
+    </message>
+    <message>
+        <source>chat history</source>
+        <translation>聊天历史记录</translation>
+    </message>
+    <message>
+        <source>toggle team bars</source>
+        <translation>切换队伍栏</translation>
+    </message>
+    <message>
+        <source>slot 10</source>
+        <translation>槽位 10</translation>
+    </message>
+    <message>
+        <source>show object information</source>
+        <translation>显示对象信息</translation>
+    </message>
+    <message>
+        <source>toggle hedgehog tag translucency</source>
+        <translation>切换刺猬标签透明度</translation>
+    </message>
+    <message>
+        <source>change hedgehog tag types</source>
+        <translation>改变刺猬标签类型</translation>
+    </message>
+    <message>
+        <source>screenshot</source>
+        <translation>截图</translation>
+    </message>
+    <message>
+        <source>speed up replay</source>
+        <translation>加速重播</translation>
+    </message>
+    <message>
+        <source>backwards jump</source>
+        <translation>后跳</translation>
+    </message>
+    <message>
+        <source>change mode</source>
+        <translation>改变模式</translation>
+    </message>
+    <message>
+        <source>high jump</source>
+        <translation>高跳</translation>
+    </message>
+    <message>
+        <source>unselect weapon</source>
+        <translation>取消选择武器</translation>
+    </message>
+    <message>
+        <source>toggle HUD</source>
+        <translation>切换 HUD</translation>
+    </message>
+    <message>
+        <source>autocam / find hedgehog</source>
+        <translation>自动镜头/ 查找 刺猬</translation>
+    </message>
+    <message>
+        <source>pause / auto skip</source>
+        <translation>暂停/自动跳过</translation>
+    </message>
+    <message>
+        <source>reset zoom to start value</source>
+        <translation>重置缩放到初始值</translation>
+    </message>
+    <message>
+        <source>show mission information</source>
+        <translation>显示任务信息</translation>
+    </message>
+    <message>
+        <source>toggle hedgehog tags</source>
+        <translation>切换刺猬标签</translation>
+    </message>
+    <message>
+        <source>confirmation</source>
+        <translation>确认</translation>
+    </message>
+</context>
+<context>
+    <name>PageVideos</name>
+    <message>
+        <source>%1%</source>
+        <translation>%1%</translation>
+    </message>
+    <message>
+        <source>Name</source>
+        <translation>名字</translation>
+    </message>
+    <message>
+        <source>Size</source>
+        <translation>大小</translation>
+    </message>
+    <message>
+        <source>Size: %1</source>
+        <translation>大小: %1</translation>
+    </message>
+    <message>
+        <source>%1 bytes</source>
+        <translation>%1 字节</translation>
+    </message>
+    <message>
+        <source>encoding</source>
+        <translation>编码</translation>
+    </message>
+    <message>
+        <source>Date: %1</source>
+        <translation>日期: %1</translation>
+    </message>
+    <message>
+        <source>(in progress...)</source>
+        <translation>(进行中…)</translation>
+    </message>
+    <message>
+        <source>%1 (%2%) - %3</source>
+        <translation>%1 (%2%)—%3</translation>
+    </message>
+</context>
+<context>
+    <name>PageAdmin</name>
+    <message>
+        <source>Add</source>
+        <translation>添加</translation>
+    </message>
+    <message>
+        <source>Bans</source>
+        <translation>封禁</translation>
+    </message>
+    <message>
+        <source>Expiration</source>
+        <translation>到期</translation>
+    </message>
+    <message>
+        <source>Reason</source>
+        <translation>理由</translation>
+    </message>
+    <message>
+        <source>Remove</source>
+        <translation>移除</translation>
+    </message>
+    <message>
+        <source>Server message for previous versions:</source>
+        <translation>给之前版本的服务器消息:</translation>
+    </message>
+    <message>
+        <source>Refresh</source>
+        <translation>刷新</translation>
+    </message>
+    <message>
+        <source>Fetch data</source>
+        <translation>获取数据</translation>
+    </message>
+    <message>
+        <source>Latest version protocol number:</source>
+        <translation>最新版本协议编号:</translation>
+    </message>
+    <message>
+        <source>MOTD preview:</source>
+        <translation>今日消息预览:</translation>
+    </message>
+    <message>
+        <source>Set data</source>
+        <translation>设置数据</translation>
+    </message>
+    <message>
+        <source>Server message for latest version:</source>
+        <translation>给最新版本的服务器消息:</translation>
+    </message>
+    <message>
+        <source>General</source>
+        <translation>一般</translation>
+    </message>
+    <message>
+        <source>IP/Nick</source>
+        <translation>IP/昵称</translation>
+    </message>
+    <message>
+        <source>Clear Accounts Cache</source>
+        <translation>清除账户缓存</translation>
+    </message>
+</context>
+<context>
+    <name>HWMapContainer</name>
+    <message>
+        <source>All</source>
+        <translation>所有</translation>
+    </message>
+    <message>
+        <source>Edit</source>
+        <translation>编辑</translation>
+    </message>
+    <message>
+        <source>Load</source>
+        <translation>加载</translation>
+    </message>
+    <message>
+        <source>Map:</source>
+        <translation>地图:</translation>
+    </message>
+    <message>
+        <source>Seed</source>
+        <translation>种子</translation>
+    </message>
+    <message>
+        <source>Mission map</source>
+        <translation>任务地图</translation>
+    </message>
+    <message>
+        <source>Medium tunnels</source>
+        <translation>中等隧道</translation>
+    </message>
+    <message>
+        <source>Forts</source>
+        <translation>堡垒</translation>
+    </message>
+    <message>
+        <source>Large</source>
+        <translation>大</translation>
+    </message>
+    <message>
+        <source>Small</source>
+        <translation>小</translation>
+    </message>
+    <message>
+        <source>Wacky</source>
+        <translation>古怪</translation>
+    </message>
+    <message>
+        <source>Mission:</source>
+        <translation>任务:</translation>
+    </message>
+    <message>
+        <source>View and edit the seed, the source of randomness in the game</source>
+        <translation>查看并编辑种子,游戏中随机性的来源</translation>
+    </message>
+    <message>
+        <source>Click to randomize the theme and seed</source>
+        <translation>点击以随机主题和种子</translation>
+    </message>
+    <message>
+        <source>Click to edit</source>
+        <translation>点击以编辑</translation>
+    </message>
+    <message>
+        <source>Small tunnels</source>
+        <translation>小隧道</translation>
+    </message>
+    <message>
+        <source>Large islands</source>
+        <translation>大岛屿</translation>
+    </message>
+    <message>
+        <source>Map size:</source>
+        <translation>地图大小:</translation>
+    </message>
+    <message>
+        <source>Map type:</source>
+        <translation>地图类型:</translation>
+    </message>
+    <message>
+        <source>Randomly generated</source>
+        <translation>随机生成</translation>
+    </message>
+    <message>
+        <source>Cavern</source>
+        <translation>洞穴</translation>
+    </message>
+    <message>
+        <source>Medium</source>
+        <translation>中等</translation>
+    </message>
+    <message>
+        <source>Random</source>
+        <translation>随机</translation>
+    </message>
+    <message>
+        <source>Style:</source>
+        <translation>风格:</translation>
+    </message>
+    <message>
+        <source>Random maze</source>
+        <translation>随机迷宫</translation>
+    </message>
+    <message>
+        <source>Randomize the theme and seed</source>
+        <translation>随机主题和种子</translation>
+    </message>
+    <message>
+        <source>Hand-drawn</source>
+        <translation>手绘</translation>
+    </message>
+    <message>
+        <source>Image map</source>
+        <translation>图片地图</translation>
+    </message>
+    <message>
+        <source>Maze style:</source>
+        <translation>迷宫风格:</translation>
+    </message>
+    <message>
+        <source>Large tunnels</source>
+        <translation>大隧道</translation>
+    </message>
+    <message>
+        <source>Randomize the seed</source>
+        <translation>随机种子</translation>
+    </message>
+    <message>
+        <source>Click to randomize the map, theme and seed</source>
+        <translation>点击以随机地图、主题和种子</translation>
+    </message>
+    <message>
+        <source>Scale size of the drawn map</source>
+        <translation>绘画地图的比例大小</translation>
+    </message>
+    <message>
+        <source>Small islands</source>
+        <translation>小岛屿</translation>
+    </message>
+    <message>
+        <source>Medium islands</source>
+        <translation>中等岛屿</translation>
+    </message>
+    <message>
+        <source>Randomize the map, theme and seed</source>
+        <translation>随机地图、主题和种子</translation>
+    </message>
+    <message>
+        <source>Adjust the complexity of the generated map</source>
+        <translation>调整生成地图的复杂度</translation>
+    </message>
+    <message>
+        <source>Choose a theme</source>
+        <translation>选择一个主题</translation>
+    </message>
+    <message>
+        <source>Theme: %1</source>
+        <translation>主题: %1</translation>
+    </message>
+    <message>
+        <source>Adjust the distance between forts</source>
+        <translation>调整堡垒之间距离</translation>
+    </message>
+    <message>
+        <source>Load drawn map</source>
+        <translation>加载绘画地图</translation>
+    </message>
+    <message>
+        <source>Map preview:</source>
+        <translation>地图预览:</translation>
+    </message>
+    <message>
+        <source>Load map drawing</source>
+        <translation>加载绘画地图</translation>
+    </message>
+    <message>
+        <source>Edit map drawing</source>
+        <translation>编辑绘画地图</translation>
+    </message>
+    <message>
+        <source>Drawn Maps</source>
+        <translation>绘画地图</translation>
+    </message>
+    <message>
+        <source>All files</source>
+        <translation>所有文件</translation>
+    </message>
+    <message>
+        <source>Randomize the theme</source>
+        <translation>随机主题</translation>
+    </message>
+    <message>
+        <source>Random perlin</source>
+        <translation>随机 perlin</translation>
+    </message>
+</context>
+<context>
+    <name>QAction</name>
+    <message>
+        <source>Ban</source>
+        <translation>封禁</translation>
+    </message>
+    <message>
+        <source>Info</source>
+        <translation>信息</translation>
+    </message>
+    <message>
+        <source>Kick</source>
+        <translation>踢出</translation>
+    </message>
+    <message>
+        <source>Follow</source>
+        <translation>跟随</translation>
+    </message>
+    <message>
+        <source>Unignore</source>
+        <translation>取消忽略</translation>
+    </message>
+    <message>
+        <source>Ignore</source>
+        <translation>忽略</translation>
+    </message>
+    <message>
+        <source>Show games in-progress</source>
+        <translation>显示进行中的游戏</translation>
+    </message>
+    <message>
+        <source>Add friend</source>
+        <translation>添加朋友</translation>
+    </message>
+    <message>
+        <source>Show password protected</source>
+        <translation>显示受密码保护的</translation>
+    </message>
+    <message>
+        <source>Restrict Unregistered Players Join</source>
+        <translation>限制未注册的玩家加入</translation>
+    </message>
+    <message>
+        <source>Restrict Team Additions</source>
+        <translation>限制队伍添加</translation>
+    </message>
+    <message>
+        <source>Show join restricted</source>
+        <translation>显示限制加入的</translation>
+    </message>
+    <message>
+        <source>Restrict Joins</source>
+        <translation>限制加入</translation>
+    </message>
+    <message>
+        <source>Delegate room control</source>
+        <translation>转授房间控制</translation>
+    </message>
+    <message>
+        <source>Remove friend</source>
+        <translation>删除朋友</translation>
+    </message>
+    <message>
+        <source>Show games in lobby</source>
+        <translation>显示在大厅的游戏</translation>
     </message>
 </context>
 <context>
-    <name>DataManager</name>
-    <message>
-        <location filename="../../../../QTfrontend/util/DataManager.cpp" line="159"/>
-        <source>Use Default</source>
-        <translation type="unfinished"></translation>
+    <name>credits</name>
+    <message>
+        <source>Art</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Hell</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Maps</source>
+        <translation>地图</translation>
+    </message>
+    <message>
+        <source>Tank</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Some Pas2C and GLES2 work</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>ClimbHome</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Beach</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Brick</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Czech</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Forts</source>
+        <translation>堡垒</translation>
+    </message>
+    <message>
+        <source>Greek</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Music</source>
+        <translation>音乐</translation>
+    </message>
+    <message>
+        <source>Ports</source>
+        <translation>移植</translation>
+    </message>
+    <message>
+        <source>Ruler</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Sheep</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Snail</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Maze maps</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Italian</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Special thanks</source>
+        <translation>特别感谢</translation>
+    </message>
+    <message>
+        <source>Frontend / main menu</source>
+        <translation>前端/主菜单</translation>
+    </message>
+    <message>
+        <source>Drill rocket, ballgun, RC plane</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Lonely_Island</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Basketball, BasketballField, Bath, Bubbleflow, Hammock, Hedgelove, Hedgewars, Hydrant, Mushrooms, Plane, Ropes, Tree</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>macOS/iPhone port, OpenGL-ES conversion</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Portal Mind Challenge</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Air mine, rubber, others</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>iPhone/iPad ports</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Scottish Gaelic</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>sdmusic (Hitman [sheepluva edit])</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Bulgarian</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Battlefield</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Climb Home</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Created Capture the Flag, Construction Mode, Control, HedgeEditor, Highlander, Racer, TechRacer, The Specialists, WxW</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>EarthRise, oriental, Pirate, snow</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Cheese</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Video recording</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Map generation</source>
+        <translation>地图生成</translation>
+    </message>
+    <message>
+        <source>Hungarian</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>French</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>German</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Teamwork 2</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Jungle</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Korean</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Many engine improvements</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Keybinds, feedback, maps and hats interfaces</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Nature</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Polish</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Slovak</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Sounds</source>
+        <translation>声音</translation>
+    </message>
+    <message>
+        <source>Sticks</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Themes</source>
+        <translation>主题</translation>
+    </message>
+    <message>
+        <source>Many frontend improvements</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Olympic</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>olympics_sd</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Fruit, Cake</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>See CREDITS text file</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Missions and styles</source>
+        <translation>任务和风格</translation>
+    </message>
+    <message>
+        <source>Game engine</source>
+        <translation>游戏引擎</translation>
+    </message>
+    <message>
+        <source>Login dialogs, other improvements</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Translations</source>
+        <translation>翻译</translation>
+    </message>
+    <message>
+        <source>portal</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>CTF_Blizzard</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Game server</source>
+        <translation>游戏服务器</translation>
+    </message>
+    <message>
+        <source>Programming</source>
+        <translation>编程</translation>
+    </message>
+    <message>
+        <source>City, Rock, others</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Japanese</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Gamepad and Lua integration</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>ShoppaKing, TrophyRace</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Ukrainian</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Graphics</source>
+        <translation>图形</translation>
+    </message>
+    <message>
+        <source>Theme customization improvements</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Perlin maps and other improvements</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>EvilChicken</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Golf, Hoggywood, Stage</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Russian</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Some styles and missions</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Chinese</source>
+        <translation>中文</translation>
+    </message>
+    <message>
+        <source>A Classic Fairytale</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Compost</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Spanish</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Fruit, Jungle</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Creator</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Octorama</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Default_pl, Russian_pl voices</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Swedish</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Brazilian Portuguese</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Cave, Olympics</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Project founder</source>
+        <translation>项目发起人</translation>
+    </message>
+    <message>
+        <source>Most core weapons</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>A Space Adventure</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Bamboo, EarthRise, BambooPlinko</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Battalion</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Portuguese</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Castle, PirateFlag</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>WebGL port</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Android port</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>SteelTower</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Campaign support</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Bamboo, Blox, Cake, Cogs, EarthRise, Freeway</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Finnish</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Mine number and time game settings</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Various authors from www.freesound.org (see CREDITS text file)</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Freezer</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Weapons</source>
+        <translation>武器</translation>
+    </message>
+    <message>
+        <source>General</source>
+        <translation>一般</translation>
+    </message>
+    <message>
+        <source>SB_Bones, SB_Crystal, SB_Grassy, SB_Grove, SB_Haunty, SB_Oaks, SB_Shrooms, SB_Tentacle</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Hoggywood</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Hats, graves, other</source>
+        <translation>帽子、墓碑、其他</translation>
+    </message>
+    <message>
+        <source>Core map generators</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Android netplay, portability abstraction</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Other improvements</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Training, time-trial and target practice challenges, Bazooka Battlefield, Tentacle Terror, Big Armory, bugfixes and maintenance</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Nature, Snow, City, Castle, Halloween, Island</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Continental supplies</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Hedgehogs voice</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Lithuanian</source>
+        <translation></translation>
+    </message>
+</context>
+<context>
+    <name>PageEditTeam</name>
+    <message>
+        <source>Hat</source>
+        <translation>帽子</translation>
+    </message>
+    <message>
+        <source>Name</source>
+        <translation>名字</translation>
+    </message>
+    <message>
+        <source>Custom Controls</source>
+        <translation>自定义控制</translation>
+    </message>
+    <message>
+        <source>Use my default</source>
+        <translation>使用我的默认</translation>
+    </message>
+    <message>
+        <source>CPU %1</source>
+        <translation>CPU %1</translation>
+    </message>
+    <message>
+        <source>Random Hats</source>
+        <translation>随机帽子</translation>
+    </message>
+    <message>
+        <source>Random Team</source>
+        <translation>随机队伍</translation>
+    </message>
+    <message>
+        <source>Reset all binds</source>
+        <translation>重置所有绑定按键</translation>
+    </message>
+    <message>
+        <source>%1 (%2)</source>
+        <translation>%1 (%2)</translation>
+    </message>
+    <message>
+        <source>Randomize the fort</source>
+        <translation>随机堡垒</translation>
+    </message>
+    <message>
+        <source>Randomize the flag</source>
+        <translation>随机旗帜</translation>
+    </message>
+    <message>
+        <source>Select an action to choose a custom key bind for this team</source>
+        <translation>选择一个动作为这个队伍自定义按键绑定</translation>
+    </message>
+    <message>
+        <source>Random Names</source>
+        <translation>随机名字</translation>
+    </message>
+    <message>
+        <source>Randomize the team name</source>
+        <translation>随机队伍名</translation>
+    </message>
+    <message>
+        <source>Play a random example of this voice</source>
+        <translation>播放一个随机语音示例</translation>
+    </message>
+    <message>
+        <source>This hedgehog&apos;s name</source>
+        <translation>这个刺猬的名字</translation>
+    </message>
+    <message>
+        <source>General</source>
+        <translation>一般</translation>
+    </message>
+    <message>
+        <source>Randomize this hedgehog&apos;s name</source>
+        <translation>随机这个刺猬的名字</translation>
+    </message>
+    <message>
+        <source>Randomize the grave</source>
+        <translation>随机墓碑</translation>
+    </message>
+    <message>
+        <source>Randomize the voice</source>
+        <translation>随机语音</translation>
+    </message>
+</context>
+<context>
+    <name>QCheckBox</name>
+    <message>
+        <source>Hog</source>
+        <translation>刺猬</translation>
+    </message>
+    <message>
+        <source>Team</source>
+        <translation>队伍</translation>
+    </message>
+    <message>
+        <source>Music</source>
+        <translation>音乐</translation>
+    </message>
+    <message>
+        <source>Sound</source>
+        <translation>声音</translation>
+    </message>
+    <message>
+        <source>In-game sound effects</source>
+        <translation>游戏中音效</translation>
+    </message>
+    <message>
+        <source>Enable hedgehog tags by default</source>
+        <translation>默认启用刺猬标签</translation>
+    </message>
+    <message>
+        <source>Save password</source>
+        <translation>保存密码</translation>
+    </message>
+    <message>
+        <source>Enable translucent tags by default</source>
+        <translation>默认启用透明标签</translation>
+    </message>
+    <message>
+        <source>Show ammo menu tooltips</source>
+        <translation>显示弹药菜单提示</translation>
+    </message>
+    <message>
+        <source>Alternative damage show</source>
+        <translation>备选伤害显示</translation>
+    </message>
+    <message>
+        <source>Reduce the game audio volume if the game window has lost its focus</source>
+        <translation>游戏窗口失去焦点时降低游戏音量</translation>
+    </message>
+    <message>
+        <source>Fullscreen</source>
+        <translation>全屏</translation>
+    </message>
+    <message>
+        <source>Record audio</source>
+        <translation>录制音频</translation>
+    </message>
+    <message>
+        <source>Health</source>
+        <translation>血量</translation>
+    </message>
+    <message>
+        <source>Enable health tags by default</source>
+        <translation>默认启用血量标签</translation>
+    </message>
+    <message>
+        <source>Frontend sound effects</source>
+        <translation>前端音效</translation>
+    </message>
+    <message>
+        <source>In-game music</source>
+        <translation>游戏中音乐</translation>
+    </message>
+    <message>
+        <source>Enable team tags by default</source>
+        <translation>默认启用队伍标签</translation>
+    </message>
+    <message>
+        <source>Append date and time to record file name</source>
+        <translation>附加日期和时间到录制文件名</translation>
+    </message>
+    <message>
+        <source>Enable visual effects such as animated menu transitions and falling stars</source>
+        <translation>启用视觉效果,如动态菜单过渡和掉落星星</translation>
+    </message>
+    <message>
+        <source>Check for updates at startup</source>
+        <translation>启动时检查更新</translation>
+    </message>
+    <message>
+        <source>If enabled, Hedgewars adds the date and time in the form &quot;YYYY-MM-DD_hh-mm&quot; for automatically created demos.</source>
+        <translation>如果启用,刺猬战争会添加日期和时间(YYYY-MM-DD_hh-mm)到自动创建的demo。</translation>
+    </message>
+    <message>
+        <source>Translucent</source>
+        <translation>透明度</translation>
+    </message>
+    <message>
+        <source>Visual effects</source>
+        <translation>视觉效果</translation>
+    </message>
+    <message>
+        <source>Use game resolution</source>
+        <translation>使用游戏分辨率</translation>
+    </message>
+    <message>
+        <source>Dampen when losing focus</source>
+        <translation>抑制当失去焦点时</translation>
+    </message>
+    <message>
+        <source>Frontend music</source>
+        <translation>前端音乐</translation>
+    </message>
+    <message>
+        <source>Show FPS</source>
+        <translation>显示帧数</translation>
+    </message>
+</context>
+<context>
+    <name>GameCFGWidget</name>
+    <message>
+        <source>Map</source>
+        <translation>地图</translation>
+    </message>
+    <message>
+        <source>Game scheme will auto-select a weapon</source>
+        <translation>游戏方案会自动选择一个武器</translation>
+    </message>
+    <message>
+        <source>Game options</source>
+        <translation>游戏选项</translation>
+    </message>
+    <message>
+        <source>Edit weapons</source>
+        <translation>编辑武器</translation>
+    </message>
+    <message>
+        <source>Edit schemes</source>
+        <translation>编辑方案</translation>
+    </message>
+</context>
+<context>
+    <name>GameSchemeModel</name>
+    <message>
+        <source>New</source>
+        <translation>新建</translation>
+    </message>
+    <message>
+        <source>Copy of %1</source>
+        <translation>%1 的复制</translation>
+    </message>
+    <message>
+        <source>New (%1)</source>
+        <translation>新建 (%1)</translation>
+    </message>
+    <message>
+        <source>Copy of %1 (%2)</source>
+        <translation>%1 的复制 (%2)</translation>
+    </message>
+</context>
+<context>
+    <name>PageScheme</name>
+    <message>
+        <source>New</source>
+        <translation>新建</translation>
+    </message>
+    <message>
+        <source>Copy</source>
+        <translation>复制</translation>
+    </message>
+    <message>
+        <source>Select a hedgehog at the beginning of a turn</source>
+        <translation>回合开始时选择一个刺猬</translation>
+    </message>
+    <message>
+        <source>How much the water rises per turn while in Sudden Death. Set to 0 along with Sudden Death Health Decrease to disable Sudden Death.</source>
+        <translation>在突然死亡中的每个回合,水面升起多少。和减少血量一起设为0以禁用突然死亡。</translation>
+    </message>
+    <message>
+        <source>Add an indestructible border along the bottom</source>
+        <translation>沿底部添加坚不可摧的边框</translation>
+    </message>
+    <message>
+        <source>All (living) hedgehogs are fully restored at the end of turn</source>
+        <translation>所有(活着的)刺猬在回合结束时完全恢复</translation>
+    </message>
+    <message>
+        <source>Disable land objects when generating random maps.</source>
+        <translation>生成随机地图时禁用地面物体。</translation>
+    </message>
+    <message>
+        <source>Wind will affect almost everything.</source>
+        <translation>风力会影响几乎所有东西。</translation>
+    </message>
+    <message>
+        <source>Gain 80% of the damage you do back in health</source>
+        <translation>获得血量为造成伤害的 80%</translation>
+    </message>
+    <message>
+        <source>Order of play is random instead of in room order.</source>
+        <translation>游玩顺序随机而不是房间顺序。</translation>
+    </message>
+    <message>
+        <source>How much health hedgehogs lose per turn while in Sudden Death, down to 1 health. Set to 0 along with Sudden Death Water Rise to disable Sudden Death.</source>
+        <translation>在突然死亡中的每个回合,刺猬失去多少血量,直到1点血。和水面升起设为0以禁用突然死亡。</translation>
+    </message>
+    <message>
+        <source>Ammo is shared between all teams that share a colour.</source>
+        <translation>所有相同颜色的队伍共享弹药。</translation>
+    </message>
+    <message>
+        <source>Weapons are reset to starting values each turn.</source>
+        <translation>武器在每个回合重置初始值。</translation>
+    </message>
+    <message>
+        <source>Share your opponents pain, share their damage</source>
+        <translation>分享你的对手的痛苦,分享他们的伤害</translation>
+    </message>
+    <message>
+        <source>Initial health of hedgehogs</source>
+        <translation>刺猬的初始血量</translation>
+    </message>
+    <message>
+        <source>Likelihood of a mine being a dud. Does not affect mines placed by hedgehogs.</source>
+        <translation>地雷是哑弹的概率。不影响由刺猬放置的地雷。</translation>
+    </message>
+    <message>
+        <source>Likelihood of a crate dropping before a turn</source>
+        <translation>回合开始前掉落箱子的概率</translation>
+    </message>
+    <message>
+        <source>Average number of mines to be placed a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation>放置在中等岛屿地图的地雷平均数。这个数值会被缩放于其他地图。</translation>
+    </message>
+    <message>
+        <source>Land can not be destroyed by most weapons.</source>
+        <translation>地面不会被多数武器破坏。</translation>
+    </message>
+    <message>
+        <source>Delete</source>
+        <translation>删除</translation>
+    </message>
+    <message>
+        <source>How many rounds have to be played before Sudden Death begins</source>
+        <translation>在突然死亡开始前有多少个回合可以玩</translation>
+    </message>
+    <message>
+        <source>Average number of air mines to be placed a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation>放置在中等岛屿地图的浮空雷平均数。这个数值会被缩放于其他地图。</translation>
+    </message>
+    <message>
+        <source>Bounce (Edges reflect)</source>
+        <translation>弹力 (边缘反弹)</translation>
+    </message>
+    <message>
+        <source>Health bonus for collecting a health crate</source>
+        <translation>收集一个医疗箱的血量奖励</translation>
+    </message>
+    <message>
+        <source>Maximum rope length in percent</source>
+        <translation>绳子最大长度(百分比)</translation>
+    </message>
+    <message>
+        <source>Assisted aiming with laser sight</source>
+        <translation>激光辅助瞄准</translation>
+    </message>
+    <message>
+        <source>Turn time in seconds</source>
+        <translation>回合时间(秒)</translation>
+    </message>
+    <message>
+        <source>Take turns placing your hedgehogs before the start of play.</source>
+        <translation>游戏开始前放置你的刺猬。</translation>
+    </message>
+    <message>
+        <source>Attacking does not end your turn.</source>
+        <translation>攻击不会终止你的回合。</translation>
+    </message>
+    <message>
+        <source>Additional parameter to configure game styles. The meaning depends on the used style, refer to the documentation. When in doubt, leave it empty.</source>
+        <translation>额外参数以配置游戏风格。意味着取决于使用的风格,请参阅文档。有疑问时请留空。</translation>
+    </message>
+    <message>
+        <source>Time you get after an attack</source>
+        <translation>攻击后你得到的时间</translation>
+    </message>
+    <message>
+        <source>Play with a King. If he dies, your side dies.</source>
+        <translation>和国王一起玩,如果他死了,你这边也死。</translation>
+    </message>
+    <message>
+        <source>%1 (%2)</source>
+        <translation>%1 (%2)</translation>
+    </message>
+    <message>
+        <source>Each clan starts in its own part of the terrain.</source>
+        <translation>每个战队开始在他的所属地形部分。</translation>
+    </message>
+    <message>
+        <source>Average number of barrels to be placed a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation>放置在中等岛屿地图的油桶平均数。这个数值会被缩放于其他地图。</translation>
+    </message>
+    <message>
+        <source>You will not have to worry about wind anymore.</source>
+        <translation>你再也不用担心风了。</translation>
+    </message>
+    <message>
+        <source>Detonation timer of mines. The random timer lies between 0 and 5 seconds. The timer of air mines will be a quarter of the mines timer.</source>
+        <translation>地雷的爆炸定时。随机定时器在0-5秒之间。浮空雷的定时只有地雷定时的四分之一。</translation>
+    </message>
+    <message>
+        <source>Overall damage and knockback in percent</source>
+        <translation>整体伤害和击退(百分比)</translation>
+    </message>
+    <message>
+        <source>Teams in each clan take successive turns sharing their turn time.</source>
+        <translation>每个战队的队伍在共享的回合时间里可以连续行动。</translation>
+    </message>
+    <message>
+        <source>Sea (Edges connect to sea)</source>
+        <translation>海 (边缘连接到海)</translation>
+    </message>
+    <message>
+        <source>Name of this scheme</source>
+        <translation>这个方案的名字</translation>
+    </message>
+    <message>
+        <source>Each hedgehog has its own ammo. It does not share with the team.</source>
+        <translation>每个刺猬有自己的弹药,不和队伍共享。</translation>
+    </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation>放置在中等岛屿地图的哨兵机器人平均数。这个数值会被缩放于其他地图。</translation>
+    </message>
+    <message>
+        <source>Add an indestructible border around the terrain</source>
+        <translation>在地形周围添加坚不可摧的边框</translation>
+    </message>
+    <message>
+        <source>AI respawns on death.</source>
+        <translation>AI 死后重生。</translation>
+    </message>
+    <message>
+        <source>None (Default)</source>
+        <translation>无(默认)</translation>
+    </message>
+    <message>
+        <source>Your hogs are unable to move, put your artillery skills to the test</source>
+        <translation>你的刺猬不能移动,测试你的炮兵技能</translation>
+    </message>
+    <message>
+        <source>Lower gravity</source>
+        <translation>较低重力</translation>
+    </message>
+    <message>
+        <source>Likelihood of a dropped crate being a health crate. All other crates will be weapon or utility crates.</source>
+        <translation>空投箱是医疗箱的概率。</translation>
+    </message>
+    <message>
+        <source>Disable girders when generating random maps.</source>
+        <translation>生成随机地图时禁用大梁。</translation>
+    </message>
+    <message>
+        <source>All hogs have a personal forcefield</source>
+        <translation>所有刺猬有一个个人力场</translation>
+    </message>
+    <message>
+        <source>Affects the left and right boundaries of the map</source>
+        <translation>影响地图的左右边界</translation>
+    </message>
+    <message>
+        <source>Wrap (World wraps)</source>
+        <translation>Wrap (边缘互通)</translation>
+    </message>
+</context>
+<context>
+    <name>PageSelectWeapon</name>
+    <message>
+        <source>New</source>
+        <translation>新建</translation>
+    </message>
+    <message>
+        <source>Copy</source>
+        <translation>复制</translation>
+    </message>
+    <message>
+        <source>Delete</source>
+        <translation>删除</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>默认</translation>
+    </message>
+</context>
+<context>
+    <name>SelWeaponWidget</name>
+    <message>
+        <source>New</source>
+        <translation>新建</translation>
+    </message>
+    <message>
+        <source>Delays</source>
+        <translation>推迟</translation>
+    </message>
+    <message>
+        <source>Weapon set</source>
+        <translation>武器集</translation>
+    </message>
+    <message>
+        <source>Ammo in boxes</source>
+        <translation>箱中弹药</translation>
+    </message>
+    <message>
+        <source>Probabilities</source>
+        <translation>概率</translation>
+    </message>
+    <message>
+        <source>Copy of %1</source>
+        <translation>%1 的复制</translation>
+    </message>
+    <message>
+        <source>New (%1)</source>
+        <translation>新建 (%1)</translation>
+    </message>
+    <message>
+        <source>Copy of %1 (%2)</source>
+        <translation>%1 的复制 (%2)</translation>
+    </message>
+</context>
+<context>
+    <name>server</name>
+    <message>
+        <source>map</source>
+        <translation>地图</translation>
+    </message>
+    <message>
+        <source>kick</source>
+        <translation>踢出</translation>
+    </message>
+    <message>
+        <source>room</source>
+        <translation>房间</translation>
+    </message>
+    <message>
+        <source>Access denied. This room is for registered users only.</source>
+        <translation>访问被拒绝。这个房间仅限注册用户。</translation>
+    </message>
+    <message>
+        <source>Please confirm server restart with &apos;/restart_server yes&apos;.</source>
+        <translation>请确认服务器以“/restart_server yes”重启。</translation>
+    </message>
+    <message>
+        <source>/vote: Please use &apos;yes&apos; or &apos;no&apos;.</source>
+        <translation>/vote: 请使用 ‘yes’ 或 ‘no’.</translation>
+    </message>
+    <message>
+        <source>heads</source>
+        <translation>正</translation>
+    </message>
+    <message>
+        <source>lobby</source>
+        <translation>大厅</translation>
+    </message>
+    <message>
+        <source>pause</source>
+        <translation>暂停</translation>
+    </message>
+    <message>
+        <source>tails</source>
+        <translation>反</translation>
+    </message>
+    <message>
+        <source>Empty config entry.</source>
+        <translation>空配置条目。</translation>
+    </message>
+    <message>
+        <source>Voting closed.</source>
+        <translation>投票已关闭。</translation>
+    </message>
+    <message>
+        <source>/delete &lt;config ID&gt;: Delete a votable room configuration</source>
+        <translation>/delete &lt;config ID&gt;: 删除一个可投票的房间配置</translation>
+    </message>
+    <message>
+        <source>Super power activated.</source>
+        <translation>超级力量已激活。</translation>
+    </message>
+    <message>
+        <source>This command is only available in rooms.</source>
+        <translation>这个命令只在房间可用。</translation>
+    </message>
+    <message>
+        <source>/rnd: Flip a virtual coin and reply with &apos;heads&apos; or &apos;tails&apos;</source>
+        <translation>/rnd: 翻转一个虚拟硬币并回复‘正’ 或 ‘反’</translation>
+    </message>
+    <message>
+        <source>You can&apos;t kick yourself!</source>
+        <translation>你不能踢自己!</translation>
+    </message>
+    <message>
+        <source>Protocol already known.</source>
+        <translation>协议已知。</translation>
+    </message>
+    <message>
+        <source>Warning! Room name change flood protection activated</source>
+        <translation>警告!房间名改变滥用保护已激活</translation>
+    </message>
+    <message>
+        <source>You can&apos;t kick the only other player!</source>
+        <translation>你不能踢仅剩的其他玩家!</translation>
+    </message>
+    <message>
+        <source>Excess flood</source>
+        <translation>过量滥发</translation>
+    </message>
+    <message>
+        <source>Greeting message cleared.</source>
+        <translation>问候语已清除。</translation>
+    </message>
+    <message>
+        <source>Illegal room name! A room name must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}</source>
+        <translation>非法房间名!房间名必须在1-40字符之间,不得以空格开头或结尾,且不包含这些字符:$()*+?[]^{|}</translation>
+    </message>
+    <message>
+        <source>/vote &lt;yes/no&gt;: Vote &apos;yes&apos; or &apos;no&apos; for active vote</source>
+        <translation>/vote &lt;yes/no&gt;: 投票 ‘yes’ 或 ‘no’ 以激活投票</translation>
+    </message>
+    <message>
+        <source>/rnd [A] [B] [C] [...]: Reply with a random word from the given list</source>
+        <translation>/rnd [A] [B] [C] [...]: 从给出列表中回复一个随机词语</translation>
+    </message>
+    <message>
+        <source>hedgehogs per team: </source>
+        <translation>每个队伍的刺猬: </translation>
+    </message>
+    <message>
+        <source>This server does not support replays!</source>
+        <translation>这个服务器不支持重玩!</translation>
+    </message>
+    <message>
+        <source>(playing)</source>
+        <translation>(正在玩)</translation>
+    </message>
+    <message>
+        <source>/fix: Force this room to stay open when it is empty</source>
+        <translation>/fix: 当这个房间空的时候强制保持开启</translation>
+    </message>
+    <message>
+        <source>Access denied.</source>
+        <translation>访问被拒绝。</translation>
+    </message>
+    <message>
+        <source>/loadroom &lt;file name&gt;: Load votable room configurations (and greeting) from a file</source>
+        <translation>/loadroom &lt;file name&gt;: 从文件加载可投票的房间配置(和问候)</translation>
+    </message>
+    <message>
+        <source>Too many hedgehogs!</source>
+        <translation>刺猬太多了!</translation>
+    </message>
+    <message>
+        <source>Greeting message set.</source>
+        <translation>设置问候语。</translation>
+    </message>
+    <message>
+        <source>/registered_only: Toggle &apos;registered only&apos; state. If enabled, only registered players can join server</source>
+        <translation>/registered_only: 切换 ‘registered only’ 状态。如果启用,只有注册玩家能加入服务器</translation>
+    </message>
+    <message>
+        <source>Room version incompatible to your Hedgewars version!</source>
+        <translation>房间版本跟你的刺猬战争版本不兼容!</translation>
+    </message>
+    <message>
+        <source>/greeting [message]: Set or clear greeting message to be shown to players who join the room</source>
+        <translation>/greeting [message]: 设置或清除问候语,显示给加入房间的玩家</translation>
+    </message>
+    <message>
+        <source>60 seconds cooldown after kick</source>
+        <translation>踢出后60秒冷却时间</translation>
+    </message>
+    <message>
+        <source>Warning! Chat flood protection activated</source>
+        <translation>警告!聊天滥发保护已激活</translation>
+    </message>
+    <message>
+        <source>Available callvote commands: hedgehogs &lt;number&gt;, pause, newseed, map &lt;name&gt;, kick &lt;player&gt;</source>
+        <translation>可用的发起投票命令:hedgehogs &lt;number&gt;, pause, newseed, map &lt;name&gt;, kick &lt;player&gt;</translation>
+    </message>
+    <message>
+        <source>There&apos;s already a team with same name in the list.</source>
+        <translation>列表中已有相同名字的队伍。</translation>
+    </message>
+    <message>
+        <source>Voting expired.</source>
+        <translation>投票已过期。</translation>
+    </message>
+    <message>
+        <source>/unfix: Undo the /fix command</source>
+        <translation>/unfix: 撤销 /fix 命令</translation>
+    </message>
+    <message>
+        <source>/maxteams: specify number from 2 to 8</source>
+        <translation>/maxteams: 从2到8指定数字</translation>
+    </message>
+    <message>
+        <source>/global &lt;message&gt;: Send global chat message which can be seen by everyone on the server</source>
+        <translation>/global &lt;message&gt;: 发送全局聊天消息,服务器中所有人可见</translation>
+    </message>
+    <message>
+        <source>Joining not possible: Round is in progress.</source>
+        <translation>无法加入:回合进行中。</translation>
+    </message>
+    <message>
+        <source>You already have voted.</source>
+        <translation>你已投票。</translation>
+    </message>
+    <message>
+        <source>Reconnected too fast</source>
+        <translation>重连太快</translation>
+    </message>
+    <message>
+        <source>Kicked</source>
+        <translation>已踢</translation>
+    </message>
+    <message>
+        <source>Your vote has been counted.</source>
+        <translation>你的投票已计数。</translation>
+    </message>
+    <message>
+        <source>/callvote map: No maps available.</source>
+        <translation>/callvote map: 无可用地图。</translation>
+    </message>
+    <message>
+        <source>/watch &lt;id&gt;: Watch a demo stored on the server with the given ID</source>
+        <translation>/watch &lt;id&gt;: 观看存储在服务器上给定ID的demo</translation>
+    </message>
+    <message>
+        <source>You&apos;re not the room master!</source>
+        <translation>你不是房主!</translation>
+    </message>
+    <message>
+        <source>/callvote map: No such map!</source>
+        <translation>/callvote map: 没有这个地图!</translation>
+    </message>
+    <message>
+        <source>Authentication failed</source>
+        <translation>验证失败</translation>
+    </message>
+    <message>
+        <source>/saveroom &lt;file name&gt;: Save all votable room configurations (and the greeting) of this room into a file</source>
+        <translation>/saveroom &lt;file name&gt;: 保存这个房间所有可投票的房间配置(和问候)到文件</translation>
+    </message>
+    <message>
+        <source>Bad number.</source>
+        <translation>错误的数字。</translation>
+    </message>
+    <message>
+        <source>/maxteams &lt;N&gt;: Limit maximum number of teams to N</source>
+        <translation>/maxteams &lt;N&gt;: 限制最大队伍数为N</translation>
+    </message>
+    <message>
+        <source>Warning! Joins flood protection activated</source>
+        <translation>警告!加入滥用保护已激活</translation>
+    </message>
+    <message>
+        <source>Error: The team you tried to remove does not exist.</source>
+        <translation>错误:你试图删除的队伍不存在。</translation>
+    </message>
+    <message>
+        <source>This server no longer allows unregistered players to join.</source>
+        <translation>这个服务器不再允许未注册玩家加入。</translation>
+    </message>
+    <message>
+        <source>A room with the same name already exists.</source>
+        <translation>已存在相同名字的房间。</translation>
+    </message>
+    <message>
+        <source>Too many teams!</source>
+        <translation>队伍太多了!</translation>
+    </message>
+    <message>
+        <source>kicked</source>
+        <translation>已踢</translation>
+    </message>
+    <message>
+        <source>/quit: Quit the server</source>
+        <translation>/quit: 退出服务器</translation>
+    </message>
+    <message>
+        <source>Unknown command or invalid parameters. Say &apos;/help&apos; in chat for a list of commands.</source>
+        <translation>未知命令或无效参数。 在聊天说‘/help’查看命令列表。</translation>
+    </message>
+    <message>
+        <source>Game messages flood detected - 1</source>
+        <translation>检测到游戏消息滥发 - 1</translation>
+    </message>
+    <message>
+        <source>(spectating)</source>
+        <translation>(正在旁观)</translation>
+    </message>
+    <message>
+        <source>/help: Show chat command help</source>
+        <translation>/help: 显示聊天命令帮助</translation>
+    </message>
+    <message>
+        <source>/callvote kick: No such user!</source>
+        <translation>/callvote kick: 没有这个用户!</translation>
+    </message>
+    <message>
+        <source>Illegal room name! The room name must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}</source>
+        <translation>非法房间名!房间名必须在1-40字符之间,不得以空格开头或结尾,且不包含这些字符:$()*+?[]^{|}</translation>
+    </message>
+    <message>
+        <source>New voting started</source>
+        <translation>已开始新的投票</translation>
+    </message>
+    <message>
+        <source>No checker rights</source>
+        <translation>无checker权限</translation>
+    </message>
+    <message>
+        <source>There&apos;s no voting going on.</source>
+        <translation>没有进行中的投票。</translation>
+    </message>
+    <message>
+        <source>You&apos;re already the room master.</source>
+        <translation>你已经是房主。</translation>
+    </message>
+    <message>
+        <source>Nickname already provided.</source>
+        <translation>昵称已提供。</translation>
+    </message>
+    <message>
+        <source>Commands for server admins only:</source>
+        <translation>仅限服务器管理员的命令:</translation>
+    </message>
+    <message>
+        <source>/save &lt;config ID&gt; &lt;config name&gt;: Add current room configuration as votable choice for /callvote map</source>
+        <translation>/save &lt;config ID&gt; &lt;config name&gt;: 为 /callvote map 添加当前房间配置作为可投票选择</translation>
+    </message>
+    <message>
+        <source>/callvote kick: You need to specify a nickname.</source>
+        <translation>/callvote kick:你需要指定一个昵称。</translation>
+    </message>
+    <message>
+        <source>Player is not online.</source>
+        <translation>玩家不在线。</translation>
+    </message>
+    <message>
+        <source>You are banned from this room.</source>
+        <translation>你被房间封禁。</translation>
+    </message>
+    <message>
+        <source>You&apos;re not the room master or a server admin!</source>
+        <translation>你不是房主或服务器管理员!</translation>
+    </message>
+    <message>
+        <source>This command is only available in the lobby.</source>
+        <translation>这个命令仅在大厅可用。</translation>
+    </message>
+    <message>
+        <source>This server only allows registered users to join.</source>
+        <translation>这个服务器只允许注册用户加入。</translation>
+    </message>
+    <message>
+        <source>Illegal nickname! Nicknames must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}</source>
+        <translation>非法昵称!昵称必须在1-40字符之间,不得以空格开头或结尾,且不包含这些字符:$()*+?[]^{|}</translation>
+    </message>
+    <message>
+        <source>/callvote [arguments]: Start a vote</source>
+        <translation>/callvote [arguments]: 开始一个投票</translation>
+    </message>
+    <message>
+        <source>You can&apos;t remove a team you don&apos;t own.</source>
+        <translation>你不能移除你不拥有的队伍。</translation>
+    </message>
+    <message>
+        <source>Access denied. This room currently doesn&apos;t allow joining.</source>
+        <translation>访问被拒绝。这个房间当前不允许加入。</translation>
+    </message>
+    <message>
+        <source>new seed</source>
+        <translation>新种子</translation>
+    </message>
+    <message>
+        <source>/stats: Query server stats</source>
+        <translation>/stats: 查询服务器状态</translation>
+    </message>
+    <message>
+        <source>This player is protected from being kicked.</source>
+        <translation>这个玩家受保护不能踢。</translation>
+    </message>
+    <message>
+        <source>Pause toggled.</source>
+        <translation>已切换暂停。</translation>
+    </message>
+    <message>
+        <source>/super_power: Activate your super power. With it you can enter any room and are protected from kicking. Expires when you leave server</source>
+        <translation>/super_power: 激活你的超级力量。这样你可以进入任何房间且不能踢出。当你离开服务器就过期</translation>
+    </message>
+    <message>
+        <source>/force &lt;yes/no&gt;: Force vote result for active vote</source>
+        <translation>/force &lt;yes/no&gt;: 为激活的投票强制投票结果</translation>
+    </message>
+    <message>
+        <source>/delegate &lt;player&gt;: Surrender room control to player</source>
+        <translation>/delegate &lt;player&gt;: 转移房间控制给玩家</translation>
+    </message>
+    <message>
+        <source>/force: Please use &apos;yes&apos; or &apos;no&apos;.</source>
+        <translation>/force: 请使用‘yes’ 或 ‘no’.</translation>
+    </message>
+    <message>
+        <source>You&apos;re the new room master!</source>
+        <translation>你是新的房主!</translation>
+    </message>
+    <message>
+        <source>/callvote pause: No game in progress!</source>
+        <translation>/callvote pause: 没有进行中的游戏!</translation>
+    </message>
+    <message>
+        <source>/me &lt;message&gt;: Chat action, e.g. &apos;/me eats pizza&apos; becomes &apos;* Player eats pizza&apos;</source>
+        <translation>/me &lt;message&gt;: 聊天动作,如‘/me eats pizza’变成‘* Player eats pizza’</translation>
+    </message>
+    <message>
+        <source>Nickname is already in use</source>
+        <translation>昵称已使用</translation>
+    </message>
+    <message>
+        <source>The player is not in your room.</source>
+        <translation>这个玩家不在你的房间。</translation>
+    </message>
+    <message>
+        <source>This server now allows unregistered players to join.</source>
+        <translation>这个服务器现在允许未注册玩家加入。</translation>
+    </message>
+    <message>
+        <source>/callvote hedgehogs: Specify number from 1 to 8.</source>
+        <translation>/callvote hedgehogs: 从1到8指定数字。</translation>
+    </message>
+    <message>
+        <source>/info &lt;player&gt;: Show info about player</source>
+        <translation>/info &lt;player&gt;: 显示关于玩家的信息</translation>
+    </message>
+    <message>
+        <source>/callvote kick: This is only allowed in rooms without a room master.</source>
+        <translation>/callvote kick: 仅允许没有房主的房间。</translation>
+    </message>
+    <message>
+        <source>List of lobby chat commands:</source>
+        <translation>大厅聊天命令列表:</translation>
+    </message>
+    <message>
+        <source>Corrupted hedgehogs info!</source>
+        <translation>损坏的刺猬信息!</translation>
+    </message>
+    <message>
+        <source>No such room.</source>
+        <translation>没有这个房间。</translation>
+    </message>
+    <message>
+        <source>This room currently does not allow adding new teams.</source>
+        <translation>这个房间当前不允许添加新队伍。</translation>
+    </message>
+    <message>
+        <source>Ping timeout</source>
+        <translation>Ping 超时</translation>
+    </message>
+    <message>
+        <source>The game can&apos;t be started with less than two clans!</source>
+        <translation>游戏少于两个战队不能开始!</translation>
+    </message>
+    <message>
+        <source>List of room chat commands:</source>
+        <translation>房间聊天命令列表:</translation>
+    </message>
+</context>
+<context>
+    <name>QLabel</name>
+    <message>
+        <source>Flag</source>
+        <translation>旗帜</translation>
+    </message>
+    <message>
+        <source>Name</source>
+        <translation>名字</translation>
+    </message>
+    <message>
+        <source>There are videos that are currently being processed.
+Exiting now will abort them.
+Do you really want to quit?</source>
+        <translation>当前正在处理视频。
+现在退出会中止它们。
+你真的要退出?</translation>
+    </message>
+    <message>
+        <source>Grave</source>
+        <translation>墓碑</translation>
+    </message>
+    <message>
+        <source>Host:</source>
+        <translation>主机:</translation>
+    </message>
+    <message>
+        <source>Mines</source>
+        <translation>地雷</translation>
+    </message>
+    <message>
+        <source>Port:</source>
+        <translation>端口:</translation>
+    </message>
+    <message>
+        <source>Style</source>
+        <translation>风格</translation>
+    </message>
+    <message>
+        <source>Voice</source>
+        <translation>语音</translation>
+    </message>
+    <message>
+        <source>Send system information</source>
+        <translation>发送系统信息</translation>
+    </message>
+    <message>
+        <source>This development build is &apos;work in progress&apos; and may not be compatible with other versions of the game, while some features might be broken or incomplete!</source>
+        <translation>这个开发版还没完成,可能和其他版本的游戏不兼容,有些功能可能损坏或未实现!</translation>
+    </message>
+    <message>
+        <source>Audio codec</source>
+        <translation>音频编码</translation>
+    </message>
+    <message>
+        <source>Video codec</source>
+        <translation>视频编码</translation>
+    </message>
+    <message>
+        <source>Windowed Resolution</source>
+        <translation>窗口分辨率</translation>
+    </message>
+    <message>
+        <source>Initial Health</source>
+        <translation>初始血量</translation>
+    </message>
+    <message>
+        <source>Server port:</source>
+        <translation>服务器端口:</translation>
+    </message>
+    <message>
+        <source>Server name:</source>
+        <translation>服务器名称:</translation>
+    </message>
+    <message>
+        <source>World Edge</source>
+        <translation>世界边缘</translation>
+    </message>
+    <message>
+        <source>Scheme Name:</source>
+        <translation>方案名:</translation>
+    </message>
+    <message>
+        <source>Fullscreen</source>
+        <translation>全屏</translation>
+    </message>
+    <message>
+        <source>Your Email</source>
+        <translation>你的邮箱</translation>
+    </message>
+    <message>
+        <source>Air Mines</source>
+        <translation>浮空雷</translation>
+    </message>
+    <message>
+        <source>% Rope Length</source>
+        <translation>% 绳子长度</translation>
+    </message>
+    <message>
+        <source>Format</source>
+        <translation>格式</translation>
+    </message>
+    <message>
+        <source>Locale</source>
+        <translation>语言</translation>
+    </message>
+    <message>
+        <source>Player</source>
+        <translation>玩家</translation>
+    </message>
+    <message>
+        <source>FPS limit</source>
+        <translation>帧数限制</translation>
+    </message>
+    <message>
+        <source>Initial sound volume</source>
+        <translation>初始音量</translation>
+    </message>
+    <message>
+        <source>Scheme</source>
+        <translation>方案</translation>
+    </message>
+    <message>
+        <source>This setting will be effective at next restart.</source>
+        <translation>这个设置会在下次启动时生效。</translation>
+    </message>
+    <message>
+        <source>Resolution</source>
+        <translation>分辨率</translation>
+    </message>
+    <message>
+        <source>Zoom (%)</source>
+        <translation>缩放 (%)</translation>
+    </message>
+    <message>
+        <source>% Dud Mines</source>
+        <translation>% 哑弹地雷</translation>
+    </message>
+    <message>
+        <source>Damage Modifier</source>
+        <translation>伤害修改器</translation>
+    </message>
+    <message>
+        <source>Crate Drops</source>
+        <translation>箱子掉落</translation>
+    </message>
+    <message>
+        <source>Health in Crates</source>
+        <translation>医疗箱回血</translation>
+    </message>
+    <message>
+        <source>Type the security code:</source>
+        <translation>输入安全码:</translation>
+    </message>
+    <message>
+        <source>Bitrate (Kibit/s)</source>
+        <translation>比特率(Kibit/s)</translation>
+    </message>
+    <message>
+        <source>Script parameter</source>
+        <translation>脚本参数</translation>
+    </message>
+    <message>
+        <source>Framerate</source>
+        <translation>帧率</translation>
+    </message>
+    <message>
+        <source>Barrels</source>
+        <translation>油桶</translation>
+    </message>
+    <message>
+        <source>Quality</source>
+        <translation>质量</translation>
+    </message>
+    <message>
+        <source>Loading&lt;br&gt;CAPTCHA ...</source>
+        <translation>正在加载&lt;br&gt;验证码…</translation>
+    </message>
+    <message>
+        <source>Turn Time</source>
+        <translation>回合时间</translation>
+    </message>
+    <message>
+        <source>Description</source>
+        <translation>描述</translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation>哨兵机器人</translation>
+    </message>
+    <message>
+        <source>% Health Crates</source>
+        <translation>% 医疗箱</translation>
+    </message>
+    <message>
+        <source>Sudden Death Water Rise</source>
+        <translation>突然死亡水面上升</translation>
+    </message>
+    <message>
+        <source>Summary</source>
+        <translation>总结</translation>
+    </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation>聊天大小 (%)</translation>
+    </message>
+    <message>
+        <source>Tip: %1</source>
+        <translation>提示: %1</translation>
+    </message>
+    <message>
+        <source>Sudden Death Timeout</source>
+        <translation>突然死亡超时</translation>
+    </message>
+    <message>
+        <source>Stereoscopy</source>
+        <translation>立体视觉</translation>
+    </message>
+    <message>
+        <source>Mines Time</source>
+        <translation>地雷时间</translation>
+    </message>
+    <message>
+        <source>Fullscreen Resolution</source>
+        <translation>全屏分辨率</translation>
+    </message>
+    <message>
+        <source>Weapons</source>
+        <translation>武器</translation>
+    </message>
+    <message>
+        <source>% Retreat Time</source>
+        <translation>% 撤退时间</translation>
+    </message>
+    <message>
+        <source>Sudden Death Health Decrease</source>
+        <translation>突然死亡减少血量</translation>
+    </message>
+    <message>
+        <source>Displayed tags above hogs and translucent tags</source>
+        <translation>刺猬上面显示的标签和透明标签</translation>
+    </message>
+    <message>
+        <source>Nickname</source>
+        <translation>昵称</translation>
+    </message>
+</context>
+<context>
+    <name>QGroupBox</name>
+    <message>
+        <source>Fort</source>
+        <translation>堡垒</translation>
+    </message>
+    <message>
+        <source>Game Modifiers</source>
+        <translation>游戏修改器</translation>
+    </message>
+    <message>
+        <source>Basic Settings</source>
+        <translation>基本设置</translation>
+    </message>
+    <message>
+        <source>Videos</source>
+        <translation>视频</translation>
+    </message>
+    <message>
+        <source>Team Settings</source>
+        <translation>队伍设置</translation>
+    </message>
+    <message>
+        <source>Team Members</source>
+        <translation>队伍数量</translation>
+    </message>
+    <message>
+        <source>Description</source>
+        <translation>描述</translation>
+    </message>
+    <message>
+        <source>Net game</source>
+        <translation>网络游戏</translation>
+    </message>
+    <message>
+        <source>Playing teams</source>
+        <translation>正在玩的队伍</translation>
+    </message>
+</context>
+<context>
+    <name>PageDrawMap</name>
+    <message>
+        <source>Load</source>
+        <translation>加载</translation>
+    </message>
+    <message>
+        <source>Save</source>
+        <translation>保存</translation>
+    </message>
+    <message>
+        <source>Undo</source>
+        <translation>撤销</translation>
+    </message>
+    <message>
+        <source>Save drawn map</source>
+        <translation>保存绘画地图</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>清除</translation>
+    </message>
+    <message>
+        <source>Eraser</source>
+        <translation>橡皮擦</translation>
+    </message>
+    <message>
+        <source>Polyline</source>
+        <translation>线条</translation>
+    </message>
+    <message>
+        <source>Optimize</source>
+        <translation>优化</translation>
+    </message>
+    <message>
+        <source>Brush size</source>
+        <translation>笔刷大小</translation>
+    </message>
+    <message>
+        <source>Rectangle</source>
+        <translation>长方形</translation>
+    </message>
+    <message>
+        <source>Ellipse</source>
+        <translation>椭圆</translation>
+    </message>
+    <message>
+        <source>Load drawn map</source>
+        <translation>加载绘画地图</translation>
+    </message>
+    <message>
+        <source>Drawn Maps</source>
+        <translation>绘画地图</translation>
+    </message>
+    <message>
+        <source>All files</source>
+        <translation>所有文件</translation>
+    </message>
+</context>
+<context>
+    <name>SeedPrompt</name>
+    <message>
+        <source>Seed</source>
+        <translation>种子</translation>
+    </message>
+    <message>
+        <source>Close</source>
+        <translation>关闭</translation>
+    </message>
+    <message>
+        <source>Cancel</source>
+        <translation>取消</translation>
+    </message>
+    <message>
+        <source>The map seed is the basis for all random values generated by the game.</source>
+        <translation>地图种子是游戏生成的所有随机数值的偏移。</translation>
+    </message>
+    <message>
+        <source>Set seed</source>
+        <translation>设置种子</translation>
+    </message>
+</context>
+<context>
+    <name>PageCampaign</name>
+    <message>
+        <source>Team</source>
+        <translation>队伍</translation>
+    </message>
+    <message>
+        <source>Mission</source>
+        <translation>任务</translation>
+    </message>
+    <message>
+        <source>Start fighting</source>
+        <translation>开始战斗</translation>
+    </message>
+    <message>
+        <source>Campaign</source>
+        <translation>战役</translation>
+    </message>
+</context>
+<context>
+    <name>PageTraining</name>
+    <message>
+        <source>Team</source>
+        <translation>队伍</translation>
+    </message>
+    <message>
+        <source>Team&apos;s longest time: %L1 s</source>
+        <translation>队伍最长时间: %L1 秒</translation>
+    </message>
+    <message>
+        <source>Team lowscore: %1</source>
+        <translation>队伍最低分: %1</translation>
+    </message>
+    <message>
+        <source>Pick the challenge to play</source>
+        <translation>选择挑战开玩</translation>
+    </message>
+    <message>
+        <source>Challenges</source>
+        <translation>挑战</translation>
+    </message>
+    <message>
+        <source>No description available</source>
+        <translation>无可用描述</translation>
+    </message>
+    <message>
+        <source>Pick the training to play</source>
+        <translation>选择训练开玩</translation>
+    </message>
+    <message>
+        <source>Team&apos;s best time: %L1 s</source>
+        <translation>队伍最佳时间: %L1 秒</translation>
+    </message>
+    <message>
+        <source>Start fighting</source>
+        <translation>开始战斗</translation>
+    </message>
+    <message>
+        <source>Pick the scenario to play</source>
+        <translation>选择场景开玩</translation>
+    </message>
+    <message>
+        <source>Trainings</source>
+        <translation>训练</translation>
+    </message>
+    <message>
+        <source>Select a mission!</source>
+        <translation>选择一个任务!</translation>
+    </message>
+    <message>
+        <source>Scenarios</source>
+        <translation>场景</translation>
+    </message>
+    <message>
+        <source>Team&apos;s top accuracy: %1%</source>
+        <translation>队伍最高准确度: %1%</translation>
+    </message>
+    <message>
+        <source>Team highscore: %1</source>
+        <translation>队伍最高分: %1</translation>
     </message>
 </context>
 <context>
     <name>FeedbackDialog</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="91"/>
+        <source>View</source>
+        <translation>查看</translation>
+    </message>
+    <message>
+        <source>Send Feedback</source>
+        <translation>发送反馈</translation>
+    </message>
+    <message>
+        <source>Cancel</source>
+        <translation>取消</translation>
+    </message>
+    <message>
         <source>We are always happy about suggestions, ideas, or bug reports.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="90"/>
-        <source>Send us feedback!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="65"/>
+        <translation>我们很高兴收到建议、想法或错误报告。</translation>
+    </message>
+    <message>
         <source>Feedback</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="92"/>
+        <translation>反馈</translation>
+    </message>
+    <message>
+        <source>Send us feedback!</source>
+        <translation>给我们发送反馈!</translation>
+    </message>
+    <message>
         <source>If you found a bug, you can see if it&apos;s already been reported here: </source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="93"/>
+        <translation>如果你发现一个错误,且它已经被报告,你可以在这里看到: </translation>
+    </message>
+    <message>
         <source>Your email address is optional, but necessary if you want us to get back at you.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="113"/>
+        <translation>你的邮箱地址是可选的,如果你想要收到回复。</translation>
+    </message>
+    <message>
         <source>This is optional, but this information might help us to resolve bugs and other technical problems.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="114"/>
-        <source>View</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="133"/>
-        <source>Cancel</source>
-        <translation type="unfinished">取消</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="160"/>
-        <source>Send Feedback</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>FreqSpinBox</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/FreqSpinBox.cpp" line="36"/>
-        <source>Never</source>
-        <translation>从不</translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/widget/FreqSpinBox.cpp" line="38"/>
-        <source>Every %1 turn</source>
-        <translation>
-            <numerusform>每隔 %1 回合</numerusform>
-        </translation>
+        <translation>这是可选的,但这个信息可能帮助我们解决错误和其他技术问题。</translation>
     </message>
 </context>
 <context>
-    <name>GameCFGWidget</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="67"/>
-        <source>Map</source>
-        <translation type="unfinished">地图</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="68"/>
-        <source>Game options</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="172"/>
-        <source>Edit weapons</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="181"/>
-        <source>Game scheme will auto-select a weapon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="149"/>
-        <source>Edit schemes</source>
-        <translation>修改游戏设置</translation>
-    </message>
-</context>
-<context>
-    <name>GameSchemeModel</name>
-    <message>
-        <source>new</source>
-        <translation type="obsolete">新</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1025"/>
-        <source>New</source>
-        <translation type="unfinished">新游戏</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1030"/>
-        <source>New (%1)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1039"/>
-        <source>Copy of %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/gameSchemeModel.cpp" line="1044"/>
-        <source>Copy of %1 (%2)</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>GameUIConfig</name>
-    <message>
-        <location filename="../../../../QTfrontend/gameuiconfig.cpp" line="536"/>
-        <source>Guest</source>
-        <translation type="unfinished"></translation>
+    <name>PageRoomsList</name>
+    <message>
+        <source>Join room</source>
+        <translation>加入房间</translation>
+    </message>
+    <message>
+        <source>Admin features</source>
+        <translation>管理员功能</translation>
+    </message>
+    <message>
+        <source>Open server administration page</source>
+        <translation>打开服务器管理员页面</translation>
+    </message>
+    <message>
+        <source>%1 players online</source>
+        <translation>%1 玩家在线</translation>
+    </message>
+    <message>
+        <source>Create room</source>
+        <translation>创建房间</translation>
+    </message>
+    <message>
+        <source>Search for a room:</source>
+        <translation>搜索房间:</translation>
+    </message>
+    <message>
+        <source>Room state</source>
+        <translation>房间状态</translation>
     </message>
 </context>
 <context>
     <name>HWApplication</name>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="28"/>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="29"/>
-        <source>%1 minutes</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="30"/>
-        <source>%1 hour</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="31"/>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="32"/>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="33"/>
-        <source>%1 hours</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="34"/>
-        <source>%1 day</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="35"/>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="36"/>
-        <location filename="../../../../QTfrontend/ui/dialog/bandialog.cpp" line="37"/>
-        <source>%1 days</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/HWApplication.cpp" line="93"/>
-        <source>Scheme &apos;%1&apos; not supported</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="117"/>
-        <source>Cannot create directory %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="172"/>
+    <message>
+        <source>Custom path to the game data folder</source>
+        <translation>游戏数据的自定义路径</translation>
+    </message>
+    <message>
         <source>Usage</source>
-        <comment>command-line</comment>
-        <extracomment>“Usage” as in “how the command-line syntax works”. Shown when running “hedgewars --help” in command-line</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="175"/>
-        <source>OPTION</source>
-        <comment>command-line</comment>
-        <extracomment>Name of a command-line argument, shown when running “hedgewars --help” in command-line. “OPTION” as in “command-line option”</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="178"/>
-        <location filename="../../../../QTfrontend/main.cpp" line="185"/>
+        <translation>使用情况</translation>
+    </message>
+    <message>
         <source>CONNECTSTRING</source>
-        <comment>command-line</comment>
-        <extracomment>Name of a command-line argument, shown when running “hedgewars --help” in command-line</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="181"/>
-        <source>Options</source>
-        <comment>command-line</comment>
-        <extracomment>“Options” as in “command-line options”</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="182"/>
+        <translation>CONNECTSTRING</translation>
+    </message>
+    <message>
+        <source>%1 day</source>
+        <translation>%1 天</translation>
+    </message>
+    <message>
         <source>Display this help</source>
-        <comment>command-line</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="183"/>
-        <source>Custom path for configuration data and user data</source>
-        <comment>command-line</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="184"/>
-        <source>Custom path to the game data folder</source>
-        <comment>command-line</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="185"/>
+        <translation>显示这个帮助</translation>
+    </message>
+    <message>
+        <source>%1 hours</source>
+        <translation>%1 时</translation>
+    </message>
+    <message>
+        <source>%1 minutes</source>
+        <translation>%1 分</translation>
+    </message>
+    <message>
+        <source>OPTION</source>
+        <translation>选项</translation>
+    </message>
+    <message>
         <source>Hedgewars can use a %1 (e.g. &quot;%2&quot;) to connect on start.</source>
-        <comment>command-line</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="430"/>
-        <source>Malformed option argument: %1</source>
-        <comment>command-line</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="439"/>
-        <source>Unknown option argument: %1</source>
-        <comment>command-line</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="370"/>
+        <translation>刺猬在开始时可以用 %1 (如 &quot;%2&quot;) 来连接。</translation>
+    </message>
+    <message>
+        <source>Options</source>
+        <translation>选项</translation>
+    </message>
+    <message>
+        <source>Scheme &apos;%1&apos; not supported</source>
+        <translation>不支持方案‘%1’</translation>
+    </message>
+    <message>
         <source>Failed to open data directory:
 %1
 
 Please check your installation!</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>HWAskQuitDialog</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/ask_quit.cpp" line="33"/>
-        <source>Do you really want to quit?</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>HWChatWidget</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="214"/>
-        <source>Chat log</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="231"/>
-        <source>Enter chat messages here and send them with [Enter]</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="243"/>
-        <source>List of players</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="522"/>
-        <source>%1 has joined</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="553"/>
-        <source>%1 has left</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="558"/>
-        <source>%1 has left (%2)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="697"/>
-        <source>%1 has been removed from your ignore list</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="707"/>
-        <source>%1 has been added to your ignore list</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="737"/>
-        <source>%1 has been removed from your friends list</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="746"/>
-        <source>%1 has been added to your friends list</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="814"/>
-        <source>Stylesheet imported from %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="815"/>
-        <source>Enter %1 if you want to use the current StyleSheet in future, enter %2 to reset!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="823"/>
-        <source>Couldn&apos;t read %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="831"/>
-        <source>StyleSheet discarded</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="855"/>
-        <source>StyleSheet saved to %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="858"/>
-        <source>Failed to save StyleSheet to %1</source>
-        <translation type="unfinished"></translation>
+        <translation>无法打开数据目录:
+%1
+
+请检查你的安装!</translation>
+    </message>
+    <message>
+        <source>%1 days</source>
+        <translation>%1 天</translation>
+    </message>
+    <message>
+        <source>%1 hour</source>
+        <translation>%1 时</translation>
+    </message>
+    <message>
+        <source>Unknown option argument: %1</source>
+        <translation>未知的选项参数: %1</translation>
+    </message>
+    <message>
+        <source>Custom path for configuration data and user data</source>
+        <translation>配置和用户数据的自定义路径</translation>
+    </message>
+    <message>
+        <source>Malformed option argument: %1</source>
+        <translation>畸形选项参数: %1</translation>
+    </message>
+    <message>
+        <source>Cannot create directory %1</source>
+        <translation>不能创建目录 %1</translation>
     </message>
 </context>
 <context>
-    <name>HWForm</name>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="544"/>
-        <source>Team 1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="549"/>
-        <source>%1&apos;s Team</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="569"/>
-        <source>Team %1</source>
-        <extracomment>Default team name</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="581"/>
-        <source>Computer %1</source>
-        <extracomment>Default computer team name</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="767"/>
-        <source>Game aborted</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1220"/>
-        <source>Hedgewars - Nick registered</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1221"/>
-        <source>This nick is registered, and you haven&apos;t specified a password.
-
-If this nick isn&apos;t yours, please register your own nick at www.hedgewars.org
-
-Password:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1249"/>
-        <source>Your nickname is not registered.
-To prevent someone else from using it,
-please register it at www.hedgewars.org</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1254"/>
-        <source>
-
-Your password wasn&apos;t saved either.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1266"/>
-        <source>Nickname</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1266"/>
-        <source>Someone already uses your nickname %1 on the server.
-Please pick another nickname:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1271"/>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1596"/>
-        <source>No nickname supplied.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1271"/>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1596"/>
-        <source>Hedgewars - Empty nickname</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1298"/>
-        <source>Hedgewars - Wrong password</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1298"/>
-        <source>You entered a wrong password.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1310"/>
-        <source>Room password</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1310"/>
-        <source>The room is protected with password.
-Please, enter the password:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1326"/>
-        <source>Try Again</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1700"/>
-        <source>Hedgewars - Connection error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1700"/>
-        <source>You reconnected too fast.
-Please wait a few seconds and try again.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2341"/>
-        <source>Hedgewars Demo File</source>
-        <comment>File Types</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2342"/>
-        <source>Hedgewars Save File</source>
-        <comment>File Types</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2404"/>
-        <source>Demo name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2404"/>
-        <source>Demo name:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2478"/>
-        <source>Unknown network error (possibly missing SSL library).</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2482"/>
-        <source>This feature requires an Internet connection, but you don&apos;t appear to be online (error code: %1).</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2487"/>
-        <source>Internal error: Reply object is invalid.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1889"/>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2412"/>
-        <source>Cannot save record to file %1</source>
-        <translation>无法录入文件 %1</translation>
+    <name>About</name>
+    <message>
+        <source>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_ttf&lt;/a&gt;: %1.%2.%3</source>
+        <translation>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_ttf&lt;/a&gt;: %1.%2.%3</translation>
+    </message>
+    <message>
+        <source>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_net&lt;/a&gt;: %1.%2.%3</source>
+        <translation>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_net&lt;/a&gt;: %1.%2.%3</translation>
+    </message>
+    <message>
+        <source>This program is distributed under the %1.</source>
+        <translation>这个程序在 %1 下发布。</translation>
+    </message>
+    <message>
+        <source>Unknown Compiler</source>
+        <translation>未知编译器</translation>
+    </message>
+    <message>
+        <source>Visit our homepage: %1</source>
+        <translation>访问我们的主页: %1</translation>
+    </message>
+    <message>
+        <source>Dependency versions:</source>
+        <translation>依赖版本:</translation>
+    </message>
+    <message>
+        <source>&lt;a href=&quot;https://www.qt.io/developers/&quot;&gt;Qt&lt;/a&gt;: %1</source>
+        <translation>&lt;a href=&quot;https://www.qt.io/developers/&quot;&gt;Qt&lt;/a&gt;: %1</translation>
+    </message>
+    <message>
+        <source>Other people</source>
+        <translation>其他人</translation>
+    </message>
+    <message>
+        <source>%1: %2</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>&lt;a href=&quot;https://gcc.gnu.org&quot;&gt;GCC&lt;/a&gt;: %1</source>
+        <translation>&lt;a href=&quot;https://gcc.gnu.org&quot;&gt;GCC&lt;/a&gt;: %1</translation>
+    </message>
+    <message>
+        <source>Unknown Compiler: %1</source>
+        <translation>未知编译器: %1</translation>
+    </message>
+    <message>
+        <source>GNU GPL v2</source>
+        <translation>GNU GPL v2</translation>
+    </message>
+    <message>
+        <source>%1 &amp;lt;%2&amp;gt;</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>%1: %2 &amp;lt;%3&amp;gt;</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>Extended Credits</source>
+        <translation>扩展名单</translation>
+    </message>
+    <message>
+        <source>%1 (alias %2)</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>&lt;a href=&quot;https://libav.org&quot;&gt;libavformat&lt;/a&gt;: %1.%2.%3</source>
+        <translation>&lt;a href=&quot;https://libav.org&quot;&gt;libavformat&lt;/a&gt;: %1.%2.%3</translation>
+    </message>
+    <message>
+        <source>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_mixer&lt;/a&gt;: %1.%2.%3</source>
+        <translation>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_mixer&lt;/a&gt;: %1.%2.%3</translation>
+    </message>
+    <message>
+        <source>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2&lt;/a&gt;: %1.%2.%3</source>
+        <translation>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2&lt;/a&gt;: %1.%2.%3</translation>
+    </message>
+    <message>
+        <source>Revision %1 (%2)</source>
+        <translation>修订 %1 (%2)</translation>
+    </message>
+    <message>
+        <source>Hedgewars %1</source>
+        <translation>刺猬战争 %1</translation>
+    </message>
+    <message>
+        <source>&lt;a href=&quot;https://visualstudio.microsoft.com&quot;&gt;VC++&lt;/a&gt;: %1</source>
+        <translation></translation>
+    </message>
+    <message>
+        <source>An extended credits list can be found in the CREDITS text file.</source>
+        <translation>一个扩展名单列表可以在 CREDITS 文本文件里找到。</translation>
+    </message>
+    <message>
+        <source>Credits</source>
+        <translation>名单</translation>
+    </message>
+    <message>
+        <source>&lt;a href=&quot;https://icculus.org/physfs/&quot;&gt;PhysFS&lt;/a&gt;: %1.%2.%3</source>
+        <translation>&lt;a href=&quot;https://icculus.org/physfs/&quot;&gt;PhysFS&lt;/a&gt;: %1.%2.%3</translation>
+    </message>
+    <message>
+        <source>&lt;a href=&quot;https://libav.org&quot;&gt;libavutil&lt;/a&gt;: %1.%2.%3</source>
+        <translation>&lt;a href=&quot;https://libav.org&quot;&gt;libavutil&lt;/a&gt;: %1.%2.%3</translation>
+    </message>
+    <message>
+        <source>&lt;a href=&quot;https://libav.org&quot;&gt;libavcodec&lt;/a&gt;: %1.%2.%3</source>
+        <translation>&lt;a href=&quot;https://libav.org&quot;&gt;libavcodec&lt;/a&gt;: %1.%2.%3</translation>
+    </message>
+    <message>
+        <source>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_image&lt;/a&gt;: %1.%2.%3</source>
+        <translation>&lt;a href=&quot;https://www.libsdl.org/&quot;&gt;SDL2_image&lt;/a&gt;: %1.%2.%3</translation>
+    </message>
+</context>
+<context>
+    <name>HatButton</name>
+    <message>
+        <source>Change hat (%1)</source>
+        <translation>改变帽子 (%1)</translation>
     </message>
 </context>
 <context>
-    <name>HWGame</name>
-    <message>
-        <location filename="../../../../QTfrontend/game.cpp" line="433"/>
-        <source>A fatal ERROR occured! The game engine had to stop.
-
-We are very sorry for the inconvenience. :-(
-
-If this keeps happening, please click the &apos;Feedback&apos; button in the main menu!
+    <name>QMessageBox</name>
+    <message>
+        <source>Error</source>
+        <translation>错误</translation>
+    </message>
+    <message>
+        <source>Do you really want to remove %1 file(s)?</source>
+        <translation>你确定要删除 %1 个文件?</translation>
+    </message>
+    <message>
+        <source>Room Name - Are you sure?</source>
+        <translation>房间名 — 你确定?</translation>
+    </message>
+    <message>
+        <source>Please select a file from the list.</source>
+        <translation>请从列表选择一个文件。</translation>
+    </message>
+    <message>
+        <source>Not all players are ready</source>
+        <translation>还有玩家没准备好</translation>
+    </message>
+    <message>
+        <source>Welcome to Hedgewars</source>
+        <translation>欢迎来到刺猬战争</translation>
+    </message>
+    <message>
+        <source>Failed to download captcha</source>
+        <translation>无法下载验证码</translation>
+    </message>
+    <message>
+        <source>Teams - Name already taken</source>
+        <translation>队伍 - 已取名</translation>
+    </message>
+    <message>
+        <source>Videos - Are you sure?</source>
+        <translation>视频 - 你确定?</translation>
+    </message>
+    <message>
+        <source>Do you really want to delete the team &apos;%1&apos;?</source>
+        <translation>你确定要删除队伍 ‘%1’?</translation>
+    </message>
+    <message>
+        <source>Hedgewars - Error</source>
+        <translation>刺猬战争 - 错误</translation>
+    </message>
+    <message>
+        <source>Hedgewars - Nick not registered</source>
+        <translation>刺猬战争 - 昵称未注册</translation>
+    </message>
+    <message>
+        <source>Schemes - Name already taken</source>
+        <translation>方案 - 已取名</translation>
+    </message>
+    <message>
+        <source>Cannot delete default weapon set &apos;%1&apos;!</source>
+        <translation>不能删除默认武器集 ‘%1’!</translation>
+    </message>
+    <message>
+        <source>This server supports secure connections on port %1.
+Would you like to reconnect securely?</source>
+        <translation>这个服务器支持安全连接在端口 %1.
+你想要重新安全连接吗?</translation>
+    </message>
+    <message>
+        <source>Netgame - Error</source>
+        <translation>网络游戏 - 错误</translation>
+    </message>
+    <message>
+        <source>Failed to generate captcha</source>
+        <translation>无法生成验证码</translation>
+    </message>
+    <message>
+        <source>File error</source>
+        <translation>文件错误</translation>
+    </message>
+    <message>
+        <source>Please enter room name</source>
+        <translation>请输入房间名</translation>
+    </message>
+    <message>
+        <source>Teams - Are you sure?</source>
+        <translation>队伍 - 你确定?</translation>
+    </message>
+    <message>
+        <source>Please select a record from the list</source>
+        <translation>请从列表选择一份录制</translation>
+    </message>
+    <message>
+        <source>Please select a server from the list</source>
+        <translation>请从列表选择一个服务器</translation>
+    </message>
+    <message>
+        <source>Cannot open &apos;%1&apos; for writing</source>
+        <translation>不能打开‘%1’ 以写入</translation>
+    </message>
+    <message>
+        <source>File association failed.</source>
+        <translation>文件关联失败。</translation>
+    </message>
+    <message>
+        <source>Please fill out all fields. Email is optional.</source>
+        <translation>请填写所有字段,邮箱是可选的。</translation>
+    </message>
+    <message>
+        <source>Unable to start server</source>
+        <translation>无法启动服务器</translation>
+    </message>
+    <message>
+        <source>Server redirection</source>
+        <translation>服务器重定向</translation>
+    </message>
+    <message>
+        <source>Cannot delete file %1.</source>
+        <translation>不能删除文件 %1.</translation>
+    </message>
+    <message>
+        <source>All file associations have been set</source>
+        <translation>所有文件关联已设置</translation>
+    </message>
+    <message>
+        <source>Weapons - Are you sure?</source>
+        <translation>武器 - 你确定?</translation>
+    </message>
+    <message>
+        <source>Room Name - Error</source>
+        <translation>房间名 - 错误</translation>
+    </message>
+    <message>
+        <source>A weapon scheme with the name &apos;%1&apos; already exists. Changes made to the weapon scheme have been discarded.</source>
+        <translation>已存在名为‘%1’的武器方案。对武器方案的改变已放弃。</translation>
+    </message>
+    <message>
+        <source>Are you sure you want to start this game?
+Not all players are ready.</source>
+        <translation>你确定要开始游戏?
+还有玩家没准备好。</translation>
+    </message>
+    <message>
+        <source>Weapons - Warning</source>
+        <translation>武器 - 警告</translation>
+    </message>
+    <message>
+        <source>Hedgewars - Warning</source>
+        <translation>刺猬战争 - 警告</translation>
+    </message>
+    <message>
+        <source>Schemes - Are you sure?</source>
+        <translation>方案 - 你确定?</translation>
+    </message>
+    <message>
+        <source>Hedgewars - Success</source>
+        <translation>刺猬战争 - 成功</translation>
+    </message>
+    <message>
+        <source>Cannot delete default scheme &apos;%1&apos;!</source>
+        <translation>不能删除默认方案‘%1’!</translation>
+    </message>
+    <message>
+        <source>Hedgewars - Information</source>
+        <translation>刺猬战争 - 信息</translation>
+    </message>
+    <message>
+        <source>The game you are trying to join has started.
+Do you still want to join the room?</source>
+        <translation>你试图加入的游戏已经开始。
+你还想加入房间吗?</translation>
+    </message>
+    <message>
+        <source>Welcome to Hedgewars!
 
-Last engine message:
-%1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/game.cpp" line="587"/>
-        <location filename="../../../../QTfrontend/net/recorder.cpp" line="125"/>
-        <source>en.txt</source>
-        <extracomment>IMPORTANT: This text has a special meaning, do not translate it directly. This is the file name of translation files for the game engine, found in Data/Locale/. Usually, you replace “en” with the ISO-639-1 language code of your language.</extracomment>
-        <translation>zh_CN.txt</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/game.cpp" line="646"/>
-        <source>Cannot open demofile %1</source>
-        <translation>DEMO %1 打不开</translation>
-    </message>
-</context>
-<context>
-    <name>HWHostPortDialog</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_ip.cpp" line="66"/>
-        <source>Connect to server</source>
-        <translation type="unfinished"></translation>
+You seem to be new around here. Would you like to play some training missions first to learn the basics of Hedgewars?</source>
+        <translation>欢迎来到刺猬战争!
+
+你看起来是新来的,想要玩新手训练学习基本操作吗?</translation>
+    </message>
+    <message>
+        <source>The team name &apos;%1&apos; is already taken, so your team has been renamed to &apos;%2&apos;.</source>
+        <translation>已存在名为‘%1’的队伍, 所以你的队伍名被改为 ‘%2’.</translation>
+    </message>
+    <message>
+        <source>A scheme with the name &apos;%1&apos; already exists. Your scheme has been renamed to &apos;%2&apos;.</source>
+        <translation>已存在名为‘%1’的方案,你的方案名被改为‘%2’.</translation>
+    </message>
+    <message>
+        <source>Do you really want to delete the weapon set &apos;%1&apos;?</source>
+        <translation>你确定要删除武器集 ‘%1’?</translation>
+    </message>
+    <message>
+        <source>The connection to the server is lost.</source>
+        <translation>与服务器的连接丢失。</translation>
+    </message>
+    <message>
+        <source>Schemes - Warning</source>
+        <translation>方案 - 警告</translation>
+    </message>
+    <message>
+        <source>Do you really want to delete the game scheme &apos;%1&apos;?</source>
+        <translation>你确定要删除游戏方案‘%1’?</translation>
+    </message>
+    <message>
+        <source>Cannot open &apos;%1&apos; for reading</source>
+        <translation>不能打开 ‘%1’ 以读取</translation>
+    </message>
+    <message>
+        <source>Cannot rename file to %1.</source>
+        <translation>不能重命名文件为 %1.</translation>
+    </message>
+    <message>
+        <source>Cannot use the weapon scheme &apos;%1&apos;!</source>
+        <translation>不能使用武器集‘%1’!</translation>
+    </message>
+    <message>
+        <source>Do you really want to delete the video &apos;%1&apos;?</source>
+        <translation>你确定要删除视频 ‘%1’?</translation>
+    </message>
+    <message>
+        <source>Please select room from the list</source>
+        <translation>请从列表选择房间</translation>
+    </message>
+    <message>
+        <source>System Information Preview</source>
+        <translation>系统信息预览</translation>
     </message>
 </context>
 <context>
-    <name>HWMapContainer</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="284"/>
-        <source>Small tunnels</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="285"/>
-        <source>Medium tunnels</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="158"/>
-        <source>Seed</source>
-        <extracomment>Refers to the &quot;random seed&quot;; the source of randomness in the game</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="116"/>
-        <source>Map type:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="125"/>
-        <source>Image map</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="126"/>
-        <source>Mission map</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="127"/>
-        <source>Hand-drawn</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="128"/>
-        <source>Randomly generated</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="129"/>
-        <source>Random maze</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="130"/>
-        <source>Random perlin</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="131"/>
-        <source>Forts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="141"/>
-        <source>Random</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="159"/>
-        <source>View and edit the seed, the source of randomness in the game</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="168"/>
-        <source>Map preview:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="236"/>
-        <source>Load</source>
-        <translation type="unfinished">读取</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="238"/>
-        <source>Load map drawing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="252"/>
-        <source>Edit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="253"/>
-        <source>Edit map drawing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="271"/>
-        <source>All</source>
-        <translation>全部</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="272"/>
-        <source>Small</source>
-        <translation>小型</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="273"/>
-        <source>Medium</source>
-        <translation>中型</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="274"/>
-        <source>Large</source>
-        <translation>大型</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="275"/>
-        <source>Cavern</source>
-        <translation>洞穴</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="276"/>
-        <source>Wacky</source>
-        <translation>曲折</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="286"/>
-        <source>Large tunnels</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="287"/>
-        <source>Small islands</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="288"/>
-        <source>Medium islands</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="289"/>
-        <source>Large islands</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="324"/>
-        <source>Randomize the theme</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="334"/>
-        <source>Choose a theme</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="938"/>
-        <source>Randomize the map, theme and seed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="939"/>
-        <source>Randomize the theme and seed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="940"/>
-        <source>Randomize the seed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="941"/>
-        <source>Click to randomize the map, theme and seed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="942"/>
-        <source>Click to randomize the theme and seed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="943"/>
-        <source>Adjust the complexity of the generated map</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="944"/>
-        <source>Adjust the distance between forts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="945"/>
-        <source>Scale size of the drawn map</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="961"/>
-        <source>Click to edit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="994"/>
-        <source>Map size:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="1001"/>
-        <source>Maze style:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="1008"/>
-        <source>Style:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="1023"/>
-        <source>Mission:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="1043"/>
-        <source>Map:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="1140"/>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="1342"/>
-        <source>Theme: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="1242"/>
-        <source>Load drawn map</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="1242"/>
-        <source>Drawn Maps</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="1242"/>
-        <source>All files</source>
-        <translation type="unfinished"></translation>
+    <name>GameUIConfig</name>
+    <message>
+        <source>Guest</source>
+        <translation>游客</translation>
     </message>
 </context>
 <context>
-    <name>HWNetServersModel</name>
-    <message>
-        <location filename="../../../../QTfrontend/model/netserverslist.cpp" line="46"/>
-        <source>Title</source>
-        <translation>标题</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/netserverslist.cpp" line="49"/>
-        <source>IP</source>
-        <extracomment>short for &quot;IP address&quot; (Internet Protocol), part of server address</extracomment>
-        <translation>IP</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/netserverslist.cpp" line="52"/>
-        <source>Port</source>
-        <extracomment>short for &quot;port number&quot;, part of server address</extracomment>
-        <translation>端口</translation>
+    <name>QComboBox</name>
+    <message>
+        <source>Human</source>
+        <translation>人类</translation>
+    </message>
+    <message>
+        <source>Disabled</source>
+        <translation>禁用</translation>
+    </message>
+    <message>
+        <source>(System default)</source>
+        <translation>(系统默认)</translation>
+    </message>
+    <message>
+        <source>Top-Bottom</source>
+        <translation>顶部按钮</translation>
+    </message>
+    <message>
+        <source>24 FPS</source>
+        <translation>24 FPS</translation>
+    </message>
+    <message>
+        <source>25 FPS</source>
+        <translation>25 FPS</translation>
+    </message>
+    <message>
+        <source>30 FPS</source>
+        <translation>30 FPS</translation>
+    </message>
+    <message>
+        <source>50 FPS</source>
+        <translation>50 FPS</translation>
+    </message>
+    <message>
+        <source>60 FPS</source>
+        <translation>60 FPS</translation>
+    </message>
+    <message>
+        <source>Blue/Red</source>
+        <translation>蓝/红</translation>
+    </message>
+    <message>
+        <source>Stereoscopy creates an illusion of depth when you wear 3D glasses.</source>
+        <translation>当你戴着3D眼镜时,立体视觉创造深度的错觉。</translation>
+    </message>
+    <message>
+        <source>Red/Cyan grayscale</source>
+        <translation>红/青 灰度</translation>
+    </message>
+    <message>
+        <source>Community</source>
+        <translation>社区</translation>
+    </message>
+    <message>
+        <source>Cyan/Red grayscale</source>
+        <translation>青/红 灰度</translation>
+    </message>
+    <message>
+        <source>Blue/Red grayscale</source>
+        <translation>蓝/红 灰度</translation>
+    </message>
+    <message>
+        <source>Red/Green</source>
+        <translation>红/绿</translation>
+    </message>
+    <message>
+        <source>Computer (Level %1)</source>
+        <translation>计算机 (等级 %1)</translation>
+    </message>
+    <message>
+        <source>Red/Blue</source>
+        <translation>红/蓝</translation>
+    </message>
+    <message>
+        <source>Red/Cyan</source>
+        <translation>红/青</translation>
+    </message>
+    <message>
+        <source>Green/Red</source>
+        <translation>绿/红</translation>
+    </message>
+    <message>
+        <source>Red/Green grayscale</source>
+        <translation>红/绿 灰度</translation>
+    </message>
+    <message>
+        <source>Side-by-side</source>
+        <translation>并排</translation>
+    </message>
+    <message>
+        <source>Green/Red grayscale</source>
+        <translation>绿/红 灰度</translation>
+    </message>
+    <message>
+        <source>Red/Blue grayscale</source>
+        <translation>红/蓝 灰度</translation>
+    </message>
+    <message>
+        <source>Cyan/Red</source>
+        <translation>青/红</translation>
     </message>
 </context>
 <context>
     <name>HWNewNet</name>
     <message>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="246"/>
-        <source>Remote host has closed connection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="249"/>
+        <source>%1 *** %2 has joined the room</source>
+        <translation>%1 *** %2 已加入房间</translation>
+    </message>
+    <message>
+        <source>You got kicked</source>
+        <translation>你被踢了</translation>
+    </message>
+    <message>
         <source>The host was not found. Please check the host name and port settings.</source>
-        <translation>错误没找到这个主机。请检查主机名和端口设置。</translation>
-    </message>
-    <message>
-        <source>Connection refused</source>
-        <translation type="vanished">连接被拒绝</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="254"/>
-        <source>The connection was refused by the official server or timed out. Something seems to be wrong with the official server at the moment. This might be a temporary problem. Please try again later.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="257"/>
+        <translation>未找到主机,请检查主机和端口设置。</translation>
+    </message>
+    <message>
+        <source>%1 *** %2 has left</source>
+        <translation>%1 *** %2 已离开</translation>
+    </message>
+    <message>
         <source>The connection was refused by the host or timed out. This might have one of the following reasons:
 - The Hedgewars Server program does currently not run on the host
 - The specified port number is incorrect
 - There is a temporary network problem
 
 Please check the host name and port settings and/or try again later.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="351"/>
+        <translation>连接被主机拒绝或超时,理由可能如下:
+- 刺猬战争服务器程序当前没有运行在主机上
+- 指定的端口号不正确
+- 临时网络问题
+
+请检查主机名和端口设置,并/或稍后再试。</translation>
+    </message>
+    <message>
         <source>The server is too old. Disconnecting now.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="632"/>
+        <translation>服务器太旧了,现在断开连接。</translation>
+    </message>
+    <message>
+        <source>Remote host has closed connection</source>
+        <translation>远程主机已关闭连接</translation>
+    </message>
+    <message>
+        <source>Reason:</source>
+        <translation>理由:</translation>
+    </message>
+    <message>
         <source>Server authentication error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="966"/>
-        <source>%1 *** %2 has left</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="970"/>
+        <translation>服务器验证出错</translation>
+    </message>
+    <message>
+        <source>Room destroyed</source>
+        <translation>房间已销毁</translation>
+    </message>
+    <message>
         <source>%1 *** %2 has left (%3)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="797"/>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="951"/>
-        <source>%1 *** %2 has joined the room</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>Quit reason: </source>
-        <translation type="vanished">退出原因:</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="868"/>
-        <source>Room destroyed</source>
-        <translation>房间损坏</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/newnetclient.cpp" line="611"/>
-        <source>You got kicked</source>
-        <translation>被踢出</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1721"/>
-        <source>Reason:</source>
-        <translation type="unfinished"></translation>
+        <translation>%1 *** %2 已离开 (%3)</translation>
+    </message>
+    <message>
+        <source>The connection was refused by the official server or timed out. Something seems to be wrong with the official server at the moment. This might be a temporary problem. Please try again later.</source>
+        <translation>连接被官方服务器拒绝或超时,目前官方服务器似乎出了问题,这可能是临时问题,请稍后再试。</translation>
     </message>
 </context>
 <context>
     <name>HWPasswordDialog</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_password.cpp" line="30"/>
         <source>Login</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_password.cpp" line="35"/>
+        <translation>登录</translation>
+    </message>
+    <message>
+        <source>New Account</source>
+        <translation>新账号</translation>
+    </message>
+    <message>
+        <source>Nickname:</source>
+        <translation>昵称:</translation>
+    </message>
+    <message>
+        <source>Password:</source>
+        <translation>密码:</translation>
+    </message>
+    <message>
         <source>To connect to the server, please log in.
 
 If you don&apos;t have an account on www.hedgewars.org,
 just enter your nickname.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_password.cpp" line="39"/>
-        <source>Nickname:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_password.cpp" line="47"/>
-        <source>Password:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_password.cpp" line="59"/>
-        <source>New Account</source>
-        <translation type="unfinished"></translation>
+        <translation>要连接到服务器,请登录。
+
+如果你还没有www.hedgewars.org的账号,
+只需输入你的昵称。</translation>
+    </message>
+</context>
+<context>
+    <name>FreqSpinBox</name>
+    <message>
+        <source>Never</source>
+        <translation>从不</translation>
+    </message>
+    <message>
+        <source>Every %1 turn</source>
+        <translation>每 %1 回合</translation>
+    </message>
+</context>
+<context>
+    <name>PageMultiplayer</name>
+    <message>
+        <source>Start</source>
+        <translation>开始</translation>
+    </message>
+    <message>
+        <source>Start fighting (requires at least 2 teams)</source>
+        <translation>开始战斗(需要至少两个队伍)</translation>
+    </message>
+    <message>
+        <source>Edit game preferences</source>
+        <translation>编辑游戏首选项</translation>
+    </message>
+</context>
+<context>
+    <name>PageNetGame</name>
+    <message>
+        <source>Start</source>
+        <translation>开始</translation>
+    </message>
+    <message>
+        <source>Turn on the lightbulb to show the other players when you&apos;re ready to fight</source>
+        <translation>点亮灯泡让其他玩家知道你准备好战斗</translation>
+    </message>
+    <message>
+        <source>Update</source>
+        <translation>更新</translation>
+    </message>
+    <message>
+        <source>Room name</source>
+        <translation>房间名</translation>
+    </message>
+    <message>
+        <source>Start fighting (requires at least 2 teams)</source>
+        <translation>开始战斗(需要至少两个队伍)</translation>
+    </message>
+    <message>
+        <source>Update the room name</source>
+        <translation>更新房间名</translation>
+    </message>
+    <message>
+        <source>Edit game preferences</source>
+        <translation>编辑游戏首选项</translation>
+    </message>
+    <message>
+        <source>Room controls</source>
+        <translation>房间控制</translation>
+    </message>
+</context>
+<context>
+    <name>PageMain</name>
+    <message>
+        <source>Exit game</source>
+        <translation>退出游戏</translation>
+    </message>
+    <message>
+        <source>Play official network game</source>
+        <translation>玩官方网络游戏</translation>
+    </message>
+    <message>
+        <source>Play a game on a single computer</source>
+        <translation>单机</translation>
+    </message>
+    <message>
+        <source>Play a game across a local area network</source>
+        <translation>局域网</translation>
+    </message>
+    <message>
+        <source>Downloadable Content</source>
+        <translation>可下载内容</translation>
+    </message>
+    <message>
+        <source>Access the user created content downloadable from our website</source>
+        <translation>从我们的网站下载用户创建的内容</translation>
+    </message>
+    <message>
+        <source>Leave a feedback here reporting issues, suggesting features or just saying how you like Hedgewars</source>
+        <translation>在这里留下反馈,报告问题,建议功能,或告诉我们你多喜欢刺猬战争</translation>
+    </message>
+    <message>
+        <source>Play local network game</source>
+        <translation>玩本地网络游戏</translation>
+    </message>
+    <message>
+        <source>Play a game across a network</source>
+        <translation>互联网</translation>
+    </message>
+    <message>
+        <source>Open the Hedgewars online game manual in your web browser</source>
+        <translation>在你的浏览器打开刺猬战争游戏的在线手册</translation>
+    </message>
+    <message>
+        <source>Edit game preferences</source>
+        <translation>编辑游戏首选项</translation>
+    </message>
+    <message>
+        <source>Feedback</source>
+        <translation>反馈</translation>
+    </message>
+    <message>
+        <source>Read about who is behind the Hedgewars Project</source>
+        <translation>了解刺猬战争项目后面有谁</translation>
+    </message>
+    <message>
+        <source>Play a game on an official server</source>
+        <translation>官方服务器</translation>
+    </message>
+    <message>
+        <source>Manage videos recorded from game</source>
+        <translation>管理游戏录制视频</translation>
+    </message>
+</context>
+<context>
+    <name>PageConnecting</name>
+    <message>
+        <source>Connecting...</source>
+        <translation>连接中...</translation>
+    </message>
+</context>
+<context>
+    <name>binds (descriptions)</name>
+    <message>
+        <source>Switch your currently active hog (if possible):</source>
+        <translation>切换你当前活动的刺猬 (如果能行):</translation>
+    </message>
+    <message>
+        <source>Set the timer on bombs and timed weapons:</source>
+        <translation>设置炸弹和武器的定时器:</translation>
+    </message>
+    <message>
+        <source>Toggle fullscreen mode:</source>
+        <translation>切换全屏模式:</translation>
+    </message>
+    <message>
+        <source>Toggle automatic camera / refocus on active hedgehog:</source>
+        <translation>切换自动镜头/重新聚焦在活动的刺猬:</translation>
+    </message>
+    <message>
+        <source>Pick a weapon or a target location under the cursor:</source>
+        <translation>选择武器或目标位置:</translation>
+    </message>
+    <message>
+        <source>Pause, continue or leave your game:</source>
+        <translation>暂停,继续,或离开游戏:</translation>
+    </message>
+    <message>
+        <source>Pick a weapon or utility item:</source>
+        <translation>选择武器或工具:</translation>
+    </message>
+    <message>
+        <source>Talk to your clan or all participants:</source>
+        <translation>和你的战队或所有参赛者聊天:</translation>
+    </message>
+    <message>
+        <source>Heads-up display:</source>
+        <translation>抬头显示(HUD):</translation>
+    </message>
+    <message>
+        <source>Modify the camera&apos;s zoom level:</source>
+        <translation>修改镜头缩放级别:</translation>
+    </message>
+    <message>
+        <source>Move the cursor or camera without using the mouse:</source>
+        <translation>不使用鼠标移动光标或镜头:</translation>
+    </message>
+    <message>
+        <source>Fire your selected weapon or trigger an utility item:</source>
+        <translation>开火你选择的武器,或触发工具:</translation>
+    </message>
+    <message>
+        <source>Demo replay:</source>
+        <translation>重播 Demo:</translation>
+    </message>
+    <message>
+        <source>Modify the game&apos;s volume while playing:</source>
+        <translation>玩游戏时修改音量:</translation>
+    </message>
+    <message>
+        <source>Hedgehog movement</source>
+        <translation>刺猬移动</translation>
+    </message>
+    <message>
+        <source>Take a screenshot:</source>
+        <translation>截图:</translation>
+    </message>
+    <message>
+        <source>Record video:</source>
+        <translation>录制视频:</translation>
+    </message>
+    <message>
+        <source>Traverse gaps and obstacles by jumping:</source>
+        <translation>穿越裂隙和跳过障碍:</translation>
+    </message>
+</context>
+<context>
+    <name>binds (combination)</name>
+    <message>
+        <source>precise + toggle hedgehog tags</source>
+        <translation>精确 + 切换刺猬标签</translation>
+    </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation>精确 + 切换 + 切换队伍栏</translation>
+    </message>
+    <message>
+        <source>hold down precise</source>
+        <translation>长按精确</translation>
+    </message>
+    <message>
+        <source>precise + screenshot</source>
+        <translation>精确 + 截图</translation>
+    </message>
+    <message>
+        <source>precise + reset zoom</source>
+        <translation>精确 + 重置缩放</translation>
+    </message>
+    <message>
+        <source>precise + timer</source>
+        <translation>精确 + 定时器</translation>
+    </message>
+    <message>
+        <source>switch + toggle hedgehog tags</source>
+        <translation>切换 + 切换刺猬标签</translation>
+    </message>
+    <message>
+        <source>high jump (twice)</source>
+        <translation>高跳(两次)</translation>
+    </message>
+    <message>
+        <source>precise + left/right</source>
+        <translation>精确 + 左/右</translation>
+    </message>
+    <message>
+        <source>precise + switch</source>
+        <translation>精确 + 切换</translation>
+    </message>
+</context>
+<context>
+    <name>PageNet</name>
+    <message>
+        <source>Connect to the selected server</source>
+        <translation>连接到选择的服务器</translation>
+    </message>
+    <message>
+        <source>Start private server</source>
+        <translation>启动私人服务器</translation>
+    </message>
+    <message>
+        <source>Specify the address and port number of a known server and connect to it directly</source>
+        <translation>指定已知服务器的地址和端口并直连</translation>
+    </message>
+    <message>
+        <source>Update the list of servers</source>
+        <translation>更新服务器列表</translation>
+    </message>
+</context>
+<context>
+    <name>PageGameStats</name>
+    <message>
+        <source>A total of &lt;b&gt;%1&lt;/b&gt; hedgehog(s) were killed during this round.</source>
+        <translation>这一局共杀死了&lt;b&gt;%1&lt;/b&gt;个刺猬。</translation>
+    </message>
+    <message>
+        <source>The best killer is &lt;b&gt;%1&lt;/b&gt; with &lt;b&gt;%2&lt;/b&gt; kills in a turn.</source>
+        <translation>最优秀的杀手是 &lt;b&gt;%1&lt;/b&gt;,一个回合 &lt;b&gt;%2&lt;/b&gt; 杀。</translation>
+    </message>
+    <message>
+        <source>(%1 crate(s))</source>
+        <translation>(%1 箱子)</translation>
+    </message>
+    <message>
+        <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>&lt;b&gt;%1&lt;/b&gt; 以 &lt;b&gt;%2&lt;/b&gt; 分获得最佳射击奖。</translation>
+    </message>
+    <message>
+        <source>(%1 kill)</source>
+        <translation>(%1 杀)</translation>
+    </message>
+    <message>
+        <source>(%1 point(s))</source>
+        <translation>(%1 分)</translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation>保存 demo (不可用,因为使用了/lua命令)</translation>
+    </message>
+    <message>
+        <source>Ranking</source>
+        <translation>排名</translation>
+    </message>
+    <message>
+        <source>(%1 %2)</source>
+        <translation>(%1 %2)</translation>
+    </message>
+    <message>
+        <source>With everyone having the same clan color, there was no reason to fight. And so the hedgehogs happily lived in peace ever after.</source>
+        <translation>有着相同战队颜色的各位,没有理由去战斗了,刺猬们从此过上幸福的生活。</translation>
+    </message>
+    <message>
+        <source>Details</source>
+        <translation>细节</translation>
+    </message>
+    <message>
+        <source>&lt;b&gt;%1&lt;/b&gt; thought it&apos;s good to shoot their own hedgehogs for &lt;b&gt;%2&lt;/b&gt; pts.</source>
+        <translation>&lt;b&gt;%1&lt;/b&gt; 误伤队友获得 &lt;b&gt;%2&lt;/b&gt; 分。</translation>
+    </message>
+    <message>
+        <source>&lt;b&gt;%1&lt;/b&gt; killed &lt;b&gt;%2&lt;/b&gt; of their own hedgehogs.</source>
+        <translation>&lt;b&gt;%1&lt;/b&gt; 杀死 &lt;b&gt;%2&lt;/b&gt; 个队友。</translation>
+    </message>
+    <message>
+        <source>Play again</source>
+        <translation>再玩一次</translation>
+    </message>
+    <message>
+        <source>(%L1 second(s))</source>
+        <translation>(%L1 秒)</translation>
+    </message>
+    <message>
+        <source>&lt;b&gt;%1&lt;/b&gt; was scared and skipped turn &lt;b&gt;%2&lt;/b&gt; times.</source>
+        <translation>&lt;b&gt;%1&lt;/b&gt; 很害怕并跳过 &lt;b&gt;%2&lt;/b&gt; 个回合。</translation>
+    </message>
+    <message>
+        <source>Save demo</source>
+        <translation>保存 demo</translation>
+    </message>
+    <message>
+        <source>Health graph</source>
+        <translation>血量图表</translation>
+    </message>
+</context>
+<context>
+    <name>PageInfo</name>
+    <message>
+        <source>Open the snapshot folder</source>
+        <translation>打开截图文件夹</translation>
+    </message>
+</context>
+<context>
+    <name>HWForm</name>
+    <message>
+        <source>Demo name:</source>
+        <translation>Demo 名字:</translation>
+    </message>
+    <message>
+        <source>
+
+Your password wasn&apos;t saved either.</source>
+        <translation>
+
+你的密码也没有保存。</translation>
+    </message>
+    <message>
+        <source>Room password</source>
+        <translation>房间密码</translation>
+    </message>
+    <message>
+        <source>Hedgewars - Wrong password</source>
+        <translation>刺猬战争 - 密码错误</translation>
+    </message>
+    <message>
+        <source>Game aborted</source>
+        <translation>游戏中止</translation>
+    </message>
+    <message>
+        <source>Demo name</source>
+        <translation>Demo 名字</translation>
+    </message>
+    <message>
+        <source>Someone already uses your nickname %1 on the server.
+Please pick another nickname:</source>
+        <translation>已经有人在服务器上使用你的昵称 %1 。
+请另选一个昵称:</translation>
+    </message>
+    <message>
+        <source>Team 1</source>
+        <translation>队伍 1</translation>
+    </message>
+    <message>
+        <source>The room is protected with password.
+Please, enter the password:</source>
+        <translation>房间受密码保护。
+请输入密码:</translation>
+    </message>
+    <message>
+        <source>Cannot save record to file %1</source>
+        <translation>不能保存录制到文件 %1</translation>
+    </message>
+    <message>
+        <source>No nickname supplied.</source>
+        <translation>没提供昵称。</translation>
+    </message>
+    <message>
+        <source>Hedgewars Demo File</source>
+        <translation>刺猬战争 Demo 文件</translation>
+    </message>
+    <message>
+        <source>Hedgewars - Nick registered</source>
+        <translation>刺猬战争 - 昵称已注册</translation>
+    </message>
+    <message>
+        <source>Internal error: Reply object is invalid.</source>
+        <translation>内部错误 - 回复对象无效。</translation>
+    </message>
+    <message>
+        <source>You reconnected too fast.
+Please wait a few seconds and try again.</source>
+        <translation>你重连太快了。
+请等一下再试。</translation>
+    </message>
+    <message>
+        <source>This feature requires an Internet connection, but you don&apos;t appear to be online (error code: %1).</source>
+        <translation>这个功能需要网络连接,但你似乎不在线 (error code: %1).</translation>
+    </message>
+    <message>
+        <source>Hedgewars - Empty nickname</source>
+        <translation>刺猬战争 - 空昵称</translation>
+    </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation>你的昵称没注册。
+为防止其他人使用它,
+请在 www.hedgewars.org 注册。</translation>
+    </message>
+    <message>
+        <source>Hedgewars Save File</source>
+        <translation>刺猬战争保存文件</translation>
+    </message>
+    <message>
+        <source>This nick is registered, and you haven&apos;t specified a password.
+
+If this nick isn&apos;t yours, please register your own nick at www.hedgewars.org
+
+Password:</source>
+        <translation>这个昵称已注册,而且你没有设置密码。
+
+如果这个昵称不是你的,请在 www.hedgewars.org 注册自己的昵称
+
+密码:</translation>
+    </message>
+    <message>
+        <source>Team %1</source>
+        <translation>队伍 %1</translation>
+    </message>
+    <message>
+        <source>You entered a wrong password.</source>
+        <translation>你输入了错误的密码。</translation>
+    </message>
+    <message>
+        <source>Try Again</source>
+        <translation>再试一次</translation>
+    </message>
+    <message>
+        <source>Hedgewars - Connection error</source>
+        <translation>刺猬战争 - 连接出错</translation>
+    </message>
+    <message>
+        <source>Unknown network error (possibly missing SSL library).</source>
+        <translation>未知网络错误(可能缺少SSL库)。</translation>
+    </message>
+    <message>
+        <source>Computer %1</source>
+        <translation>计算机 %1</translation>
+    </message>
+    <message>
+        <source>%1&apos;s Team</source>
+        <translation>%1 的队伍</translation>
+    </message>
+    <message>
+        <source>Nickname</source>
+        <translation>昵称</translation>
     </message>
 </context>
 <context>
     <name>HWRecorder</name>
     <message>
-        <location filename="../../../../QTfrontend/net/recorder.cpp" line="83"/>
         <source>A fatal ERROR occured while processing the video recording! The video could not be saved.
 
 As a workaround, you could try to reset the Hedgewars video recorder settings to the defaults.
@@ -1158,5011 +4420,455 @@
 
 Last engine message:
 %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>HatButton</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/hatbutton.cpp" line="44"/>
-        <source>Change hat (%1)</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>HatPrompt</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/hatprompt.cpp" line="63"/>
-        <source>Choose a hat</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/hatprompt.cpp" line="84"/>
-        <source>Search for a hat:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/hatprompt.cpp" line="120"/>
-        <source>Cancel</source>
-        <translation type="unfinished">取消</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/hatprompt.cpp" line="124"/>
-        <source>Use selected hat</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>KB</name>
-    <message>
-        <source>SDL_ttf returned error while rendering text, most propably it is related to the bug in freetype2. It&apos;s recommended to update your freetype lib.</source>
-        <translation type="obsolete">SDL_ttf 返回错误-渲染文字失败,可能有关freetype2的bug。建议升级 freetype。</translation>
-    </message>
-</context>
-<context>
-    <name>KeyBinder</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/keybinder.cpp" line="95"/>
-        <source>Warning: The same key is assigned multiple times!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/keybinder.cpp" line="108"/>
-        <source>Category</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>LibavInteraction</name>
-    <message>
-        <location filename="../../../../QTfrontend/util/LibavInteraction.cpp" line="293"/>
-        <source>Duration: %1min %2s</source>
-        <extracomment>Duration in minutes and seconds (SI units)</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/LibavInteraction.cpp" line="312"/>
-        <source>Video: %1x%2, %3 FPS, %4</source>
-        <extracomment>Video metadata. %1 = video width, %2 = video height, %3 = frames per second = %4 = decoder name</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/LibavInteraction.cpp" line="317"/>
-        <source>Video: %1x%2, %3</source>
-        <extracomment>Video metadata. %1 = video width, %2 = video height, %3 = decoder name</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/LibavInteraction.cpp" line="352"/>
-        <source>Player: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/LibavInteraction.cpp" line="354"/>
-        <source>Theme: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/LibavInteraction.cpp" line="356"/>
-        <source>Map: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/LibavInteraction.cpp" line="359"/>
-        <source>Record: %1</source>
-        <extracomment>As in ‘recording’</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/LibavInteraction.cpp" line="322"/>
-        <source>Audio: </source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/LibavInteraction.cpp" line="305"/>
-        <source>unknown</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>MapModel</name>
-    <message>
-        <location filename="../../../../QTfrontend/model/MapModel.cpp" line="253"/>
-        <source>No description available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>MinesTimeSpinBox</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/MinesTimeSpinBox.cpp" line="37"/>
-        <source>Random</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/widget/MinesTimeSpinBox.cpp" line="38"/>
-        <source>%1 seconds</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-</context>
-<context>
-    <name>PageAdmin</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="40"/>
-        <source>General</source>
-        <translation type="unfinished">常规</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="41"/>
-        <source>Bans</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="48"/>
-        <source>Fetch data</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="52"/>
-        <source>Server message for latest version:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="60"/>
-        <source>Server message for previous versions:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="68"/>
-        <source>Latest version protocol number:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="77"/>
-        <source>MOTD preview:</source>
-        <extracomment>MOTD = Message Of The Day, the message which is shown to players joining the server</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="86"/>
-        <source>Clear Accounts Cache</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="89"/>
-        <source>Set data</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="99"/>
-        <source>IP/Nick</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="100"/>
-        <source>Expiration</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="101"/>
-        <source>Reason</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="110"/>
-        <source>Refresh</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="111"/>
-        <source>Add</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageadmin.cpp" line="112"/>
-        <source>Remove</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>PageCampaign</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagecampaign.cpp" line="50"/>
-        <location filename="../../../../QTfrontend/ui/page/pagecampaign.cpp" line="94"/>
-        <source>Start fighting</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagecampaign.cpp" line="60"/>
-        <source>Team</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagecampaign.cpp" line="61"/>
-        <source>Campaign</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagecampaign.cpp" line="62"/>
-        <source>Mission</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>PageConnecting</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageconnecting.cpp" line="29"/>
-        <source>Connecting...</source>
-        <translation>连接中...</translation>
+        <translation>在录制视频时发生了一个致命错误!视频不能保存。
+
+一个解决方案是尝试把视频录制器的设置重设为默认。
+
+要报告这个错误,请点击主菜单的“反馈”按钮。
+
+最后的引擎消息:
+%1</translation>
     </message>
 </context>
 <context>
     <name>PageDataDownload</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedata.cpp" line="58"/>
+        <source>Open packages directory</source>
+        <translation>打开下载内容目录</translation>
+    </message>
+    <message>
         <source>Load the start page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedata.cpp" line="62"/>
-        <source>Open packages directory</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedata.cpp" line="87"/>
+        <translation>加载开始页面</translation>
+    </message>
+    <message>
+        <source>Internal error: Reply object is invalid.</source>
+        <translation>内部错误:回复对象无效。</translation>
+    </message>
+    <message>
         <source>Loading, please wait.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedata.cpp" line="157"/>
+        <translation>加载中,请等待。</translation>
+    </message>
+    <message>
+        <source>This feature requires an Internet connection, but you don&apos;t appear to be online (error code: %1).</source>
+        <translation>这个功能需要网络连接,但你似乎不在线 (error code: %1).</translation>
+    </message>
+    <message>
         <source>Unknown network error (possibly missing SSL library).</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedata.cpp" line="158"/>
-        <source>This feature requires an Internet connection, but you don&apos;t appear to be online (error code: %1).</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedata.cpp" line="163"/>
-        <source>Internal error: Reply object is invalid.</source>
-        <translation type="unfinished"></translation>
+        <translation>未知网络错误(可能缺少SSL库)。</translation>
     </message>
 </context>
 <context>
-    <name>PageDrawMap</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="36"/>
-        <source>Eraser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="55"/>
-        <source>Undo</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="39"/>
-        <source>Polyline</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="41"/>
-        <source>Rectangle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="43"/>
-        <source>Ellipse</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="49"/>
-        <source>Brush size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="56"/>
-        <source>Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="58"/>
-        <source>Optimize</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="76"/>
-        <source>Load</source>
-        <translation type="unfinished">读取</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="80"/>
-        <source>Save</source>
-        <translation type="unfinished">保存</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="112"/>
-        <source>Load drawn map</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="112"/>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="121"/>
-        <source>Drawn Maps</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="112"/>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="121"/>
-        <source>All files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagedrawmap.cpp" line="121"/>
-        <source>Save drawn map</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>PageEditTeam</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="49"/>
-        <source>Select an action to choose a custom key bind for this team</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="49"/>
-        <source>Use my default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="49"/>
-        <source>Reset all binds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="51"/>
-        <source>General</source>
-        <translation>常规</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="52"/>
-        <source>Custom Controls</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="70"/>
-        <source>Hat</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="71"/>
-        <source>Name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="82"/>
-        <source>This hedgehog&apos;s name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="88"/>
-        <source>Randomize this hedgehog&apos;s name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="92"/>
-        <source>Random Hats</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="98"/>
-        <source>Random Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="106"/>
-        <source>Random Team</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="202"/>
-        <source>Randomize the team name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="205"/>
-        <source>Randomize the grave</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="208"/>
-        <source>Randomize the flag</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="217"/>
-        <source>Play a random example of this voice</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="220"/>
-        <source>Randomize the voice</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="233"/>
-        <source>Randomize the fort</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="438"/>
-        <source>CPU %1</source>
-        <extracomment>Name of a flag for computer-controlled enemies. %1 is replaced with the computer level</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="664"/>
-        <source>%1 (%2)</source>
-        <translation type="unfinished"></translation>
+    <name>PageSinglePlayer</name>
+    <message>
+        <source>Load a previously saved game</source>
+        <translation>加载之前保存的游戏</translation>
+    </message>
+    <message>
+        <source>Watch recorded demos</source>
+        <translation>观看 demo</translation>
+    </message>
+    <message>
+        <source>Campaign Mode</source>
+        <translation>战役模式</translation>
+    </message>
+    <message>
+        <source>Play a quick game against the computer with random settings</source>
+        <translation>玩快速单机游戏(随机设置)</translation>
+    </message>
+    <message>
+        <source>Singleplayer missions: Learn how to play in the training, practice your skills in challenges or try to complete goals in scenarios.</source>
+        <translation>单人任务:在训练中学习,在挑战中实践,或试着完成场景目标。</translation>
+    </message>
+    <message>
+        <source>Play a hotseat game against your friends, or AI teams</source>
+        <translation>在一个座位上对抗你的朋友或AI</translation>
     </message>
 </context>
 <context>
-    <name>PageGameStats</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="59"/>
-        <source>Details</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="74"/>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="177"/>
-        <source>Health graph</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="93"/>
-        <source>Ranking</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="119"/>
-        <source>Play again</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="124"/>
-        <source>Save</source>
-        <translation type="unfinished">保存</translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="309"/>
-        <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">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="317"/>
-        <source>The best killer is &lt;b&gt;%1&lt;/b&gt; with &lt;b&gt;%2&lt;/b&gt; kills in a turn.</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="324"/>
-        <source>A total of &lt;b&gt;%1&lt;/b&gt; hedgehog(s) were killed during this round.</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="399"/>
-        <source>(%1 kill)</source>
-        <extracomment>Number of kills in stats screen, written after the team name</extracomment>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="402"/>
-        <source>(%1 point(s))</source>
-        <extracomment>Number of points in stats screen, written after the team name</extracomment>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="405"/>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="409"/>
-        <source>(%L1 second(s))</source>
-        <extracomment>Time in seconds</extracomment>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="413"/>
-        <source>(%1 crate(s))</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="418"/>
-        <source>(%1 %2)</source>
-        <extracomment>For custom number of points in the stats screen, written after the team name. %1 is the number, %2 is the word. Example: “4 points”</extracomment>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="433"/>
-        <source>&lt;b&gt;%1&lt;/b&gt; thought it&apos;s good to shoot their own hedgehogs for &lt;b&gt;%2&lt;/b&gt; pts.</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="441"/>
-        <source>&lt;b&gt;%1&lt;/b&gt; killed &lt;b&gt;%2&lt;/b&gt; of their own hedgehogs.</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="449"/>
-        <source>&lt;b&gt;%1&lt;/b&gt; was scared and skipped turn &lt;b&gt;%2&lt;/b&gt; times.</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagegamestats.cpp" line="466"/>
-        <source>With everyone having the same clan color, there was no reason to fight. And so the hedgehogs happily lived in peace ever after.</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>PageInGame</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageingame.cpp" line="29"/>
-        <source>In game...</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>PageInfo</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageinfo.cpp" line="45"/>
-        <source>Open the snapshot folder</source>
-        <translation type="unfinished"></translation>
+    <name>HWChatWidget</name>
+    <message>
+        <source>StyleSheet saved to %1</source>
+        <translation>样式表保存到 %1</translation>
+    </message>
+    <message>
+        <source>Failed to save StyleSheet to %1</source>
+        <translation>无法保存样式表到 %1</translation>
+    </message>
+    <message>
+        <source>%1 has left (%2)</source>
+        <translation>%1 离开了 (%2)</translation>
+    </message>
+    <message>
+        <source>Stylesheet imported from %1</source>
+        <translation>从 %1 导入样式表</translation>
+    </message>
+    <message>
+        <source>Enter %1 if you want to use the current StyleSheet in future, enter %2 to reset!</source>
+        <translation>如果你想在以后使用当前样式表,输入 %1 。重置输入 %2 !</translation>
+    </message>
+    <message>
+        <source>%1 has been added to your ignore list</source>
+        <translation>%1 已添加你的忽略列表</translation>
+    </message>
+    <message>
+        <source>%1 has left</source>
+        <translation>%1 离开了</translation>
+    </message>
+    <message>
+        <source>%1 has been removed from your friends list</source>
+        <translation>%1 已从你的朋友列表移除</translation>
+    </message>
+    <message>
+        <source>Couldn&apos;t read %1</source>
+        <translation>无法读取 %1</translation>
+    </message>
+    <message>
+        <source>List of players</source>
+        <translation>玩家列表</translation>
+    </message>
+    <message>
+        <source>%1 has been removed from your ignore list</source>
+        <translation>%1 已从你的忽略列表移除</translation>
+    </message>
+    <message>
+        <source>%1 has been added to your friends list</source>
+        <translation>%1 已添加到你的朋友列表</translation>
+    </message>
+    <message>
+        <source>StyleSheet discarded</source>
+        <translation>已放弃样式表</translation>
+    </message>
+    <message>
+        <source>Chat log</source>
+        <translation>聊天记录</translation>
+    </message>
+    <message>
+        <source>%1 has joined</source>
+        <translation>%1 已加入</translation>
+    </message>
+    <message>
+        <source>Enter chat messages here and send them with [Enter]</source>
+        <translation>输入聊天消息并按回车键发送</translation>
     </message>
 </context>
 <context>
-    <name>PageMain</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="47"/>
-        <source>Play a game on a single computer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="52"/>
-        <source>Play a game across a network</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="66"/>
-        <source>Play local network game</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="67"/>
-        <source>Play a game across a local area network</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="71"/>
-        <source>Play official network game</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="72"/>
-        <source>Play a game on an official server</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="79"/>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="83"/>
-        <source>Read about who is behind the Hedgewars Project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="86"/>
-        <source>Feedback</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="88"/>
-        <source>Leave a feedback here reporting issues, suggesting features or just saying how you like Hedgewars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="91"/>
-        <source>Downloadable Content</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="93"/>
-        <source>Access the user created content downloadable from our website</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="113"/>
-        <source>Exit game</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="117"/>
-        <source>Manage videos recorded from game</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="121"/>
-        <source>Open the Hedgewars online game manual in your web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="124"/>
-        <source>Edit game preferences</source>
-        <translation type="unfinished"></translation>
+    <name>QObject</name>
+    <message>
+        <source>No description available</source>
+        <translation>无可用描述</translation>
     </message>
 </context>
 <context>
-    <name>PageMultiplayer</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemultiplayer.cpp" line="52"/>
-        <source>Edit game preferences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemultiplayer.cpp" line="65"/>
-        <source>Start</source>
-        <translation>开始</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemultiplayer.cpp" line="66"/>
-        <source>Start fighting (requires at least 2 teams)</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>PageNet</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenet.cpp" line="50"/>
-        <source>Connect to the selected server</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenet.cpp" line="65"/>
-        <source>Update the list of servers</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenet.cpp" line="71"/>
-        <source>Specify the address and port number of a known server and connect to it directly</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenet.cpp" line="82"/>
-        <source>Start private server</source>
-        <translation type="unfinished"></translation>
+    <name>LibavInteraction</name>
+    <message>
+        <source>Map: %1</source>
+        <translation>地图: %1</translation>
+    </message>
+    <message>
+        <source>Video: %1x%2, %3 FPS, %4</source>
+        <translation>视频: %1×%2, %3 FPS, %4</translation>
+    </message>
+    <message>
+        <source>Record: %1</source>
+        <translation>录制: %1</translation>
+    </message>
+    <message>
+        <source>Video: %1x%2, %3</source>
+        <translation>视频: %1×%2, %3</translation>
+    </message>
+    <message>
+        <source>Audio: </source>
+        <translation>音频: </translation>
+    </message>
+    <message>
+        <source>Duration: %1min %2s</source>
+        <translation>时长: %1 分 %2 秒</translation>
+    </message>
+    <message>
+        <source>Theme: %1</source>
+        <translation>主题: %1</translation>
+    </message>
+    <message>
+        <source>unknown</source>
+        <translation>未知</translation>
+    </message>
+    <message>
+        <source>Player: %1</source>
+        <translation>玩家: %1</translation>
     </message>
 </context>
 <context>
-    <name>PageNetGame</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="52"/>
-        <source>Room name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="62"/>
-        <source>Update the room name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="64"/>
-        <source>Update</source>
-        <translation type="unfinished">更新</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="82"/>
-        <source>Room controls</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="119"/>
-        <source>Edit game preferences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="132"/>
-        <source>Turn on the lightbulb to show the other players when you&apos;re ready to fight</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="147"/>
-        <source>Start fighting (requires at least 2 teams)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>Control</source>
-        <translation type="obsolete">Ctrl</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="145"/>
-        <source>Start</source>
-        <translation type="unfinished">开始</translation>
+    <name>HatPrompt</name>
+    <message>
+        <source>Choose a hat</source>
+        <translation>选择帽子</translation>
+    </message>
+    <message>
+        <source>Cancel</source>
+        <translation>取消</translation>
+    </message>
+    <message>
+        <source>Use selected hat</source>
+        <translation>使用选择的帽子</translation>
+    </message>
+    <message>
+        <source>Search for a hat:</source>
+        <translation>搜索帽子:</translation>
     </message>
 </context>
 <context>
     <name>PageNetServer</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="87"/>
         <source>Click here for details</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="138"/>
+        <translation>点击这里了解详情</translation>
+    </message>
+    <message>
         <source>Insert your address here</source>
-        <translation type="unfinished"></translation>
+        <translation>在这里输入你的地址</translation>
+    </message>
+</context>
+<context>
+    <name>binds (categories)</name>
+    <message>
+        <source>Camera</source>
+        <translation>镜头</translation>
+    </message>
+    <message>
+        <source>Miscellaneous</source>
+        <translation>杂项</translation>
+    </message>
+    <message>
+        <source>Movement</source>
+        <translation>移动</translation>
+    </message>
+    <message>
+        <source>Weapons</source>
+        <translation>武器</translation>
     </message>
 </context>
 <context>
-    <name>PageOptions</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="92"/>
-        <source>Select an action to change what key controls it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="92"/>
-        <source>Reset to default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="92"/>
-        <source>Reset all binds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="97"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="255"/>
-        <source>Game</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="100"/>
-        <source>Graphics</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="103"/>
-        <source>Audio</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="105"/>
-        <source>Controls</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="109"/>
-        <source>Video Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="113"/>
-        <source>Network</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="116"/>
-        <source>Advanced</source>
-        <translation type="unfinished">进阶</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="129"/>
-        <source>Teams</source>
-        <translation type="unfinished">队伍</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="141"/>
-        <source>New team</source>
-        <translation>新队伍</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="150"/>
-        <source>Edit team</source>
-        <translation>修改队伍设定</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="159"/>
-        <source>Delete team</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="168"/>
-        <source>You can&apos;t edit teams from team selection. Go back to main menu to add, edit or delete teams.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="175"/>
-        <source>Schemes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="186"/>
-        <source>New scheme</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="194"/>
-        <source>Edit scheme</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="202"/>
-        <source>Delete scheme</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="211"/>
-        <source>Weapons</source>
-        <translation type="unfinished">武器</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="222"/>
-        <source>New weapon set</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="230"/>
-        <source>Edit weapon set</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="238"/>
-        <source>Delete weapon set</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="292"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="829"/>
-        <source>x</source>
-        <extracomment>Multiplication sign, to be used between two numbers. Note the “x” is only a dummy character, we recommend to use “×” if your language permits it</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="437"/>
-        <source>Frontend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="455"/>
-        <source>Custom colors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="485"/>
-        <source>Reset to default colors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="498"/>
-        <source>Game audio</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="544"/>
-        <source>Frontend audio</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="567"/>
-        <source>Account</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="593"/>
-        <source>Proxy settings</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="599"/>
-        <source>Proxy host</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="600"/>
-        <source>Proxy port</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="601"/>
-        <source>Proxy login</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="602"/>
-        <source>Proxy password</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="615"/>
-        <source>No proxy</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="616"/>
-        <source>System proxy settings</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="617"/>
-        <source>Socks5 proxy</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="618"/>
-        <source>HTTP proxy</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="653"/>
-        <source>Miscellaneous</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="690"/>
-        <source>MISSING LANGUAGE NAME [%1]</source>
-        <extracomment>In the case of an error, this is shown in the language selection for a language with unknown name. %1 = language code</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="722"/>
-        <source>Updates</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="735"/>
-        <source>Check for updates</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="736"/>
-        <source>Check now</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="749"/>
-        <source>Video recording options</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="1018"/>
-        <source>Can&apos;t delete last team</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="1018"/>
-        <source>You can&apos;t delete the last team!</source>
-        <translation type="unfinished"></translation>
+    <name>RoomNamePrompt</name>
+    <message>
+        <source>Cancel</source>
+        <translation>取消</translation>
+    </message>
+    <message>
+        <source>Create room</source>
+        <translation>创建房间</translation>
+    </message>
+    <message>
+        <source>Enter a name for your room.</source>
+        <translation>命名房间。</translation>
+    </message>
+    <message>
+        <source>set password</source>
+        <translation>设置密码</translation>
+    </message>
+</context>
+<context>
+    <name>ThemePrompt</name>
+    <message>
+        <source>Cancel</source>
+        <translation>取消</translation>
+    </message>
+    <message>
+        <source>Search for a theme:</source>
+        <translation>搜索主题:</translation>
+    </message>
+    <message>
+        <source>Use selected theme</source>
+        <translation>使用选择的主题</translation>
+    </message>
+    <message>
+        <source>Choose a theme</source>
+        <translation>选择主题</translation>
     </message>
 </context>
 <context>
     <name>PagePlayDemo</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="62"/>
+        <source>Load the selected game</source>
+        <translation>加载选择的游戏</translation>
+    </message>
+    <message>
         <source>Play demo</source>
-        <translation type="unfinished">播放 demo</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="100"/>
+        <translation>播放 demo</translation>
+    </message>
+    <message>
         <source>Play the selected demo</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="107"/>
-        <source>Load the selected game</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="152"/>
+        <translation>播放选择的 demo</translation>
+    </message>
+    <message>
         <source>Rename dialog</source>
         <translation>重命名对话框</translation>
     </message>
     <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="152"/>
         <source>Enter new file name:</source>
         <translation>输入新的文件名:</translation>
     </message>
 </context>
 <context>
-    <name>PageRoomsList</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="94"/>
-        <source>Search for a room:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="121"/>
-        <source>Create room</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="125"/>
-        <source>Join room</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="68"/>
-        <source>Room state</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="182"/>
-        <source>Open server administration page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>Create</source>
-        <translation type="obsolete">建立</translation>
-    </message>
-    <message>
-        <source>Join</source>
-        <translation type="obsolete">加入</translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="546"/>
-        <source>%1 players online</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="179"/>
-        <source>Admin features</source>
-        <translation>管理员功能</translation>
-    </message>
-</context>
-<context>
-    <name>PageScheme</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="84"/>
-        <source>Add an indestructible border around the terrain</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="100"/>
-        <source>Lower gravity</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="152"/>
-        <source>Assisted aiming with laser sight</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="132"/>
-        <source>All hogs have a personal forcefield</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="124"/>
-        <source>All (living) hedgehogs are fully restored at the end of turn</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="116"/>
-        <source>Gain 80% of the damage you do back in health</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="120"/>
-        <source>Share your opponents pain, share their damage</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="112"/>
-        <source>Your hogs are unable to move, put your artillery skills to the test</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="156"/>
-        <source>Order of play is random instead of in room order.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="172"/>
-        <source>Play with a King. If he dies, your side dies.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="160"/>
-        <source>Take turns placing your hedgehogs before the start of play.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="140"/>
-        <source>Ammo is shared between all teams that share a colour.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="76"/>
-        <source>Disable girders when generating random maps.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="80"/>
-        <source>Disable land objects when generating random maps.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="128"/>
-        <source>AI respawns on death.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="148"/>
-        <source>Attacking does not end your turn.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="144"/>
-        <source>Weapons are reset to starting values each turn.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="136"/>
-        <source>Each hedgehog has its own ammo. It does not share with the team.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="104"/>
-        <source>You will not have to worry about wind anymore.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="108"/>
-        <source>Wind will affect almost everything.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="168"/>
-        <source>Teams in each clan take successive turns sharing their turn time.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="88"/>
-        <source>Add an indestructible border along the bottom</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="92"/>
-        <source>Select a hedgehog at the beginning of a turn</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="96"/>
-        <source>Land can not be destroyed by most weapons.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="164"/>
-        <source>Each clan starts in its own part of the terrain.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="179"/>
-        <source>Overall damage and knockback in percent</source>
-        <extracomment>Description of the game scheme setting “Damage Modifier”. “Knockback” means how much hedgehogs and objects get pushed by explosions and other forces</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="180"/>
-        <source>Turn time in seconds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="181"/>
-        <source>Initial health of hedgehogs</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="182"/>
-        <source>How many rounds have to be played before Sudden Death begins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="183"/>
-        <source>How much the water rises per turn while in Sudden Death. Set to 0 along with Sudden Death Health Decrease to disable Sudden Death.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="184"/>
-        <source>How much health hedgehogs lose per turn while in Sudden Death, down to 1 health. Set to 0 along with Sudden Death Water Rise to disable Sudden Death.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="185"/>
-        <source>Maximum rope length in percent</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="186"/>
-        <source>Likelihood of a dropped crate being a health crate. All other crates will be weapon or utility crates.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="187"/>
-        <source>Likelihood of a crate dropping before a turn</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="188"/>
-        <source>Health bonus for collecting a health crate</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="189"/>
-        <source>Detonation timer of mines. The random timer lies between 0 and 5 seconds. The timer of air mines will be a quarter of the mines timer.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="190"/>
-        <source>Average number of mines to be placed a medium-sized island map. This number will be scaled for other maps.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="191"/>
-        <source>Likelihood of a mine being a dud. Does not affect mines placed by hedgehogs.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="192"/>
-        <source>Average number of barrels to be placed a medium-sized island map. This number will be scaled for other maps.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="193"/>
-        <source>Average number of air mines to be placed a medium-sized island map. This number will be scaled for other maps.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="194"/>
-        <source>Affects the left and right boundaries of the map</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="195"/>
-        <source>Time you get after an attack</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="196"/>
-        <source>Additional parameter to configure game styles. The meaning depends on the used style, refer to the documentation. When in doubt, leave it empty.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="495"/>
-        <source>None (Default)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="496"/>
-        <source>Wrap (World wraps)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="497"/>
-        <source>Bounce (Edges reflect)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="498"/>
-        <source>Sea (Edges connect to sea)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="526"/>
-        <source>Name of this scheme</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="541"/>
-        <source>Copy</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="543"/>
-        <source>New</source>
-        <translation>新游戏</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="545"/>
-        <source>Delete</source>
-        <translation>删除</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="713"/>
-        <source>%1 (%2)</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>PageSelectWeapon</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageselectweapon.cpp" line="48"/>
-        <source>New</source>
-        <translation type="unfinished">新游戏</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageselectweapon.cpp" line="50"/>
-        <source>Default</source>
-        <translation>默认</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageselectweapon.cpp" line="54"/>
-        <source>Copy</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageselectweapon.cpp" line="56"/>
-        <source>Delete</source>
-        <translation>删除</translation>
-    </message>
-</context>
-<context>
-    <name>PageSinglePlayer</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagesingleplayer.cpp" line="39"/>
-        <source>Play a quick game against the computer with random settings</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagesingleplayer.cpp" line="42"/>
-        <source>Play a hotseat game against your friends, or AI teams</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagesingleplayer.cpp" line="47"/>
-        <source>Campaign Mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagesingleplayer.cpp" line="51"/>
-        <source>Singleplayer missions: Learn how to play in the training, practice your skills in challenges or try to complete goals in scenarios.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagesingleplayer.cpp" line="62"/>
-        <source>Watch recorded demos</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagesingleplayer.cpp" line="65"/>
-        <source>Load a previously saved game</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>PageTraining</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="101"/>
-        <source>Pick the training to play</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="104"/>
-        <source>Pick the challenge to play</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="107"/>
-        <source>Pick the scenario to play</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="109"/>
-        <source>Trainings</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="110"/>
-        <source>Challenges</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="111"/>
-        <source>Scenarios</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="114"/>
-        <source>Team</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="132"/>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="338"/>
-        <source>Start fighting</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="344"/>
-        <source>No description available</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="355"/>
-        <source>Team highscore: %1</source>
-        <extracomment>Highest score of a team</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="360"/>
-        <source>Team lowscore: %1</source>
-        <extracomment>Lowest score of a team</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="365"/>
-        <source>Team&apos;s top accuracy: %1%</source>
-        <extracomment>Best accuracy of a team (in a challenge)</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="370"/>
-        <source>Team&apos;s best time: %L1 s</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="375"/>
-        <source>Team&apos;s longest time: %L1 s</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="383"/>
-        <source>Select a mission!</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>PageVideos</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="116"/>
-        <source>Name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="117"/>
-        <source>Size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="259"/>
-        <source>%1 bytes</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="336"/>
-        <source>%1%</source>
-        <extracomment>Video encoding progress. %1 = number</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="544"/>
-        <source>(in progress...)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="548"/>
-        <source>Date: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="549"/>
-        <source>Size: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="763"/>
-        <source>%1 (%2%) - %3</source>
-        <extracomment>Video encoding list entry. %1 = file name, %2 = percent complete, %3 = video operation type (e.g. “encoding”)</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="766"/>
-        <source>encoding</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>QAction</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="266"/>
-        <source>Kick</source>
-        <translation>踢</translation>
-    </message>
-    <message>
-        <source>Update</source>
-        <translation type="obsolete">更新</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="174"/>
-        <source>Restrict Joins</source>
-        <translation>限制参与</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="176"/>
-        <source>Restrict Team Additions</source>
-        <translation>限制团队插件</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="178"/>
-        <source>Restrict Unregistered Players Join</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="262"/>
-        <source>Info</source>
-        <translation>信息</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="270"/>
-        <source>Ban</source>
-        <translation>屏蔽</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="274"/>
-        <source>Delegate room control</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="278"/>
-        <source>Follow</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="282"/>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="954"/>
-        <source>Ignore</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="286"/>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="966"/>
-        <source>Add friend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="949"/>
-        <source>Unignore</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="961"/>
-        <source>Remove friend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="75"/>
-        <source>Show games in lobby</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="78"/>
-        <source>Show games in-progress</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="81"/>
-        <source>Show password protected</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="84"/>
-        <source>Show join restricted</source>
-        <translation type="unfinished"></translation>
+    <name>MapModel</name>
+    <message>
+        <source>No description available.</source>
+        <translation>无可用描述。</translation>
     </message>
 </context>
 <context>
-    <name>QCheckBox</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="443"/>
-        <source>Fullscreen</source>
-        <translation>游戏全屏幕</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="382"/>
-        <source>Show FPS</source>
-        <translation>显示帧率 (FPS)</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="393"/>
-        <source>Alternative damage show</source>
-        <translation>另一种伤害显示方式</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="414"/>
-        <source>Team</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="415"/>
-        <source>Enable team tags by default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="418"/>
-        <source>Hog</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="419"/>
-        <source>Enable hedgehog tags by default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="422"/>
-        <source>Health</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="423"/>
-        <source>Enable health tags by default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="426"/>
-        <source>Translucent</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="427"/>
-        <source>Enable translucent tags by default</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="449"/>
-        <source>Visual effects</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="450"/>
-        <source>Enable visual effects such as animated menu transitions and falling stars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="523"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="548"/>
-        <source>Sound</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="524"/>
-        <source>In-game sound effects</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="530"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="553"/>
-        <source>Music</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="531"/>
-        <source>In-game music</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="538"/>
-        <source>Dampen when losing focus</source>
-        <extracomment>Checkbox text. If checked, the in-game audio volume is reduced (=dampened) when the game window loses its focus</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="539"/>
-        <source>Reduce the game audio volume if the game window has lost its focus</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="549"/>
-        <source>Frontend sound effects</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="554"/>
-        <source>Frontend music</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="708"/>
-        <source>If enabled, Hedgewars adds the date and time in the form &quot;YYYY-MM-DD_hh-mm&quot; for automatically created demos.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="728"/>
-        <source>Check for updates at startup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="399"/>
-        <source>Show ammo menu tooltips</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="707"/>
-        <source>Append date and time to record file name</source>
-        <translation>记录名称中包含具体时间日期</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_password.cpp" line="55"/>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="584"/>
-        <source>Save password</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="791"/>
-        <source>Record audio</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="841"/>
-        <source>Use game resolution</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>QComboBox</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="144"/>
-        <source>Human</source>
-        <translation>玩家</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="148"/>
-        <source>Computer (Level %1)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="406"/>
-        <source>Community</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>Level</source>
-        <translation type="obsolete">Lv 级别</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="667"/>
-        <source>(System default)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="346"/>
-        <source>Disabled</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="344"/>
-        <source>Stereoscopy creates an illusion of depth when you wear 3D glasses.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="347"/>
-        <source>Red/Cyan</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="348"/>
-        <source>Cyan/Red</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="349"/>
-        <source>Red/Blue</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="350"/>
-        <source>Blue/Red</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="351"/>
-        <source>Red/Green</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="352"/>
-        <source>Green/Red</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="359"/>
-        <source>Side-by-side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="360"/>
-        <source>Top-Bottom</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="851"/>
-        <source>24 FPS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="852"/>
-        <source>25 FPS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="853"/>
-        <source>30 FPS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="854"/>
-        <source>50 FPS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="855"/>
-        <source>60 FPS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="353"/>
-        <source>Red/Cyan grayscale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="354"/>
-        <source>Cyan/Red grayscale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="355"/>
-        <source>Red/Blue grayscale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="356"/>
-        <source>Blue/Red grayscale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="357"/>
-        <source>Red/Green grayscale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="358"/>
-        <source>Green/Red grayscale</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>QGroupBox</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="65"/>
-        <source>Team Members</source>
-        <translation>成员</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="112"/>
-        <source>Team Settings</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="223"/>
-        <source>Fort</source>
-        <translation>城堡模式</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/teamselect.cpp" line="296"/>
-        <source>Playing teams</source>
-        <translation>玩家队伍</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenet.cpp" line="40"/>
-        <source>Net game</source>
-        <translation>网络游戏</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="53"/>
-        <source>Game Modifiers</source>
-        <translation>游戏修改</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="54"/>
-        <source>Basic Settings</source>
-        <translation>基本设置</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="113"/>
-        <source>Videos</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="152"/>
-        <source>Description</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>QLabel</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="659"/>
-        <source>Locale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="573"/>
-        <source>Nickname</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="327"/>
-        <source>Zoom (%)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="340"/>
-        <source>Stereoscopy</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="405"/>
-        <source>Displayed tags above hogs and translucent tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="696"/>
-        <source>This setting will be effective at next restart.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="817"/>
-        <source>Resolution</source>
-        <translation>分辨率</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="862"/>
-        <source>Bitrate (Kibit/s)</source>
-        <extracomment>“Kibit/s” is the symbol for 1024 bits per second</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="313"/>
-        <source>Quality</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="266"/>
-        <source>Fullscreen</source>
-        <translation type="unfinished">游戏全屏幕</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="271"/>
-        <source>Fullscreen Resolution</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="282"/>
-        <source>Windowed Resolution</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="373"/>
-        <source>FPS limit</source>
-        <translation>FPS 上限</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="56"/>
-        <source>Server name:</source>
-        <translation>服务器名:</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="63"/>
-        <source>Server port:</source>
-        <translation>服务器端口:</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_ip.cpp" line="33"/>
-        <source>Host:</source>
-        <translation>主机:</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_ip.cpp" line="37"/>
-        <source>Port:</source>
-        <translation>端口:</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="157"/>
-        <source>Weapons</source>
-        <translation>武器</translation>
-    </message>
-    <message>
-        <source>Version</source>
-        <translation type="obsolete">版本</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="506"/>
-        <source>Initial sound volume</source>
-        <translation>初始音量</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="199"/>
-        <source>Damage Modifier</source>
-        <translation>伤害修改</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="216"/>
-        <source>Turn Time</source>
-        <translation>回合时间</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="233"/>
-        <source>Initial Health</source>
-        <translation>初始生命值</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="250"/>
-        <source>Sudden Death Timeout</source>
-        <translation>死亡模式倒计时</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="279"/>
-        <source>Sudden Death Water Rise</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="296"/>
-        <source>Sudden Death Health Decrease</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="313"/>
-        <source>% Rope Length</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="346"/>
-        <source>% Health Crates</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="363"/>
-        <source>Health in Crates</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="380"/>
-        <source>Mines Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="397"/>
-        <source>Mines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="414"/>
-        <source>% Dud Mines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="431"/>
-        <source>Barrels</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="466"/>
-        <source>% Retreat Time</source>
-        <extracomment>Label of game scheme setting for the time you get after an attack</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="448"/>
-        <source>Air Mines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="483"/>
-        <source>World Edge</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="504"/>
-        <source>Script parameter</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="520"/>
-        <source>Scheme Name:</source>
-        <translation>设置名称:</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="330"/>
-        <source>Crate Drops</source>
-        <translation>箱子降落</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/ask_quit.cpp" line="38"/>
-        <source>There are videos that are currently being processed.
-Exiting now will abort them.
-Do you really want to quit?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="116"/>
-        <source>Name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="119"/>
-        <source>Player</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="122"/>
-        <source>Grave</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="125"/>
-        <source>Flag</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="128"/>
-        <source>Voice</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="99"/>
-        <source>Your Email</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="105"/>
-        <source>Summary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="111"/>
-        <source>Send system information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="122"/>
-        <source>Description</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="140"/>
-        <source>Loading&lt;br&gt;CAPTCHA ...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="145"/>
-        <source>Type the security code:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="148"/>
-        <source>This development build is &apos;work in progress&apos; and may not be compatible with other versions of the game, while some features might be broken or incomplete!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="150"/>
-        <location filename="../../../../QTfrontend/ui/page/pagemain.cpp" line="156"/>
-        <source>Tip: %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="758"/>
-        <source>Format</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="779"/>
-        <source>Audio codec</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="805"/>
-        <source>Video codec</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="847"/>
-        <source>Framerate</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="109"/>
-        <source>Style</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="142"/>
-        <source>Scheme</source>
-        <translation type="unfinished"></translation>
+    <name>MinesTimeSpinBox</name>
+    <message>
+        <source>Random</source>
+        <translation>随机</translation>
+    </message>
+    <message>
+        <source>%1 seconds</source>
+        <translation>%1 秒</translation>
     </message>
 </context>
 <context>
     <name>QLineEdit</name>
     <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1088"/>
-        <source>unnamed</source>
-        <translation>无名</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1094"/>
-        <source>unnamed (%1)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="418"/>
+        <source>anonymous</source>
+        <translation>匿名</translation>
+    </message>
+    <message>
         <source>hedgehog %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="578"/>
-        <source>anonymous</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/team.cpp" line="45"/>
+        <translation>刺猬 %1</translation>
+    </message>
+    <message>
         <source>Hedgehog %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>QMainWindow</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui_hwform.cpp" line="57"/>
-        <source>Hedgewars %1</source>
-        <translation>刺猬大作战 %1</translation>
-    </message>
-</context>
-<context>
-    <name>QMessageBox</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="139"/>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="167"/>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="185"/>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="201"/>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="404"/>
-        <source>Error</source>
-        <translation>错误</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="140"/>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="186"/>
-        <source>Please select a file from the list.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="168"/>
-        <source>Cannot rename file to %1.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="202"/>
-        <source>Cannot delete file %1.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="503"/>
-        <source>Teams - Are you sure?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="504"/>
-        <source>Do you really want to delete the team &apos;%1&apos;?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="672"/>
-        <source>Teams - Name already taken</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageeditteam.cpp" line="673"/>
-        <source>The team name &apos;%1&apos; is already taken, so your team has been renamed to &apos;%2&apos;.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1126"/>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="655"/>
-        <source>Cannot delete default scheme &apos;%1&apos;!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1152"/>
-        <source>Please select a record from the list</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1247"/>
-        <source>Hedgewars - Nick not registered</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1659"/>
-        <source>Unable to start server</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1721"/>
-        <source>The connection to the server is lost.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1736"/>
-        <source>Server redirection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="1737"/>
-        <source>This server supports secure connections on port %1.
-Would you like to reconnect securely?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>Connection to server is lost</source>
-        <translation type="vanished">服务器连接丢失</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2495"/>
-        <source>Not all players are ready</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2496"/>
-        <source>Are you sure you want to start this game?
-Not all players are ready.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="331"/>
-        <location filename="../../../../QTfrontend/util/MessageDialog.cpp" line="26"/>
-        <source>Hedgewars - Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="342"/>
-        <source>System Information Preview</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="357"/>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="368"/>
-        <source>Failed to generate captcha</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="385"/>
-        <source>Failed to download captcha</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="450"/>
-        <source>Please fill out all fields. Email is optional.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2381"/>
-        <location filename="../../../../QTfrontend/ui/widget/feedbackdialog.cpp" line="419"/>
-        <source>Hedgewars - Success</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2382"/>
-        <source>All file associations have been set</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/hwform.cpp" line="2388"/>
-        <source>File association failed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenet.cpp" line="128"/>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="257"/>
-        <source>Netgame - Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenet.cpp" line="129"/>
-        <source>Please select a server from the list</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetgame.cpp" line="258"/>
-        <source>Please enter room name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="505"/>
-        <source>Room Name - Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="506"/>
-        <source>Please select room from the list</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="532"/>
-        <source>Room Name - Are you sure?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageroomslist.cpp" line="533"/>
-        <source>The game you are trying to join has started.
-Do you still want to join the room?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="654"/>
-        <source>Schemes - Warning</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="664"/>
-        <source>Schemes - Are you sure?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="665"/>
-        <source>Do you really want to delete the game scheme &apos;%1&apos;?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="726"/>
-        <source>Schemes - Name already taken</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagescheme.cpp" line="728"/>
-        <source>A scheme with the name &apos;%1&apos; already exists. Your scheme has been renamed to &apos;%2&apos;.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="635"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="665"/>
-        <source>Videos - Are you sure?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="636"/>
-        <source>Do you really want to delete the video &apos;%1&apos;?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message numerus="yes">
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="666"/>
-        <source>Do you really want to remove %1 file(s)?</source>
-        <translation type="unfinished">
-            <numerusform></numerusform>
-        </translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/drawmapwidget.cpp" line="155"/>
-        <location filename="../../../../QTfrontend/ui/widget/drawmapwidget.cpp" line="176"/>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="1252"/>
-        <source>File error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/drawmapwidget.cpp" line="156"/>
-        <source>Cannot open &apos;%1&apos; for writing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/drawmapwidget.cpp" line="177"/>
-        <location filename="../../../../QTfrontend/ui/widget/mapContainer.cpp" line="1253"/>
-        <source>Cannot open &apos;%1&apos; for reading</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="312"/>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="358"/>
-        <source>Weapons - Warning</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="313"/>
-        <source>A weapon scheme with the name &apos;%1&apos; already exists. Changes made to the weapon scheme have been discarded.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="359"/>
-        <source>Cannot delete default weapon set &apos;%1&apos;!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="369"/>
-        <source>Weapons - Are you sure?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="370"/>
-        <source>Do you really want to delete the weapon set &apos;%1&apos;?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/MessageDialog.cpp" line="34"/>
-        <source>Hedgewars - Warning</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/MessageDialog.cpp" line="42"/>
-        <source>Hedgewars - Information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="537"/>
-        <source>Welcome to Hedgewars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/main.cpp" line="538"/>
-        <source>Welcome to Hedgewars!
-
-You seem to be new around here. Would you like to play some training missions first to learn the basics of Hedgewars?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/gamecfgwidget.cpp" line="405"/>
-        <source>Cannot use the weapon scheme &apos;%1&apos;!</source>
-        <translation type="unfinished"></translation>
+        <translation>刺猬 %1</translation>
+    </message>
+    <message>
+        <source>unnamed</source>
+        <translation>未命名</translation>
+    </message>
+    <message>
+        <source>unnamed (%1)</source>
+        <translation>未命名 (%1)</translation>
     </message>
 </context>
 <context>
-    <name>QObject</name>
-    <message>
-        <location filename="../../../../QTfrontend/campaign.cpp" line="153"/>
-        <location filename="../../../../QTfrontend/campaign.cpp" line="175"/>
-        <source>No description available</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>QPushButton</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="99"/>
-        <source>Play demo</source>
-        <translation>播放 demo</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenet.cpp" line="49"/>
-        <source>Connect</source>
-        <translation>连接</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenet.cpp" line="70"/>
-        <source>Specify address</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>Go!</source>
-        <translation type="obsolete">上场!</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="73"/>
-        <source>Reset</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="74"/>
-        <source>Set the default server port for Hedgewars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="78"/>
-        <source>Invite your friends to your server in just 1 click!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="79"/>
-        <source>Click to copy your unique server URL to your clipboard. Send this link to your friends and they will be able to join you.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagecampaign.cpp" line="96"/>
-        <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="99"/>
-        <location filename="../../../../QTfrontend/ui/page/pagetraining.cpp" line="131"/>
-        <source>Start</source>
-        <translation>开始</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenetserver.cpp" line="100"/>
-        <source>Start private server</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenet.cpp" line="81"/>
-        <source>Start server</source>
-        <translation>开始服务端</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagenet.cpp" line="64"/>
-        <source>Update</source>
-        <translation>更新</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="106"/>
-        <source>Load</source>
-        <translation>读取</translation>
-    </message>
-    <message>
-        <source>Specify</source>
-        <translation type="vanished">指定</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_ip.cpp" line="49"/>
-        <source>default</source>
-        <translation>默认</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="44"/>
-        <source>Rename</source>
-        <translation>重命名</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_ip.cpp" line="53"/>
-        <source>OK</source>
-        <translation>确定</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/input_ip.cpp" line="58"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="538"/>
-        <source>Cancel</source>
-        <translation>取消</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageplayrecord.cpp" line="48"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="186"/>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="538"/>
-        <source>Delete</source>
-        <translation>删除</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/dialog/ask_quit.cpp" line="50"/>
-        <source>More info</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="714"/>
-        <source>Associate file extensions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="876"/>
-        <source>Set default options</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="877"/>
-        <source>Restore default coding parameters</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="138"/>
-        <source>Open videos directory</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="139"/>
-        <source>Open the video directory in your system</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="182"/>
-        <source>Play</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="184"/>
-        <source>Play this video</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pagevideos.cpp" line="188"/>
-        <source>Delete this video</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>QSpinBox</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/page/pageoptions.cpp" line="870"/>
-        <source>Specify the bitrate of recorded videos as a multiple of 1024 bits per second</source>
-        <translation type="unfinished"></translation>
+    <name>HWGame</name>
+    <message>
+        <source>en.txt</source>
+        <translation>zh_CN.txt</translation>
+    </message>
+    <message>
+        <source>A fatal ERROR occured! The game engine had to stop.
+
+We are very sorry for the inconvenience. :-(
+
+If this keeps happening, please click the &apos;Feedback&apos; button in the main menu!
+
+Last engine message:
+%1</source>
+        <translation>发生了致命错误!游戏引擎已停止。
+
+很抱歉造成不便 _(:з」∠)_
+
+如果继续发生,请点击主菜单的“反馈”按钮!
+
+最后的引擎消息:
+%1</translation>
+    </message>
+    <message>
+        <source>Cannot open demofile %1</source>
+        <translation>不能打开demo文件 %1</translation>
     </message>
 </context>
 <context>
-    <name>RoomNamePrompt</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/roomnameprompt.cpp" line="44"/>
-        <source>Enter a name for your room.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/roomnameprompt.cpp" line="58"/>
-        <source>set password</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/roomnameprompt.cpp" line="74"/>
-        <source>Cancel</source>
-        <translation type="unfinished">取消</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/roomnameprompt.cpp" line="35"/>
-        <location filename="../../../../QTfrontend/ui/widget/roomnameprompt.cpp" line="75"/>
-        <source>Create room</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>RoomsListModel</name>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="36"/>
-        <source>In progress</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="37"/>
-        <source>Room Name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="39"/>
-        <source>C</source>
-        <extracomment>Caption of the column for the number of connected clients in the list of rooms</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="41"/>
-        <source>T</source>
-        <extracomment>Caption of the column for the number of teams in the list of rooms</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="42"/>
-        <source>Owner</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="43"/>
-        <source>Map</source>
-        <translation type="unfinished">地图</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="44"/>
-        <source>Script</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="45"/>
-        <source>Rules</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="46"/>
-        <source>Weapons</source>
-        <translation type="unfinished">武器</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="150"/>
-        <source>Random Map</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="151"/>
-        <source>Random Maze</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="152"/>
-        <source>Random Perlin</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="153"/>
-        <source>Hand-drawn</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/model/roomslistmodel.cpp" line="154"/>
-        <source>Forts</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>SeedPrompt</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/seedprompt.cpp" line="35"/>
-        <source>Seed</source>
-        <extracomment>Refers to the &quot;random seed&quot;; the source of randomness in the game</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/seedprompt.cpp" line="44"/>
-        <source>The map seed is the basis for all random values generated by the game.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/seedprompt.cpp" line="63"/>
-        <source>Cancel</source>
-        <translation type="unfinished">取消</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/seedprompt.cpp" line="64"/>
-        <source>Set seed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/seedprompt.cpp" line="78"/>
-        <source>Close</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>SelWeaponWidget</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="173"/>
-        <source>Weapon set</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="174"/>
-        <source>Probabilities</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="175"/>
-        <source>Ammo in boxes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="176"/>
-        <source>Delays</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="387"/>
-        <source>New</source>
-        <translation type="unfinished">新游戏</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="392"/>
-        <source>New (%1)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="433"/>
-        <source>Copy of %1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/selectWeapon.cpp" line="438"/>
-        <source>Copy of %1 (%2)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>new</source>
-        <translation type="obsolete">新</translation>
+    <name>KeyBinder</name>
+    <message>
+        <source>Warning: The same key is assigned multiple times!</source>
+        <translation>警告:相同按键分配多次!</translation>
+    </message>
+    <message>
+        <source>Category</source>
+        <translation>类别</translation>
     </message>
 </context>
 <context>
     <name>TCPBase</name>
     <message>
-        <location filename="../../../../QTfrontend/net/tcpBase.cpp" line="125"/>
         <source>Unable to start server at %1.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/tcpBase.cpp" line="238"/>
+        <translation>无法启动服务器在 %1.</translation>
+    </message>
+    <message>
         <source>Unable to run engine at %1
 Error code: %2</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/net/tcpBase.cpp" line="257"/>
+        <translation>无法运行引擎在 %1
+Error code: %2</translation>
+    </message>
+    <message>
         <source>The game engine died unexpectedly!
 (exit code %1)
 
 We are very sorry for the inconvenience :(
 
 If this keeps happening, please click the &apos;%2&apos; button in the main menu!</source>
-        <translation type="unfinished"></translation>
+        <translation>游戏引擎意外死亡!
+(exit code %1)
+
+很抱歉造成不便 _(:з」∠)_
+
+如果继续发生,请点击主菜单的 ‘%2’ 按钮!</translation>
+    </message>
+</context>
+<context>
+    <name>QMainWindow</name>
+    <message>
+        <source>Hedgewars %1</source>
+        <translation>刺猬战争 %1</translation>
     </message>
 </context>
 <context>
     <name>TeamSelWidget</name>
     <message>
-        <location filename="../../../../QTfrontend/ui/widget/teamselect.cpp" line="301"/>
         <source>At least two teams are required to play!</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>ThemePrompt</name>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/themeprompt.cpp" line="64"/>
-        <source>Choose a theme</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/themeprompt.cpp" line="87"/>
-        <source>Search for a theme:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/themeprompt.cpp" line="123"/>
-        <source>Cancel</source>
-        <translation type="unfinished">取消</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/ui/widget/themeprompt.cpp" line="127"/>
-        <source>Use selected theme</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>binds</name>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="23"/>
-        <location filename="../../../../QTfrontend/binds.cpp" line="57"/>
-        <source>up</source>
-        <translation>上</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="24"/>
-        <location filename="../../../../QTfrontend/binds.cpp" line="58"/>
-        <source>left</source>
-        <translation>左</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="25"/>
-        <location filename="../../../../QTfrontend/binds.cpp" line="59"/>
-        <source>right</source>
-        <translation>右</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="26"/>
-        <location filename="../../../../QTfrontend/binds.cpp" line="60"/>
-        <source>down</source>
-        <translation>下</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="54"/>
-        <source>attack</source>
-        <translation>攻击</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="55"/>
-        <source>put</source>
-        <translation>放</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="33"/>
-        <source>switch</source>
-        <translation>切换</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="28"/>
-        <source>stand still on slippery land</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="29"/>
-        <source>change direction without moving</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="32"/>
-        <source>backwards jump</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="34"/>
-        <source>switch backwards</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="36"/>
-        <source>slot 1</source>
-        <translation>slot 1</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="37"/>
-        <source>slot 2</source>
-        <translation>slot 2</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="38"/>
-        <source>slot 3</source>
-        <translation>slot 3</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="39"/>
-        <source>slot 4</source>
-        <translation>slot 4</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="40"/>
-        <source>slot 5</source>
-        <translation>slot 5</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="41"/>
-        <source>slot 6</source>
-        <translation>slot 6</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="42"/>
-        <source>slot 7</source>
-        <translation>slot 7</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="43"/>
-        <source>slot 8</source>
-        <translation>slot 8</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="45"/>
-        <source>slot 10</source>
-        <translation type="unfinished">slot 10</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="46"/>
-        <source>unselect weapon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="47"/>
-        <source>timer 1 sec</source>
-        <translation>定时1秒</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="48"/>
-        <source>timer 2 sec</source>
-        <translation>定时2秒</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="49"/>
-        <source>timer 3 sec</source>
-        <translation>定时3秒</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="50"/>
-        <source>timer 4 sec</source>
-        <translation>定时4秒</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="51"/>
-        <source>timer 5 sec</source>
-        <translation>定时5秒</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="52"/>
-        <source>change timer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="53"/>
-        <source>change bounciness</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="56"/>
-        <source>autocam / find hedgehog</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="62"/>
-        <source>zoom in</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="63"/>
-        <source>zoom out</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="69"/>
-        <source>pause / auto skip</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="74"/>
-        <source>mute audio</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="76"/>
-        <source>screenshot</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>capture</source>
-        <translation type="vanished">夺取</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="77"/>
-        <source>save map as image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="78"/>
-        <source>speed up replay</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="79"/>
-        <source>show mission information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="80"/>
-        <source>show object information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="82"/>
-        <source>toggle team bars</source>
-        <extracomment>This refers to the team info bars (name/flag/health) of all teams. These are shown at the bottom center of the screen</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="83"/>
-        <source>toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="84"/>
-        <source>change hedgehog tag types</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="85"/>
-        <source>toggle hedgehog tag translucency</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="87"/>
-        <source>toggle HUD</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="89"/>
-        <source>record</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="70"/>
-        <source>quit</source>
-        <translation>退出</translation>
-    </message>
-    <message>
-        <source>find hedgehog</source>
-        <translation type="obsolete">找到 刺猬</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="35"/>
-        <source>ammo menu</source>
-        <translation>弹药菜单</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="30"/>
-        <source>long jump</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="31"/>
-        <source>high jump</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="64"/>
-        <source>reset zoom to start value</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="65"/>
-        <source>set zoom to 100%</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="67"/>
-        <source>clan chat</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="72"/>
-        <source>volume down</source>
-        <translation>降低音量</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="73"/>
-        <source>volume up</source>
-        <translation>提高音量</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="75"/>
-        <source>change mode</source>
-        <translation>改变模式</translation>
-    </message>
-    <message>
-        <source>pause</source>
-        <translation type="vanished">暂停</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="44"/>
-        <source>slot 9</source>
-        <translation>slot 9</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="66"/>
-        <source>chat</source>
-        <translation>聊天</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="68"/>
-        <source>chat history</source>
-        <translation>聊天记录</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="71"/>
-        <source>confirmation</source>
-        <translation>确认</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="27"/>
-        <source>precise aim</source>
-        <translation>练习瞄准</translation>
-    </message>
-</context>
-<context>
-    <name>binds (categories)</name>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="23"/>
-        <source>Movement</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="35"/>
-        <source>Weapons</source>
-        <translation type="unfinished">武器</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="56"/>
-        <source>Camera</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="66"/>
-        <source>Miscellaneous</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>binds (combination)</name>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="28"/>
-        <source>hold down precise</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="29"/>
-        <source>precise + left/right</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="32"/>
-        <source>high jump (twice)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="34"/>
-        <source>precise + switch</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="53"/>
-        <source>precise + timer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="65"/>
-        <source>precise + reset zoom</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="77"/>
-        <source>precise + screenshot</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="84"/>
-        <source>precise + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="85"/>
-        <source>switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="87"/>
-        <source>precise + switch + toggle hedgehog tags</source>
-        <translation type="unfinished"></translation>
+        <translation>需要至少两个队伍才能玩!</translation>
     </message>
 </context>
 <context>
-    <name>binds (descriptions)</name>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="30"/>
-        <source>Traverse gaps and obstacles by jumping:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="54"/>
-        <source>Fire your selected weapon or trigger an utility item:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="55"/>
-        <source>Pick a weapon or a target location under the cursor:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="33"/>
-        <source>Switch your currently active hog (if possible):</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="23"/>
-        <source>Hedgehog movement</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="35"/>
-        <source>Pick a weapon or utility item:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="47"/>
-        <source>Set the timer on bombs and timed weapons:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="56"/>
-        <source>Toggle automatic camera / refocus on active hedgehog:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="57"/>
-        <source>Move the cursor or camera without using the mouse:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="62"/>
-        <source>Modify the camera&apos;s zoom level:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="66"/>
-        <source>Talk to your clan or all participants:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="69"/>
-        <source>Pause, continue or leave your game:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="72"/>
-        <source>Modify the game&apos;s volume while playing:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="75"/>
-        <source>Toggle fullscreen mode:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="76"/>
-        <source>Take a screenshot:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="78"/>
-        <source>Demo replay:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="79"/>
-        <source>Heads-up display:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/binds.cpp" line="89"/>
-        <source>Record video:</source>
-        <translation type="unfinished"></translation>
+    <name>DataManager</name>
+    <message>
+        <source>Use Default</source>
+        <translation>使用默认</translation>
     </message>
 </context>
 <context>
-    <name>binds (keys)</name>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="26"/>
-        <source>Mouse: Left button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="27"/>
-        <source>Mouse: Middle button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="28"/>
-        <source>Mouse: Right button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="29"/>
-        <source>Mouse: X1 button </source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="30"/>
-        <source>Mouse: X2 button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="31"/>
-        <source>Mouse: Wheel up</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="32"/>
-        <source>Mouse: Wheel down</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="35"/>
-        <source>Backspace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="36"/>
-        <source>Tab</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="37"/>
-        <source>Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="38"/>
-        <source>Return</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="39"/>
-        <source>Pause</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="40"/>
-        <source>Escape</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="41"/>
-        <source>Space</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="109"/>
-        <source>Delete</source>
-        <translation type="unfinished">删除</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="104"/>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="188"/>
-        <source>Up</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="105"/>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="189"/>
-        <source>Down</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="106"/>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="191"/>
-        <source>Right</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="107"/>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="190"/>
-        <source>Left</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="108"/>
-        <source>Insert</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="110"/>
-        <source>Home</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="111"/>
-        <source>End</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="88"/>
-        <source>Keypad 0</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="89"/>
-        <source>Keypad 1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="90"/>
-        <source>Keypad 2</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="91"/>
-        <source>Keypad 3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="92"/>
-        <source>Keypad 4</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="93"/>
-        <source>Keypad 5</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="94"/>
-        <source>Keypad 6</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="95"/>
-        <source>Keypad 7</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="96"/>
-        <source>Keypad 8</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="97"/>
-        <source>Keypad 9</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="98"/>
-        <source>Keypad .</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="99"/>
-        <source>Keypad /</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="100"/>
-        <source>Keypad *</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="101"/>
-        <source>Keypad -</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="102"/>
-        <source>Keypad +</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="103"/>
-        <source>Keypad Enter</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="112"/>
-        <source>PageUp</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="113"/>
-        <source>PageDown</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="129"/>
-        <source>Numlock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="130"/>
-        <source>CapsLock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="131"/>
-        <source>ScrollLock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="132"/>
-        <source>Menu</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="133"/>
-        <source>Right Shift</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="134"/>
-        <source>Left Shift</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="135"/>
-        <source>Right Ctrl</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="136"/>
-        <source>Left Ctrl</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="137"/>
-        <source>Right Alt</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="138"/>
-        <source>Left Alt</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="140"/>
-        <source>Right GUI</source>
-        <extracomment>Windows key / Command key / Meta key /Super key (right)</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="142"/>
-        <source>Left GUI</source>
-        <extracomment>Windows key / Command key / Meta key /Super key (left)</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="152"/>
-        <source>A button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="153"/>
-        <source>B button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="154"/>
-        <source>X button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="155"/>
-        <source>Y button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="156"/>
-        <source>LB button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="157"/>
-        <source>RB button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="158"/>
-        <source>Back button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="159"/>
-        <source>Start button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="160"/>
-        <source>Left stick</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="161"/>
-        <source>Right stick</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="168"/>
-        <source>Left stick (Right)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="169"/>
-        <source>Left stick (Left)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="170"/>
-        <source>Left stick (Down)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="171"/>
-        <source>Left stick (Up)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="172"/>
-        <source>Left trigger</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="173"/>
-        <source>Right trigger</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="174"/>
-        <source>Right stick (Down)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="175"/>
-        <source>Right stick (Up)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="176"/>
-        <source>Right stick (Right)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="177"/>
-        <source>Right stick (Left)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="179"/>
-        <source>D-pad</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="183"/>
-        <source>Axis %1 %2</source>
-        <extracomment>Game controller axis direction. %1 = axis number, %2 = direction</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="185"/>
-        <source>Button %1</source>
-        <extracomment>Game controller button. %1 = button number</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="187"/>
-        <source>D-pad %1 %2</source>
-        <extracomment>Game controller D-pad button. %1 = D-pad number, %2 = direction</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/sdlkeys.cpp" line="194"/>
-        <source>(Don&apos;t use)</source>
-        <extracomment>Special entry in key selection when an action has no control assigned</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/DataManager.cpp" line="183"/>
-        <source>(QWERTY)</source>
-        <extracomment>Name of QWERTY US keyboard layout</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/util/DataManager.cpp" line="190"/>
-        <source>Keyboard</source>
-        <translation type="unfinished"></translation>
+    <name>QSpinBox</name>
+    <message>
+        <source>Specify the bitrate of recorded videos as a multiple of 1024 bits per second</source>
+        <translation>将录制视频的比特率指定为每秒 1024 位的倍数</translation>
     </message>
 </context>
 <context>
-    <name>credits</name>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="2"/>
-        <source>Programming</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="3"/>
-        <source>Game engine</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="4"/>
-        <source>Creator</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="5"/>
-        <source>Many engine improvements</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="6"/>
-        <source>Gamepad and Lua integration</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="7"/>
-        <source>Campaign support</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="8"/>
-        <source>Theme customization improvements</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="9"/>
-        <source>Some Pas2C and GLES2 work</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="10"/>
-        <source>Video recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="11"/>
-        <source>Other improvements</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="12"/>
-        <source>Map generation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="13"/>
-        <source>Core map generators</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="14"/>
-        <source>Perlin maps and other improvements</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="15"/>
-        <source>Maze maps</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="16"/>
-        <source>Weapons</source>
-        <translation type="unfinished">武器</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="17"/>
-        <source>Most core weapons</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="18"/>
-        <source>Air mine, rubber, others</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="19"/>
-        <source>Drill rocket, ballgun, RC plane</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="20"/>
-        <source>Freezer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="21"/>
-        <source>Mine number and time game settings</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="22"/>
-        <source>Frontend / main menu</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="23"/>
-        <source>Many frontend improvements</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="24"/>
-        <source>Keybinds, feedback, maps and hats interfaces</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="25"/>
-        <source>Login dialogs, other improvements</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="26"/>
-        <source>Missions and styles</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="27"/>
-        <source>A Classic Fairytale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="28"/>
-        <source>A Space Adventure</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="29"/>
-        <source>Created Capture the Flag, Construction Mode, Control, HedgeEditor, Highlander, Racer, TechRacer, The Specialists, WxW</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="30"/>
-        <source>Training, time-trial and target practice challenges, Bazooka Battlefield, Tentacle Terror, Big Armory, bugfixes and maintenance</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="31"/>
-        <source>Some styles and missions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="32"/>
-        <source>Battalion</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="33"/>
-        <source>Continental supplies</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="34"/>
-        <source>Teamwork 2</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="35"/>
-        <source>Climb Home</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="36"/>
-        <source>Portal Mind Challenge</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="37"/>
-        <source>Game server</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="38"/>
-        <source>Ports</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="39"/>
-        <source>macOS/iPhone port, OpenGL-ES conversion</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="40"/>
-        <source>Android port</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="41"/>
-        <source>Android netplay, portability abstraction</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="42"/>
-        <source>WebGL port</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="43"/>
-        <source>iPhone/iPad ports</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="44"/>
-        <source>Graphics</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="45"/>
-        <source>General</source>
-        <translation type="unfinished">常规</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="46"/>
-        <source>Themes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="47"/>
-        <source>Nature, Snow, City, Castle, Halloween, Island</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="48"/>
-        <source>Bamboo, EarthRise, BambooPlinko</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="49"/>
-        <source>Golf, Hoggywood, Stage</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="50"/>
-        <source>Hoggywood</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="51"/>
-        <source>Cave, Olympics</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="52"/>
-        <source>Fruit, Cake</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="53"/>
-        <source>Art</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="54"/>
-        <source>Beach</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="55"/>
-        <source>Brick</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="56"/>
-        <source>Hell</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="57"/>
-        <source>Jungle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="58"/>
-        <source>Sheep</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="59"/>
-        <source>Maps</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="60"/>
-        <source>Basketball, BasketballField, Bath, Bubbleflow, Hammock, Hedgelove, Hedgewars, Hydrant, Mushrooms, Plane, Ropes, Tree</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="61"/>
-        <source>SB_Bones, SB_Crystal, SB_Grassy, SB_Grove, SB_Haunty, SB_Oaks, SB_Shrooms, SB_Tentacle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="62"/>
-        <source>Bamboo, Blox, Cake, Cogs, EarthRise, Freeway</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="63"/>
-        <source>Castle, PirateFlag</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="64"/>
-        <source>ShoppaKing, TrophyRace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="65"/>
-        <source>Battlefield</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="66"/>
-        <source>CTF_Blizzard</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="67"/>
-        <source>Cheese</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="68"/>
-        <source>ClimbHome</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="69"/>
-        <source>Lonely_Island</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="70"/>
-        <source>Octorama</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="71"/>
-        <source>portal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="72"/>
-        <source>Ruler</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="73"/>
-        <source>Sticks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="74"/>
-        <source>Forts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="75"/>
-        <source>EvilChicken</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="76"/>
-        <source>Olympic</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="77"/>
-        <source>Tank</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="78"/>
-        <source>Snail</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="79"/>
-        <source>SteelTower</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="80"/>
-        <source>Hats, graves, other</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="81"/>
-        <source>See CREDITS text file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="82"/>
-        <source>Sounds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="83"/>
-        <source>Hedgehogs voice</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="84"/>
-        <source>Default_pl, Russian_pl voices</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="85"/>
-        <source>Various authors from www.freesound.org (see CREDITS text file)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="86"/>
-        <source>Music</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="87"/>
-        <source>City, Rock, others</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="88"/>
-        <source>Compost</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="89"/>
-        <source>EarthRise, oriental, Pirate, snow</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="90"/>
-        <source>Fruit, Jungle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="91"/>
-        <source>Nature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="92"/>
-        <source>olympics_sd</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="93"/>
-        <source>sdmusic (Hitman [sheepluva edit])</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="94"/>
-        <source>Translations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="95"/>
-        <source>Brazilian Portuguese</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="96"/>
-        <source>Bulgarian</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="97"/>
-        <source>Czech</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="98"/>
-        <source>Chinese</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="99"/>
-        <source>Finnish</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="100"/>
-        <source>French</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="101"/>
-        <source>German</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="102"/>
-        <source>Greek</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="103"/>
-        <source>Italian</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="104"/>
-        <source>Japanese</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="105"/>
-        <source>Korean</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="106"/>
-        <source>Lithuanian</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="107"/>
-        <source>Polish</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="108"/>
-        <source>Portuguese</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="109"/>
-        <source>Russian</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="110"/>
-        <source>Scottish Gaelic</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="111"/>
-        <source>Slovak</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="112"/>
-        <source>Spanish</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="113"/>
-        <source>Swedish</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="114"/>
-        <source>Ukrainian</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="115"/>
-        <source>Special thanks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/creditsmessages.h" line="116"/>
-        <source>Project founder</source>
-        <translation type="unfinished"></translation>
+    <name>HWHostPortDialog</name>
+    <message>
+        <source>Connect to server</source>
+        <translation>连接到服务器</translation>
+    </message>
+</context>
+<context>
+    <name>PageInGame</name>
+    <message>
+        <source>In game...</source>
+        <translation>游戏中...</translation>
     </message>
 </context>
 <context>
-    <name>server</name>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="105"/>
-        <source>New voting started</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="107"/>
-        <source>kick</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="108"/>
-        <source>map</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="109"/>
-        <source>pause</source>
-        <translation type="unfinished">暂停</translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="110"/>
-        <source>new seed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="76"/>
-        <source>/maxteams: specify number from 2 to 8</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="50"/>
-        <source>Super power activated.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="49"/>
-        <location filename="../../../../QTfrontend/ui/widget/chatwidget.cpp" line="870"/>
-        <source>Unknown command or invalid parameters. Say &apos;/help&apos; in chat for a list of commands.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="2"/>
-        <source>Nickname is already in use</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="3"/>
-        <source>This server only allows registered users to join.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="4"/>
-        <source>No checker rights</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="5"/>
-        <source>Authentication failed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="6"/>
-        <source>60 seconds cooldown after kick</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="7"/>
-        <source>Kicked</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="8"/>
-        <source>kicked</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="9"/>
-        <source>Reconnected too fast</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="10"/>
-        <source>Ping timeout</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="11"/>
-        <source>heads</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="12"/>
-        <source>tails</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="13"/>
-        <source>This server does not support replays!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="14"/>
-        <source>This server no longer allows unregistered players to join.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="15"/>
-        <source>This server now allows unregistered players to join.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="16"/>
-        <source>/info &lt;player&gt;: Show info about player</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="17"/>
-        <source>/me &lt;message&gt;: Chat action, e.g. &apos;/me eats pizza&apos; becomes &apos;* Player eats pizza&apos;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="18"/>
-        <source>/rnd: Flip a virtual coin and reply with &apos;heads&apos; or &apos;tails&apos;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="19"/>
-        <source>/rnd [A] [B] [C] [...]: Reply with a random word from the given list</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="20"/>
-        <source>/watch &lt;id&gt;: Watch a demo stored on the server with the given ID</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="21"/>
-        <source>/quit: Quit the server</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="22"/>
-        <source>/help: Show chat command help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="23"/>
-        <source>/callvote [arguments]: Start a vote</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="24"/>
-        <source>/vote &lt;yes/no&gt;: Vote &apos;yes&apos; or &apos;no&apos; for active vote</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="26"/>
-        <source>/delegate &lt;player&gt;: Surrender room control to player</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="27"/>
-        <source>/maxteams &lt;N&gt;: Limit maximum number of teams to N</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="28"/>
-        <source>/global &lt;message&gt;: Send global chat message which can be seen by everyone on the server</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="29"/>
-        <source>/registered_only: Toggle &apos;registered only&apos; state. If enabled, only registered players can join server</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="30"/>
-        <source>/super_power: Activate your super power. With it you can enter any room and are protected from kicking. Expires when you leave server</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="31"/>
-        <source>/stats: Query server stats</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="32"/>
-        <source>/force &lt;yes/no&gt;: Force vote result for active vote</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="33"/>
-        <source>/fix: Force this room to stay open when it is empty</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="34"/>
-        <source>/unfix: Undo the /fix command</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="39"/>
-        <source>List of lobby chat commands:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="40"/>
-        <source>List of room chat commands:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="41"/>
-        <source>Commands for server admins only:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="46"/>
-        <source>Warning! Room name change flood protection activated</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="47"/>
-        <source>This command is only available in the lobby.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="48"/>
-        <source>This command is only available in rooms.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="51"/>
-        <source>room</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="52"/>
-        <source>lobby</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="53"/>
-        <source>(playing)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="54"/>
-        <source>(spectating)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="55"/>
-        <source>Player is not online.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="56"/>
-        <source>The game can&apos;t be started with less than two clans!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="57"/>
-        <source>Empty config entry.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="58"/>
-        <source>Access denied.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="59"/>
-        <source>You&apos;re not the room master!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="60"/>
-        <source>Corrupted hedgehogs info!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="61"/>
-        <source>Too many teams!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="62"/>
-        <source>Too many hedgehogs!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="63"/>
-        <source>There&apos;s already a team with same name in the list.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="64"/>
-        <source>Joining not possible: Round is in progress.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="65"/>
-        <source>This room currently does not allow adding new teams.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="66"/>
-        <source>Error: The team you tried to remove does not exist.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="67"/>
-        <source>You can&apos;t remove a team you don&apos;t own.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="68"/>
-        <source>Illegal room name! The room name must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="69"/>
-        <source>A room with the same name already exists.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="70"/>
-        <source>You can&apos;t kick yourself!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="71"/>
-        <source>You can&apos;t kick the only other player!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="72"/>
-        <source>The player is not in your room.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="73"/>
-        <source>This player is protected from being kicked.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="74"/>
-        <source>You&apos;re not the room master or a server admin!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="75"/>
-        <source>You&apos;re already the room master.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="77"/>
-        <source>Greeting message cleared.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="78"/>
-        <source>Greeting message set.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="79"/>
-        <source>Available callvote commands: hedgehogs &lt;number&gt;, pause, newseed, map &lt;name&gt;, kick &lt;player&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="81"/>
-        <source>/callvote kick: You need to specify a nickname.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="80"/>
-        <source>/callvote kick: This is only allowed in rooms without a room master.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="82"/>
-        <source>/callvote kick: No such user!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="83"/>
-        <source>/callvote map: No maps available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="84"/>
-        <source>/callvote map: No such map!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="85"/>
-        <source>/callvote pause: No game in progress!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="86"/>
-        <source>/callvote hedgehogs: Specify number from 1 to 8.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="87"/>
-        <source>/force: Please use &apos;yes&apos; or &apos;no&apos;.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="88"/>
-        <source>/vote: Please use &apos;yes&apos; or &apos;no&apos;.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="89"/>
-        <source>Illegal room name! A room name must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="90"/>
-        <source>No such room.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="91"/>
-        <source>Room version incompatible to your Hedgewars version!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="92"/>
-        <source>Access denied. This room currently doesn&apos;t allow joining.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="93"/>
-        <source>Access denied. This room is for registered users only.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="94"/>
-        <source>You are banned from this room.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="95"/>
-        <source>Please confirm server restart with &apos;/restart_server yes&apos;.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="96"/>
-        <source>Nickname already provided.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="97"/>
-        <source>Illegal nickname! Nicknames must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="98"/>
-        <source>Protocol already known.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="99"/>
-        <source>Bad number.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="100"/>
-        <source>There&apos;s no voting going on.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="101"/>
-        <source>You already have voted.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="102"/>
-        <source>Your vote has been counted.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="103"/>
-        <source>Voting closed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="104"/>
-        <source>Pause toggled.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="106"/>
-        <source>Voting expired.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="111"/>
-        <source>hedgehogs per team: </source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="112"/>
-        <source>You&apos;re the new room master!</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="42"/>
-        <source>Warning! Chat flood protection activated</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="25"/>
-        <source>/greeting [message]: Set or clear greeting message to be shown to players who join the room</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="35"/>
-        <source>/save &lt;config ID&gt; &lt;config name&gt;: Add current room configuration as votable choice for /callvote map</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="36"/>
-        <source>/delete &lt;config ID&gt;: Delete a votable room configuration</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="37"/>
-        <source>/saveroom &lt;file name&gt;: Save all votable room configurations (and the greeting) of this room into a file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="38"/>
-        <source>/loadroom &lt;file name&gt;: Load votable room configurations (and greeting) from a file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="43"/>
-        <source>Excess flood</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="44"/>
-        <source>Game messages flood detected - 1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../../../../QTfrontend/servermessages.h" line="45"/>
-        <source>Warning! Joins flood protection activated</source>
-        <translation type="unfinished"></translation>
+    <name>AbstractPage</name>
+    <message>
+        <source>Go back</source>
+        <translation>返回</translation>
+    </message>
+</context>
+<context>
+    <name>HWAskQuitDialog</name>
+    <message>
+        <source>Do you really want to quit?</source>
+        <translation>你确定要退出?</translation>
     </message>
 </context>
 </TS>
--- a/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts	Sun Mar 24 14:34:27 2024 -0400
@@ -342,6 +342,7 @@
     </message>
     <message>
         <source>Scheme &apos;%1&apos; not supported</source>
+        <extracomment>Here, “scheme” refers to the scheme of a Uniform Resource Identifier”</extracomment>
         <translation>不支持遊戲方案“%1”</translation>
     </message>
     <message>
@@ -553,7 +554,7 @@
         <source>Your nickname is not registered.
 To prevent someone else from using it,
 please register it at www.hedgewars.org</source>
-        <translation>你的暱稱未註冊。
+        <translation type="vanished">你的暱稱未註冊。
 要防止其他人使用它,
 請上www.hedgewars.org進行註冊</translation>
     </message>
@@ -633,6 +634,13 @@
         <source>Internal error: Reply object is invalid.</source>
         <translation>內部錯誤: 回覆的對象是無效的</translation>
     </message>
+    <message>
+        <source>Your nickname is not registered.
+To be able to rejoin games in progress and
+prevent someone else from using your nickname,
+please register it at www.hedgewars.org.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>HWGame</name>
@@ -1483,7 +1491,7 @@
     </message>
     <message>
         <source>Save</source>
-        <translation>存檔</translation>
+        <translation type="vanished">存檔</translation>
     </message>
     <message numerus="yes">
         <source>(%1 %2)</source>
@@ -1528,6 +1536,14 @@
             <numerusform>(%1 箱子)</numerusform>
         </translation>
     </message>
+    <message>
+        <source>Save demo</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Save demo (unavailable because the /lua command was used)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageInGame</name>
@@ -2186,6 +2202,10 @@
         <source>%1 (%2)</source>
         <translation></translation>
     </message>
+    <message>
+        <source>Average number of sentry bots to be placed on a medium-sized island map. This number will be scaled for other maps.</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PageSelectWeapon</name>
@@ -2991,6 +3011,14 @@
         <source>Zoom (%)</source>
         <translation>畫面縮放(%)</translation>
     </message>
+    <message>
+        <source>Chat size (%)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <source>Sentry Bots</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>QLineEdit</name>
@@ -3960,7 +3988,7 @@
     </message>
     <message>
         <source>precise + switch + toggle hedgehog tags</source>
-        <translation>精細瞄準 + 切換 + 隊伍資訊欄開關</translation>
+        <translation type="vanished">精細瞄準 + 切換 + 隊伍資訊欄開關</translation>
     </message>
     <message>
         <source>high jump (twice)</source>
@@ -3970,6 +3998,10 @@
         <source>precise + screenshot</source>
         <translation>精細瞄準 + 擷圖</translation>
     </message>
+    <message>
+        <source>precise + switch + toggle team bars</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>binds (descriptions)</name>
@@ -4982,6 +5014,10 @@
         <source>Project founder</source>
         <translation>項目創始人</translation>
     </message>
+    <message>
+        <source>Hungarian</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>server</name>
--- a/share/hedgewars/Data/Locale/hu.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/hu.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -363,7 +363,7 @@
 02:07=Svájci bicska doboz formában
 02:07=Csináld magad!
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 unalmas…
 02:08=%1 hiába fáradt
 02:08=%1 eléggé lusta
@@ -398,7 +398,7 @@
 02:08=%1 épp mással foglalkozik
 02:08=%1 elaludt
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 gyakorolhatna kicsit!
 02:09=%1 látszólag utálja magát
 02:09=%1 rossz oldalra állt!
--- a/share/hedgewars/Data/Locale/it.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/it.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -677,11 +677,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
     ["Flesh for Brainz"] = "Carne per Brainz", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1540,6 +1542,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2849,6 +2852,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
     ["You have killed an innocent hedgehog!"] = "Hai ucciso un riccio innocente!", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/it.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/it.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -299,7 +299,7 @@
 02:07=Potrebbe servirti
 02:07=Utilissime queste utilità!
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 è così noioso...
 02:08=%1 deve riordinare le idee
 02:08=%1, se non volevi giocare lo potevi anche dire prima!
@@ -339,7 +339,7 @@
 02:08=%1 desidera lasciare che il nemico lo sconfigga
 02:08=%1, domande, dubbi, perplessità?
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 dovrebbe migliorare la sua mira!
 02:09=%1 sembra odiarsi...
 02:09=%1 ha manie suicide...
--- a/share/hedgewars/Data/Locale/ja.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/ja.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -209,7 +209,7 @@
 02:07=道具の時間です!
 02:07=この中には、一体何があるのでしょうか?
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1が退屈そうです。
 02:08=%1が寝ているようです。
 02:08=%1が休憩をとります。
@@ -221,7 +221,7 @@
 02:08=%1が息抜きをしています。
 02:08=%1が眠っています。
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1の行動は、もちろんわざとでしたね。
 ; The real saying has けってん = shortcoming, whereas てっけん = clenched fist
 02:09=大丈夫ですよ、%1。誰にでも「鉄拳」があります!
--- a/share/hedgewars/Data/Locale/ko.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/ko.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -677,11 +677,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1540,6 +1542,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2849,6 +2852,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/ko.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/ko.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -92,10 +92,10 @@
 ; New utility crate
 02:07=장치상자!
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 통과했다.
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 피학대 성애자인 것 캍아...
 
 ; Hog shot an home run (using the bat and another hog)
--- a/share/hedgewars/Data/Locale/lt.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/lt.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -677,11 +677,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1540,6 +1542,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2849,6 +2852,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/lt.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/lt.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -309,7 +309,7 @@
 02:07=Ooo sunki dėžė
 02:07=Tau gali šito prireikti
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 yra toks nuobodus...
 02:08=%1 net nesumirksėjo
 02:08=%1 yra vienas tingus ežys
@@ -347,7 +347,7 @@
 02:08=%1 persigando
 02:08=%1 užmigo
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 turėtų treniruoti taiklumą!
 02:09=%1 nekenčia savęs
 02:09=%1 stovi ne toje pusėje!
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Locale/missions_zh_CN.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,98 @@
+Basic_Training_-_Movement.name=基础移动训练
+Basic_Training_-_Movement.desc="新手在这里开始!学会在不同地形移动和切换刺猬"
+
+Basic_Training_-_Bazooka.name=基础火箭筒训练
+Basic_Training_-_Bazooka.desc="学会使用火箭筒, 了解风,并摧毁所有目标"
+
+Basic_Training_-_Grenade.name=基础手榴弹训练
+Basic_Training_-_Grenade.desc="学会使用手榴弹,并摧毁所有目标"
+
+Basic_Training_-_Rope.name=基础绳索训练
+Basic_Training_-_Rope.desc="绳索是你能得到的最实用的工具之一,但这需要大量练习"
+
+Basic_Training_-_Flying_Saucer.name=基础飞碟训练
+Basic_Training_-_Flying_Saucer.desc="学会操控飞碟飞行,在飞行中射击,甚至表演特技"
+
+User_Mission_-_Dangerous_Ducklings.name=危险的小鸭子
+User_Mission_-_Dangerous_Ducklings.desc="是时候进行实战训练了"
+
+User_Mission_-_Diver.name=潜水员
+User_Mission_-_Diver.desc="这个水陆两用的东西,看着简单,用起来难"
+
+User_Mission_-_Teamwork.name=团队合作
+User_Mission_-_Teamwork.desc="一个故障的机器人保护着有价值的军事机密,为了获得机密,你需要带领两个刺猬组成的特别行动队伍打败敌人"
+
+User_Mission_-_Teamwork_2.name=团队合作 2
+User_Mission_-_Teamwork_2.desc="我们找到了机器帝国的秘密前哨,它只由无害的监视机器人守卫。带领你的特别行动队伍摧毁监视机器人,这样我们就能宣称这个基地是我们的"
+
+User_Mission_-_Spooky_Tree.name=怪树
+User_Mission_-_Spooky_Tree.desc="这里有很多空投箱。我希望那些鸟不是很饿"
+
+User_Mission_-_Bamboo_Thicket.name=竹林
+User_Mission_-_Bamboo_Thicket.desc="一个机器人正在威胁竹林,用几乎完美的准确度攻击进入视线的任何人。提前计划, 快速行动除掉敌人"
+
+User_Mission_-_That_Sinking_Feeling.name=淹没的感觉
+User_Mission_-_That_Sinking_Feeling.desc="水涨得很快,时间有限,很多人尝试过但失败了,你能拯救它们所有人吗?"
+
+User_Mission_-_Newton_and_the_Hammock.name=牛顿和吊床
+User_Mission_-_Newton_and_the_Hammock.desc="小刺猬们记住:除非受到外力作用,身体的速度保持不变"
+
+User_Mission_-_The_Great_Escape.name=大逃离
+User_Mission_-_The_Great_Escape.desc="逃离监狱并复仇"
+
+User_Mission_-_Rope_Knock_Challenge.name=绳索撞击
+User_Mission_-_Rope_Knock_Challenge.desc="使用你的绳索把敌人撞下去"
+
+User_Mission_-_Nobody_Laugh.name=没人笑
+User_Mission_-_Nobody_Laugh.desc="Oh, 这些小丑认为它们很搞笑!它们数量超过我们,但我们有很多回合时间。除掉所有喜剧演员,直到这里没有人笑"
+
+User_Mission_-_RCPlane_Challenge.name=遥控飞机挑战
+User_Mission_-_RCPlane_Challenge.desc="使用遥控飞机获得所有箱子。尽可能使用更少的遥控飞机提高你的排名"
+
+Big_Armory.name=大武器库
+Big_Armory.desc="你独自作战,拥有完整的武器库,且必须在时间结束前打败所有八个刺猬"
+
+Bazooka_Battlefield.name=火箭筒战场
+Bazooka_Battlefield.desc="你忠诚的刺猬埋伏了敌人。只用火箭筒打败它们,但不要浪费时间,水面会很快上升"
+
+Tentacle_Terror.name=恐怖触手
+Tentacle_Terror.desc="恐怖的怪物之下,你的敌人像懦夫一样躲起来,当你失去掩护就用空袭攻击你。你需要神乎其技的绳索技术才有机会"
+
+ClimbHome.name=爬回家
+ClimbHome.desc="你离家很远,水面在上升,尽可能地爬到高处"
+
+portal.name=传送门思维挑战
+portal.desc="使用传送门快速移动、到达远处、杀死刺猬,请小心使用"
+
+Target_Practice_-_Bazooka_easy.name=目标训练: 火箭筒(简单)
+Target_Practice_-_Bazooka_easy.desc="尽快打中这些目标"
+
+Target_Practice_-_Bazooka_hard.name=目标训练: 火箭筒(困难)
+Target_Practice_-_Bazooka_hard.desc="你能打中很远的目标吗?"
+
+Target_Practice_-_Cluster_Bomb.name=目标训练: 集束炸弹
+Target_Practice_-_Cluster_Bomb.desc="有人需要用集束炸弹洗个热水澡"
+
+Target_Practice_-_Shotgun.name=目标训练: 霰弹枪
+Target_Practice_-_Shotgun.desc="先射击,再问问题"
+
+Basic_Training_-_Sniper_Rifle.name=目标训练: 狙击枪
+Basic_Training_-_Sniper_Rifle.desc="对于狙击手来说这是完美的射击范围,快速准确摧毁所有目标"
+
+Target_Practice_-_Homing_Bee.name=目标训练: 蜜蜂枪
+Target_Practice_-_Homing_Bee.desc="使用蜜蜂枪比看起来要难"
+
+Target_Practice_-_Grenade_easy.name=目标训练: 手榴弹(简单)
+Target_Practice_-_Grenade_easy.desc="给有抱负的榴弹手的热身训练"
+
+Target_Practice_-_Grenade_hard.name=目标训练: 手榴弹(困难)
+Target_Practice_-_Grenade_hard.desc="这不是给新手的,我们会把目标放在难打的位置"
+
+Challenge_-_Speed_Shoppa_-_Hedgelove.name=时间试炼: Shoppa Love
+Challenge_-_Speed_Shoppa_-_Hedgelove.desc="在这个小地图收集一些箱子"
+
+Challenge_-_Speed_Shoppa_-_Ropes.name=时间试炼: Ropes and Crates
+Challenge_-_Speed_Shoppa_-_Ropes.desc="在这个中等地图收集所有箱子"
+
+Challenge_-_Speed_Shoppa_-_ShoppaKing.name=时间试炼: The Customer is King
+Challenge_-_Speed_Shoppa_-_ShoppaKing.desc="在这个大地图尽快收集所有箱子"
--- a/share/hedgewars/Data/Locale/nl.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/nl.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -294,7 +294,7 @@
 02:07=Ooo this box is heavy
 02:07=You might need this
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 is sooo boring...
 02:08=%1 couldn't be bothered
 02:08=%1 is one lazy hog
@@ -332,7 +332,7 @@
 02:08=%1 is scared stiff
 02:08=%1 has fallen asleep
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 should practice aiming!
 02:09=%1 seems to hate himself
 02:09=%1 is standing on the wrong side!
--- a/share/hedgewars/Data/Locale/pl.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/pl.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -462,8 +462,8 @@
     ["Defeat all enemies!"] = "Pokonaj wszystkich wrogów!", -- portal
     ["Defeat!"] = "Porażka!", -- HedgeEditor
     ["Defeat Professor Hogevil!"] = "Pokonaj Profesora Jeżozło!", -- A_Space_Adventure:death01
+    ["Defeat the cannibals!|Grenade hint: set the timer with [1-5], aim with [Up]/[Down] and hold [Space] to set power"] = "Pokonaj kanibali!|Porada do granatów: ustaw zapalnik używając [1-5], celuj [Góra]/[Dół] i przytrzymaj [Spację], by ustawić moc", -- A_Classic_Fairytale:shadow
     ["Defeat the cannibals!"] = "Pokonaj kanibali!", -- A_Classic_Fairytale:shadow
-    ["Defeat the cannibals!|Grenade hint: set the timer with [1-5], aim with [Up]/[Down] and hold [Space] to set power"] = "Pokonaj kanibali!|Porada do granatów: ustaw zapalnik używając [1-5], celuj [Góra]/[Dół] i przytrzymaj [Spację], by ustawić moc", -- A_Classic_Fairytale:shadow
     ["Defeat the cyborgs!"] = "Pokonaj cyborgów!", -- A_Classic_Fairytale:enemy
     ["Defeat the enemy!"] = "Pokonaj wroga!", -- A_Classic_Fairytale:queen
     ["Delete Waypoint"] = "Usuń punkt kontrolny", -- HedgeEditor
@@ -485,8 +485,8 @@
     ["Destroy him, Leaks A Lot! He is responsible for the deaths of many of us!"] = "Zniszcz go, Spory Przecieku! On jest odpowiedzalny za śmierć wielu z nas!", -- A_Classic_Fairytale:first_blood
     ["Destroy invaders and collect bonuses to score points."] = "Niszcz najeźdźców i zbieraj bonusy, by zaliczać punkty.", -- Space_Invasion
     ["- Destroy the enemy"] = "- Zniszcz wroga", -- HedgeEditor
+    ["- Destroy the red targets"] = "- Zniszcz czerwone cele", -- HedgeEditor
     ["- Destroy the red target"] = "- Zniszcz czerwony cel", -- HedgeEditor
-    ["- Destroy the red targets"] = "- Zniszcz czerwone cele", -- HedgeEditor
     ["Destroy the targets!"] = "Zniszcz cele!", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
     ["+%d flamer fuel!"] = "+%d paliwa miotacza ognia!", -- Tumbler
     ["+%d health"] = "+%d zdrowia", -- Mutant
@@ -677,11 +677,13 @@
     ["Flawless victory!"] = "Bezbłędne zwycięstwo!", -- User_Mission_-_RCPlane_Challenge
     ["Flee: Press [Jump]"] = "Ucieknij: Wciśnij [Skok]", -- A_Space_Adventure:fruit01
     ["Flesh for Brainz"] = "Mięso dla Mózgów", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
     ["Fly around and hurl explosives to your enemies."] = "Lataj dookoła i ciskaj ładunki wybuchowe na swoich wrogów.", -- Tumbler
     ["Flying Saucer Training"] = "Trening latającego talerza", -- Basic_Training_-_Flying_Saucer
     ["Fly into space to fight off the invaders with barrels!"] = "Leć w kosmos, by odeprzeć najeźdźców beczkami!", -- Space_Invasion
     ["Fly to the meteorite and detonate the explosives"] = "Poleć do meteorytu i zdetonuj ładunki", -- A_Space_Adventure:cosmos
     ["Follow the path and destroy the next target."] = "Podążaj ściezką i zniszcz następny cel.", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
     ["Forgetfulness: You will lose all your weapons each turn."] = "Zapominalstwo: W każdej turze stracisz wszystkie swoje bronie.", -- Continental_supplies
     ["For the next crate, you have to do back jumps."] = "Do następnej skrzyni musisz zrobić skoki w tył.", -- Basic_Training_-_Movement
     ["Four Eyes"] = "Czterooki",
@@ -1378,8 +1380,8 @@
     ["Minions"] = "Sługusy", -- A_Space_Adventure:moon01
     ["Mission failed!"] = "Misja zakończona niepowodzeniem!", -- Big_Armory
     ["Mission failure in %d s"] = "Porażka misji w %d s", -- Big_Armory
+    ["Mission lost!"] = "Misja stracona!", -- Basic_Training_-_Grenade
     ["Mission"] = "Misja", -- HedgeEditor
-    ["Mission lost!"] = "Misja stracona!", -- Basic_Training_-_Grenade
     ["Mission panel: [M]"] = "Panel misji: [M]", -- Basic_Training_-_Movement
     ["Mission Panel"] = "Panel misji", -- Basic_Training_-_Movement
     ["Mission succeeded!"] = "Misja ukończona!", -- portal, User_Mission_-_Bamboo_Thicket, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork_2, User_Mission_-_Teamwork, SimpleMission, HedgeEditor
@@ -1541,6 +1543,7 @@
     ["Oneye"] = "Jednooki", -- portal
     ["Only one hog per team allowed! Excess hogs will be removed"] = "Dozwolony tylko jeden jeż na drużynę! Nadmiarowe jeże będą usunięte", -- Mutant
     ["Only one hog per team allowed! Excess hogs will be removed."] = "Dozwolony tylko jeden jeż na drużynę! Nadmiarowe jeże będą usunięte.", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
     ["Only %s can be trusted with the crate."] = "Tylko jeżowi %s można ufać ze skrzynią.", -- A_Space_Adventure:fruit02
     ["Only the best pilots can master the following stunts."] = "Tylko najlepsi piloci mogą opanować następujące wyczyny.", -- Basic_Training_-_Flying_Saucer
     ["Only two clans allowed! Excess hedgehogs will be removed."] = "Tylko dwa klany dozwolone! Nadmiarowe jeże będą usunięte.", -- CTF_Blizzard
@@ -2851,6 +2854,7 @@
     ["You have killed all enemies."] = "Zabiłeś wszystkich wrogów.", -- Big_Armory
     ["You have killed an innocent hedgehog!"] = "Zabiłeś niewinnego jeża!", -- A_Classic_Fairytale:backstab
     ["You have killed %d of 16 hedgehogs (+%d points)."] = "Zabiłeś %d z 16 jeży (+%d punktów)", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
     ["You have launched %d bazookas."] = "Wystrzeliłeś %d bazook.", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
     ["You have launched %d homing bees."] = "Wystrzeliłeś %d pszczół.", -- Target_Practice_-_Homing_Bee
     ["You have made %d shots."] = "Wykonałeś %d strzałów.", -- Basic_Training_-_Sniper_Rifle
@@ -2985,6 +2989,6 @@
     ["Zombi"] = "Zombi", -- portal
     ["'Zooka Team"] = "Bazookinierzy",
     ["Zoom: [Pinch] with 2 fingers"] = "Przybliż: [Uszczypnij] dwoma palcami", -- Basic_Training_-_Movement
-    ["Zoom: [Rotate mouse wheel]"] = "Przyybliż: [Obróć kółkiem myszy]", -- Basic_Training_-_Movement
+    ["Zoom: [Rotate mouse wheel]"] = "Przybliż: [Obróć kółkiem myszy]", -- Basic_Training_-_Movement
     ["Zork"] = "Zork", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
 }
--- a/share/hedgewars/Data/Locale/pl.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/pl.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -670,7 +670,7 @@
 04:50=Wezwij szwadron śmiercionośnych wierteł|by wykurzyć kogoś z kryjówki. Po użyciu|zostanie zrzuconych 6 wiertniczych bomb|wkręcających się w podłoże.|Lewo/Prawo: Określ kierunek ataku|Kursor: Wybierz miejsce zrzutu
 04:51=Obrzuć kogoś błotem! Broń ta nie zadaje dużych|obrażeń ale potrafi zepchnąć z krawędzi!|Atak: Przytrzymaj by strzelić z większą siłą
 04:52=UNUSED
-04:53=Wybierz się w podróż w czasie i przestrzeni|zostawiając swoich kompanów samych na|polu walki. Bądź gotowy na powrót w każdej|chwili. Wrócisz też gdy rozpocznie się Nagła|Śmierć lub jeże zostaną pokonane.|Uwaga: nie zadziała podczas Nagłej Śmierci,|gdy jesteś sam lub jesteś Królem.|Atak: Aktywuj
+04:53=Wybierz się w podróż w czasie i przestrzeni|zostawiając swoich kompanów samych na|polu walki. Bądź gotowy na powrót w każdej|chwili. Wrócisz też gdy rozpocznie się Nagła|Śmierć lub jeże zostaną pokonane.|Uwaga\: nie zadziała podczas Nagłej Śmierci,|gdy jesteś sam lub jesteś Królem.|Atak: Aktywuj
 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)
--- a/share/hedgewars/Data/Locale/pt_BR.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/pt_BR.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -677,11 +677,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1540,6 +1542,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2849,6 +2852,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/pt_BR.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/pt_BR.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -205,7 +205,7 @@
 02:07=A cegonha chegou
 02:07=Não esqueça o seu cinto de utilidades
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 está entediado
 02:08=%1 não sabe o que fazer
 02:08=%1 não tem criatividade
@@ -232,7 +232,7 @@
 02:08=%1 está paralizado de terror
 02:08=%1 está pedindo para sair
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 se machucou
 02:09=%1 fez dodói
 02:09=%1 é uma anta
--- a/share/hedgewars/Data/Locale/pt_PT.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/pt_PT.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -677,11 +677,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1540,6 +1542,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2850,6 +2853,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/pt_PT.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/pt_PT.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -307,7 +307,7 @@
 02:07=Ooo esta caixa é pesada
 02:07=Podes precisar disto
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 é tão aborrecido...
 02:08=%1 não se quis incomodar
 02:08=%1 é um ouriço tão preguiçoso
@@ -345,7 +345,7 @@
 02:08=%1 está cheio de medo
 02:08=%1 adormeceu
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 devia praticar a pontaria!
 02:09=Parece que %1 se odeia a si mesmo
 02:09=%1 está do lado errado!
@@ -504,7 +504,7 @@
 04:50=Está alguém escondido num túnel subterrâneo?|Escava-os de lá para fora com um Ataque Perfurador!|O temporizador controla quão longe os misseis irão escavar.
 04:51=Empurra um ouriço sem perder o turno|criando uma bola de lama tu mesmo!
 04:52=UNUSED
-04:53=Parte numa aventura pelo tempo e espaço,|deixando os teus colegas para se defenderem sozinhos.|Está preparado para regressar a qualquer altura,|para Morte Súbita ou se todos forem derrotados.|Atenção: Não funciona em Morte Súbita,|se estiveres sozinho, ou se fores o Rei.
+04:53=Parte numa aventura pelo tempo e espaço,|deixando os teus colegas para se defenderem sozinhos.|Está preparado para regressar a qualquer altura,|para Morte Súbita ou se todos forem derrotados.|Atenção\: Não funciona em Morte Súbita,|se estiveres sozinho, ou se fores o Rei.
 04:54=Aplica estas particulas de terreno em spray onde quiseres.|Constroi pontes, enterra inimigos ou fecha túneis.|Tem apenas cuidado, não o uses em ti proprio!
 
 ; Game goal strings
--- a/share/hedgewars/Data/Locale/ro.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/ro.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -304,7 +304,7 @@
 02:07=Ooo this box is heavy
 02:07=You might need this
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 is sooo boring...
 02:08=%1 couldn't be bothered
 02:08=%1 is one lazy hog
@@ -342,7 +342,7 @@
 02:08=%1 is scared stiff
 02:08=%1 has fallen asleep
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 should practice aiming!
 02:09=%1 seems to hate himself
 02:09=%1 is standing on the wrong side!
--- a/share/hedgewars/Data/Locale/ru.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/ru.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -676,11 +676,13 @@
       ["Flawless victory!"] = "Безупречная победа!", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1538,6 +1540,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2844,6 +2847,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
       ["You have launched %d bazookas."] = "Вы запустили %d базук.", -- Basic_Training_-_Bazooka
       ["You have launched %d homing bees."] = "Вы запустили %d пчёлок.", -- Target_Practice_-_Homing_Bee
       ["You have made %d shots."] = "Вы сделали %d выстрелов.", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/ru.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/ru.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -451,7 +451,7 @@
 02:07=О! Это тяжёлый ящик
 02:07=Тебе это может понадобиться
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 такой скучный...
 02:08=%1 ни о чем не беспокоится
 02:08=%1 ленивый ёжик
@@ -489,7 +489,7 @@
 02:08=%1 оцепенел от страха
 02:08=%1 уснул
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 должен практиковаться в прицеливании!
 02:09=%1 ненавидит себя
 02:09=%1 перешел на сторону врага!
@@ -677,7 +677,7 @@
 02:17=%1 больше не с нами
 02:17=Наш любимый король %1 покинул нас
 
-; Weapon Categories
+; Weapon categories/subcaptions
 03:00=Граната с таймером
 03:01=Бомба с таймером
 03:02=Баллистическое оружие
@@ -741,7 +741,7 @@
 03:59=Незавершённое оружие
 03:60=Наимощнейшая пушка
 
-; Weapon Descriptions (use | as line breaks)
+; Weapon descriptions (use | as line breaks)
 04:00=Атакуй своих врагов обычной гранатой.|Она взорвется сразу, как только таймер достигнет нуля.|1-5: Установить таймер гранаты|Точность + 1-5: Установить силу отскока|Атака: Удерживай для более дальнего броска
 04:01=Атакуй своих врагов касетной бомбой.|Она разорвётся на несколько меньших бомб,|когда таймер достигнет нуля.|1-5: Установить таймер бомбы|Точность + 1-5: Установить силу отскока|Атака: Удерживай для более дальнего броска
 04:02=Атакуй своих врагов баллистическим снарядом,|на который может повлиять направление ветра.|Атака: Удерживай для выстрела с большей силой
@@ -795,7 +795,7 @@
 04:50=Кто-то скрывается под землёй?|Достань их сверлящим ударом!|Таймер контролирует глубину бурения.|Влево/Вправо: Определить направление атаки|1-5: Установить таймер|Курсор: Выбрать бомбардируемую область
 04:51=Швырни в противника комок грязи задаром!|Не наносит урона, но сталкивает|ёжиков и другие объекты назад.|Атака: Удерживай для более дальнего броска
 04:52=Не используется
-04:53=Проделайте путь сквозь время и пространство,|пока ваши соратники борятся в одиночестве.|Будьте готовы вернуться в любое время,|при Внезапной Смерти или когда все союзники повержены.|Предупреждение: Не работает во время Внезапной Смерти,|если вы один или если вы Король.|Атака: Активировать
+04:53=Проделайте путь сквозь время и пространство,|пока ваши соратники борятся в одиночестве.|Будьте готовы вернуться в любое время,|при Внезапной Смерти или когда все союзники повержены.|Предупреждение\: Не работает во время Внезапной Смерти,|если вы один или если вы Король.|Атака: Активировать
 04:54=Распыляет поток липких хлопьев.|Строит мосты, хоронит врагов, перекрывает туннели.|Будьте осторожны - не попадите на себя!|Атака: Включить/Выключить поток|Вверх/Вниз: Продолжать прицельную стрельбу|Влево/Вправо: Изменить силу (дальность) распыления
 04:55=Bерните ледниковый период!|Замораживает ёжиков или объекты, делает пол скользким|или спасает вас от утопления, замораживая воду.|Атака: Включить/Выключить замораживатель|Вверх/Вниз: Продолжать прицельную стрельбу
 04:56=Вы можете бросить два секача во врага,|заблокировать проходы и туннели|и даже использовать их для восхождения!|Урон зависит от их скорости.|Острожно! Игры с ножами опасны.|Атака: Удерживай для выстрела с большей силой (дважды)
@@ -826,13 +826,13 @@
 05:18=Неограниченные атаки: Ход не заканчивается после атаки
 05:19=Постоянное вооружение: Оружие поменяется в конце хода
 05:20=Личное оружие: Ежи не имеют общего оружия
-05:21=Признак команды: Команды в клане ходят последовательно|Общее время: Команды в клане имеют общее время хода
+05:21=Признак команды: Команды в союзе ходят последовательно|Общее время: Команды в союзе имеют общее время хода
 05:22=Сильный ветер: Ветер влияет почти на всё
 
 ; Chat command help
 06:00=Список основных команд чата:
 06:01=/togglechat: Отобразить чат
-06:02=/clan <сообщение>: Отправить сообщение только участникам клана
+06:02=/clan <сообщение>: Отправить сообщение только участникам союза
 06:03=/me <сообщение>: Действие в чате, например "/me ест пиццу" становится "* Игрок ест пиццу"
 06:04=/pause: Включить паузу
 06:05=/pause: Включить автопропуск хода
--- a/share/hedgewars/Data/Locale/sk.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/sk.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -677,11 +677,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1540,6 +1542,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2853,6 +2856,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/sk.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/sk.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -439,7 +439,7 @@
 04:50=Skrýva sa pred vami nepriateľ pod zemou? Vykopte|ho pomocou raketovej vŕtačky!|Časovač nastavuje počet sekúnd|do detonácie.
 04:51=Nemíňajte muníciu - hod blatom je zdarma.|Trošku štípe a dokáže ježka zhodiť.
 04:52=NEPOUŽITÉ
-04:53=Vyberte sa na cestu časom a priestorom|a nechajte vašich priateľov bojovať bez vás.|Buďte pripravený vrátiť sa kedykoľvek,|buď pri Náhlej smrti alebo keď sú všetci porazení.|Poznámka: Nefunguje počas Náhlej smrti,|ak ste sám alebo ak ste kráľom.
+04:53=Vyberte sa na cestu časom a priestorom|a nechajte vašich priateľov bojovať bez vás.|Buďte pripravený vrátiť sa kedykoľvek,|buď pri Náhlej smrti alebo keď sú všetci porazení.|Poznámka\: Nefunguje počas Náhlej smrti,|ak ste sám alebo ak ste kráľom.
 04:54=Rozprášte prúd lepkavej hliny.|Postavte mosty, pochovajte nepriateľov,|zapečaťte tunely. Buďte|však opatrný a nezašpinte sa|od nej aj vy.
 04:55=Vráťme sa do doby ľadovej!|Zamrazte ježkov, urobte podlahu šmykľavú alebo|sa poistite pred utopením zmrazením vody.|Útok: Aktivuje/Deaktivuje ľadový lúč|Hore/Dole: Pokračuj v mierení
 04:56=Po nepriateľovi môžete hodiť dva sekáčiky,|zablokovať priechody a tunely a dokonca ich použiť pri šplhaní!|Buďte opatrný! Nože nie su na hranie.|Útok: Podržte pre hod väčšou silou (dvakrát)
--- a/share/hedgewars/Data/Locale/stub.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/stub.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -636,11 +636,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1446,6 +1448,7 @@
 --      ["One tribe was peaceful, spending their time hunting and training, enjoying the small pleasures of life..."] = "", -- A_Classic_Fairytale:first_blood
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2661,6 +2664,7 @@
 --      ["You have kidnapped our whole tribe!"] = "", -- A_Classic_Fairytale:enemy
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/sv.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/sv.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -677,11 +677,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1540,6 +1542,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2849,6 +2852,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/sv.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/sv.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -321,7 +321,7 @@
 02:07=Ooh, den här lådan är tung
 02:07=Du kanske behöver det här
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 är såååå tråkig...
 02:08=%1 brydde sig inte
 02:08=%1 är en lat igelkott
@@ -365,7 +365,7 @@
 02:08=Du borde byta karriär om du ska hålla på så, %1
 02:08=Var det allt?
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 borde öva sitt sikte!
 02:09=%1 verka hata sig själv
 02:09=%1 står på fel sida!
--- a/share/hedgewars/Data/Locale/tips_de.xml	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/tips_de.xml	Sun Mar 24 14:34:27 2024 -0400
@@ -13,7 +13,7 @@
     <tip>Hedgewars ist freie Open-Source-Software, die wir in unserer Freizeit erstellen. Falls du Probleme hast, frag uns in unseren Foren oder besuch unseren IRC-Channel!</tip>
     <tip>Hedgewars ist freie Open-Source-Software, die wir in unserer Freizeit erstellen. Wenn es dir gefällt, hilf uns mit einer kleinen Spende oder steuere deine eigenen Werke bei!</tip>
     <tip>Hedgewars ist freie Open-Source-Software, die wir in unserer Freizeit erstellen. Teile es mit deiner Familie und deinen Freunden, wie es dir gefällt!</tip>
-    <tip>Hedgewars ist freie Open-Source-Software, die wir in unserer Freizeit nur so zum Spaß erstellen. Triff die Entwickler auf <a href="irc://irc.freenode.net/hedgewars">#hedgewars</a>!</tip>
+    <tip>Hedgewars ist freie Open-Source-Software, die wir in unserer Freizeit nur so zum Spaß erstellen. Triff die Entwickler auf <a href="irc://irc.libera.chat/hedgewars">#hedgewars</a>!</tip>
     <tip>Von Zeit zu Zeit wird es offizielle Turniere geben. Bevorstehende Ereignisse werden auf <a href="https://www.hedgewars.org/">https://www.hedgewars.org/</a> ein paar Tage im Voraus angekündigt.</tip>
     <tip>Hedgewars ist in vielen Sprachen verfügbar. Wenn die Übersetzung deiner Sprache zu fehlen oder veraltet zu sein scheint, nimm ruhig mit uns Kontakt auf!</tip>
     <tip>Hedgewars läuft auf vielen verschiedenen Betriebssystemen, unter anderem Microsoft Windows, macOS und GNU/Linux.</tip>
--- a/share/hedgewars/Data/Locale/tips_en.xml	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/tips_en.xml	Sun Mar 24 14:34:27 2024 -0400
@@ -3,7 +3,7 @@
      Tips between the platform specific tags are shown only on those platforms.
      Do not escape characters or use the CDATA tag. -->
 <tips>
-    <tip>Simply pick the same color as a friend to play together as a clan. Each of you will still control his or her own hedgehogs but they’ll win or lose together.</tip>
+    <tip>Simply pick the same color as a friend to play together as a clan. Each of you will still control their own hedgehogs but they’ll win or lose together.</tip>
     <tip>Some weapons might do only low damage but they can be a lot more devastating in the right situation. Try to use the Desert Eagle to knock multiple hedgehogs into the water.</tip>
     <tip>If you’re unsure what to do and don’t want to waste ammo, skip one round. But don’t let too much time pass as there will be Sudden Death!</tip>
     <tip>Want to save ropes? Release the rope in mid air and then shoot again. As long as you don’t touch the ground or miss a shot you’ll reuse your rope without wasting ammo!</tip>
@@ -13,7 +13,7 @@
     <tip>Hedgewars is free software (Open Source) we create in our spare time. If you’ve got problems, ask on our forums or visit our IRC room!</tip>
     <tip>Hedgewars is free software (Open Source) we create in our spare time. If you like it, feel free to help us with a small donation or contribute your own work!</tip>
     <tip>Hedgewars is free software (Open Source) we create in our spare time. Share it with your family and friends as you like!</tip>
-    <tip>Hedgewars is free software (Open Source) we create in our spare time, just for fun! Meet the developers in <a href="irc://irc.freenode.net/hedgewars">#hedgewars</a>!</tip>
+    <tip>Hedgewars is free software (Open Source) we create in our spare time, just for fun! Meet the developers in <a href="irc://irc.libera.chat/hedgewars">#hedgewars</a>!</tip>
     <tip>From time to time there will be official tournaments. Upcoming events will be announced at <a href="https://www.hedgewars.org/">https://www.hedgewars.org/</a> some days in advance.</tip>
     <tip>Hedgewars is available in many languages. If the translation in your language seems to be missing or outdated, feel free to contact us!</tip>
     <tip>Hedgewars can be run on lots of different operating systems including Microsoft Windows, macOS and GNU/Linux.</tip>
--- a/share/hedgewars/Data/Locale/tips_gd.xml	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/tips_gd.xml	Sun Mar 24 14:34:27 2024 -0400
@@ -13,7 +13,7 @@
     <tip>’S e bathar-bog saor (Open Source) a th’ ann an Hedgewars a tha sinn a’ cruthachadh gu saor-thoileach. Ma tha duilgheadas agad, faighnich air a’ bhòrd-bhrath no tadhail air an t-seòmar IRC againn!</tip>
     <tip>’S e bathar-bog saor (Open Source) a th’ ann an Hedgewars a tha sinn a’ cruthachadh gu saor-thoileach. Ma tha e a’ còrdadh riut, nach doir thu tabhartas airgid no obrach dhuinn?</tip>
     <tip>’S e bathar-bog saor (Open Source) a th’ ann an Hedgewars a tha sinn a’ cruthachadh gu saor-thoileach. Co-roinn e le do theaghlach is caraidean mar a thogras tu!</tip>
-    <tip>’S e bathar-bog saor (Open Source) a th’ ann an Hedgewars a tha sinn a’ cruthachadh gu saor-thoileach a cum tlachd! Coinnich ris an luchd-leasachaidh ann an <a href="irc://irc.freenode.net/hedgewars">#hedgewars</a>!</tip>
+    <tip>’S e bathar-bog saor (Open Source) a th’ ann an Hedgewars a tha sinn a’ cruthachadh gu saor-thoileach a cum tlachd! Coinnich ris an luchd-leasachaidh ann an <a href="irc://irc.libera.chat/hedgewars">#hedgewars</a>!</tip>
     <tip>Bi fèill-chluiche oifigeil againn o àm gu àm. Sgaoilidh sinn brathan-naidheachd mu na tachartasan air <a href="https://www.hedgewars.org/">https://www.hedgewars.org/</a> beagan làithean ro làimh.</tip>
     <tip>Tha Hedgewars ri fhaighinn ann an iomadh cànan. Ma tha an cànan agad a dhìth no an t-eadar-theangachadh ro shean, nach cuir thu fios thugainn?</tip>
     <tip>Gabhaidh Hedgewars a ruith air iomadh siostam-obrachaidh, a’ gabhail a-steach Microsoft Windows, MacOS agus GNU/Linux.</tip>
--- a/share/hedgewars/Data/Locale/tips_hu.xml	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/tips_hu.xml	Sun Mar 24 14:34:27 2024 -0400
@@ -13,7 +13,7 @@
     <tip>A Hedgewars egy szabad szoftver (nyílt forráskódú), amit a szabadidőnkben fejlesztünk. Probléma esetén kérdezz a fórumokon, vagy látogasd meg IRC szobánkat!</tip>
     <tip>A Hedgewars egy szabad szoftver (nyílt forráskódú), amit a szabadidőnkben fejlesztünk. Ha tetszik, nyugodtan küldj egy kis adományt, vagy add hozzá te is a munkádat!</tip>
     <tip>A Hedgewars egy szabad szoftver (nyílt forráskódú), amit a szabadidőnkben fejlesztünk. Nyugodtan oszd meg családoddal, barátaiddal is!</tip>
-    <tip>A Hedgewars egy szabad szoftver (nyílt forráskódú), amit a szabadidőnkben fejlesztünk, csak a móka kedvéért! A fejlesztőkkel a <a href="irc://irc.freenode.net/hedgewars">#hedgewars</a> csatornán találkozhatsz.</tip>
+    <tip>A Hedgewars egy szabad szoftver (nyílt forráskódú), amit a szabadidőnkben fejlesztünk, csak a móka kedvéért! A fejlesztőkkel a <a href="irc://irc.libera.chat/hedgewars">#hedgewars</a> csatornán találkozhatsz.</tip>
     <tip>Időről időre hivatalos bajnokságok indulnak. A közelgő eseményeket pár nappal előre bejelentjük a <a href="https://www.hedgewars.org/">https://www.hedgewars.org/</a> webhelyen.</tip>
     <tip>A Hedgewars sok nyelven elérhető. Ha a te nyelved fordítása hiányzik vagy elavult, nyugodtan keress minket!</tip>
     <tip>A Hedgewars számos operációs rendszerre elérhető, többek között Microsoft Windowsra, macOS-re és GNU/Linuxra is.</tip>
--- a/share/hedgewars/Data/Locale/tips_it.xml	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/tips_it.xml	Sun Mar 24 14:34:27 2024 -0400
@@ -13,7 +13,7 @@
     <tip>Hedgewars è un programma Open Source e gratuito che creiamo nel nostro tempo libero. Se hai problemi, chiedi nei nostri forum oppure visita il nostro canale IRC!</tip>
     <tip>Hedgewars è un programma Open Source e gratuito che creiamo nel nostro tempo libero. Se ti piace, aiutaci con una piccola donazione o contribuisci con il tuo lavoro!</tip>
     <tip>Hedgewars è un programma Open Source e gratuito che creiamo nel nostro tempo libero. Condividilo con tutta la famiglia e con gli amici come più ti piace!</tip>
-    <tip>Hedgewars è un programma Open Source e gratuito che creiamo nel nostro tempo libero. Incontra gli sviluppatori sul canale <a href="irc://irc.freenode.net/hedgewars">#hedgewars</a>!</tip>
+    <tip>Hedgewars è un programma Open Source e gratuito che creiamo nel nostro tempo libero. Incontra gli sviluppatori sul canale <a href="irc://irc.libera.chat/hedgewars">#hedgewars</a>!</tip>
     <tip>Di tanto in tanto ci saranno tornei ufficiali. Gli eventi saranno annunciati su <a href="https://www.hedgewars.org/">https://www.hedgewars.org/</a> con qualche giorno di anticipo.</tip>
     <tip>Hedgewars è disponibile in molte lingue. Se la traduzione nella tua lingua sembra mancante o non aggiornata, sentiti libero di contattaci!</tip>
     <tip>Hedgewars può essere usato su molti sistemi operativi differenti come Microsoft Windows, Mac OS X e GNU/Linux.</tip>
--- a/share/hedgewars/Data/Locale/tips_pl.xml	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/tips_pl.xml	Sun Mar 24 14:34:27 2024 -0400
@@ -11,7 +11,7 @@
     <tip>Hedgewars jest darmową grą o otwartym kodzie, którą tworzymy w naszym wolnym czasie. Jeśli masz jakiś problem, zapytaj na naszym forum lub odwiedź nasz kanał IRC!</tip>
     <tip>Hedgewars jest darmową grą o otwartym kodzie, którą tworzymy w naszym wolnym czasie. Jeśli ją lubisz, wspomóż nas małą wpłatą lub wnieś w nią trochę własnej pracy!</tip>
     <tip>Hedgewars jest darmową grą o otwartym kodzie, którą tworzymy w naszym wolnym czasie. Jeśli tylko chcesz, rozdaj ją swojej rodzinie i kolegom!</tip>
-    <tip>Hedgewars jest darmową grą o otwartym kodzie, którą tworzymy w naszym wolnym czasie, tylko dla zabawy! Poznaj twórców na <a href="irc://irc.freenode.net/hedgewars">#hedgewars</a>!</tip>
+    <tip>Hedgewars jest darmową grą o otwartym kodzie, którą tworzymy w naszym wolnym czasie, tylko dla zabawy! Poznaj twórców na <a href="irc://irc.libera.chat/hedgewars">#hedgewars</a>!</tip>
     <tip>Od czasu do czasu będą organizowane mistrzostwa. Będą one ogłaszane z wyprzedzeniem na <a href="http://www.hedgewars.org/">http://www.hedgewars.org/</a>.</tip>
     <tip>Hedgewars jest dostępne w wielu językach. Jeśli brakuje tłumaczenia w twoim języku bądź jest ono niekompletne, nie bój się z nami skontaktować!</tip>
     <tip>Hedgewars może być uruchomione na różnych systemach operacyjnych, takich jak Microsoft Windows, Mac OS X, oraz GNU/Linux.</tip>
--- a/share/hedgewars/Data/Locale/tips_ru.xml	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/tips_ru.xml	Sun Mar 24 14:34:27 2024 -0400
@@ -13,7 +13,7 @@
     <tip>Hedgewars - это открытое и свободное программное обеспечение, которое мы создаём в наше свободное время. Если у вас возникают вопросы, задайте их на нашем форуме или посетите наш IRC канал!</tip>
     <tip>Hedgewars - это открытое и свободное программное обеспечение, которое мы создаём в наше свободное время. Если вам понравилась игра, помогите нам денежным вознаграждением или вкладом в виде вашей работы!</tip>
     <tip>Hedgewars - это открытое и свободное программное обеспечение, которое мы создаём в наше свободное время. Распространяйте его среди друзей и членов семьи!</tip>
-    <tip>Hedgewars - это открытое и свободное программное обеспечение, которое мы создаём в наше свободное время в своё удовольствие! Встретиться с разработчиками можно тут <a href="irc://irc.freenode.net/hedgewars">#hedgewars</a>!</tip>
+    <tip>Hedgewars - это открытое и свободное программное обеспечение, которое мы создаём в наше свободное время в своё удовольствие! Встретиться с разработчиками можно тут <a href="irc://irc.libera.chat/hedgewars">#hedgewars</a>!</tip>
     <tip>Время от времени проводятся официальные турниры. Предстоящие события анонсируются на <a href="https://www.hedgewars.org/">https://www.hedgewars.org/</a> за несколько дней.</tip>
     <tip>Hedgewars доступен на многих языках. Если русский перевод устарел или содержит ошибки, сообщите нам или последнему переводчику в списке!</tip>
     <tip>Hedgewars запускается на множестве различных операционных систем, включая Microsoft Windows, Mac OS и Linux.</tip>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Locale/tips_zh_CN.xml	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,91 @@
+<!-- This is not xml actually, but it looks and behaves like it.
+     Including an xml library would need too much resources.
+     Tips between the platform specific tags are shown only on those platforms.
+     Do not escape characters or use the CDATA tag. -->
+<tips>
+    <tip>选择相同颜色作为一个战队,你们仍然控制自己的刺猬,但会一起输赢</tip>
+    <tip>一些武器伤害很低,在合适的情况下,它们会更具破坏性。试着用沙漠之鹰把几个刺猬打下水。</tip>
+    <tip>如果你不确定要怎么做,并且不想浪费武器,跳过这个回合。但别花掉太多时间,因为会进入突然死亡!</tip>
+    <tip>想要节省绳索吗?在空中放手并再次发射,只要你没接触地面或射空,就能重复利用绳索!</tip>
+    <tip>如果你不想让别人在官方服务器上使用你喜欢的昵称,在官网注册一个账号 <a href="https://www.hedgewars.org/">https://www.hedgewars.org/</a>.</tip>
+    <tip>如果你对默认玩法感到无聊,试试任务模式,它们会给你提供不一样的玩法</tip>
+    <tip>游戏会默认录制最后一场比赛作为 demo,选择“观看 demo”进行播放或管理</tip>
+    <tip>刺猬战争是我们在空余时间做出的开源免费软件。如果你有问题,在我们的论坛询问,或访问IRC房间!</tip>
+    <tip>刺猬战争是我们在空余时间做出的开源免费软件。如果你喜欢它,可以给我们捐赠,或贡献自己的工作!</tip>
+    <tip>刺猬战争是我们在空余时间做出的开源免费软件。如果你喜欢就和家人朋友分享它!</tip>
+    <tip>刺猬战争是我们在空余时间做出的开源免费软件,只为好玩!在这里与开发人员会面 <a href="irc://irc.libera.chat/hedgewars">#hedgewars</a>!</tip>
+    <tip>游戏不时会举办赛事,官网会提前公布即将举办的活动 <a href="https://www.hedgewars.org/">https://www.hedgewars.org/</a>.</tip>
+    <tip>刺猬战争提供多种语言,如果你使用的语言翻译缺失或过时,请联系我们!</tip>
+    <tip>刺猬战争能在多个操作系统上运行,包括 Microsoft Windows, macOS and GNU/Linux.</tip>
+    <tip>永远记住你可以在本地或网络游戏建立自己的游戏。你不会受限于“简单游戏”选项</tip>
+    <tip>在游戏开始前连接一个或多个手柄,就能分配控制到你的队伍</tip>
+    <tip>适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。</tip>
+    <tip>如果你的显卡不能提供硬件加速 OpenGL,尝试启用低质量模式来提升表现</tip>
+    <tip>如果你的显卡不能提供硬件加速 OpenGL,尝试更新相关的驱动</tip>
+    <tip>我们乐于接受建议和建设性反馈,如果你不喜欢某样东西,或有很棒的想法,让我们知道!</tip>
+    <tip>为了您自己的利益,我们希望你在服务器上玩的时候保持礼貌和友好,另外请记住有些玩家未成年!</tip>
+    <tip>特殊游戏模式如“吸血”或 “报应” 能让你开发全新的战术,在自定义游戏里尝试他们!</tip>
+    <tip>请不要在不属于你的电脑上安装刺猬战争(学校、大学、工作等),除非你有权限。我们不想让你惹上麻烦</tip>
+    <tip>刺猬战争很适合在休息时玩一局,只要确保你没添加太多刺猬,或使用超大地图。减少时间和血量会很有帮助</tip>
+    <tip>做这个游戏的时候没伤害任何刺猬</tip>
+    <tip>有三种不同的跳跃方式。连按两次[高跳]来跳高/向后跳</tip>
+    <tip>害怕掉下悬崖?长按[精确]+[左][右]转向且不移动</tip>
+    <tip>一些武器需要特殊策略或大量练习,所以当你射空敌人时不要放弃特定的工具</tip>
+    <tip>大多数武器接触到水就失效,蜜蜂和蛋糕是例外</tip>
+    <tip>旧林堡干酪只能造成小爆炸,然而风会影响臭云,使很多刺猬中毒</tip>
+    <tip>钢琴空袭是最具伤害的空袭,但有个巨大缺点,你会失去执行的刺猬</tip>
+    <tip>蜜蜂枪有点难用,它的转弯半径取决于加速度,所以不要尝试全力发射</tip>
+    <tip>黏性地雷可以创造小型连锁反应,把刺猬打入绝境或水里</tip>
+    <tip>锤子在桥梁或大梁上使用最有效,打中刺猬会穿透地面</tip>
+    <tip>如果你卡在敌方刺猬后面,可以用锤子或其他近战武器解救自己</tip>
+    <tip>蛋糕的最大行走距离取决于它走过的地面,使用[攻击]来提前引爆</tip>
+    <tip>火焰喷射器可以用来挖隧道</tip>
+    <tip>使用燃烧瓶或火焰喷射器,暂时阻止刺猬通过地形</tip>
+    <tip>喜欢刺猬战争?在 <a href="https://www.facebook.com/Hedgewars">Facebook</a> 或 <a href="https://twitter.com/hedgewars">Twitter</a> 关注我们</tip>
+    <tip>你可以画出属于自己的墓碑、帽子、旗帜、地图和主题,但别人需要下载你的作品,才能在网络对战看到你使用的东西(没有则显示默认)</tip>
+    <tip>保持你的显卡驱动为最新版本,避免在玩游戏时出问题</tip>
+    <tip>正还是反?在聊天中输入“/rnd”得到答案,还可以 “/rnd 石头 剪刀 布”</tip>
+    <tip>你可以关联刺猬战争相关文件到游戏,从你最喜欢的文件或网页浏览器启动文件</tip>
+    <tip>哑弹地雷并非无害:虽然它们的定时器坏了,但是受到一定伤害还是会爆炸!</tip>
+    <tip>爱是火热的!使用诱惑来解冻冰冻的刺猬</tip>
+    <tip>油桶冒烟说明它“血量”很低,只要一点伤害就爆炸</tip>
+    <tip>油桶初始血量60,会像刺猬一样受伤,所以需要一点“帮助”才会爆炸</tip>
+    <tip>想要弹得更高?长按[精确]+定时 改变手榴弹和地雷的弹性</tip>
+    <tip>在游戏里忘了目标或修改器?按暂停或退出就能看到它们</tip>
+    <tip>你能拳击、鞭打、锤爆的不只是刺猬</tip>
+    <tip>如果没有另行提及,地雷通常在触发后三秒爆炸</tip>
+    <tip>在国王模式,国王比喽啰更强,更多血量和伤害抗性</tip>
+    <tip>在国王模式,队伍中没有手下时,国王每个回合受到伤害</tip>
+    <tip>鞭子能打到薄墙后面的刺猬和物体</tip>
+    <tip>菜刀的速度越快,伤害越高</tip>
+    <tip>你可以在悬崖丢蛋糕,但必须非常靠近边缘,所以小心点</tip>
+    <tip>使用绳索并放手,在地面滑动推开其他刺猬,这个技术被称为“绳索撞击”</tip>
+    <tip>不要站在结冰的斜坡上,不然你会滑下去。 或者,你可以长按[精确]站着</tip>
+    <tip>在下雪或圣诞的地面, 雪随着时间的推移堆积起来, 除非地面是不可破坏</tip>
+    <tip>在下雪或圣诞的地面要小心,因为大梁是用很滑的冰做的</tip>
+    <tip>撤退时间取决于你用过的武器,有些武器没有撤退时间,立刻终止回合</tip>
+    <tip>用一点技巧,在刺猬下面跳出时,可以击中它</tip>
+    <tip>如果你要从高处跳下,可以在落地前使用升龙拳、冲击钻或正弦枪,取消坠落伤害</tip>
+    <tip>你的刺猬在空中不会跟炮弹发生碰撞</tip>
+    <tip>钻地火箭能钻出一个洞,让狙击枪和沙漠之鹰打进里面,只要你瞄准足够精确</tip>
+    <tip>收集医疗包治疗中毒的刺猬</tip>
+    <tip>你可以用遥控飞机、升龙拳、冲击钻和神风特攻队收集箱子</tip>
+    <tip>使用焊枪时要小心,碰到箱子会爆炸</tip>
+    <tip>浮空雷在回合的前五秒保持被动,然后开始寻找刺猬</tip>
+    <tip>和浮空雷保持距离,一旦它开始追你,没有工具很难逃离</tip>
+    <tip>浮空雷的爆炸定时只有常规地雷的四分之一</tip>
+    <tip>地形上的菜刀受到一次30或更多伤害,有几率掉下去,几率随伤害增加</tip>
+    <tip>留意风向,因为火焰和一些炮弹受风力影响</tip>
+    <tip>使用焊枪推开刺猬和定时器长的地雷</tip>
+    <tip>开着焊枪冲向油桶,是灾难的爆炸性配方</tip>
+    <tip>在聊天中输入 “/help” 获得命令列表,聊天命令能让你使用特殊功能,如投票和嘲讽</tip>
+    <windows-only>
+        <tip>你可以在“My Documents\Hedgewars”找到你的游戏配置文件,备份或随身携带文件,但不要随意手动编辑它们</tip>
+    </windows-only>
+    <mac-only>
+        <tip>你可以在主目录“Library/Application Support/Hedgewars”找到你的游戏配置文件,备份或随身携带文件,但不要随意手动编辑它们</tip>
+    </mac-only>
+    <linux-only>
+        <tip>你可以在主目录“.Hedgewars”找到你的游戏配置文件,备份或随身携带文件,但不要随意手动编辑它们</tip>
+    </linux-only>
+</tips>
--- a/share/hedgewars/Data/Locale/tr.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/tr.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -677,11 +677,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1541,6 +1543,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2851,6 +2854,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/tr.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/tr.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -309,7 +309,7 @@
 02:07=Off bu kutu da ağırmış
 02:07=Buna ihtiyacın olabilir
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 çoook sıkıcı...
 02:08=%1 rahatsız olamazdı
 02:08=%1 tembel bir kirpi
@@ -347,7 +347,7 @@
 02:08=%1 korkak bir ölü
 02:08=%1 uyuya kaldı
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 atış çalışmalı!
 02:09=%1 kendinden nefret ediyor gibi görünüyor
 02:09=%1 yanlış tarafta duruyor!
@@ -508,7 +508,7 @@
 04:50=Biri altta mı saklanıyor?|Matkap saldırısı ile kaz!|Zamanlayıcı ne kadar kazılacağını denetler.
 04:51=Bir çamur topu fırlatarak ücretsiz bir atış kap.|Biraz kokar ancak kirpileri geri sektirir.
 04:52=KULLANILMIYOR
-04:53=Arkadaşlarını savaşta yalnız bırakarak|zaman ve uzaya seyahat et.|Herhangi bir an, Ani Ölüm veya tümü|ölmüşse geri gelmeye hazır ol.|Yadsıma: Ani Ölüm kipinde, tek isen veya|Kralsan çalışmaz.
+04:53=Arkadaşlarını savaşta yalnız bırakarak|zaman ve uzaya seyahat et.|Herhangi bir an, Ani Ölüm veya tümü|ölmüşse geri gelmeye hazır ol.|Yadsıma\: Ani Ölüm kipinde, tek isen veya|Kralsan çalışmaz.
 04:54=TAM DEĞİL
 04:55=Yapışkan tanecikler püskürt.|Köprü yap, düşmanı göm, tünelleri kapat.|Dikkatli ol sana gelmesin!
 04:56=İki satırı düşmanına atabilir, geçişleri|ve tünelleri kapatabilir,|hatta tırmanmak için bile|kullanabilirsin!|Dikkatli ol! Bıçakla oynamak tehlikeli!|Saldır: Daha yüksek hızda atmak için basılı tut (iki kez)
--- a/share/hedgewars/Data/Locale/uk.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/uk.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -676,11 +676,13 @@
 --      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
 --      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
 --      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
+--      ["Flower Power"] = "", -- Basic_Training_-_Rope
 --      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
 --      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
 --      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
 --      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
+--      ["For each kill you win %d seconds."] = "", -- RopeKnocking
 --      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
 --      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
 --      ["Four Eyes"] = "", -- 
@@ -1539,6 +1541,7 @@
 --      ["Oneye"] = "", -- portal
 --      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
 --      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
+--      ["Only one team per clan allowed! Excess teams will be removed."] = "", -- Mutant
 --      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
 --      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
 --      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
@@ -2848,6 +2851,7 @@
 --      ["You have killed all enemies."] = "", -- Big_Armory
 --      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
 --      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
+--      ["You have killed %d of %d hedgehogs (+%d points)."] = "", -- RopeKnocking
 --      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
 --      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
 --      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
--- a/share/hedgewars/Data/Locale/uk.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/uk.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -192,7 +192,7 @@
 02:07=Треба використати з розумом
 02:07=Тобі це знадобиться
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 такий нудний...
 02:08=%1 ледачий їжак
 02:08=%1 безтурботний
@@ -213,7 +213,7 @@
 02:08=%1 все одно не вміє стріляти
 02:08=Я розчарований тобою, %1
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 повинен практикуватися в прицілюванні!
 02:09=%1 ненавидить себе
 02:09=%1 не тим боком взявся за зброю
--- a/share/hedgewars/Data/Locale/zh_CN.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/zh_CN.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -1,2989 +1,2993 @@
 locale = {
-      ["!!!"] = "!!!",
---      ["..."] = "",
---      ["011101000"] = "", -- A_Classic_Fairytale:dragon
---      ["011101001"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:family, A_Classic_Fairytale:journey, A_Classic_Fairytale:queen, A_Classic_Fairytale:shadow, A_Classic_Fairytale:united
---      ["10 weapon schemes"] = "", -- Continental_supplies
---      ["15+%d damage, %d invulnerable left"] = "", -- Continental_supplies
---      ["1-5, Precise + 1-4: Choose structure type"] = "", -- Construction_Mode
---      ["+1 barrel!"] = "", -- Tumbler
---      ["%.1f seconds were remaining."] = "", -- Basic_Training_-_Bazooka
---      ["%.1fs"] = "", -- Racer, TechRacer
---      ["+1 Grenade"] = "", -- Basic_Training_-_Flying_Saucer
---      ["+1 mine!"] = "", -- Tumbler
---      ["+1 point"] = "", -- Mutant
---      ["-1 point"] = "", -- Mutant
---      ["-1 to anyone for a suicide"] = "", -- Mutant
---      ["+1 to the Bottom Feeder for killing anyone"] = "", -- Mutant
---      ["+1 to the Mutant for killing anyone"] = "", -- Mutant
---      ["+2 for becoming the Mutant"] = "", -- Mutant
---      ["30 minutes later..."] = "", -- A_Classic_Fairytale:shadow
---      ["%.3fs"] = "", -- A_Space_Adventure:ice02
---      ["5 additional enemies will be spawned during the game."] = "", -- A_Space_Adventure:fruit01
---      ["5 Deadly Hogs"] = "", -- A_Space_Adventure:death02
---      ["6 more seconds added to the clock"] = "", -- A_Space_Adventure:ice02
---      ["About a month ago, a cyborg came and told us that you're the cannibals!"] = "", -- A_Classic_Fairytale:enemy
---      ["Above-average pilot"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Accuracy Bonus! +15 points"] = "", -- Space_Invasion
---      ["Accuracy bonus: +%d points"] = "", -- Basic_Training_-_Sniper_Rifle
---      ["Achievement gotten: %s"] = "", -- User_Mission_-_RCPlane_Challenge, User_Mission_-_That_Sinking_Feeling, User_Mission_-_Bamboo_Thicket, User_Mission_-_Dangerous_Ducklings, Basic_Training_-_Rope, Tumbler
---      ["A Classic Fairytale"] = "", -- A_Classic_Fairytale:first_blood
---      ["A crate critical to this mission has been destroyed."] = "", -- SimpleMission
---      ["Actually, you aren't worthy of life! Take this..."] = "", -- A_Classic_Fairytale:shadow
---      ["A cy-what?"] = "", -- A_Classic_Fairytale:enemy
---      ["Add %d"] = "", -- HedgeEditor
---      ["Admit what?"] = "", -- A_Classic_Fairytale:queen
---      ["Adventurous"] = "", -- A_Classic_Fairytale:journey
---      ["A frenetic Hedgewars mini-game"] = "", -- Frenzy
---      ["Africa"] = "", -- Continental_supplies
---      ["A frozen adventure"] = "", -- A_Space_Adventure:ice01
---      ["After Leaks A Lot betrayed his tribe, he joined the cannibals..."] = "", -- A_Classic_Fairytale:first_blood
---      ["After that incident he went underground and started working on his plan to steal the device."] = "", -- A_Space_Adventure:moon02
---      ["After the shock caused by the enemy spy, Leaks A Lot and Dense Cloud went hunting to relax."] = "", -- A_Classic_Fairytale:shadow
---      ["After you killed an enemy, you'll lose the weapon that he is named after."] = "", -- A_Space_Adventure:death02
---      ["After you left the moon, my other loyal minions came and resurrected me so I could complete my master plan."] = "", -- A_Space_Adventure:death01
---      ["Again with the 'cannibals' thing!"] = "", -- A_Classic_Fairytale:enemy
---      ["A Hedgewars minigame"] = "", -- Capture_the_Flag
---      ["A Hedgewars mini-game"] = "", -- Racer, Space_Invasion, TechRacer, Tumbler
---      ["A Hedgewars tag game"] = "", -- Mutant
---      ["Ahhh, home, sweet home. Made it in %d seconds."] = "", -- ClimbHome
---      ["Aim at the ceiling and hold [Attack] pressed until the rope attaches."] = "", -- Basic_Training_-_Rope
---      ["Aiming practice"] = "", -- TargetPractice
-      ["Aiming Practice"] = "瞄准练习", --火箭筒、霰弹枪、狙击枪
---      ["Aim: [Up]/[Down]"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Rope
---      ["Air Attack"] = "", -- Construction_Mode
---      ["Air General"] = "", -- Battalion
---      ["Air Mine Placement Mode"] = "", -- HedgeEditor
---      ["AIR MINE PLACEMENT MODE"] = "", -- HedgeEditor
---      ["A leap in a leap"] = "", -- A_Classic_Fairytale:first_blood
---      ["Alex"] = "", -- 
---      ["Alien! I wish to be moved!"] = "", -- A_Classic_Fairytale:queen
---      ["A little gift from the cyborgs"] = "", -- A_Classic_Fairytale:shadow
---      ["Al.Kaholic"] = "", -- 
---      ["All But Last"] = "", -- WxW
---      ["All But Last: You must not solely attack the team with the least health"] = "", -- WxW
---      ["All gone...everything!"] = "", -- A_Classic_Fairytale:enemy
---      ["Allies"] = "", -- A_Space_Adventure:ice01, A_Space_Adventure:ice02
---      ["All right, I'll admit it!"] = "", -- A_Classic_Fairytale:queen
---      ["All right, we just need to get to the other side of the island!"] = "", -- A_Classic_Fairytale:journey
---      ["All right, you got me!"] = "", -- A_Classic_Fairytale:queen
---      ["All the other places are protected by our flight-inhibiting weapons."] = "", -- A_Space_Adventure:fruit01
---      ["All the saucer pilots dream to come here one day in order to compete with the best!"] = "", -- A_Space_Adventure:ice02
---      ["All they do is sit around and judge us!"] = "", -- A_Classic_Fairytale:queen
---      ["All this to please our beloved “elders” … hick …"] = "", -- A_Classic_Fairytale:queen
---      ["All walls touched!"] = "", -- WxW
---      ["All you do is take long walks when everyone else works."] = "", -- A_Classic_Fairytale:queen
---      ["All your hedgehogs must be above the marked height!"] = "", -- A_Classic_Fairytale:family
---      ["Also, you should know that the only place where you can fly is the left-most part of this area."] = "", -- A_Space_Adventure:fruit01
---      ["Always being considered weak and fragile."] = "", -- A_Classic_Fairytale:queen
---      ["Amazing! I was never beaten in a race before!"] = "", -- A_Space_Adventure:moon02
---      ["Ammo depleted!"] = "", -- Space_Invasion
---      ["Ammo: %d"] = "", -- Tumbler
---      ["Ammo is reset at the end of your turn."] = "",
---      ["Ammo Limit: Hogs can’t have more than 1 ammo per type"] = "", -- Highlander
---      ["Ammo Maniac! +5 points!"] = "", -- Space_Invasion
---      ["A mysterious Box"] = "", -- Basic_Training_-_Movement
---      ["And how am I alive?!"] = "", -- A_Classic_Fairytale:enemy
---      ["And I just forgot the checkpoint of my main mission. Great, just great!"] = "", -- A_Space_Adventure:cosmos
---      ["… and I think they are up to something. Something bad!"] = "", -- A_Classic_Fairytale:epil
---      ["Andrey"] = "", -- 
---      ["And so happened that Leaks A Lot failed to complete the challenge! He landed, pressured by shame ..."] = "", -- A_Classic_Fairytale:first_blood
---      ["And so it began..."] = "", -- A_Classic_Fairytale:first_blood
---      ["And so the cyborgs took over the island."] = "", -- A_Classic_Fairytale:queen
---      ["...and so the cyborgs took over the world..."] = "", -- A_Classic_Fairytale:shadow
---      ["And so they discovered that cyborgs weren't invulnerable..."] = "", -- A_Classic_Fairytale:journey
---      ["… and then I took a stroll …"] = "", -- A_Classic_Fairytale:epil
---      ["And what do they do in the meantime? Nothing!"] = "", -- A_Classic_Fairytale:queen
---      ["And where's all the weed?"] = "", -- A_Classic_Fairytale:dragon
---      ["And you believed me? Oh, god, that's cute!"] = "", -- A_Classic_Fairytale:journey
---      ["And you need to move to the top!"] = "", -- Basic_Training_-_Movement
---      ["An experimental editing tool for missions and more"] = "", -- HedgeEditor
---      ["Anno 1032"] = "", -- Continental_supplies
---      ["Anno 1032: [The explosion will make a strong push ~ Wide range, wont affect hogs close to the target]"] = "", -- Continental_supplies
---      ["An object has been destroyed before it took enough damage."] = "", -- SimpleMission
---      ["Antarctica"] = "", -- Continental_supplies
---      ["Antarctic summer: Every 4th turn you get 1 girder, 1 mudball, 2 sine guns and 1 portable portal device."] = "", -- Continental_supplies
---      ["Antarctic summer: - Will give you one girder/mudball and two sineguns/portals every fourth turn."] = "", -- Continental_supplies
---      ["Anti-Gravity Device Part (+1)"] = "", -- A_Space_Adventure:desert01, A_Space_Adventure:fruit02, A_Space_Adventure:ice01
---      ["Anton"] = "", -- 
---      ["An unexpected event!"] = "", -- A_Space_Adventure:cosmos
---      ["Anyway, the aliens accept me for who I am."] = "", -- A_Classic_Fairytale:queen
---      ["A random hedgehog will inherit the weapons of his deceased team-mates."] = "", -- A_Space_Adventure:death02
---      ["Arashi"] = "", -- 
---      ["Area"] = "", -- Continental_supplies
---      ["Areas surrounded by a green dashed outline are portal-proof and repel portals."] = "", -- A_Space_Adventure:final
---      ["Areas surrounded by a security border are indestructible."] = "", -- A_Space_Adventure:final
---      ["Areas with a green dashed outline are portal-proof."] = "", -- A_Space_Adventure:final
---      ["Areas with a security outline are indestructible."] = "", -- A_Space_Adventure:final
---      ["Are we there yet?"] = "", -- A_Classic_Fairytale:shadow
---      ["Are you accusing me of something?"] = "", -- A_Classic_Fairytale:backstab
---      ["Are you helping the aliens?"] = "", -- A_Classic_Fairytale:queen
---      ["Are you saying that many of us have died for your entertainment?"] = "", -- A_Classic_Fairytale:enemy
---      ["Argh, the boredom!"] = "", -- A_Classic_Fairytale:queen
---      ["Artur Detour"] = "", -- A_Classic_Fairytale:queen
---      ["As a reward for your performance, here's some new technology!"] = "", -- A_Classic_Fairytale:dragon
---      ["Ash"] = "", -- 
---      ["A Shoppa minigame"] = "", -- WxW
---      ["Asia"] = "", -- Continental_supplies
---      ["As long you don't touch the ground, you can|re-use the same rope as often as you like."] = "", -- Basic_Training_-_Rope
---      ["A smuggler! Prepare for battle"] = "", -- A_Space_Adventure:desert01
---      ["A Space Adventure"] = "", -- A_Space_Adventure:desert01, A_Space_Adventure:moon01
---      ["Assault Team"] = "", -- A_Classic_Fairytale:backstab
---      ["Asteroid"] = "", -- Big_Armory
---      ["As the ammo is sparse, you might want to reuse ropes while mid-air."] = "", -- A_Classic_Fairytale:dragon
---      ["As the challenge was completed, Leaks A Lot set foot on the ground..."] = "", -- A_Classic_Fairytale:first_blood
---      ["As you are more experienced, I want you to lead them to battle."] = "", -- A_Space_Adventure:fruit01
---      ["As you can see I have survived our last encounter and I had time to plot my master plan!"] = "", -- A_Space_Adventure:death01
---      ["As you can see, there is no way to get on the other side!"] = "", -- A_Classic_Fairytale:dragon
---      ["As you probably noticed, these rubber bands|are VERY elastic. Hedgehogs and many other|things will bounce off without taking any damage."] = "", -- Basic_Training_-_Movement
---      ["As you've seen, the dropped grenade roughly fell into your flying direction."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Athlete"] = "", -- Battalion
---      ["Attack: Activate"] = "", -- Racer
---      ["Attack Captain Lime before he attacks back."] = "", -- A_Space_Adventure:fruit02
---      ["Attack From Rope: %s"] = "", -- WxW
---      ["Attack From Rope: You may only attack from a rope."] = "", -- WxW
---      ["Attack rule: %s"] = "", -- WxW
---      ["Attack: Select this continent"] = "", -- Continental_supplies
---      ["Attack: [Space]"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope
---      ["Attack: Tap the [Bomb]"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope, A_Classic_Fairytale:first_blood, A_Classic_Fairytale:shadow
---      ["Attack the assassins before they attack back."] = "", -- A_Space_Adventure:fruit02
---      ["Attack: Throw ball"] = "", -- Knockball
---      ["At the end of the game your health was %d."] = "", -- A_Space_Adventure:ice01
---      ["At the start of the game each enemy hog has only the weapon that he is named after."] = "", -- A_Space_Adventure:death02
---      ["Australia"] = "", -- Continental_supplies
---      ["Available weapon specials:"] = "", -- Continental_supplies
---      ["Average pilot"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Avoid bazookas, red and blue invaders."] = "", -- Space_Invasion
---      ["Axes"] = "", -- Bazooka_Battlefield
---      ["Aye! Fellow! Let me exit this chamber of doom!"] = "", -- A_Classic_Fairytale:epil
---      ["Back Breaker"] = "", -- A_Classic_Fairytale:backstab
---      ["Back in the village, after telling the villagers about the threat..."] = "", -- A_Classic_Fairytale:united
---      ["Back in the village, the two tribes finally started to live in harmony."] = "", -- A_Classic_Fairytale:epil
---      ["Back Jump: [Backspace] ×2"] = "", -- Basic_Training_-_Movement
---      ["Back Jump: Double-tap the [Curvy Arrow]"] = "", -- Basic_Training_-_Movement
---      ["Back Jumping (1/2)"] = "", -- Basic_Training_-_Movement
---      ["Back Jumping (2/2)"] = "", -- Basic_Training_-_Movement
---      ["Backstab"] = "", -- A_Classic_Fairytale:backstab
---      ["Backwards jump: Press [Backspace] twice"] = "", -- A_Classic_Fairytale:first_blood
---      ["Backwards jump: Tap the [Curvy Arrow] twice"] = "", -- A_Classic_Fairytale:first_blood
---      ["Bacon"] = "", -- 
---      ["Bad Guy"] = "", -- User_Mission_-_The_Great_Escape
---      ["Badmad"] = "", -- portal
---      ["Bad Team"] = "", -- User_Mission_-_The_Great_Escape
---      ["Bad timing"] = "", -- A_Space_Adventure:fruit01
---      ["Baggy"] = "", -- 
---      ["Balrog"] = "", -- 
---      ["Bamboo Thicket"] = "",
---      ["Barrel Launcher"] = "",
---      ["Barrel Placement Mode"] = "", -- Construction_Mode
---      ["BARREL PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Barrier unlocked!"] = "", -- Basic_Training_-_Rope
---      ["Baseballbat"] = "", -- Continental_supplies
---      ["Baseball bat specials cannot be used close to other hogs."] = "", -- Continental_supplies
---      ["Baseball Bat with Ball"] = "", -- Knockball
---      ["Base damage has been modified to 12 per shot."] = "", -- Battalion
---      ["Based on what you've learned, destroy the target on the girder and as always, land safely!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Basically this is a combination of diving and launching."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Basic Bazooka Training"] = "", -- Basic_Training_-_Bazooka
---      ["Basic Grenade Training"] = "", -- Basic_Training_-_Grenade
---      ["Basic Movement Training"] = "", -- Basic_Training_-_Movement
---      ["Basic Rope Training"] = "", -- Basic_Training_-_Rope
---      ["Basic Training"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope
---      ["Basketball"] = "", -- Basketball
-      ["Bat balls at your enemies and|push them into the sea!"] = "发射棒球将敌人击打入水",
---      ["Battalion"] = "", -- Battalion
---      ["Battle Starts Now!"] = "", -- A_Space_Adventure:fruit01
---      ["Batty"] = "", -- 
-      ["Bat your opponents through the|baskets and out of the map!"] = "把敌人击出场地——对准栏框",
---      ["Bazooka Battlefield"] = "", -- Bazooka_Battlefield
---      ["Bazooka Master"] = "", -- Basic_Training_-_Bazooka
---      ["Bazookas are influenced by wind."] = "", -- Basic_Training_-_Bazooka
-      ["Bazooka Training"] = "火箭筒训练",
---      ["Bearded Beast"] = "", -- 
---      ["Be careful, the future of Hogera is in your hands!"] = "", -- A_Space_Adventure:cosmos
---      ["Be careful, your fuel is limited from now on!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Be careful, your gadgets won't work in the bandit area. You should get an ice gun."] = "", -- A_Space_Adventure:ice01
---      ["Beep Loopers"] = "", -- A_Classic_Fairytale:queen
---      ["Beginner"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Behind these trees on the east side there is Secret Base 17."] = "", -- A_Space_Adventure:cosmos
---      ["Below-average pilot"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Besides, why would I choose certain death?"] = "", -- A_Classic_Fairytale:queen
-      ["Best laps per team: "] = "每一队最佳速度:",
---      ["Best team times: "] = "", -- Racer, TechRacer
---      ["Better get yourself another health crate to heal your wounds."] = "", -- Basic_Training_-_Movement
---      ["Better luck next time!"] = "", -- ClimbHome
---      ["Better Safe Than Sorry"] = "", -- A_Space_Adventure:desert02
---      ["Beware, any damage taken will stay until you complete the moon's main mission"] = "", -- A_Space_Adventure:cosmos
---      ["Beware of mines: They explode after 3 seconds."] = "", -- A_Classic_Fairytale:journey
---      ["Beware of mines: They explode after 5 seconds."] = "", -- A_Classic_Fairytale:journey
---      ["Beware, though! If you are slow, you die!"] = "", -- A_Classic_Fairytale:dragon
---      ["Beware, though! Many smugglers come often to explore these tunnels and scavenge whatever valuable items they can find."] = "", -- A_Space_Adventure:desert01
---      ["Beware, though, you will only be able to move slowly through the water."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Big Armory"] = "", -- Big_Armory
---      ["Billy Frost"] = "", -- A_Space_Adventure:ice01
---      ["Bingo"] = "", -- 
---      ["Bio-Filter: Aggressively removes enemies."] = "", -- Construction_Mode
---      ["Bio-Filter"] = "", -- Construction_Mode
---      ["Biomechanic Team"] = "", -- A_Classic_Fairytale:family
---      ["Bitter"] = "", -- 
---      ["Blanka"] = "", -- 
---      ["Blender"] = "", -- A_Classic_Fairytale:family
---      ["Bloodpie"] = "", -- A_Classic_Fairytale:backstab
---      ["Bloodrocutor"] = "", -- A_Classic_Fairytale:shadow
---      ["Bloodsucker"] = "", -- A_Classic_Fairytale:shadow
---      ["Blue"] = "", -- 
---      ["Blue Team"] = "", -- User_Mission_-_Dangerous_Ducklings
---      ["Bob"] = "", -- A_Space_Adventure:cosmos
---      ["Bobo"] = "", -- User_Mission_-_Nobody_Laugh
---      ["Bone Jackson"] = "", -- A_Classic_Fairytale:backstab
---      ["Bonely"] = "", -- A_Classic_Fairytale:shadow
---      ["Bones"] = "", -- 
---      ["Boom!"] =
---      ["BOOM! BOOM! BOOM! %s are the masters of destruction with %d destroyed invaders."] = "", -- Space_Invasion
---      ["Boom! %s has destroyed %d invaders."] = "", -- Space_Invasion
---      ["BOOM! %s really didn't like the invaders, so they decided to destroy as much as %d of them."] = "", -- Space_Invasion
---      ["Boris"] = "", -- A_Space_Adventure:moon01
---      ["Boss defeated! +30 points!"] = "", -- Space_Invasion
---      ["Boss Slayer! +25 points!"] = "", -- Space_Invasion
---      ["Both Barrels"] = "", -- 
---      ["Both your hedgehogs must survive."] = "", -- User_Mission_-_Teamwork_2, User_Mission_-_Teamwork
---      ["Bottom Feeder"] = "", -- Mutant
---      ["Bounciness"] = "", -- Basic_Training_-_Grenade
---      ["Bouncing Bomb"] = "", -- Basic_Training_-_Bazooka
---      ["Bouncy Boomerang"] = "", -- Continental_supplies
---      ["Bouncy Girder: [4]"] = "", -- HedgeEditor
---      ["Bouncy Land: [4]"] = "", -- HedgeEditor
---      ["Bouncy Land"] = "", -- HedgeEditor
---      ["Bounty: Get 6 weapons for each kill (even on own hogs)."] = "", -- Continental_supplies
---      ["Bozo"] = "", -- 
---      ["Brain Blower"] = "", -- A_Classic_Fairytale:journey
---      ["Brainiac"] = "", -- A_Classic_Fairytale:epil, A_Classic_Fairytale:first_blood, A_Classic_Fairytale:shadow
---      ["Brainila"] = "", -- A_Classic_Fairytale:united
---      ["Brain Stu"] = "", -- A_Classic_Fairytale:united
---      ["Brain Teaser"] = "", -- A_Classic_Fairytale:backstab
---      ["Brigadier Briggs"] = "", -- 
---      ["Bruce"] = "", -- A_Space_Adventure:moon01
---      ["Brutal Lily"] = "", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil
---      ["Brutus"] = "", -- A_Classic_Fairytale:backstab
---      ["Build a fortress and destroy your enemy."] = "", -- Construction_Mode
---      ["Build an awesome race track by placing|waypoints which the hedgehogs have to|touch in any order to finish a round."] = "", -- Racer
---      ["Build a track and race."] = "",
---      ["Builder"] = "", -- Battalion
---      ["Build one of multiple different structures|to aid you in victory, at the cost of energy."] = "", -- Construction_Mode
---      ["Bullseye"] = "", -- A_Classic_Fairytale:dragon
---      ["Bunny"] = "", -- 
---      ["burp"] = "", -- 
---      ["Bushes"] = "", -- Bazooka_Battlefield
---      ["Bushi"] = "", -- 
---      ["Buster"] = "", -- 
---      ["But it proved to be no easy task!"] = "", -- A_Classic_Fairytale:dragon
---      ["But I want my sandals!"] = "", -- A_Classic_Fairytale:queen
---      ["But one thing's for sure:"] = "", -- A_Space_Adventure:final
---      ["But that's impossible!"] = "", -- A_Classic_Fairytale:backstab
---      ["But the ones alive are stronger in their heart!"] = "", -- A_Classic_Fairytale:enemy
---      ["But … they kidnapped you!"] = "", -- A_Classic_Fairytale:queen
---      ["But...we died!"] = "", -- A_Classic_Fairytale:backstab
---      ["But where can we go?"] = "", -- A_Classic_Fairytale:united
---      ["But why did you betray us?!"] = "", -- A_Classic_Fairytale:queen
---      ["But why would they help us?"] = "", -- A_Classic_Fairytale:backstab
---      ["But you're cannibals. It's what you do."] = "", -- A_Classic_Fairytale:enemy
---      ["But you said you'd let her go!"] = "", -- A_Classic_Fairytale:journey
---      ["But you saved me!"] = "", -- A_Classic_Fairytale:queen
---      ["By the way, not only bazookas will bounce on water, but also greandes and many other things."] = "", -- Basic_Training_-_Bazooka
---      ["By the way, not only bazookas will bounce on water, but also grenades and many other things."] = "", -- Basic_Training_-_Bazooka
---      ["By the way, you can turn around without walking|by holding down Precise when you hit a walk control."] = "", -- Basic_Training_-_Movement
---      ["C-1"] = "", -- portal
---      ["C-2"] = "", -- portal
---      ["Callahan"] = "", -- 
---      ["Call me Beep! Well, 'cause I'm such a nice...person!"] = "", -- A_Classic_Fairytale:family
---      ["Cannibals"] = "", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:first_blood
---      ["Cannibal Sentry"] = "", -- A_Classic_Fairytale:journey
---      ["Cannibals?! You're the cannibals!"] = "", -- A_Classic_Fairytale:enemy
---      ["Can you do it?"] = "", -- A_Space_Adventure:ice02
---      ["Cappy"] = "", -- Basic_Training_-_Movement
---      ["Captain Lime"] = "", -- A_Space_Adventure:fruit01, A_Space_Adventure:fruit02
---      ["Captain Lime offered his help if you assist him in battle."] = "", -- A_Space_Adventure:fruit01
---      ["Capture The Flag"] = "", -- Capture_the_Flag, CTF_Blizzard
---      ["Careful, hedgehogs can't swim!"] = "", -- Basic_Training_-_Movement
---      ["Careless"] = "",
---      ["Carol"] = "", -- A_Classic_Fairytale:family
---      ["Challenge completed!"] = "", -- User_Mission_-_Rope_Knock_Challenge, User_Mission_-_That_Sinking_Feeling, SpeedShoppa
---      ["CHALLENGE COMPLETE"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Challenge failed!"] = "", -- SpeedShoppa
---      ["Challenge objectives"] = "", -- A_Space_Adventure:death02, A_Space_Adventure:desert03, A_Space_Adventure:final, A_Space_Adventure:fruit03, A_Space_Adventure:moon02
---      ["Challenge over!"] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["Challenge"] = "", -- User_Mission_-_RCPlane_Challenge, User_Mission_-_Rope_Knock_Challenge, User_Mission_-_That_Sinking_Feeling, SpeedShoppa, ClimbHome
---      ["Change bounciness: Tap [B]"] = "", -- Basic_Training_-_Grenade
---      ["Change Content: [Left], [Right]"] = "", -- HedgeEditor
---      ["Change detonation timer: Tap the [Clock]"] = "", -- Basic_Training_-_Grenade, A_Classic_Fairytale:shadow
---      ["Change direction: [Left]/[Right]"] = "", -- Basic_Training_-_Grenade
---      ["Change Health Boost: [Left], [Right]"] = "", -- HedgeEditor
---      ["Change Health: [Left], [Right]"] = "", -- HedgeEditor
---      ["Change modification mode: [Left], [Right]"] = "", -- HedgeEditor
---      ["Change Placement Mode: [Up], [Down]"] = "", -- HedgeEditor
---      ["Change Rotation: [Left], [Right]"] = "", -- HedgeEditor
---      ["Change Sprite Frame: [Precise]+[Left], [Precise]+[Right]"] = "", -- HedgeEditor
---      ["Change Sprite: [Left], [Right]"] = "", -- HedgeEditor
---      ["Change Timer: [Left], [Right]"] = "", -- HedgeEditor
---      ["Change weapon: [Long jump] or [Slot 1]-[Slot 3]"] = "", -- Tumbler
---      ["Charmander"] = "", -- 
---      ["Chasing the blue hog"] = "", -- A_Space_Adventure:moon02
---      ["Cheater"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Checkpoint reached!"] = "", -- A_Space_Adventure:cosmos, A_Space_Adventure:ice01, A_Space_Adventure:moon01
---      ["Chef"] = "", -- Battalion, HedgeEditor
---      ["Chester"] = "", -- 
---      ["Chicken"] = "", -- 
---      ["Chief Sandologist"] = "", -- A_Space_Adventure:desert01
---      ["Chikorita"] = "", -- 
---      ["Choose location: Left click"] = "", -- A_Classic_Fairytale:shadow
---      ["Choose location: Tap the [Target] button, then tap on the spot you want to choose"] = "", -- A_Classic_Fairytale:shadow
---      ["Choose Selection/Placement/Deletion: [Left], [Right]"] = "", -- HedgeEditor
---      ["Choose your continent wisely, as your decision will be permanent."] = "", -- Continental_supplies
---      ["Choose your side! If you want to join the strange man, walk up to him.|Otherwise, walk away from him. If you decide to att...nevermind..."] = "", -- A_Classic_Fairytale:shadow
---      ["Chunli"] = "", -- 
---      ["Clark Kent"] = "", -- 
---      ["Cleaver"] = "", -- Construction_Mode
---      ["Cleaver Placement Mode"] = "", -- Construction_Mode
---      ["CLEAVER PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Climb Home"] = "", -- ClimbHome
---      ["Closing in"] = "", -- A_Classic_Fairytale:queen
---      ["Clown"] = "", -- HedgeEditor
---      ["Clowns"] = "", -- User_Mission_-_Nobody_Laugh
---      ["Cluck-cluck time: [Fire an egg ~ Sabotages and cures poison ~ Cannot be fired close to another hog]"] = "", -- Continental_supplies
---      ["Clumsy"] = "",
---      ["Cluster Bomb Training"] = "", -- Basic_Training_-_Cluster_Bomb
---      ["Collateral Damage"] = "", -- A_Classic_Fairytale:journey
---      ["Collateral Damage II"] = "", -- A_Classic_Fairytale:journey
---      ["- Collect all the blue crates"] = "", -- HedgeEditor
---      ["Collect all the crates, but remember, our time in this life is limited!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Collect or destroy all the health crates."] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Collect or destroy the final crate to finish the training."] = "", -- Basic_Training_-_Flying_Saucer
---      ["- Collect the blue crate"] = "", -- HedgeEditor
---      ["Collect the crate and attack!"] = "", -- WxW
---      ["Collect the crate on the right."] = "", -- A_Classic_Fairytale:first_blood
---      ["Collect the crates within the time limit!|If you fail, you'll have to try again."] = "", -- A_Classic_Fairytale:first_blood
---      ["Collect the first crate to begin!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Collect the freezer and get the device part from Thanta."] = "", -- A_Space_Adventure:ice01
---      ["Collect the green and purple invaders."] = "", -- Space_Invasion
---      ["Collect the remaining crates to complete the training."] = "", -- Basic_Training_-_Movement
---      ["Collect the weapon crate and drop|a grenade from rope to destroy the barrels."] = "", -- Basic_Training_-_Rope
---      ["Collect the weapon crate at the left coast!"] = "", -- A_Classic_Fairytale:journey
---      ["Color Squad"] = "", -- 
---      ["Come closer and die! … burp …"] = "", -- A_Classic_Fairytale:queen
---      ["Come closer, so that your training may continue!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Comet"] = "", -- Big_Armory
---      ["Commander"] = "", -- HedgeEditor
---      ["Compete to use as few planes as possible!"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Complete all main and side missions to complete the spacetrip mission."] = "", -- A_Space_Adventure:cosmos
---      ["Complete the obstacle course."] = "", -- Basic_Training_-_Movement
---      ["Complete the remaining side missions to complete this mission."] = "", -- A_Space_Adventure:cosmos
---      ["Complete the track as fast as you can!"] = "",
---      ["Completion time: %.2fs"] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["Comrades! Sail me away!"] = "", -- A_Classic_Fairytale:queen
---      ["Configuration accepted."] = "", -- WxW
---      ["Configuration phase"] = "", -- WxW
---      ["Congrats! You won!"] = "", -- A_Space_Adventure:moon01
---      ["Congratulations"] = "", -- Basic_Training_-_Rope
---      ["Congratulations, you acquired the device part!"] = "", -- A_Space_Adventure:ice01
---      ["Congratulations, you are the best!"] = "", -- A_Space_Adventure:desert03
---      ["Congratulations, you are the fastest!"] = "", -- A_Space_Adventure:moon02
---      ["Congratulations, you collected the device part!"] = "", -- A_Space_Adventure:ice01
---      ["Congratulations! You have completed the obstacle course!"] = "", -- Basic_Training_-_Movement
---      ["Congratulations! You have destroyed all targets within the time."] = "", -- TargetPractice
---      ["Congratulations, you have saved Hogera!"] = "", -- A_Space_Adventure:final
---      ["Congratulations! You have truly mastered this challenge! Don't forget to save the demo."] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Congratulations! You've completed the Basic Rope Training!"] = "", -- Basic_Training_-_Rope
-      ["Congratulations! You've eliminated all targets|within the allowed time frame."] = "恭喜!你在规定时限内清零全部目标。", --Bazooka, Shotgun, SniperRifle
---      ["Congratulations! You win."] = "", -- Big_Armory
---      ["Congratulations, you won!"] = "", -- A_Space_Adventure:death01, A_Space_Adventure:death02, A_Space_Adventure:desert01, A_Space_Adventure:desert02, A_Space_Adventure:fruit02, A_Space_Adventure:fruit03, A_Space_Adventure:ice02
-      ["Congratulations!"] = "恭喜",
---      ["Conquering the galaxy"] = "", -- A_Space_Adventure:cosmos
---      ["CONSTRUCTION MODE"] = "", -- Construction_Mode
---      ["Construction Mode tool"] = "", -- Construction_Mode
---      ["Construction Station: Allows placement of|    girders, rubber, mines, sticky mines|    and barrels."] = "", -- Construction_Mode
---      ["Construction Station"] = "", -- Construction_Mode
---      ["Continental supplies"] = "", -- Continental_supplies
---      ["Continent selection"] = "", -- Continental_supplies
---      ["Continents: Select a continent at the beginning."] = "", -- Continental_supplies
---      ["Control"] = "", -- Control
-      ["Control pillars to score points."] = "控制支柱得分",
---      ["Controls: Hold the Attack key (space by default) to|fire the rope, then, once attached use:|Left and Right to swing the rope;|Up and Down to contract and expand."] = "", -- Basic_Training_-_Rope
---      ["Copper"] = "", -- User_Mission_-_Nobody_Laugh
---      ["Corn"] = "", -- A_Space_Adventure:fruit01
---      ["Corporal Calvin"] = "", -- 
---      ["Corporationals"] = "", -- A_Classic_Fairytale:queen
---      ["Corpsemonger"] = "", -- A_Classic_Fairytale:shadow
---      ["Corpse Thrower"] = "", -- A_Classic_Fairytale:epil
---      ["Cost"] = "", -- Construction_Mode
---      ["Cost: %d"] = "", -- Construction_Mode
---      ["Cotton Needer"] = "", -- Mutant
---      ["Count Hogula"] = "", -- 
---      ["Coward"] = "", -- A_Classic_Fairytale:queen
---      ["Crate Before Attack: %s"] = "", -- WxW
---      ["Crate Before Attack: You must collect a crate before you can attack."] = "", -- WxW
---      ["Crate Placer"] = "", -- Construction_Mode
---      ["Crates: Crates drop more often with a higher chance of bonus ammo"] = "", -- Battalion
---      ["Crates: Crates drop randomly and may be empty"] = "", -- Battalion
---      ["Crates: Crates drop randomly with chance of being empty"] = "", -- Battalion
---      ["Crates left: %d"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Crates Left:"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Crates per turn: %d"] = "", -- WxW
---      ["Crazy Gravity: Gravity randomly changes within a range from %i%% to %i%% with a period of %s"] = "", -- Gravity
---      ["Crazy Runner"] = "", -- A_Space_Adventure:moon02
---      ["Cricket Time"] = "", -- Continental_supplies
---      ["Cricket time: [Fire away a 1 sec mine! ~ Cannot be fired close to another hog]"] = "", -- Continental_supplies
---      ["CTF_Blizzard"] = "", -- CTF_Blizzard
---      ["Cursor: Build structure"] = "", -- Construction_Mode
---      ["Cursor: Mode action"] = "", -- HedgeEditor
---      ["|Cursor: Place crate"] = "", -- Construction_Mode
---      ["Cursor: Place waypoint"] = "", -- Racer
---      ["Cutlass Cain"] = "", -- 
-      ["Cybernetic Empire"] = "自动化帝国",
---      ["Cyborg. It's what the aliens call themselves."] = "", -- A_Classic_Fairytale:enemy
---      ["Dahmer"] = "", -- A_Classic_Fairytale:backstab
---      ["Daisy"] = "", -- 
-      ["DAMMIT, ROOKIE! GET OFF MY HEAD!"] = "新人,别让我看到",
-      ["DAMMIT, ROOKIE!"] = "新人",
---      ["+%d ammo"] = "", -- Battalion
---      ["+%d Ammo"] = "", -- Space_Invasion
-      ["Dangerous Ducklings"] = "危险的小鸭子",
---      ["Dark Strawberry"] = "", -- A_Space_Adventure:fruit02
---      ["+%d"] = "", -- Battalion
---      ["%d crate(s) remaining"] = "", -- SpeedShoppa
---      ["%d damage was dealt in this game."] = "", -- Mutant
---      ["%d / %d"] = "", -- Battalion
---      ["%d | %d"] = "", -- Mutant
---      ["%d/%d"] = "", -- SpeedShoppa
---      ["Deadly Grape"] = "", -- A_Space_Adventure:fruit02
---      ["Deadweight"] = "",
---      ["Deal 15 damage + 10% of your hog’s health to all hogs around you and get 2/3 back."] = "", -- Continental_supplies
---      ["Deals 15 damage to all enemies in the circle."] = "", -- Continental_supplies
---      ["Deer"] = "", -- 
---      ["Defeat all enemies!"] = "", -- portal
---      ["Defeat!"] = "", -- HedgeEditor
---      ["Defeat Professor Hogevil!"] = "", -- A_Space_Adventure:death01
---      ["Defeat the cannibals!"] = "", -- A_Classic_Fairytale:shadow
---      ["Defeat the cannibals!|Grenade hint: set the timer with [1-5], aim with [Up]/[Down] and hold [Space] to set power"] = "", -- A_Classic_Fairytale:shadow
---      ["Defeat the cyborgs!"] = "", -- A_Classic_Fairytale:enemy
---      ["Defeat the enemy!"] = "", -- A_Classic_Fairytale:queen
---      ["Delete Waypoint"] = "", -- HedgeEditor
---      ["Deletion Mode: [5]"] = "", -- HedgeEditor
---      ["Deletion Mode"] = "", -- HedgeEditor
---      ["Deletition Mode"] = "", -- HedgeEditor
---      ["Demolition is fun!"] = "",
---      ["Demo"] = "", -- The_Specialists
---      ["Dense Cloud"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:journey, A_Classic_Fairytale:queen, A_Classic_Fairytale:shadow, A_Classic_Fairytale:united
---      ["Dense Cloud must have already told them everything..."] = "", -- A_Classic_Fairytale:shadow
---      ["Dense Cloud?! What are you doing?!"] = "", -- A_Classic_Fairytale:queen
---      ["Depleted Kamikaze! +5 points!"] = "", -- Space_Invasion
---      ["Derp"] = "", -- User_Mission_-_Nobody_Laugh
---      ["Desert Storm"] = "", -- 
---      ["Destroy all targets with no more than 10 bazookas."] = "", -- Basic_Training_-_Bazooka
---      ["Destroy all targets with no more than 5 bazookas."] = "", -- Basic_Training_-_Bazooka
---      ["Destroy all the targets!"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
---      ["Destroyer of planes"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Destroy him, Leaks A Lot! He is responsible for the deaths of many of us!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Destroy invaders and collect bonuses to score points."] = "", -- Space_Invasion
---      ["- Destroy the enemy"] = "", -- HedgeEditor
---      ["- Destroy the red target"] = "", -- HedgeEditor
---      ["- Destroy the red targets"] = "", -- HedgeEditor
---      ["Destroy the targets!"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
---      ["+%d flamer fuel!"] = "", -- Tumbler
---      ["+%d health"] = "", -- Mutant
---      ["%d-Hit Combo! +%d points!"] = "", -- Space_Invasion
---      ["Did anyone follow you?"] = "", -- A_Classic_Fairytale:united
---      ["Did I miss something?"] = "", -- Space_Invasion
---      ["Did not finish"] = "", -- Racer, TechRacer
---      ["Did you really think I've changed?"] = "", -- A_Classic_Fairytale:queen
---      ["Did you really think that I've changed?"] = "", -- A_Classic_Fairytale:queen
---      ["Did you really think that we needed the help of one of you?"] = "", -- A_Classic_Fairytale:queen
---      ["Did you see him coming?"] = "", -- A_Classic_Fairytale:shadow
---      ["Did you warn the village?"] = "", -- A_Classic_Fairytale:shadow
---      ["Die, die, die!"] = "", -- A_Classic_Fairytale:dragon
---      ["Difficulty: "] = "", -- Continental_supplies
---      ["Difficulty: Easy"] = "", -- A_Classic_Fairytale:first_blood
---      ["Difficulty: Hard"] = "", -- A_Classic_Fairytale:first_blood
---      ["Dimitry"] = "", -- 
---      ["%d invaders have been destroyed in this game."] = "", -- Space_Invasion
---      ["Disabled"] = "", -- WxW
---      ["Disguise as a Rockhopper Penguin"] = "", -- Continental_supplies
---      ["Disguise as a Rockhopper Penguin: [Swap place with a random enemy hog in the circle]"] = "", -- Continental_supplies
---      ["Displacer"] = "", -- 
---      ["Diver"] = "", -- User_Mission_-_Diver
---      ["%d ms"] = "", -- HedgeEditor
---      ["Doing stuff a monkey could do."] = "", -- A_Classic_Fairytale:queen
---      ["Domination game"] = "", -- Control
---      ["Donald"] = "", -- 
---      ["Do not destroy the crates!"] = "", -- A_Space_Adventure:fruit02
---      ["Do not laugh, inexperienced one, for he speaks the truth!"] = "", -- A_Classic_Fairytale:backstab
---      ["Do not let his words fool you, young one! He will stab you in the back as soon as you turn away!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Don't be foolish, son, there will be more."] = "", -- A_Space_Adventure:fruit01
---      ["Don't blow up the crate."] = "", -- A_Classic_Fairytale:journey
---      ["Don't destroy the device crate!"] = "", -- A_Space_Adventure:desert01
---      ["Don't eliminate Captain Lime before collecting the last crate!"] = "", -- A_Space_Adventure:fruit02
---      ["Don't hit me, you fools!"] = "", -- A_Space_Adventure:moon01
---      ["Don't hit yourself!"] = "", -- Basic_Training_-_Bazooka
---      ["Don't touch the flames!"] = "", -- ClimbHome
---      ["Don't you dare harming our tribe!"] = "", -- A_Classic_Fairytale:queen
---      ["Double Kill!"] = "",
---      ["Double kill!"] = "", -- Mutant
---      ["Do you have any idea how bad an exploding arrow hurts?"] = "", -- A_Classic_Fairytale:queen
---      ["Do you have any idea how valuable grass is?"] = "", -- A_Classic_Fairytale:enemy
---      ["Do you have any idea what it's like in the village for a woman?"] = "", -- A_Classic_Fairytale:queen
---      ["Do you know where they are?"] = "", -- A_Classic_Fairytale:queen
---      ["Do you think you're some kind of god?"] = "", -- A_Classic_Fairytale:enemy
---      ["Dragon's Lair"] = "", -- A_Classic_Fairytale:dragon
---      ["Dr. Banting"] = "", -- 
---      ["Dr. Barnard"] = "", -- 
---      ["Dr. Blackwell"] = "", -- 
---      ["Dr. Cornelius"] = "", -- A_Space_Adventure:cosmos, A_Space_Adventure:death01
---      ["Dr. Crushing"] = "", -- 
---      ["Dr. Drew"] = "", -- 
---      ["Dr. Harvey"] = "", -- 
---      ["Dr. Hollows"] = "", -- 
---      ["Dr. Horace"] = "", -- 
---      ["Drills"] = "", -- A_Classic_Fairytale:backstab
---      ["Drill Strike"] = "", -- Construction_Mode
---      ["Dr. Jenner"] = "", -- 
---      ["Dr. Jung"] = "", -- 
---      ["Drone Hunter! +10 points!"] = "", -- Space_Invasion
---      ["Drop a ball of dirt which turns into a|cluster on impact. Doesn’t end turn."] = "", -- Continental_supplies
---      ["Drop a bomb: [Drop some heroic wind that will turn into a bomb on impact]"] = "", -- Continental_supplies
---      ["- Dropped flags may be returned or recaptured"] = "", -- Capture_the_Flag
---      ["Dropping a weapon while in water would just drown it, but launching one would work."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Drop weapon (while on rope): [Long Jump]"] = "", -- Basic_Training_-_Rope
---      ["Drowner"] = "",
---      ["Dr. Parkinson"] = "", -- 
---      ["Drunk greenhorn"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Drunk with power, perhaps!"] = "", -- A_Classic_Fairytale:queen
---      ["%d sec"] = "", -- Construction_Mode
---      ["+%d seconds!"] = "", -- Tumbler
---      ["Dubloon Devil"] = "", -- 
---      ["Dude, all the plants are gone!"] = "", -- A_Classic_Fairytale:family
---      ["Dude, can you see Ramon and Spiky?"] = "", -- A_Classic_Fairytale:journey
---      ["Dude, it's unbearable!"] = "", -- A_Classic_Fairytale:queen
---      ["Dude, let me out!"] = "", -- A_Classic_Fairytale:epil
---      ["Dude, that outfit is so cool!"] = "", -- A_Classic_Fairytale:epil
---      ["Dude, that's so cool!"] = "", -- A_Classic_Fairytale:backstab
---      ["Dude, this is boring!"] = "", -- A_Classic_Fairytale:queen
---      ["Dude, we really need a new shaman..."] = "", -- A_Classic_Fairytale:shadow
---      ["Dude, what's this place?!"] = "", -- A_Classic_Fairytale:dragon
---      ["Dude, where are we?"] = "", -- A_Classic_Fairytale:backstab
---      ["Dude, wow! I just had the weirdest high!"] = "", -- A_Classic_Fairytale:backstab
---      ["Dude, wow, you're so cute!"] = "", -- A_Classic_Fairytale:queen
---      ["Dud Mine Placement Mode"] = "", -- HedgeEditor
---      ["DUD MINE PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Duration"] = "", -- Continental_supplies
---      ["During the final testing of the device an accident happened."] = "", -- A_Space_Adventure:moon02
---      ["During the game you can get new RC planes by collecting the weapon crates."] = "", -- A_Space_Adventure:desert03
---      ["Dust Storm"] = "", -- Continental_supplies
---      ["Dust storm: [Deals 15 damage to all enemies in the circle]"] = "", -- Continental_supplies
---      ["Each time you destroy all the targets on your current level you'll get teleported to the next level."] = "", -- A_Space_Adventure:desert03
---      ["Each time you play this missions enemy hogs will play in a random order."] = "", -- A_Space_Adventure:death02
---      ["Each turn is only ONE SECOND!"] = "", -- Frenzy
---      ["Each turn you get 1-3 random weapons"] = "",
---      ["Each turn you get one random weapon"] = "",
---      ["Each turn you'll have only one rope to use."] = "", -- A_Space_Adventure:moon02
---      ["Eagle Eye"] = "", -- A_Classic_Fairytale:backstab
---      ["Eagle Eye: [Blink to the impact ~ One shot]"] = "", -- Continental_supplies
---      ["Ear Sniffer"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:epil
---      ["EASY"] = "", -- Continental_supplies
---      ["Eckles"] = "", -- User_Mission_-_Nobody_Laugh
---      ["Eclipse"] = "", -- Big_Armory
---      ["Editing Commands: (Use while no weapon is selected)"] = "", -- HedgeEditor
---      ["Ehm, okay ..."] = "", -- A_Space_Adventure:moon01
---      ["Elderbot"] = "", -- A_Classic_Fairytale:family
---      ["Elimate your captor."] = "", -- User_Mission_-_The_Great_Escape
-      ["Eliminate all targets before your time runs out.|You have unlimited ammo for this mission."] = "时间限制内清除全部目标。弹药无限。", --Bazooka, Shotgun, SniperRifle
---      ["Eliminate the enemy before the time runs out."] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree
---      ["Eliminate the enemy hogs to win."] = "",
---      ["Eliminate the enemy."] = "", -- User_Mission_-_Bamboo_Thicket, User_Mission_-_Newton_and_the_Hammock, User_Mission_-_Nobody_Laugh
---      ["Eliminate Unit 3378."] = "", -- User_Mission_-_Teamwork
---      ["Eliminate WatchBot 4000."] = "", -- User_Mission_-_Teamwork_2
---      ["Eliminate your captor."] = "", -- User_Mission_-_The_Great_Escape
---      ["Elite pilot"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Elmo"] = "", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
---      ["Enabled"] = "", -- WxW
---      ["Enemy kills: Collect victim's weapons and +%d%% of its base health"] = "", -- Battalion
---      ["Energetic Engineer"] = "",
---      ["Engineer"] = "", -- HedgeEditor, The_Specialists
-      ["Enjoy the swim..."] = "游水愉快",
---      ["Entered boredom phase! Discrepancies detected …"] = "", -- A_Classic_Fairytale:queen
---      ["Epilogue"] = "", -- A_Classic_Fairytale:epil
---      ["ERROR [getHogInfo]: Hog is nil!"] = "", -- Battalion
---      ["Eugene"] = "", -- 
---      ["Europe"] = "", -- Continental_supplies
---      ["Everyone knows this."] = "", -- A_Classic_Fairytale:enemy
---      ["Every single time!"] = "", -- A_Classic_Fairytale:dragon
---      ["Everything looks OK..."] = "", -- A_Classic_Fairytale:enemy
---      ["Every time you kill an enemy hog your ammo will get reset next turn."] = "", -- A_Space_Adventure:death02
---      ["Everywhere I look, I see hogs walking around …"] = "", -- A_Classic_Fairytale:epil
---      ["Exactly, man! That was my dream."] = "", -- A_Classic_Fairytale:backstab
---      ["Except me, of course! I just saved a whole planet!"] = "", -- A_Space_Adventure:final
---      ["Experienced beginner"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Explore the tunnel with the other hedgehogs and search for the device."] = "", -- A_Space_Adventure:fruit02
---      ["Exploring the tunnel"] = "", -- A_Space_Adventure:fruit02
---      ["Eye Chewer"] = "", -- A_Classic_Fairytale:journey
---      ["Fair Wind"] = "", -- 
---      ["Fall Damage"] = "", -- Basic_Training_-_Movement
---      ["Fallen Angel"] = "", -- Tentacle_Terror
---      ["Family Reunion"] = "", -- A_Classic_Fairytale:family
---      ["Fastest escape: %d turns"] = "", -- A_Space_Adventure:desert02
---      ["Fastest lap: %.3fs by %s"] = "", -- TrophyRace
-      ["Fastest lap: "] = "最快记录:",
-      ["Feeble Resistance"] = "反抗者",
---      ["Fell From Grace"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
---      ["Fell From Heaven"] = "", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:first_blood, A_Classic_Fairytale:journey, A_Classic_Fairytale:queen
---      ["Fell From Heaven is the best! Fell From Heaven is the greatest!"] = "", -- A_Classic_Fairytale:family
---      ["Femur Lover"] = "", -- A_Classic_Fairytale:shadow
---      ["Fierce Competition! +8 points!"] = "", -- Space_Invasion
---      ["Fiery Water"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen, A_Classic_Fairytale:united
---      ["Fiery Water?! Are you drunk again?"] = "", -- A_Classic_Fairytale:queen
---      ["Fighting instead of cultivating a beautiful friendship."] = "", -- A_Classic_Fairytale:epil
---      ["Fight: Press [Attack]"] = "", -- A_Space_Adventure:fruit01
---      ["Filthy Blue"] = "", -- User_Mission_-_Dangerous_Ducklings
---      ["Final Challenge:"] = "", -- Basic_Training_-_Rope
---      ["Finally! We're out of this hellhole. Now go save the princess, %s!"] = "", -- A_Classic_Fairytale:family
---      ["Finally you are here!"] = "", -- A_Space_Adventure:desert01, A_Space_Adventure:ice01
---      ["Final result"] = "", -- Mutant
---      ["Final Targets"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
---      ["Final team scores:"] = "", -- Space_Invasion
---      ["Find all the parts of the anti-gravity device."] = "", -- A_Space_Adventure:cosmos
---      ["Find a way to detonate all the explosives and stay alive!"] = "", -- A_Space_Adventure:final
---      ["Find your tribe!|Cross the lake!"] = "", -- A_Classic_Fairytale:dragon
---      ["Finish this challenge as fast as possible to earn bonus points."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["Finish waypoint placement"] = "", -- Racer
---      ["Finish your training."] = "", -- A_Classic_Fairytale:first_blood
---      ["Finite Ropes"] = "", -- Basic_Training_-_Rope
---      ["Fire a rocket with napalm."] = "", -- Continental_supplies
---      ["Fire: [Precise]"] = "", -- Space_Invasion, Tumbler
---      ["Fire some exploding medicine that will heal 15 health to all hogs in its effect radius."] = "", -- Continental_supplies
---      ["Fire your hedgehog like a sticky mine."] = "", -- Continental_supplies
---      ["First aid kits?!"] = "", -- A_Classic_Fairytale:united
---      ["First Blood"] = "", -- A_Classic_Fairytale:first_blood
---      ["- First clan to capture the flag wins"] = "", -- Capture_the_Flag
---      ["- First clan to score %d captures wins"] = "", -- Capture_the_Flag
---      ["First killer will mutate"] = "", -- Mutant
---      ["First Steps"] = "", -- A_Classic_Fairytale:first_blood
---      ["- First team to capture the flag wins"] = "", -- Capture_the_Flag
---      ["- First team to score %d captures wins"] = "", -- Capture_the_Flag
---      ["Fishy"] = "", -- 
-      ["Flag captured!"] = "夺旗得分!",
-      ["Flag respawned!"] = "旗帜重生!",
-      ["Flag returned!"] = "旗帜归还!",
---      ["Flamer"] = "",
---      ["Flaming Worm"] = "", -- A_Classic_Fairytale:backstab
---      ["Flare"] = "", -- Continental_supplies
---      ["Flawless victory!"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Flee: Press [Jump]"] = "", -- A_Space_Adventure:fruit01
---      ["Flesh for Brainz"] = "", -- A_Classic_Fairytale:journey
---      ["Fly around and hurl explosives to your enemies."] = "", -- Tumbler
---      ["Flying Saucer Training"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Fly into space to fight off the invaders with barrels!"] = "", -- Space_Invasion
---      ["Fly to the meteorite and detonate the explosives"] = "", -- A_Space_Adventure:cosmos
---      ["Follow the path and destroy the next target."] = "", -- Basic_Training_-_Rope
---      ["Forgetfulness: You will lose all your weapons each turn."] = "", -- Continental_supplies
---      ["For the next crate, you have to do back jumps."] = "", -- Basic_Training_-_Movement
---      ["Four Eyes"] = "", -- 
---      ["Frankie"] = "", -- 
---      ["Frank"] = "", -- User_Mission_-_Nobody_Laugh
---      ["Free Dense Cloud and continue the mission!"] = "", -- A_Classic_Fairytale:journey
---      ["FRENZY"] = "", -- Frenzy
---      ["Friendly Fire!"] = "",
---      ["Friendly kills: Clear killer's pool and -%d%% of its base health"] = "", -- Battalion
---      ["From the second turn and beyond the water rises."] = "", -- A_Space_Adventure:desert02
---      ["Frozen Bandits"] = "", -- A_Space_Adventure:ice01
---      ["Fruit"] = "", -- 
---      ["Fruit Assassins"] = "", -- A_Space_Adventure:fruit02
---      ["Fruity"] = "", -- 
---      ["Fuel: %d"] = "", -- Tumbler
---      ["Fuzzy Beard"] = "", -- 
---      ["“g=150”, where 150 is 150% of normal gravity."] = "", -- Gravity
---      ["“g=50, g2=150, period=4000” for gravity changing|from 50 to 150 and back with period of 4000 ms."] = "", -- Gravity
---      ["Galaxy Guardians"] = "", -- Big_Armory
---      ["Game over!"] = "", -- Space_Invasion
-      ["Game Started!"] = "开始",
---      ["Game? Was this a game to you?!"] = "", -- A_Classic_Fairytale:enemy
---      ["Gangsters"] = "", -- 
---      ["GasBomb"] = "", -- Continental_supplies
---      ["Gas Gargler"] = "", -- A_Classic_Fairytale:queen
---      ["Gasp! A smuggler!"] = "", -- A_Space_Adventure:desert01
---      ["Gasp!"] = "", -- A_Space_Adventure:desert01
---      ["Gathering fruits all day long."] = "", -- A_Classic_Fairytale:queen
---      ["Gear Placement Tool"] = "", -- HedgeEditor
---      ["General information"] = "", -- Continental_supplies
---      ["General information:"] = "", -- Continental_supplies
---      ["General Lemon"] = "", -- A_Space_Adventure:fruit01
---      ["Generator"] = "", -- Construction_Mode
---      ["Generator: Generates energy."] = "", -- Construction_Mode
---      ["Get Dense Cloud out of the pit!"] = "", -- A_Classic_Fairytale:journey
---      ["Get him, Spike!"] = "", -- A_Space_Adventure:desert01
-      ["Get on over there and take him out!"] = "上去把它拉下来!",
---      ["Get on the head of the mole."] = "", -- A_Classic_Fairytale:first_blood
---      ["Get past the flower."] = "", -- A_Classic_Fairytale:journey
---      ["Get ready to fight!"] = "", -- A_Space_Adventure:moon01
---      ["Get that crate!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Get the crate on the other side of the island!|"] = "", -- A_Classic_Fairytale:journey
---      ["Get the crate on the other side of the island."] = "", -- A_Classic_Fairytale:journey
---      ["Get the final crate to the right to complete the training."] = "", -- Basic_Training_-_Movement
---      ["Get the highest score to win."] = "", -- Space_Invasion
---      ["Get the next crate by jumping over the abyss."] = "", -- Basic_Training_-_Movement
---      ["Getting ready"] = "", -- A_Space_Adventure:cosmos, A_Space_Adventure:desert01, A_Space_Adventure:desert02, A_Space_Adventure:ice01, A_Space_Adventure:ice02, A_Space_Adventure:moon01
---      ["Getting Started"] = "", -- Basic_Training_-_Rope
---      ["Getting to the device"] = "", -- A_Space_Adventure:fruit02
---      ["Get to the crate using your flying saucer!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Get to the target using your rope!"] = "", -- Basic_Training_-_Rope
---      ["Get your teammates out of their natural prison and save the princess!"] = "", -- A_Classic_Fairytale:family
---      ["Get your teammates out of their natural prison and save the princess!|Hint: Drilling holes should solve everything.|Hint: It might be a good idea to place a girder before starting to drill. Just saying.|Hint: All your hedgehogs need to be above the marked height!|Hint: Leaks A Lot needs to get really close to the princess!"] = "", -- A_Classic_Fairytale:family
---      ["Giggles"] = "", -- 
---      ["Gimme Bones"] = "", -- A_Classic_Fairytale:backstab
---      ["Girder"] = "", -- Construction_Mode
---      ["Girder Placement Mode"] = "", -- Construction_Mode
---      ["GIRDER PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Give a hog a preset identity and weapons"] = "", -- HedgeEditor
---      ["Give an entire team themed hats and names"] = "", -- HedgeEditor
---      ["Glark"] = "", -- A_Classic_Fairytale:shadow
---      ["Glasses"] = "", -- 
---      ["Glassy"] = "", -- 
---      ["Goal Definition Mode"] = "", -- HedgeEditor
---      ["GOAL DEFINITION MODE"] = "", -- HedgeEditor
---      ["Goal: Score %d points or more to win!"] = "", -- Mutant
---      ["Go and collect the crate"] = "", -- A_Space_Adventure:cosmos
---      ["Godai"] = "", -- 
---      ["Go down and save these PAotH hogs!"] = "", -- A_Space_Adventure:moon01
---      ["Go, get him again!"] = "", -- A_Space_Adventure:moon02
---      ["Goggles"] = "", -- 
---      ["Goggs"] = "", -- 
-      ["GO! GO! GO!"] = "上!",
-      ["Good birdy......"] = "乖鸟儿",
---      ["Good bye!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Good idea, they'll never find us there!"] = "", -- A_Classic_Fairytale:united
---      ["Good job!"] = "", -- Basic_Training_-_Flying_Saucer, Basic_Training_-_Rope
---      ["Good job! Defeat the rest of the aliens!"] = "", -- A_Classic_Fairytale:queen
---      ["Good job! Now destroy the final targets to finish the training."] = "", -- Basic_Training_-_Grenade
---      ["Good luck!"] = "", -- A_Space_Adventure:desert01, A_Space_Adventure:fruit02
---      ["Good luck...or else!"] = "", -- A_Classic_Fairytale:journey
-      ["Good luck out there!"] = "祝好运",
---      ["Good so far!"] = "",
---      ["Good to go!"] = "",
---      ["Good! You now control Cappy."] = "", -- Basic_Training_-_Movement
---      ["Go on top of the flower."] = "", -- A_Classic_Fairytale:first_blood
---      ["Go, quick!"] = "", -- A_Classic_Fairytale:backstab
---      ["Gorkij"] = "", -- A_Classic_Fairytale:journey
---      ["Go surf!"] = "", -- WxW
---      ["Got 1 more saucer and 8 more seconds added to the clock"] = "", -- A_Space_Adventure:ice02
---      ["Got 1 more saucer"] = "", -- A_Space_Adventure:ice02
---      ["GOTCHA!"] = "",
---      ["Go to Thanta and get the device part!"] = "", -- A_Space_Adventure:ice01
---      ["Go to the surface!"] = "", -- A_Space_Adventure:fruit02
---      ["Go to the target."] = "", -- Basic_Training_-_Rope
---      ["Go to the upper platform and get the weapons in the crates!"] = "", -- A_Space_Adventure:moon01
---      ["Got the saucer!"] = "", -- A_Space_Adventure:cosmos
---      ["Got to go back."] = "", -- A_Space_Adventure:cosmos
---      ["Got you? You're acting weird."] = "", -- A_Classic_Fairytale:queen
---      ["Grab mines/barrels: [High jump]"] = "", -- Tumbler
---      ["Gravity: 100%"] = "", -- Gravity
---      ["Great!"] = "", -- Basic_Training_-_Rope
---      ["Great choice, Steve! Mind if I call you that?"] = "", -- A_Classic_Fairytale:shadow
---      ["Great! Let’s kill all these enemies, using portals."] = "", -- portal
---      ["Great work! Now hit it with your Baseball Bat! |Tip: You can change weapon with 'Right Click'!"] = "", -- Basic_Training_-_Rope
---      ["Great! You will be contacted soon for assistance."] = "", -- A_Classic_Fairytale:shadow
---      ["Green"] = "", -- 
---      ["Green Bananas"] = "", -- A_Space_Adventure:fruit01
---      ["Green double rings also give you a new flying saucer."] = "", -- A_Space_Adventure:ice02
---      ["Green Hog Grape"] = "", -- A_Space_Adventure:fruit01
---      ["Green hogs won't intentionally hurt you."] = "", -- A_Space_Adventure:fruit01
---      ["Greenhorn"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Green Lipstick Bullet"] = "", -- Continental_supplies
---      ["Green lipstick bullet: [Poisonous, deals no damage]"] = "", -- Continental_supplies
---      ["Greetings, cloudy one!"] = "", -- A_Classic_Fairytale:shadow
---      ["Greetings from the Navy, %s (%s), for being a distance of %d away from the mainland!"] = "", -- ClimbHome
---      ["Greetings, %s!"] = "", -- A_Classic_Fairytale:dragon
---      ["Grenades explode after 1 to 5 seconds (you decide)."] = "", -- Basic_Training_-_Grenade
---      ["Grenades with high bounciness bounce a lot and behave chaotic."] = "", -- Basic_Training_-_Grenade
---      ["Grenade Training"] = "", -- Basic_Training_-_Grenade
---      ["Grenadiers"] = "", -- Basic_Training_-_Grenade
---      ["Grenadier"] = "", -- Target_Practice_-_Grenade_easy, Target_Practice_-_Grenade_hard, HedgeEditor
---      ["Grey"] = "", -- 
---      ["Guards"] = "", -- A_Space_Adventure:cosmos
---      ["Guile"] = "", -- 
---      ["Guys, do you think there's more of them?"] = "", -- A_Classic_Fairytale:backstab
---      ["HAHA!"] = "", -- A_Classic_Fairytale:enemy
---      ["Haha!"] = "", -- A_Classic_Fairytale:united
---      ["Haha! Come!"] = "", -- A_Classic_Fairytale:queen
---      ["Hahahaha!"] = "",
---      ["Haha, I love the look on your face!"] = "", -- A_Classic_Fairytale:queen
---      ["Haha, now THAT would be something!"] = "",
---      ["Haha, that was just a coincidence!"] = "", -- A_Classic_Fairytale:queen
---      ["Hammer"] = "", -- Construction_Mode, Continental_supplies
---      ["Hannibal"] = "", -- A_Classic_Fairytale:epil
---      ["Hapless Hogs"] = "",
---      [" Hapless Hogs left!"] = "",
---      ["Happy with your race track?|Then stop building and start racing!"] = "", -- Racer
---      ["HARD"] = "", -- Continental_supplies
---      ["Hard flying"] = "", -- A_Space_Adventure:ice02
---      ["Harris"] = "", -- 
---      ["Harry Potter"] = "", -- 
---      ["Harry"] = "", -- User_Mission_-_Nobody_Laugh
---      ["H"] = "", -- A_Space_Adventure:cosmos, A_Space_Adventure:death01
---      ["Hatless Jerry"] = "", -- A_Classic_Fairytale:queen
---      ["Have no illusions, your tribe is dead, indifferent of your choice."] = "", -- A_Classic_Fairytale:shadow
---      ["Haven't found it yet ..."] = "", -- A_Space_Adventure:desert01
---      ["Have we ever attacked you first?"] = "", -- A_Classic_Fairytale:enemy
---      ["H confirmed that there isn't such a PAotH activity logged."] = "", -- A_Space_Adventure:desert01
---      ["Healing Station"] = "", -- Construction_Mode
---      ["Healing Station: Heals nearby hogs."] = "", -- Construction_Mode
---      ["Health and Mission Panel"] = "", -- Basic_Training_-_Movement
---      ["Health"] = "", -- Basic_Training_-_Movement
---      ["Health Crate Placement Mode"] = "", -- Construction_Mode
---      ["HEALTH CRATE PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Health: %d"] = "", -- HedgeEditor
---      ["Health: Hogs lose up to 7% base health per turn"] = "", -- Battalion
---      ["Health Modification Mode"] = "", -- HedgeEditor
---      ["HEALTH MODIFICATION MODE"] = "", -- HedgeEditor
---      ["Heavenly Defense"] = "", -- Tentacle_Terror
---      ["Heavy"] = "",
---      ["Heavy Cannfantry"] = "", -- A_Classic_Fairytale:united
---      ["Heckles"] = "", -- 
---      ["Heck, you even executed one of your own!"] = "", -- A_Classic_Fairytale:queen
---      ["Hedge-cogs"] = "", -- A_Classic_Fairytale:enemy
---      ["HEDGEEDITOR"] = "", -- HedgeEditor
---      ["HedgeEditor tool"] = "", -- HedgeEditor
---      ["Hedgehog"] = "", -- 
---      ["Hedgehog Projectile"] = "", -- Continental_supplies
---      ["Hedgehog projectile: [Fire your hog like a Sticky Bomb]"] = "", -- Continental_supplies
---      ["Hedgehogs can not be deleted."] = "", -- HedgeEditor
---      ["Hedgehogs left: %d"] = "", -- User_Mission_-_That_Sinking_Feeling
---      ["Hedgehogs will be revived after their death."] = "", -- Mutant
---      ["Hedgehogs will start in the first waypoint."] = "", -- Racer
---      ["Hedgibal Lecter"] = "", -- A_Classic_Fairytale:backstab
---      ["He doesn't know it but this device is a part of the anti-gravity device."] = "", -- A_Space_Adventure:ice01
---      ["He has captured the rest of the PAotH team and awaits to capture you!"] = "", -- A_Space_Adventure:moon01
---      ["Heh, it's not that bad."] = "",
---      ["Height over time"] = "", -- ClimbHome
---      ["He is a very tough and very determined hedgehog. I would be extremely careful if I were you."] = "", -- A_Space_Adventure:moon02
---      ["Helena"] = "", -- A_Space_Adventure:moon01
---      ["Hell Army"] = "", -- portal
---      ["Hello again, %s!"] = "", -- A_Classic_Fairytale:family
---      ["Help Disabled"] = "", -- HedgeEditor
---      ["Help Enabled"] = "", -- HedgeEditor
---      ["Helpers: Each team starts with %d helper points"] = "", -- Battalion
---      ["Helpers: Hogs will get 1 out of 2 helpers randomly each turn"] = "", -- Battalion
---      ["Help me, Leaks!"] = "", -- A_Classic_Fairytale:journey
---      ["Help me, please!!!"] = "", -- A_Classic_Fairytale:journey
---      ["Help me, please!"] = "", -- A_Classic_Fairytale:journey
---      ["He moves like an eagle in the sky."] = "", -- A_Classic_Fairytale:first_blood
---      ["He must be in the village already."] = "", -- A_Classic_Fairytale:journey
---      ["HeneK"] = "", -- 
---      ["Here, let me help you!"] = "", -- A_Classic_Fairytale:backstab
---      ["Here, let me help you save her!"] = "", -- A_Classic_Fairytale:family
---      ["Here...pick your weapon!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Here! Take it!"] = "", -- A_Space_Adventure:ice01
---      ["Here we go!"] = "", -- A_Space_Adventure:moon01
---      ["Here you will find the current mission instructions."] = "", -- Basic_Training_-_Movement
---      ["Here you will learn how to fly the flying saucer|and get so learn some cool tricks."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Heroic Wind"] = "", -- Continental_supplies
---      ["He's so brave..."] = "", -- A_Classic_Fairytale:first_blood
---      ["He was the lab assistant of Dr. Goodhogan, the inventor of the anti-gravity device."] = "", -- A_Space_Adventure:moon02
---      ["He won't be selling us out anymore!"] = "", -- A_Classic_Fairytale:backstab
---      ["Hey, don't forget us! We still need to climb up!"] = "", -- A_Classic_Fairytale:family
---      ["Hey, guys!"] = "", -- A_Classic_Fairytale:backstab
---      ["Hey guys!"] = "", -- A_Classic_Fairytale:united
---      ["Hey! I was supposed to collect it!"] = "", -- A_Space_Adventure:fruit02
---      ["Hey, %s! Finally you have come!"] = "", -- A_Space_Adventure:moon01
---      ["Hey, %s! Look, someone is stealing the saucer!"] = "", -- A_Space_Adventure:cosmos
---      ["Hey! This is cheating!"] = "", -- A_Classic_Fairytale:journey
---      ["Hidden"] = "", -- portal
---      ["High Gravity: Gravity is %i%%"] = "", -- Gravity
---      ["High Jump: [Backspace]"] = "", -- Basic_Training_-_Movement
---      ["High Jump: Tap the [Curvy Arrow] shortly"] = "", -- Basic_Training_-_Movement
---      ["--- Highland ---"] = "", -- Battalion
---      ["Highlander: Eliminate hogs to take their weapons"] = "", -- Highlander
---      ["Highland: Hogs get %d random weapons from their pool"] = "", -- Battalion
---      ["--- Highland Mode ---"] = "", -- Battalion
---      ["High Target"] = "", -- Basic_Training_-_Bazooka
---      ["Hightime"] = "", -- A_Classic_Fairytale:first_blood
---      ["Hightower"] = "", -- 
---      ["Hill Guard"] = "", -- Bazooka_Battlefield
---      ["Hi! Nice to meet you."] = "", -- A_Space_Adventure:ice01
---      ["--- Hint ---"] = "", -- Battalion
---      ["Hint: Cinematics can be skipped with the [Precise] key."] = "", -- A_Classic_Fairytale:first_blood, A_Classic_Fairytale:shadow
---      ["Hint: Drilling holes should solve everything."] = "", -- A_Classic_Fairytale:family
---      ["Hint: Hold down [M] to review the mission texts."] = "", -- A_Classic_Fairytale:first_blood
---      ["Hint: If this mission panel disappears, you can|see it again by hitting the Pause or Quit key."] = "", -- Basic_Training_-_Movement
---      ["Hint: It might be a good idea to place a girder before starting to drill. Just saying."] = "", -- A_Classic_Fairytale:family
---      ["Hint: It might be easier if you vary the angle only slightly."] = "", -- Basic_Training_-_Bazooka
---      ["Hint: Just select the parachute, it opens automatically when you fall."] = "", -- A_Classic_Fairytale:first_blood
---      ["Hint: Kills won't transfer a hog's pool to the killer's pool"] = "", -- Battalion
---      ["Hint: Launch the bazooka horizontally at full power."] = "", -- Basic_Training_-_Bazooka
---      ["Hint: Pause the game to review the mission texts."] = "", -- A_Classic_Fairytale:first_blood
---      ["Hint: Select the blow torch, aim and press [Fire]. Press [Fire] again to stop."] = "", -- A_Classic_Fairytale:journey
---      ["Hint: Select the low gravity and press [Fire]."] = "", -- A_Classic_Fairytale:journey
---      ["Hint: Select the rope, [Up] or [Down] to aim, [Attack] to fire, directional keys to move."] = "", -- A_Classic_Fairytale:first_blood
---      ["Hint: Select the Shoryuken and hit [Attack].|P.S.: You can use it mid-air."] = "", -- A_Classic_Fairytale:first_blood
---      ["Hint: %s needs to get really close to the princess!"] = "", -- A_Classic_Fairytale:family
---      ["Hint: The rope only bends around objects.|When it doesn't hit anything, it's always straight."] = "", -- Basic_Training_-_Rope
---      ["Hint: To jump higher, wait a bit before you hit “High Jump” a second time."] = "", -- Basic_Training_-_Movement
---      ["Hint: To place a girder, select it,|then use [Left] and [Right] to select angle and length,|then choose a location for the girder."] = "", -- A_Classic_Fairytale:shadow
---      ["Hint: Use the quit key to see the team’s continent."] = "", -- Continental_supplies
---      ["Hint: When you shorten the rope, you move faster!|And when you lengthen it, you move slower."] = "", -- Basic_Training_-_Rope
---      ["Hint: you might want to stay out of sight and take all the crates...|"] = "", -- A_Classic_Fairytale:journey
---      ["Hint: You might want to stay out of sight and take all the crates ..."] = "", -- A_Classic_Fairytale:journey
---      ["His arms are so strong!"] = "", -- A_Classic_Fairytale:first_blood
---      ["hits"] = "", -- Basic_Training_-_Bazooka
---      ["Hit the “Switch Hedgehog” key until you have|selected Cappy, the hedgehog with the cap!"] = "", -- Basic_Training_-_Movement
---      ["Hmm … it's going slower than expected."] = "", -- A_Classic_Fairytale:queen
---      ["Hmmm...actually...I didn't either."] = "", -- A_Classic_Fairytale:enemy
---      ["Hmmm, I’ll have to find some way of moving him off this anti-portal surface."] = "", -- portal
---      ["Hmmm...it's a draw. How unfortunate!"] = "", -- A_Classic_Fairytale:enemy
---      ["Hmmm...perhaps a little more time will help."] = "", -- A_Classic_Fairytale:first_blood
-      ["Hmmm..."] = "呃...",
---      ["Hm ... Now I ran out of fuel."] = "", -- A_Space_Adventure:cosmos
---      ["Hog 100"] = "", -- A_Space_Adventure:fruit03
---      ["Hog 1"] = "", -- A_Space_Adventure:fruit03
---      ["Hog 3x5"] = "", -- A_Space_Adventure:fruit03
---      ["Hog 7+7"] = "", -- A_Space_Adventure:fruit03
---      ["Hog D"] = "", -- A_Space_Adventure:fruit03
---      ["Hog decar"] = "", -- A_Space_Adventure:fruit03
---      ["Hog dertien"] = "", -- A_Space_Adventure:fruit03
---      ["Hog %d"] = "", -- SimpleMission
---      ["Hog EOF"] = "", -- A_Space_Adventure:fruit03
---      ["Hogera is definitely the last planet I saved!"] = "", -- A_Space_Adventure:final
---      ["Hogera is safe!"] = "", -- A_Space_Adventure:final
---      ["Hog exi"] = "", -- A_Space_Adventure:fruit03
---      ["Hog Hephaestus"] = "", -- A_Space_Adventure:fruit03
---      ["Hog Identity Mode"] = "", -- HedgeEditor
---      ["HOG IDENTITY MODE"] = "", -- HedgeEditor
---      ["Hog III"] = "", -- A_Space_Adventure:fruit03
---      ["Hogminator"] = "", -- A_Classic_Fairytale:family
---      ["Hog nueve"] = "", -- A_Space_Adventure:fruit03
---      ["Hog octo"] = "", -- A_Space_Adventure:fruit03
---      ["Hog onze"] = "", -- A_Space_Adventure:fruit03
---      ["Hog Saturn"] = "", -- A_Space_Adventure:fruit03
---      ["Hogs in sight!"] = "", -- Continental_supplies
---      ["Hog Solo and GB"] = "", -- A_Space_Adventure:fruit02
---      ["Hog Solo"] = "", -- A_Space_Adventure:cosmos, A_Space_Adventure:death01, A_Space_Adventure:death02, A_Space_Adventure:desert01, A_Space_Adventure:desert02, A_Space_Adventure:desert03, A_Space_Adventure:final, A_Space_Adventure:fruit01, A_Space_Adventure:fruit02, A_Space_Adventure:fruit03, A_Space_Adventure:ice01, A_Space_Adventure:ice02, A_Space_Adventure:moon01, A_Space_Adventure:moon02
---      ["- Hogs will be revived"] = "", -- Capture_the_Flag
---      ["- Hogs will drop the flag when killed"] = "", -- Capture_the_Flag
---      ["Hog two"] = "", -- A_Space_Adventure:fruit03
---      ["Hold [Attack] to attach the rope."] = "", -- Basic_Training_-_Rope
---      ["Hold the Attack key pressed for more power."] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
---      ["Holy shit!"] = "", -- Mutant
---      ["Homing Bee"] = "", -- Construction_Mode
---      ["Honda"] = "", -- 
---      ["Honest Lee"] = "", -- A_Classic_Fairytale:enemy
---      ["Hooks"] = "", -- 
---      ["Hooray! I actually did it! Hogera is safe!"] = "", -- A_Space_Adventure:final
---      ["Hooray! I've found it, now I have to get back to Captain Lime!"] = "", -- A_Space_Adventure:fruit02
---      ["Hooray! You are a champion!"] = "", -- A_Space_Adventure:ice02
---      ["Hopeless case"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Hop on top of the next flower and advance to the left coast."] = "", -- A_Classic_Fairytale:journey
---      ["Horns"] = "", -- 
---      ["Hostage Situation"] = "", -- A_Classic_Fairytale:family
---      ["How can I ever repay you for saving my life?"] = "", -- A_Classic_Fairytale:journey
---      ["How come in a village full of warriors, it's up to me to save it?"] = "", -- A_Classic_Fairytale:dragon
---      ["How could you betray us?"] = "", -- A_Classic_Fairytale:queen
---      ["How difficult would you like it to be?"] = "", -- A_Classic_Fairytale:first_blood
---      ["HOW DO THEY KNOW WHERE WE ARE?"] = "", -- A_Classic_Fairytale:united
---      ["However, if you fail to do so, she dies a most violent death, just like your friend! Muahahaha!"] = "", -- A_Classic_Fairytale:journey
---      ["However, if you fail to do so, she dies a most violent death! Muahahaha!"] = "", -- A_Classic_Fairytale:journey
---      ["However, my mates don't agree with me on letting you go..."] = "", -- A_Classic_Fairytale:dragon
---      ["However, the army of %s is about to attack any moment now."] = "", -- A_Space_Adventure:fruit01
---      ["How to Rope"] = "", -- Basic_Training_-_Rope
---      ["How would you like being discriminated against?"] = "", -- A_Classic_Fairytale:queen
---      ["Huh?"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:queen
-      ["Hunter"] = "猎人", --Bazooka, Shotgun, SniperRifle
---      ["I ain't gonna sit around no more!"] = "", -- A_Classic_Fairytale:queen
---      ["I already said I'm sorry!"] = "", -- A_Classic_Fairytale:epil
---      ["I always suspected him!"] = "", -- A_Classic_Fairytale:epil
---      ["I am going to leave the kids play by themselves."] = "", -- A_Classic_Fairytale:queen
---      ["I am not ready for this planet yet. I should visit it when I have found all the other device parts."] = "", -- A_Space_Adventure:cosmos
---      ["I am sorry but I was looking for a device that may be hidden somewhere around here."] = "", -- A_Space_Adventure:fruit02
---      ["I believe there's more of them."] = "", -- A_Classic_Fairytale:backstab
---      ["I cannot let you go any further! … burp …"] = "", -- A_Classic_Fairytale:queen
---      ["I can see you have been training diligently."] = "", -- A_Classic_Fairytale:first_blood
---      ["I can't believe how blind we were."] = "", -- A_Classic_Fairytale:epil
---      ["I can't believe it worked!"] = "", -- A_Classic_Fairytale:shadow
---      ["I can't believe this!"] = "", -- A_Classic_Fairytale:enemy
---      ["I can't believe what I'm hearing!"] = "", -- A_Classic_Fairytale:backstab
---      ["I can't let you go further because …"] = "", -- A_Classic_Fairytale:queen
---      ["I can't wait any more, I have to save myself!"] = "", -- A_Classic_Fairytale:shadow
---      ["Ice Jake"] = "", -- A_Space_Adventure:ice01
---      ["I could just teleport myself there..."] = "", -- A_Classic_Fairytale:family
---      ["Icy Girder: [3]"] = "", -- HedgeEditor
---      ["Icy Land: [3]"] = "", -- HedgeEditor
---      ["Icy Land"] = "", -- HedgeEditor
---      ["I'd better get going myself."] = "", -- A_Classic_Fairytale:journey
---      ["Identity Thief"] = "", -- Mutant
---      ["I didn't until about a month ago."] = "", -- A_Classic_Fairytale:enemy
---      ["I don't care. It's worth a fortune! Good bye, you idiot!"] = "", -- A_Space_Adventure:fruit02
---      ["I don't know how you did that. But good work!|The next one should be easy as cake for you!"] = "", -- Basic_Training_-_Rope
---      ["I don't know if I can forget what you've done!"] = "", -- A_Classic_Fairytale:epil
---      ["I don't know who I can trust anymore."] = "", -- A_Classic_Fairytale:epil
---      ["I don't like your tone! You're hurting me!"] = "", -- A_Classic_Fairytale:queen
---      ["I feel something...a place! They will arrive near the circles!"] = "", -- A_Classic_Fairytale:backstab
---      ["If only I had a way..."] = "", -- A_Classic_Fairytale:backstab
---      ["If only I were given a chance to explain my being here..."] = "", -- A_Classic_Fairytale:first_blood
---      ["If only one enemy is left, you'll get bonus ammo."] = "", -- A_Space_Adventure:death02
---      ["I forgot that she's the daughter of the chief, too..."] = "", -- A_Classic_Fairytale:backstab
---      ["I found it! Hooray!"] = "", -- A_Space_Adventure:desert01
---      ["If some good old explosives were enough to save Hogera …"] = "", -- A_Space_Adventure:final
---      ["If they try coming here, they can have a taste of my delicious knuckles!"] = "", -- A_Classic_Fairytale:united
---      ["If you agree to provide the information we need, you will be spared!"] = "", -- A_Classic_Fairytale:shadow
---      ["If you can get that crate fast enough, your beloved \"princess\" may go free."] = "", -- A_Classic_Fairytale:journey
---      ["If you decide to help us, though, we will no longer need to find a new governor for the island."] = "", -- A_Classic_Fairytale:shadow
---      ["If you don't want to slip away, you have to keep moving!"] = "", -- Basic_Training_-_Movement
---      ["If you get stuck, use your Desert Eagle or restart the mission!"] = "", -- A_Classic_Fairytale:journey
---      ["If you get stuck, use your Desert Eagle or restart the mission!|"] = "", -- A_Classic_Fairytale:journey
---      ["If you help us you can keep the device if you find it but we'll keep everything else."] = "", -- A_Space_Adventure:fruit02
---      ["If you hurt an enemy, you'll get one third of the damage dealt."] = "", -- A_Space_Adventure:death02
---      ["If you injure a hedgehog you'll get 35% of the damage dealt."] = "", -- A_Space_Adventure:death02
---      ["If you just don’t care …"] = "", -- Continental_supplies
---      ["If you kill a hedgehog with the respective weapon your health points will be set to 100."] = "", -- A_Space_Adventure:death02
---      ["If you kill an enemy, your health will be set to 100."] = "", -- A_Space_Adventure:death02
---      ["If you know what I mean..."] = "", -- A_Classic_Fairytale:shadow
---      ["If you miss a shot while trying to|re-attach, your rope is gone, too!"] = "", -- Basic_Training_-_Rope
---      ["If you say so..."] = "", -- A_Classic_Fairytale:shadow
---      ["If you skip a turn then the turn time left will be added to your next turn."] = "", -- A_Space_Adventure:fruit03
---      ["If you wish to replay, there are other possible endings, too!"] = "", -- A_Classic_Fairytale:epil
---      ["Igmund"] = "", -- User_Mission_-_Nobody_Laugh
---      ["I grew sick of the oppression! I broke free!"] = "", -- A_Classic_Fairytale:queen
---      ["I guess I can't go far without fuel!"] = "", -- A_Space_Adventure:cosmos
---      ["I guess we lost him!"] = "", -- A_Space_Adventure:cosmos
---      ["I guess you'll have to kill them."] = "", -- A_Classic_Fairytale:dragon
---      ["I have come to make you an offering..."] = "", -- A_Classic_Fairytale:shadow
---      ["I have heard that the local tribes say that many years ago some PAotH scientists were dumping their waste here."] = "", -- A_Space_Adventure:desert01
---      ["I have more important things to do!"] = "", -- A_Classic_Fairytale:queen
---      ["I have no idea where that mole disappeared...Can you see it?"] = "", -- A_Classic_Fairytale:shadow
---      ["I have only 3 hogs available and they are all cadets."] = "", -- A_Space_Adventure:fruit01
---      ["I have to follow that alien."] = "", -- A_Classic_Fairytale:backstab
---      ["I have to get back to the village!"] = "", -- A_Classic_Fairytale:shadow
---      ["I have to reach the surface as quickly as I can."] = "", -- A_Space_Adventure:desert02
---      ["I hope you are prepared for a small challenge, young one."] = "", -- A_Classic_Fairytale:first_blood
---      ["I just don't want to sink to your level."] = "", -- A_Classic_Fairytale:backstab
---      ["I just forgot all checkpoints of incomplete missions."] = "", -- A_Space_Adventure:cosmos
---      ["I just found out that they have captured your princess!"] = "", -- A_Classic_Fairytale:family
---      ["I just want the strange device you found!"] = "", -- A_Space_Adventure:ice01
---      ["I just wonder where Ramon and Spiky disappeared..."] = "", -- A_Classic_Fairytale:journey
---      ["I know and I'm terribly sorry!"] = "", -- A_Classic_Fairytale:epil
---      ["I know, my hero!"] = "", -- A_Classic_Fairytale:epil
---      ["I know that your resources are low due to the battle but I'll send two of my best hogs to assist you."] = "", -- A_Space_Adventure:fruit02
---      ["I … like being with you, too."] = "", -- A_Classic_Fairytale:epil
---      ["I'll get him!"] = "", -- A_Space_Adventure:cosmos
---      ["I'll hold them off while you return to the village!"] = "", -- A_Classic_Fairytale:shadow
---      ["I'll let you know whatever I know about him if you manage to catch me 3 times."] = "", -- A_Space_Adventure:moon02
---      ["I'll make good use of it."] = "", -- A_Space_Adventure:cosmos
---      ["I'll protect you!"] = "", -- A_Classic_Fairytale:epil
---      ["I love Dense Cloud now!"] = "", -- A_Classic_Fairytale:epil
---      ["I love you."] = "", -- A_Classic_Fairytale:epil
---      ["I'm afraid I can't let you proceed!"] = "", -- A_Classic_Fairytale:queen
---      ["I'm afraid we cannot afford that."] = "", -- A_Classic_Fairytale:queen
---      ["Imagine those targets are the wolves that killed your parents! Take your anger out on them!"] = "", -- A_Classic_Fairytale:first_blood
---      ["I'm...alive? How? Why?"] = "", -- A_Classic_Fairytale:backstab
---      ["I'm a ninja."] = "", -- A_Classic_Fairytale:dragon
---      ["I marked the place of their arrival. You're welcome!"] = "", -- A_Classic_Fairytale:backstab
---      ["I may lost this battle, but I haven't lost the war yet!"] = "", -- A_Space_Adventure:moon01
---      ["I'm certain that this is a misunderstanding, fellow hedgehogs!"] = "", -- A_Classic_Fairytale:first_blood
---      ["I mean, none of you ceased to live."] = "", -- A_Classic_Fairytale:enemy
---      ["I'm getting old for this!"] = "", -- A_Classic_Fairytale:family
---      ["I'm getting thirsty..."] = "", -- A_Classic_Fairytale:family
---      ["I'm glad this is over!"] = "", -- A_Classic_Fairytale:epil
---      ["I'm here to help you rescue her."] = "", -- A_Classic_Fairytale:family
---      ["I'm living a dream!"] = "", -- A_Classic_Fairytale:queen
---      ["I'm not sure about that!"] = "", -- A_Classic_Fairytale:united
---      ["IMPORTANT: To see the mission panel again, hold the mission panel key."] = "", -- Basic_Training_-_Movement
---      ["IMPORTANT: To see the mission panel again, pause the game."] = "", -- Basic_Training_-_Movement
---      ["Impressive...you are still dry as the corpse of a hawk after a week in the desert..."] = "", -- A_Classic_Fairytale:first_blood
---      ["%i ms"] = "", -- Gravity
---      ["I'm so glad this is finally over!"] = "", -- A_Space_Adventure:final
---      ["I'm so scared!"] = "", -- A_Classic_Fairytale:united
---      ["I'm still low on hogs. If you are not afraid I could use a set of extra hands."] = "", -- A_Space_Adventure:fruit02
---      ["I'm still with the aliens."] = "", -- A_Classic_Fairytale:queen
---      ["I'm terribly sorry!"] = "", -- A_Classic_Fairytale:queen
---      ["I'm the spy! I've been giving you out!"] = "", -- A_Classic_Fairytale:queen
---      ["In am also entrusting you with some rope."] = "", -- A_Space_Adventure:cosmos
---      ["In case you haven't noticed, I'm a woman, too!"] = "", -- A_Classic_Fairytale:queen
---      ["Increase the dust storm damage by sacrificing|your invulnerable ammo."] = "", -- Continental_supplies
---      ["Incredible..."] = "", -- A_Classic_Fairytale:shadow
---      ["Indestructible Girder: [2]"] = "", -- HedgeEditor
---      ["Indestructible Land: [2]"] = "", -- HedgeEditor
---      ["Indestructible Land"] = "", -- HedgeEditor
---      ["In each round, the worst hedgehog of the round is eliminated."] = "", -- TrophyRace
---      ["I need to find the others!"] = "", -- A_Classic_Fairytale:backstab
---      ["I need to get to the other side of this island, fast!"] = "", -- A_Classic_Fairytale:journey
---      ["I need to move the tribe!"] = "", -- A_Classic_Fairytale:united
---      ["I need to prevent their arrival!"] = "", -- A_Classic_Fairytale:backstab
---      ["I need to warn the others."] = "", -- A_Classic_Fairytale:backstab
---      ["In fact, you are the only one that's been acting strangely."] = "", -- A_Classic_Fairytale:backstab
---      ["Initial health: %d"] = "", -- Continental_supplies
---      ["Initiate escape wish!"] = "", -- A_Classic_Fairytale:queen
---      ["In order to get to the other side, you need to get rid of the crates first."] = "", -- A_Classic_Fairytale:dragon
---      ["Insanity!"] = "", -- Mutant
---      ["Inside %d"] = "", -- WxW
---      ["Inside"] = "", -- WxW
---      ["Instructions"] = "", -- Basic_Training_-_Flying_Saucer
-      ["Instructor"] = "引导员", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings
---      ["Insufficient Power"] = "", -- Construction_Mode
---      ["Interesting idea, haha!"] = "", -- A_Classic_Fairytale:enemy
---      ["Interesting! Last time you said you killed a cannibal!"] = "", -- A_Classic_Fairytale:backstab
---      ["In the Ice Planet Flying Saucer Stadium ..."] = "", -- A_Space_Adventure:ice02
---      ["In the meantime, take these and return to your \"friend\"!"] = "", -- A_Classic_Fairytale:shadow
---      ["In the stadium, where the best pilots compete ..."] = "", -- A_Space_Adventure:ice02
---      ["In this accident, Professor Hogevil lost all his spines on his head!"] = "", -- A_Space_Adventure:moon02
---      ["In this mission you get %d%% fuel."] = "", -- User_Mission_-_Diver
---      ["In this mission you have infinite time."] = "", -- portal
---      ["Invalid Placement"] = "", -- Construction_Mode
---      ["Invasion"] = "", -- A_Classic_Fairytale:united
---      ["In your best (and only) flight you took out %d crates with one RC plane!"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["In your best flight you took out %d crates with one RC plane."] = "", -- User_Mission_-_RCPlane_Challenge
---      ["I regret to end your little odyssey."] = "", -- A_Classic_Fairytale:queen
---      ["I saw it with my own eyes!"] = "", -- A_Classic_Fairytale:shadow
---      ["I see..."] = "", -- A_Classic_Fairytale:shadow
---      ["I see you already took care of your enemies."] = "", -- A_Classic_Fairytale:dragon
---      ["I see you have already taken the leap of faith."] = "", -- A_Classic_Fairytale:first_blood
---      ["I see you would like his punishment to be more...personal..."] = "", -- A_Classic_Fairytale:first_blood
---      ["I sense another wave of cannibals heading my way!"] = "", -- A_Classic_Fairytale:backstab
---      ["I sense another wave of cannibals heading our way!"] = "", -- A_Classic_Fairytale:backstab
---      ["%i s"] = "", -- Gravity
---      ["I should get myself a portal device, maybe this crate has one."] = "", -- portal
---      ["I should go now, goodbye!"] = "", -- A_Space_Adventure:moon02
---      ["I shouldn't have drunk that last pint."] = "", -- A_Classic_Fairytale:dragon
---      ["Is this place in my head?"] = "", -- A_Classic_Fairytale:dragon
---      ["I still can't believe he sold us out like that."] = "", -- A_Classic_Fairytale:epil
---      ["I still can't believe you forgave her!"] = "", -- A_Classic_Fairytale:epil
---      ["I still have to get rid of the crates."] = "", -- A_Classic_Fairytale:dragon
---      ["Itami"] = "", -- 
---      ["It doesn't matter. I won't let that alien hurt my daughter!"] = "", -- A_Classic_Fairytale:dragon
---      ["I think I love you!"] = "", -- A_Classic_Fairytale:epil
---      ["I think we are safe here."] = "", -- A_Classic_Fairytale:backstab
---      ["I thought their shaman died when he tried our medicine!"] = "", -- A_Classic_Fairytale:shadow
---      ["It is called 'Hogs of Steel'."] = "", -- A_Classic_Fairytale:enemy
---      ["It is time to practice your fighting skills."] = "", -- A_Classic_Fairytale:first_blood
---      ["It must be a childhood trauma..."] = "", -- A_Classic_Fairytale:family
---      ["It must be the aliens!"] = "", -- A_Classic_Fairytale:backstab
---      ["It must be the aliens' deed."] = "", -- A_Classic_Fairytale:backstab
---      ["It must be the cyborgs again!"] = "", -- A_Classic_Fairytale:enemy
---      ["It needs some practice, but you have infinite lives."] = "", -- Basic_Training_-_Rope
---      ["I told you, I just found them."] = "", -- A_Classic_Fairytale:backstab
---      ["It only works in teleportation nodes of your own clan."] = "", -- Construction_Mode
---      ["It's a good thing SUDDEN DEATH is 99 turns away..."] = "",
---      ["It's all about the right carrots, you know."] = "", -- A_Classic_Fairytale:epil
---      ["It's always up to women to clear up the mess men created!"] = "", -- A_Classic_Fairytale:dragon
---      ["It's amazing how quickly our lives can change."] = "", -- A_Classic_Fairytale:epil
---      ["It's an ancient ritual of theirs."] = "", -- A_Classic_Fairytale:queen
---      ["IT'S A SERIOUS MEDICAL CONDITION!"] = "", -- A_Classic_Fairytale:queen
---      ["It's a shame, I forgot how to do that!"] = "", -- A_Classic_Fairytale:family
---      ["It's a shame, really!"] = "", -- A_Classic_Fairytale:queen
---      ["It seems that Professor Hogevil has prepared for your arrival!"] = "", -- A_Space_Adventure:moon01
---      ["It's empty!"] = "", -- Battalion
---      ["It's impossible to communicate with the spirits without a shaman."] = "", -- A_Classic_Fairytale:shadow
---      ["It's not that easy, so listen carefully:"] = "", -- Basic_Training_-_Flying_Saucer
---      ["It's over..."] = "", -- A_Classic_Fairytale:shadow
---      ["It's precious to me!"] = "", -- A_Classic_Fairytale:queen
---      ["It's time you learned that your actions have consequences!"] = "", -- A_Classic_Fairytale:journey
---      ["It's worth more than wood!"] = "", -- A_Classic_Fairytale:enemy
---      ["It's your fault you're there!"] = "", -- A_Classic_Fairytale:epil
---      ["It wants our brains!"] = "", -- A_Classic_Fairytale:shadow
---      ["It was all a trick?!"] = "", -- A_Classic_Fairytale:queen
---      ["It was all just bad luck!"] = "", -- ClimbHome
---      ["It was completely useless!"] = "", -- A_Space_Adventure:final
---      ["It was fun to watch."] = "", -- A_Classic_Fairytale:queen
---      ["It was fun to watch, though."] = "", -- A_Classic_Fairytale:queen
---      ["It was not a dream, unwise one!"] = "", -- A_Classic_Fairytale:backstab
---      ["It wasn't her fault!"] = "", -- A_Classic_Fairytale:epil
---      ["It would be wiser to steal the space ship while the PAotH guards are taking a brake!"] = "", -- A_Space_Adventure:cosmos
---      ["Ivan"] = "", -- 
---      ["I've made it! Yeah!"] = "", -- A_Space_Adventure:moon01
---      ["I've seen this before. They just appear out of thin air."] = "", -- A_Classic_Fairytale:united
---      ["I've thought that the best way to get the device is to let you collect most of the parts for me!"] = "", -- A_Space_Adventure:death01
---      ["I want to play a game..."] = "", -- A_Classic_Fairytale:journey
---      ["I want to see how it handles this!"] = "", -- A_Classic_Fairytale:backstab
---      ["I was heading home, you see!"] = "", -- A_Classic_Fairytale:queen
---      ["I was so scared."] = "", -- A_Classic_Fairytale:epil
---      ["I was told that as the leader of the king's guard, no one knows this world better than you!"] = "", -- A_Space_Adventure:fruit01
---      ["I will never hand you the parts!"] = "", -- A_Space_Adventure:death01
---      ["I wish to help you, %s!"] = "", -- A_Classic_Fairytale:dragon
---      ["I wonder where Dense Cloud is..."] = "", -- A_Classic_Fairytale:journey, A_Classic_Fairytale:shadow
---      ["I wonder why I'm so angry all the time..."] = "", -- A_Classic_Fairytale:family
---      ["I won't let you kill her!"] = "", -- A_Classic_Fairytale:journey
---      ["I won't let you kill the tribe!"] = "", -- A_Classic_Fairytale:queen
---      ["I would gladly help you if we won this battle but under these circumstances I'll only help you if you fight for our side."] = "", -- A_Space_Adventure:fruit01
---      ["Jack"] = "", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
---      ["Jason"] = "", -- 
---      ["Jeremiah"] = "", -- A_Classic_Fairytale:dragon
---      ["Jetpack"] = "", -- Big_Armory
---      ["Jigglypuff"] = "", -- 
---      ["Jim Morgan"] = "", -- 
---      ["Jimmy"] = "", -- 
---      ["Jingo"] = "", -- 
---      ["Joe"] = "", -- A_Space_Adventure:moon01
---      ["John"] = "", -- A_Classic_Fairytale:journey
---      ["John Snow"] = "", -- A_Space_Adventure:ice01
---      ["Jolly Roger"] = "", -- 
---      ["Jones"] = "", -- 
---      ["Judas"] = "", -- A_Classic_Fairytale:backstab
---      ["Juicy"] = "", -- 
---      ["Jumping"] = "", -- Basic_Training_-_Movement
---      ["Jumping is disabled"] = "",
---      ["Just kidding, none of you have died!"] = "", -- A_Classic_Fairytale:enemy
---      ["Just look at Leaks, may he rest in peace!"] = "", -- A_Classic_Fairytale:queen
---      ["Just on a walk."] = "", -- A_Classic_Fairytale:united
---      ["Just wait till I get my hands on that trauma! ARGH!"] = "", -- A_Classic_Fairytale:family
---      ["Kaboom!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Kaboom! Hahahaha! Take this, stupid meteorite!"] = "", -- A_Space_Adventure:final
---      ["Kamikaze"] = "", -- Construction_Mode
---      ["Kamikaze Expert! +15 points!"] = "", -- Space_Invasion
---      ["Keep it up!"] = "",
---      ["Ken"] = "", -- 
---      ["Kenshi"] = "", -- 
---      ["Kerguelen"] = "", -- Continental_supplies
---      ["key."] = "", -- Continental_supplies
---      ["Kill all enemy hedgehogs in a single turn."] = "", -- Big_Armory
---      ["Kill him or skip your turn."] = "", -- A_Classic_Fairytale:backstab
---      ["Killing spree!"] = "",
---      ["Killing the specialists"] = "", -- A_Space_Adventure:death02
---      ["KILL IT!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Kills: %d"] = "", -- Space_Invasion
---      ["Kill the aliens!"] = "", -- A_Classic_Fairytale:dragon
---      ["Kill the cannibal!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Kill The Leader"] = "", -- WxW
---      ["Kill The Leader: You must also hit the team with the most health."] = "", -- WxW
---      ["Kill the traitor, %s, or spare his life!"] = "", -- A_Classic_Fairytale:backstab
---      ["--- King ---"] = "", -- Battalion
---      ["King"] = "", -- Battalion
---      ["--- King Mode ---"] = "", -- Battalion
---      ["Knight"] = "", -- Battalion
---      ["Knives"] = "", -- 
---      ["Knockball"] = "", -- Knockball
---      ["Knockball weapon"] = "", -- Knockball
---      ["Knock off the enemies from the left-most place of the map!"] = "", -- A_Space_Adventure:fruit01
---      ["koda"] = "", -- 
---      ["Kostya"] = "", -- 
---      ["Lady Mango"] = "", -- A_Space_Adventure:fruit01, A_Space_Adventure:fruit02
---      ["LandFlag Modification Mode"] = "", -- HedgeEditor
---      ["Land mines explode instantly."] = "", -- User_Mission_-_Teamwork_2
---      ["Lassard"] = "", -- 
---      ["Last Resort: Having less than 25% base health gives kamikaze"] = "", -- Battalion
---      ["Last Target!"] = "",
---      ["Launch a bouncy ball which explodes into a crate."] = "", -- Continental_supplies
---      ["Launch some bazookas to destroy the targets!"] = "", -- Basic_Training_-_Bazooka
---      ["Leader"] = "", -- A_Classic_Fairytale:enemy
---      ["Leaderbot"] = "", -- A_Classic_Fairytale:queen
---      ["Lead your allies to battle and eliminate all the enemies!"] = "", -- A_Space_Adventure:fruit01
---      ["Leaks A Lot"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:first_blood, A_Classic_Fairytale:journey, A_Classic_Fairytale:queen, A_Classic_Fairytale:shadow, A_Classic_Fairytale:united
---      ["Leaks A Lot, depressed for killing his loved one, failed to save the village..."] = "", -- A_Classic_Fairytale:journey
---      ["Leaks A Lot gave his life for his tribe! He should have survived!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Leaks A Lot must survive!"] = "", -- A_Classic_Fairytale:journey
---      ["Leap of Faith"] = "", -- Basic_Training_-_Movement
---      ["Led Heart"] = "", -- A_Classic_Fairytale:queen
---      ["Lee"] = "", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
---      ["Left and right"] = "", -- WxW
---      ["Left, right and roof"] = "", -- WxW
---      ["[Left], [Right]: Change between identities."] = "", -- HedgeEditor
---      ["[Left], [Right]: Change health value."] = "", -- HedgeEditor
---      ["Left/right: Choose crate contents"] = "", -- Construction_Mode
---      ["Left/right: Choose structure type"] = "", -- Construction_Mode
---      ["Left/right: Choose structure type|Cursor: Build structure"] = "", -- Construction_Mode
---      ["Legs"] = "", -- 
---      ["Less tools, more fun"] = "", -- Battalion
---      ["Lestat"] = "", -- portal
---      ["Let a continent provide your weapons!"] = "", -- Continental_supplies
---      ["Let me test your skills a little, will you?"] = "", -- A_Classic_Fairytale:journey
---      ["Let's get started!"] = "", -- Basic_Training_-_Bazooka
---      ["Let's go!"] = "", -- A_Space_Adventure:moon02
---      ["Let's go home!"] = "", -- A_Classic_Fairytale:journey
---      ["Let's go, %s!"] = "", -- WxW
---      ["Let's head back to the village!"] = "", -- A_Classic_Fairytale:shadow
---      ["Let's see what your comrade does now!"] = "", -- A_Classic_Fairytale:journey
---      ["Let's show those cannibals what we're made of!"] = "", -- A_Classic_Fairytale:backstab
---      ["Let them have a taste of my fury!"] = "", -- A_Classic_Fairytale:backstab
---      ["Let us help, too!"] = "", -- A_Classic_Fairytale:backstab
---      ["Level 1 clear!"] = "", -- A_Space_Adventure:desert03
---      ["Level 2 clear!"] = "", -- A_Space_Adventure:desert03
---      ["Level Data Saved!"] = "", -- HedgeEditor
---      ["Lightbender"] = "", -- 
---      ["Light Cannfantry"] = "", -- A_Classic_Fairytale:united
---      ["Limited Ammo"] = "", -- Basic_Training_-_Bazooka
---      ["Listen carefully! The bandit leader, Thanta, has recently found a very strange device."] = "", -- A_Space_Adventure:ice01
---      ["Listen up, maggot!"] = "", -- User_Mission_-_Dangerous_Ducklings
-      ["Listen up, maggot!!"] = "听好,小子!!",
---      ["Little did they know that this hunt will mark them forever..."] = "", -- A_Classic_Fairytale:shadow
---      ["Little Obstacle Course"] = "", -- Basic_Training_-_Rope
---      ["Lively Lifeguard"] = "",
---      ["Lonely Cries"] = "", -- Continental_supplies
---      ["Lonely Cries: [Rise the water if no hog is in the circle and deal 6 damage to all enemy hogs.]"] = "", -- Continental_supplies
---      ["Long Jump: [Enter]"] = "", -- Basic_Training_-_Movement
---      ["Long Jump: Tap the [Curvy Arrow] button for long"] = "", -- Basic_Training_-_Movement, A_Classic_Fairytale:first_blood
---      ["Long Live The Queen"] = "", -- A_Classic_Fairytale:queen
---      ["Look around: [Mouse movement]"] = "", -- Basic_Training_-_Movement
---      ["Look around: [Tap or swipe on the screen]"] = "", -- Basic_Training_-_Movement
---      ["Look, boss! There is the target!"] = "", -- A_Space_Adventure:moon01
---      ["Look, I had no choice!"] = "", -- A_Classic_Fairytale:backstab
---      ["Look out! There's more of them!"] = "", -- A_Classic_Fairytale:backstab
---      ["Look out! We're surrounded by cannibals!"] = "", -- A_Classic_Fairytale:enemy
---      ["Looks like the whole world is falling apart!"] = "", -- A_Classic_Fairytale:enemy
---      ["Look to the left and do a backwards jump towards the mushroom."] = "", -- A_Classic_Fairytale:first_blood
---      ["Loon"] = "", -- The_Specialists
---      ["Loopy"] = "", -- 
---      ["Losing Condition: Destroy"] = "", -- HedgeEditor
---      ["Low Gravity: Gravity is %i%%"] = "", -- Gravity
---      ["Loyal Highlander: Eliminate enemy hogs to take their weapons"] = "", -- Highlander
---      ["Lt. Luke"] = "", -- 
---      ["Lucifer"] = "", -- portal
---      ["Luck: %d%% (modifier for crates)"] = "", -- Battalion
---      ["Luckily, I've managed to snatch some of them."] = "", -- A_Classic_Fairytale:united
---      ["Ludicrous kill!"] = "", -- Mutant
---      ["Lugia"] = "", -- 
---      ["Luigi"] = "", -- 
---      ["Made it!"] = "", -- ClimbHome
---      ["Mahoney"] = "", -- 
---      ["Make fun of me when I fart …"] = "", -- A_Classic_Fairytale:queen
---      ["Manual: https://hedgewars.org/hedgeeditor"] = "", -- HedgeEditor
---      ["Many long forgotten things can be found in the same tunnels that we are about to explore!"] = "", -- A_Space_Adventure:fruit02
---      ["Many meters below the surface ..."] = "", -- A_Space_Adventure:desert02
---      ["Mario"] = "", -- 
---      ["Mark gears for win/lose conditions"] = "", -- HedgeEditor
---      ["Mark/unmark gear: [Left Click]"] = "", -- HedgeEditor
---      ["- Massive weapon bonus on first turn"] = "", -- Continental_supplies
---      ["Max Citrus"] = "", -- A_Space_Adventure:fruit01
---      ["Maybe you should try an easier map next time."] = "", -- Racer
---      ["Maybe you should try an easier TechRacer map."] = "", -- TechRacer
---      ["Maybe you should try easier waypoints next time."] = "", -- Racer
---      ["May the spirits aid you in all your quests!"] = "", -- A_Classic_Fairytale:backstab
---      ["Meals"] = "", -- 
---      ["Medic"] = "", -- Battalion
---      ["Medicine"] = "", -- Continental_supplies
---      ["Medicine: [Fire some exploding medicine that will heal all hogs effected by the explosion]"] = "", -- Continental_supplies
---      ["MEDIUM"] = "", -- Continental_supplies
---      ["Mega kill!"] = "", -- Mutant
---      ["Meiwes"] = "", -- A_Classic_Fairytale:backstab
---      ["mikade"] = "", -- 
---      ["Mindy"] = "", -- A_Classic_Fairytale:united
---      ["Mine Deployer"] = "",
---      ["Mine Placement Mode"] = "", -- Construction_Mode
---      ["MINE PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Mines explode after %d s."] = "", -- Mutant
---      ["Mines time: 0s-5s"] = "", -- SimpleMission
---      ["Mines time: 0 seconds"] = "", -- portal, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, User_Mission_-_The_Great_Escape, A_Space_Adventure:desert01, A_Space_Adventure:final, A_Space_Adventure:fruit02, A_Space_Adventure:ice01
---      ["Mines time: 1.5 seconds"] = "", -- A_Space_Adventure:death01
---      ["Mines time: %.1fs"] = "", -- SimpleMission
---      ["Mines time: 1 second"] = "", -- User_Mission_-_Diver, User_Mission_-_Newton_and_the_Hammock, A_Space_Adventure:desert02
---      ["Mines time: %.2fs"] = "", -- SimpleMission
---      ["Mines time: 3 seconds"] = "", -- A_Classic_Fairytale:journey
---      ["Mines time: 5 seconds"] = "", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:journey
---      ["Mines time: %ds"] = "", -- SimpleMission
---      ["Mine Strike"] = "", -- Construction_Mode
---      ["Minion"] = "", -- A_Space_Adventure:moon01
---      ["Minions"] = "", -- A_Space_Adventure:moon01
---      ["Mission failed!"] = "", -- Big_Armory
---      ["Mission failure in %d s"] = "", -- Big_Armory
---      ["Mission"] = "", -- HedgeEditor
---      ["Mission lost!"] = "", -- Basic_Training_-_Grenade
---      ["Mission Panel"] = "", -- Basic_Training_-_Movement
---      ["Mission panel: [M]"] = "", -- Basic_Training_-_Movement
---      ["Mission succeeded!"] = "", -- portal, User_Mission_-_Bamboo_Thicket, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork_2, User_Mission_-_Teamwork, SimpleMission, HedgeEditor
---      ["Mission won!"] = "", -- Basic_Training_-_Grenade
---      ["Mister Pear"] = "", -- A_Space_Adventure:fruit01, A_Space_Adventure:fruit02
---      ["Mixed %d"] = "", -- WxW
---      ["Mixed"] = "", -- WxW
---      ["Modes: Activate “highland”, “king” or “points” mode by putting mode=<name>|into the script parameter"] = "", -- Battalion
---      ["Modifiers: Unlimited ammo, per-hog ammo"] = "", -- Battalion
---      ["Modifiers: Unlimited ammo, shared clan ammo"] = "", -- Battalion
---      ["Modifiers: Unlimited attacks, per-hog ammo"] = "", -- Battalion
---      ["Modifiers: Unlimited attacks, shared clan ammo"] = "", -- Battalion
---      ["Modify Sprite under Cursor: [Left Click]"] = "", -- HedgeEditor
---      ["Molly"] = "", -- 
---      ["Molotov"] = "", -- Continental_supplies
---      ["Monster kill!"] = "", -- Mutant
---      ["Monsters"] = "", -- 
---      ["Mooney"] = "", -- 
---      ["Morris"] = "", -- 
---      ["Most mines are not active."] = "", -- A_Space_Adventure:desert02
---      ["Most of the destructible terrain in marked with blue color"] = "", -- A_Space_Adventure:desert01
---      ["Most of the destructible terrain is marked with dashed lines."] = "", -- A_Space_Adventure:desert01
---      ["Most of the time you'll be able to use the freezer only."] = "", -- A_Space_Adventure:ice01
---      ["Movement: [Up], [Down], [Left], [Right]"] = "",
---      ["Mr Mango"] = "", -- A_Space_Adventure:fruit01
---      ["Mudkip"] = "", -- 
---      ["Multi-shot! +15 points!"] = "", -- Space_Invasion
---      ["Multi-Use: You can take and use the same ammo type multiple times in a turn"] = "", -- Highlander
---      ["Muriel"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
---      ["Muscle Dissolver"] = "", -- A_Classic_Fairytale:shadow
---      ["Mushroom Kingdom"] = "", -- 
---      ["Mutant"] = "", -- Mutant
---      ["My First Bazooka"] = "", -- Basic_Training_-_Bazooka
---      ["My flying saucer stopped working!"] = "", -- A_Space_Adventure:ice01
---      ["Nade Boy"] = "", -- Basic_Training_-_Grenade
---      ["Nah, probably everyone was just stupid."] = "", -- A_Space_Adventure:final
---      ["Name"] = "", -- A_Classic_Fairytale:queen
---      ["Nancy Screw"] = "", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:queen
---      ["Napalm"] = "", -- Construction_Mode
---      ["Napalm Rocket"] = "", -- Continental_supplies
---      ["Napalm rocket: [Fire a bomb with napalm!]"] = "", -- Continental_supplies
---      ["Naranja Jed"] = "", -- A_Space_Adventure:fruit01
---      ["Naughty Ninja"] = "", -- User_Mission_-_Dangerous_Ducklings
---      ["Near a PAotH base on the moon ..."] = "", -- A_Space_Adventure:moon01
---      ["Near Secret Base 17 of PAotH in the rural Hogland ..."] = "", -- A_Space_Adventure:cosmos
---      ["nemo"] = "", -- 
---      ["Neutralize your enemies and be careful!"] = "", -- A_Space_Adventure:moon01
---      ["New barrels per turn: %d"] = "", -- Tumbler
---      ["New clan record: %.1fs"] = "", -- Racer, TechRacer
-      ["NEW fastest lap: "] = "新记录",
---      ["New mines per turn: %d"] = "", -- Tumbler
---      ["New race record: %.1fs"] = "", -- Racer, TechRacer
---      ["Newton and the Hammock"] = "", -- User_Mission_-_Newton_and_the_Hammock
---      ["Next target is ready!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Next time you play \"Searching in the dust\" you'll have an RC plane available."] = "", -- A_Space_Adventure:desert03
---      ["Nice!"] = "", -- A_Space_Adventure:cosmos
---      ["Nicely done, meatbags!"] = "", -- A_Classic_Fairytale:enemy
---      ["Nice! Now hurry and get down! You have to rescue my friends!"] = "", -- A_Space_Adventure:moon01
---      ["Nice, then I should get the part as soon as possible!"] = "", -- A_Space_Adventure:ice01
---      ["Nice work!"] = "", -- A_Classic_Fairytale:enemy
---      ["Nice work, meatbags!"] = "", -- A_Classic_Fairytale:queen
---      ["Nice work, %s!"] = "", -- A_Classic_Fairytale:dragon
---      ["Nilarian"] = "", -- A_Classic_Fairytale:queen
---      ["Ninja"] = "", -- Battalion, HedgeEditor, The_Specialists
---      ["Ninpo"] = "", -- 
---      ["Nobody Laugh"] = "", -- User_Mission_-_Nobody_Laugh
---      ["Nobody managed to finish the race. What a shame!"] = "", -- Racer, TechRacer
---      ["Nobody takes walks every day!"] = "", -- A_Classic_Fairytale:epil
---      ["No continent selected"] = "", -- Continental_supplies
---      ["No, I am afraid I had to travel light."] = "", -- A_Space_Adventure:moon01
---      ["No, I came back to help you out..."] = "", -- A_Classic_Fairytale:shadow
---      ["No...I wonder where they disappeared?!"] = "", -- A_Classic_Fairytale:journey
---      ["Nom-Nom"] = "", -- A_Classic_Fairytale:journey
---      ["NomNom"] = "", -- A_Classic_Fairytale:united
---      ["No Multi-Use: Once you used an ammo, you can’t take it again in this turn"] = "", -- Highlander
---      ["Noo, Thanta has to stay alive!"] = "", -- A_Space_Adventure:ice01
---      ["Nope. It was one fast mole, that's for sure."] = "", -- A_Classic_Fairytale:shadow
---      ["No! Please, help me!"] = "", -- A_Classic_Fairytale:journey
---      ["No problem, Captain!"] = "", -- A_Space_Adventure:fruit01
---      ["No problem, I would do anything for H!"] = "", -- A_Space_Adventure:desert01
---      ["No radar pings left!"] = "", -- Space_Invasion
---      ["NORMAL"] = "", -- Continental_supplies
---      ["Normal Girder: [1]"] = "", -- HedgeEditor
---      ["Normal Land: [1]"] = "", -- HedgeEditor
---      ["Normal Land"] = "", -- HedgeEditor
---      ["Normally, the mission panel disappears after a few seconds."] = "", -- Basic_Training_-_Movement
---      ["Normal Rubber: [1]"] = "", -- HedgeEditor
---      ["North America"] = "", -- Continental_supplies
---      ["Not being able to fight or hunt."] = "", -- A_Classic_Fairytale:queen
---      ["Note: Some weapons have a second option (See continent information). Find and use them with the \""] = "", -- Continental_supplies
---      ["Note: Some weapons have a second option (See continent information). Find and use them with the \"%s\" key."] = "", -- Continental_supplies
---      ["Note: This basic training assumes default controls."] = "", -- Basic_Training_-_Movement
---      ["Note: Walking is disabled in this mission."] = "", -- Basic_Training_-_Grenade
---      ["Note: We only give you grenades if you stay in your flying saucer."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Nothing of interest has happened."] = "", -- Space_Invasion
---      ["Not now, Fiery Water!"] = "", -- A_Classic_Fairytale:backstab
-      ["Not So Friendly Match"] = "非友善对抗", -- Basketball, Knockball
---      ["Not you again! My head still hurts from last time!"] = "", -- A_Classic_Fairytale:shadow
---      ["No waypoint to be removed!"] = "", -- Racer
---      ["Now collect the 2 crates to the far left and right."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Now collect the next crate!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Now dive just one more time and collect the next crate."] = "", -- Basic_Training_-_Flying_Saucer
---      ["No, we made sure of that!"] = "", -- A_Classic_Fairytale:united
---      ["Now find the next target! |Tip: Normally you lose health by falling down, so be careful!"] = "", -- Basic_Training_-_Rope
---      ["Now for the supreme discipline of saucer flying, the underwater attack."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Now go and don't waste more of my time, you coward!"] = "", -- A_Space_Adventure:fruit01
---      ["Now go and play the menu mission to complete the campaign."] = "", -- A_Space_Adventure:death01
---      ["Now go to the next crate."] = "", -- Basic_Training_-_Movement
---      ["No! What have I done?! What have YOU done?!"] = "", -- A_Classic_Fairytale:journey
---      ["No. Where did he come from?"] = "", -- A_Classic_Fairytale:shadow
---      ["Now how do I get on the other side?!"] = "", -- A_Classic_Fairytale:dragon
---      ["Now I have to climb these trees"] = "", -- A_Space_Adventure:cosmos
---      ["No Wind Influcence"] = "", -- Basic_Training_-_Grenade
---      ["No Wind Influence"] = "", -- Basic_Training_-_Grenade
---      ["Now let's try to drop weapons while flying!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Now listen carefully! Below us there are tunnels that have been created naturally over the years"] = "", -- A_Space_Adventure:desert01
---      ["Now try to get out of this bounce house|and take the next crate."] = "", -- Basic_Training_-_Movement
---      ["Now use it and go to the moon PAotH station to get more fuel!"] = "", -- A_Space_Adventure:cosmos
---      ["Now you have the chance to try and claim the place that you deserve among the best."] = "", -- A_Space_Adventure:ice02
---      ["No. You and the rest of the tribe are safer there!"] = "", -- A_Classic_Fairytale:backstab
---      ["Objective completed! Now land safely."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Objectives"] = "", -- A_Space_Adventure:ice01
---      ["Object Placer"] = "", -- Construction_Mode
---      ["Obliterate them!|Hint: You might want to take cover..."] = "", -- A_Classic_Fairytale:shadow
---      ["Obstacle"] = "", -- Basic_Training_-_Rope
---      ["Obstacle course"] = "", -- A_Classic_Fairytale:dragon
---      ["Of course, but you're … special."] = "", -- A_Classic_Fairytale:epil
---      ["Of course I am!"] = "", -- A_Classic_Fairytale:queen
---      ["Of course I have to save her. What did I expect?!"] = "", -- A_Classic_Fairytale:family
---      ["Of course! It's all obvious now!"] = "", -- A_Classic_Fairytale:epil
---      ["Of course, I will observe the battle and intervene if necessary."] = "", -- A_Space_Adventure:fruit01
---      ["OH, COME ON!"] = "", -- A_Classic_Fairytale:journey
---      ["Oh man! Learn how to fly!"] = "", -- A_Space_Adventure:ice02
---      ["Oh, my!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Oh, my! I forgot something!"] = "", -- A_Classic_Fairytale:queen
---      ["Oh, my! This is even more entertaining than I've expected!"] = "", -- A_Classic_Fairytale:backstab
---      ["Oh no, not %s!"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:united
---      ["Oh no, the companions have betrayed %s and stole the anti-gravity device part!"] = "", -- A_Space_Adventure:fruit02
---      ["Oh no! You have died. Try again!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Oh! Please spare me. You can take all my treasures!"] = "", -- A_Space_Adventure:ice01
---      ["Oh, silly me! I forgot that I'm the shaman."] = "", -- A_Classic_Fairytale:backstab
---      ["Oh, that. We were just having fun!"] = "", -- A_Classic_Fairytale:queen
---      ["Oh yeah! You sure know how to rope!"] = "", -- Basic_Training_-_Rope
---      ["Oh yes! I got the device part! Now it belongs to me alone."] = "", -- A_Space_Adventure:fruit02
---      ["Okay, I'll be extra careful!"] = "", -- A_Space_Adventure:desert01
---      ["Okay, now destroy the target|using the baseball bat."] = "", -- Basic_Training_-_Rope
---      ["Okay then!"] = "", -- A_Space_Adventure:fruit02
---      ["Okay, then you have to go and take some of the weapons we have hidden in case of an emergency!"] = "", -- A_Space_Adventure:moon01
---      ["Old One Eye"] = "", -- 
---      ["Oleg"] = "", -- 
---      ["Olive"] = "", -- A_Classic_Fairytale:united
---      ["Omnivore"] = "", -- A_Classic_Fairytale:first_blood
---      ["Once upon a time, on an island with great natural resources, lived two tribes in heated conflict..."] = "", -- A_Classic_Fairytale:first_blood
---      ["Once you set off the proximity trigger, Mr. Mine is not your friend"] = "", -- ClimbHome
---      ["One does not simply rope to the moon!"] = "", -- A_Space_Adventure:cosmos
---      ["One flower: Incomplete side missions"] = "", -- A_Space_Adventure:cosmos
---      ["One shall not judge one by one's appearance!"] = "", -- A_Classic_Fairytale:epil
---      ["One tribe was peaceful, spending their time hunting and training, enjoying the small pleasures of life..."] = "", -- A_Classic_Fairytale:first_blood
---      ["Oneye"] = "", -- portal
---      ["Only one hog per team allowed! Excess hogs will be removed"] = "", -- Mutant
---      ["Only one hog per team allowed! Excess hogs will be removed."] = "", -- Mutant
---      ["Only %s can be trusted with the crate."] = "", -- A_Space_Adventure:fruit02
---      ["Only the best pilots can master the following stunts."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Only two clans allowed! Excess hedgehogs will be removed."] = "", -- CTF_Blizzard
---      ["On the Ice Planet, where ice rules ..."] = "", -- A_Space_Adventure:ice01
---      ["On the other side of the moon ..."] = "", -- A_Space_Adventure:moon02
---      ["On the Planet of Sand, you have to double check your moves ..."] = "", -- A_Space_Adventure:desert01
---      ["On this map you get %d%% fuel."] = "", -- TechRacer
---      ["On this map you get infinite fuel."] = "", -- TechRacer
---      ["Oops...I dropped them."] = "", -- A_Classic_Fairytale:united
---      ["Oops, I've been spotted and I have no weapons! I am doomed!"] = "", -- A_Space_Adventure:moon01
---      ["Oops! You have selected the wrong hedgehog! Just try again."] = "", -- Basic_Training_-_Movement
---      ["Open ammo menu: [Right click]"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope
---      ["Open ammo menu: Tap the [Suitcase]"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope
---      ["Open that crate and we will continue!"] = "", -- A_Classic_Fairytale:first_blood
-      ["Opposing Team: "] = "对方队伍",
---      ["Orange"] = "", -- 
---      ["Orlando Boom!"] = "", -- A_Classic_Fairytale:queen
---      ["Or let the next player place waypoints|if less than 2 waypoints have been placed."] = "", -- Racer
---      ["Or maybe this was all part of an evil plan, so evil that even Prof. Hogevil can't think of it!"] = "", -- A_Space_Adventure:final
---      ["Oscillating Gravity: Gravity periodically changes within a range from %i%% to %i%% with a period of %s"] = "", -- Gravity
---      ["Other kills don't give you points."] = "", -- Mutant
---      ["Ouch! That must have hurt. %s (%s) hit the ground with %d damage points."] = "", -- ClimbHome
---      ["Ouch! That must have hurt. You mutilated your poor hedgehog hog with %d damage."] = "", -- ClimbHome
---      ["Ouch! You just took fall damage."] = "", -- Basic_Training_-_Movement
---      ["Our tribe, our beautiful island!"] = "", -- A_Classic_Fairytale:enemy
---      ["Out of ammo!"] = "", -- A_Space_Adventure:desert03, Tumbler
---      ["Out of ammo! Try again!"] = "", -- Basic_Training_-_Bazooka
---      ["Over the Water"] = "", -- Basic_Training_-_Rope
---      ["PAotH"] = "", -- A_Space_Adventure:cosmos, A_Space_Adventure:death01, A_Space_Adventure:desert01, A_Space_Adventure:moon01
---      ["PAotH has sent explosives but unfortunately the trigger mechanism seems to be faulty!"] = "", -- A_Space_Adventure:cosmos
---      ["Parachute"] = "", -- Continental_supplies
---      ["Patches"] = "", -- 
-      ["Pathetic Hog #1"] = "可怜刺猬一号",
-      ["Pathetic Hog #2"] = "可怜刺猬二号",
---      ["Paul McHoggy"] = "", -- A_Space_Adventure:ice01, A_Space_Adventure:ice02
---      ["Pause: [P]"] = "", -- Basic_Training_-_Movement
---      ["Pause: Tap the [Pause] button"] = "", -- Basic_Training_-_Movement
---      ["Penalty: If you violate above rule, you have to skip in the next turn."] = "", -- WxW
---      ["Penguin Roar"] = "", -- Continental_supplies
---      ["Penguin roar: [Deal 15 damage + 10% of your hog’s health to all hogs around you and get 2/3 back]"] = "", -- Continental_supplies
---      ["Penguin roar: [Deal 15 damage + 10% of your hogs health to all hogs around you and get 2/3 back]"] = "", -- Continental_supplies
---      ["Perfect! Now try to get the next crate without hurting yourself!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Per-hog Ammo: Weapons are not shared between hogs"] = "", -- User_Mission_-_Nobody_Laugh
---      ["Personal best: %.3f seconds"] = "", -- A_Space_Adventure:ice02
---      ["Per team weapons"] = "", -- Continental_supplies
---      ["Pfew! That was close!"] = "", -- A_Classic_Fairytale:shadow
---      ["Phosphat"] = "", -- portal
---      ["Physicist"] = "", -- HedgeEditor
---      ["Piano Strike"] = "", -- Construction_Mode
---      ["Pikachu"] = "", -- 
---      ["Pings left: %d"] = "", -- Space_Invasion
---      ["Pink"] = "", -- 
---      ["Pirates"] = "", -- 
---      ["Place 2-%d waypoints using the waypoint placement tool."] = "", -- Racer
---      ["Place 2 waypoints using the waypoint placement tool."] = "", -- Racer
---      ["Place air mines"] = "", -- HedgeEditor
---      ["Place barrels"] = "", -- HedgeEditor
---      ["Place cleavers"] = "", -- HedgeEditor
---      ["Place/Delete Waypoint: [Left Click]"] = "", -- HedgeEditor
---      ["Place dud mines"] = "", -- HedgeEditor
---      ["Place Gears (and more): Gear Placement Tool"] = "", -- HedgeEditor
---      ["Place Girder: Girder"] = "", -- HedgeEditor
---      ["Place Girder: [Left Click]"] = "", -- HedgeEditor
---      ["Place girders"] = "", -- HedgeEditor
---      ["Place health crates"] = "", -- HedgeEditor
---      ["Place hedgehogs: Place your hedgehogs at the start of the game."] = "", -- WxW
---      ["Placement Mode"] = "", -- HedgeEditor
---      ["Place mines"] = "", -- HedgeEditor
---      ["Place, modify and delete gears (e.g. objects)|and waypoints, edit hedgehog settings, values,|victory conditions, and more."] = "", -- HedgeEditor
---      ["Place Object: [Left Click]"] = "", -- HedgeEditor
---      ["Place or delete waypoints"] = "", -- HedgeEditor
---      ["Place rubber"] = "", -- HedgeEditor
---      ["Place Rubber: Rubber"] = "", -- HedgeEditor
---      ["Place Sprite: [Left Click]"] = "", -- HedgeEditor
---      ["Place sprites to build land"] = "", -- HedgeEditor
---      ["Place sticky mines"] = "", -- HedgeEditor
---      ["Place targets"] = "", -- HedgeEditor
---      ["Place utility crates"] = "", -- HedgeEditor
---      ["Place Waypoint"] = "", -- HedgeEditor
---      ["Place waypoint"] = "", -- Racer
---      ["Place weapon crates"] = "", -- HedgeEditor
---      ["- Place your clan flag at the end of your first turn"] = "", -- Capture_the_Flag
---      ["- Place your team flag at the end of your first turn"] = "", -- Capture_the_Flag
---      ["Planes used: %d"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Planes Used"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Planes Used:"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Planets with all missions completed will be marked with two flowers."] = "", -- A_Space_Adventure:cosmos
---      ["Planets with completed main missions will be marked with a flower."] = "", -- A_Space_Adventure:cosmos
---      ["Play with me!"] = "", -- A_Classic_Fairytale:shadow
---      ["Please click on a crate."] = "", -- HedgeEditor
---      ["Please click on a gear."] = "", -- HedgeEditor
---      ["Please click on a hedgehog, barrel, health crate or dud mine."] = "", -- HedgeEditor
---      ["Please click on a hedgehog."] = "", -- HedgeEditor
---      ["Please place the waypoint further away from the waterline"] = "", -- Racer, TechRacer
---      ["Please place the waypoint in the air and within the map boundaries"] = "", -- TechRacer
---      ["Please place the waypoint in the air, within the map boundaries"] = "", -- Racer
---      ["Please place your hedgehog first!"] = "", -- WxW
---      ["Please, stop releasing your \"smoke signals\"!"] = "", -- A_Classic_Fairytale:shadow
---      ["Please wait …"] = "", -- WxW
---      ["Point Blank Combo! +5 points!"] = "", -- Space_Invasion
---      ["--- Points ---"] = "", -- Battalion
---      ["--- Points Mode ---"] = "", -- Battalion
---      ["Poison"] =
---      ["Poisonous Apple"] = "", -- A_Space_Adventure:fruit02
---      ["Poisonous, deals no damage."] = "", -- Continental_supplies
---      ["Pokémon"] = "", -- 
---      ["Poor %s (%s) died %d times."] = "", -- Mutant
---      ["Population"] = "", -- Continental_supplies
---      ["Porkey"] = "", -- 
---      ["Portal hint: one goes to the destination, and one is the entrance.|"] = "", -- A_Classic_Fairytale:dragon
---      ["Portal hint: One goes to the destination, the other one is the entrance.|"] = "", -- A_Classic_Fairytale:dragon
---      ["Portal Mind Challenge"] = "", -- portal
---      ["Precise Aim: [Left Shift]"] = "", -- Basic_Training_-_Movement
---      ["Precise Aim: [Left Shift] + [Up]/[Down]"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
---      ["Precise flying"] = "", -- A_Space_Adventure:desert03
---      ["Precise: Remove previous waypoint"] = "", -- Racer
---      ["Precise shooting"] = "", -- A_Space_Adventure:fruit03
---      ["Predator"] = "", -- portal
---      ["Prepare for battle!"] = "", -- A_Space_Adventure:moon01
---      ["Prepare to fight"] = "", -- A_Space_Adventure:moon01
---      ["Prepare to flee!"] = "", -- A_Space_Adventure:cosmos
---      ["Prepare yourself, %s!"] = "", -- The_Specialists
---      ["Press [Attack] (space bar by default) to start,|repeadedly tap the up, left and right movement keys to accelerate."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Press [Attack] (space bar by default) to start,|repeatedly tap the up, left and right movement keys to accelerate."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Press [Attack] to begin."] = "", -- A_Classic_Fairytale:first_blood
---      ["Press [Attack] to confirm."] = "", -- Continental_supplies
---      ["Press [Attack] to select this continent!"] = "", -- Continental_supplies
---      ["Press [Left] and [Right] to change the difficulty."] = "", -- A_Classic_Fairytale:first_blood
---      ["Press [Left] or [Right] to move around, [Long Jump] to jump forwards."] = "", -- A_Classic_Fairytale:first_blood
---      ["Press [Long jump] to accept this configuration and begin placing hedgehogs."] = "", -- WxW
---      ["Press [Long jump] to accept this configuration and start the game."] = "", -- WxW
---      ["Press [M] to see the mission texts"] = "", -- Basic_Training_-_Movement
---      ["Press [Precise] to skip intro"] = "",
---      ["Press [Up] and [Down] to move between menu items.|Press [Attack], [Left], or [Right] to toggle."] = "", -- WxW
---      ["Prestigious Pilot"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Princess"] = "", -- A_Classic_Fairytale:family, A_Classic_Fairytale:journey
---      ["Princess Peach"] = "", -- 
---      ["Problems, dude? Chillax!"] = "", -- A_Classic_Fairytale:epil
---      ["Professional pilot"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Professional stunt pilot"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Professor"] = "", -- A_Space_Adventure:death01, A_Space_Adventure:moon01
---      ["Professor Hogevil, then known as James Hogus, worked for PAotH back in my time."] = "", -- A_Space_Adventure:moon02
---      ["Professor's Team"] = "", -- A_Space_Adventure:death01
---      ["Prof. Hogevil"] = "", -- A_Space_Adventure:death01, A_Space_Adventure:moon01
---      ["Protect the King: When the king dies, so does the team"] = "", -- Battalion
---      ["Protect yourselves!|Grenade hint: set the timer with [1-5], aim with [Up]/[Down] and hold [Space] to set power"] = "", -- A_Classic_Fairytale:shadow
---      ["Purple"] = "", -- 
---      ["Pyro"] = "", -- HedgeEditor, The_Specialists
---      ["Pyromancer"] = "", -- Battalion
---      ["Quit: [Esc]"] = "", -- Basic_Training_-_Movement
---      ["Race complexity limit reached"] = "", -- Racer, TechRacer
---      ["Race failed!"] = "", -- A_Space_Adventure:moon02
---      ["Racer"] = "", -- Racer
---      ["Racer tool"] = "", -- Racer
---      ["Race"] = "", -- TrophyRace
---      ["Rachel"] = "", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
---      ["Radar: Off"] = "", -- WxW
---      ["Radar: On"] = "", -- WxW
---      ["Radar Ping: [High jump]"] = "", -- Space_Invasion
---      ["Radar: Show after crate drop"] = "", -- WxW
---      ["Raging Buffalo"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen, A_Classic_Fairytale:united
---      ["Ramesses"] = "", -- 
---      ["Ramon"] = "", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen, A_Classic_Fairytale:shadow
---      ["Random continent"] = "", -- Continental_supplies
---      ["Rank: %s"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Razac"] = "", -- portal
---      ["RC Plane Challenge"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["RC Plane"] = "", -- Construction_Mode
---      ["Reach and destroy the final target to win."] = "", -- Basic_Training_-_Rope
---      ["Read the challenge objectives from within the mission for more details."] = "", -- A_Space_Adventure:death02, A_Space_Adventure:desert03, A_Space_Adventure:fruit03
---      ["Ready for Battle?"] = "", -- A_Space_Adventure:fruit01
---      ["Really?! You thought you could harm me with your little toys?"] = "", -- A_Classic_Fairytale:shadow
---      ["Red"] = "", -- 
---      ["Reflector Shield"] = "", -- Construction_Mode
---      ["Reflector Shield: Reflects enemy projectiles."] = "", -- Construction_Mode
---      ["Regurgitator"] = "", -- A_Classic_Fairytale:backstab
---      ["Reinforcements! +2 of each weapon!"] = "", -- A_Space_Adventure:death02
---      ["Reinforcements"] = "", -- A_Classic_Fairytale:backstab
---      ["Release rope: [Attack]"] = "", -- Basic_Training_-_Rope
---      ["Remember: Hold down [Left Shift] to prevent slipping"] = "", -- Basic_Training_-_Movement
---      ["Remember! Many will seek the anti-gravity device! Now go, hurry up!"] = "", -- A_Space_Adventure:cosmos
---      ["Remember: The rope only bend around objects, |if it doesn't hit anything it's always stright!"] = "", -- Basic_Training_-_Rope
---      ["Remember this, pathetic animal: when the day comes, you will regret your blind loyalty!"] = "", -- A_Classic_Fairytale:shadow
---      ["Remember this, pathetic animal: When the day comes, you will regret your blind loyalty!"] = "", -- A_Classic_Fairytale:shadow
---      ["Replenishment: Weapons are restocked on turn start of a new hog"] = "", -- Highlander
---      ["Repositioning Mode"] = "", -- HedgeEditor
---      ["REPOSITIONING MODE"] = "", -- HedgeEditor
---      ["Rescue the imprisoned PAotH team and get the fuel!"] = "", -- A_Space_Adventure:moon01
---      ["Respawner"] = "", -- Construction_Mode
---      ["Respawner: Resurrects dead hogs."] = "", -- Construction_Mode
---      ["Resurrector"] = "", -- Construction_Mode
---      ["Retract/Extend rope: [Up]/[Down]"] = "", -- Basic_Training_-_Rope
---      ["- Return the enemy flag to your base to score"] = "", -- Capture_the_Flag
---      ["Return to Leaks A Lot!"] = "", -- A_Classic_Fairytale:shadow
---      ["Return to the mission menu by pressing the \"Go back\" button."] = "", -- A_Space_Adventure:cosmos
---      ["Return to the Surface"] = "", -- A_Space_Adventure:fruit02
---      ["Return to the training menu by pressing the “Go back” button."] = "", -- Basic_Training_-_Movement
---      ["Rider"] = "", -- portal
---      ["Rifleman"] = "", -- Battalion
---      ["Righteous Beard"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:first_blood, A_Classic_Fairytale:queen, A_Classic_Fairytale:united
---      ["Ripe"] = "", -- 
---      ["Rise the water if nobody else is in the circle and deal 6 damage to all enemy hogs."] = "", -- Continental_supplies
---      ["Robert Yellow Apple"] = "", -- A_Space_Adventure:fruit01
---      ["Rocket"] = "", -- Big_Armory
---      ["Ronald"] = "", -- portal
---      ["Roof"] = "", -- WxW
---      ["Rope-knocking Challenge"] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["Rope Master"] = "", -- Basic_Training_-_Rope
---      ["Ropes and Crates"] = "", -- Challenge_-_Speed_Shoppa_-_Ropes
---      ["Ropes can be fired again in the air!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Rope Team"] = "", -- Basic_Training_-_Rope
---      ["Rope Training"] = "", -- Basic_Training_-_Rope
---      ["Rope Weapons"] = "", -- Basic_Training_-_Rope
---      ["Roshi"] = "", -- 
---      ["Rot Molester"] = "", -- A_Classic_Fairytale:shadow
---      ["Rotten"] = "", -- 
---      ["Round draw"] = "", -- Racer, TechRacer
---      ["Round %d (Sudden Death in round %d)"] = "", -- Battalion
---      ["Round limit: %d"] = "", -- Racer
---      ["Round Limit: %d"] = "", -- Space_Invasion
---      ["Round limit:"] = "", -- TechRacer
---      ["Rounds complete: %d/%d"] = "", -- Racer, Space_Invasion, TechRacer
---      ["Round's slowest lap: %.3fs by %s"] = "", -- TrophyRace
---      ["RS1"] = "", -- A_Space_Adventure:fruit03
---      ["RS2"] = "", -- A_Space_Adventure:fruit03
---      ["Rubber"] = "", -- Construction_Mode, HedgeEditor
---      ["Rubber Placement Mode"] = "", -- Construction_Mode
---      ["RUBBER PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Rules:"] = "", -- Capture_the_Flag
---      ["RULES:"] = "", -- Frenzy
---      ["Rules: "] = "", -- Mutant
---      ["Run away, you coward!"] = "", -- A_Space_Adventure:desert01
---      ["Running displacement algorithm …"] = "", -- A_Classic_Fairytale:queen
---      ["Running for survival"] = "", -- A_Space_Adventure:desert02
---      ["Rusted Diego"] = "", -- 
---      ["Rusty Joe"] = "", -- A_Classic_Fairytale:queen
---      ["Ryu"] = "", -- 
---      ["%s (+1)"] = "", -- A_Space_Adventure:fruit03
---      ["%s: %.1fs"] = "", -- Racer, TechRacer
---      ["Sabotage all hogs in the circle and fire a cluster above you.|Sabotaged hogs lose health and have to deal with a very high gravity during their turn."] = "", -- Continental_supplies
---      ["Sabotage/Flare: [Sabotage all hogs in the circle and deal ~1 dmg OR Fire a cluster up into the air]"] = "", -- Continental_supplies
---      ["Saint"] = "", -- HedgeEditor, The_Specialists
---      ["Salivaslurper"] = "", -- A_Classic_Fairytale:united
---      ["Salty Dog"] = "", -- 
---      ["Salvation"] = "", -- A_Classic_Fairytale:family
---      ["Salvation was one step closer now..."] = "", -- A_Classic_Fairytale:dragon
---      ["Sam"] = "", -- A_Space_Adventure:cosmos
---      ["Sandals?! I thought you left your ring!"] = "", -- A_Classic_Fairytale:queen
---      ["%s and GB"] = "", -- A_Space_Adventure:fruit02
---      ["%s and %s enter the battlefield"] = "", -- A_Space_Adventure:fruit01
---      ["Sandstorm"] = "", -- A_Space_Adventure:desert01
---      ["Sandy"] = "", -- A_Space_Adventure:desert01
---      ["%s arrived at the Desert Planet!"] = "", -- A_Space_Adventure:cosmos
---      ["%s arrived at the Fruit Planet!"] = "", -- A_Space_Adventure:cosmos
---      ["%s arrived at the Ice Planet!"] = "", -- A_Space_Adventure:cosmos
---      ["%s arrived at the meteorite!"] = "", -- A_Space_Adventure:cosmos
---      ["%s arrived at the moon!"] = "", -- A_Space_Adventure:cosmos
---      ["%s arrived at the Planet of Death!"] = "", -- A_Space_Adventure:cosmos
---      ["Save as many hogs as possible!"] = "", -- User_Mission_-_That_Sinking_Feeling
---      ["Save Fell From Heaven!"] = "", -- A_Classic_Fairytale:journey
---      ["Save Leaks A Lot!|Hint: The switch hedgehog utility might be of help to you."] = "", -- A_Classic_Fairytale:shadow
---      ["Save Level: [Precise]+[4]"] = "", -- HedgeEditor
---      ["Save the princess! All your hogs must survive!|Hint: Kill the cyborgs first! Use the ammo very carefully!|Hint: You might want to spare a girder for cover!"] = "", -- A_Classic_Fairytale:family
---      ["Save the princess by collecting the crate in under 12 turns!"] = "", -- A_Classic_Fairytale:journey
---      ["Saving Hogera"] = "", -- A_Space_Adventure:cosmos
---      ["%s barely made it past the hogosphere."] = "", -- ClimbHome
---      ["%s bravely climbed up to a dizzy height of %d to reach home."] = "", -- ClimbHome
---      ["Scallywag"] = "", -- 
---      ["Scalp Muncher"] = "", -- A_Classic_Fairytale:backstab
---      ["Scenario"] = "", -- Big_Armory, portal, User_Mission_-_Bamboo_Thicket, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Newton_and_the_Hammock, User_Mission_-_Nobody_Laugh, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork_2, User_Mission_-_Teamwork, User_Mission_-_The_Great_Escape
---      ["Scientist"] = "", -- Battalion
---      ["%s climbed home in %d seconds!"] = "", -- ClimbHome
---      ["%s (contd.)"] = "", -- A_Classic_Fairytale:epil
---      ["Score: %d"] = "", -- Space_Invasion
---      ["Score goal: %d"] = "", -- Control
---      ["Score graph"] = "", -- Mutant, Space_Invasion
---      ["Score points by killing other hedgehogs."] = "", -- Mutant
---      ["Score points by killing other hedgehogs (see below)."] = "", -- Mutant
---      ["Scores: "] = "", -- Capture_the_Flag
---      ["Scores"] = "", -- Mutant
---      ["Scores:"] = "", -- Mutant
---      ["Scoring: "] = "", -- Mutant
---      ["%s couldn't escape, try again!"] = "", -- A_Space_Adventure:fruit01
---      ["Script parameter examples:"] = "", -- Gravity
---      ["%s (+%d)"] = "", -- Battalion
---      ["%s: %d"] = "", -- Capture_the_Flag, Control
---      ["%s (%d)"] = "", -- Continental_supplies
---      ["%s: %d (deaths: %d)"] = "", -- Mutant
---      ["%s (%d), %d sec"] = "", -- Continental_supplies
---      ["%s: Did not finish"] = "", -- Racer, TechRacer
---      ["%s did not finish the race."] = "", -- Racer, TechRacer
---      ["%s didn't expect that."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s died … and lives again!"] = "", -- Construction_Mode
---      ["%s doesn’t really know how to handle a rope properly."] = "", -- ClimbHome
---      ["%s, %d sec"] = "", -- Continental_supplies
---      ["Search for the device with the help of the other hedgehogs."] = "", -- A_Space_Adventure:fruit02
---      ["Searching in the dust"] = "", -- A_Space_Adventure:desert01
---      ["Searching the stars!"] = "", -- A_Space_Adventure:cosmos
---      ["Seduction"] = "", -- Continental_supplies
---      ["Seems like every time you take a \"walk\", the enemy finds us!"] = "", -- A_Classic_Fairytale:backstab
---      ["See that crate farther on the right?"] = "", -- A_Classic_Fairytale:first_blood
-      ["See ya!"] = "再见!",
---      ["Segmentation Paul"] = "", -- A_Classic_Fairytale:dragon
---      ["Select a placement mode and read the infos|in the mission panel to learn how to use it."] = "", -- HedgeEditor
---      ["Select continent!"] = "", -- Continental_supplies
---      ["Select continent"] = "", -- Continental_supplies
---      ["Selection Mode"] = "", -- HedgeEditor
---      ["Select, modify, or delete girders, rubbers and sprites"] = "", -- HedgeEditor
---      ["Select/Place/Delete Gear: [Left Click]"] = "", -- HedgeEditor
---      ["Select, reposition and delete gears"] = "", -- HedgeEditor
---      ["Select Rope"] = "", -- Basic_Training_-_Rope
---      ["Select “Switch Hedgehog” from the ammo menu and|hit the “Attack” key."] = "", -- Basic_Training_-_Movement
---      ["Select “Switch Hedgehog” from the ammo menu and|hit the “Attack” key to proceed."] = "", -- Basic_Training_-_Movement
---      ["Select the current continent."] = "", -- Continental_supplies
---      ["Select the rope to begin!"] = "", -- Basic_Training_-_Rope
---      ["Select this item for a random continent."] = "", -- Continental_supplies
---      ["Select Weapon"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
---      ["Select weapon: [Left click]"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
---      ["Select win/lose condition: [Left], [Right]"] = "", -- HedgeEditor
---      ["Select your continent/weaponset: with the \"Up\" or \"Down\" keys. You can also select one with the weapons menu."] = "", -- Continental_supplies
---      ["Select your continent/weaponset: With the \"Up\" or \"Down\" keys. You can also select one with the weapons menu."] = "", -- Continental_supplies
---      ["Select your continent with [Up]/[Down] or by selecting a representative weapon."] = "", -- Continental_supplies
---      ["%s enters the battlefield"] = "", -- A_Space_Adventure:fruit01
---      ["Sergey"] = "", -- 
---      ["%s escaped successfully!"] = "", -- A_Space_Adventure:fruit01
---      ["Set bounciness: [Left Shift] + [1]-[5]"] = "", -- Basic_Training_-_Grenade
---      ["Set detonation timer: [1]-[5]"] = "", -- Basic_Training_-_Grenade
---      ["Set Health: [Left Click]"] = "", -- HedgeEditor
---      ["Set Identity: [Left Click]"] = "", -- HedgeEditor
---      ["Set period to negative value for random gravity."] = "", -- Gravity
---      ["Set the health of hogs, health crates, barrels and duds"] = "", -- HedgeEditor
---      ["Set to %d"] = "", -- HedgeEditor
---      ["%s exploded."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s fell from a high cliff."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s fell too fast."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s fell victim to a weapon filter"] = "", -- Construction_Mode
---      ["%s felt unstable."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s felt victim to rope-knocking."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s flew like a rock."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s gets an extra life"] = "", -- Construction_Mode
---      ["%s goes the way of the lemming."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["Sgt. Smith"] = "", -- 
---      ["%s had it coming."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s had no chance."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["... share your beauty with the world every morning, my princess!"] = "", -- A_Classic_Fairytale:journey
---      ["%s has been killed before taking enough damage first."] = "", -- SimpleMission
---      ["%s has been knocked out."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s has been rescued from death"] = "", -- Construction_Mode
---      ["%s has dropped the flag!"] = "", -- CTF_Blizzard
---      ["%s has fallen victim to gravity."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s has mutated! +2 points"] = "", -- Mutant
---      ["%s has passed the best height of %s!"] = "", -- ClimbHome
---      ["%s has scored!"] = "", -- Capture_the_Flag
---      ["%s has to refuel the saucer."] = "", -- A_Space_Adventure:moon01
---      ["%s hates Newton."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["She endangered the whole tribe!"] = "", -- A_Classic_Fairytale:epil
---      ["sheepluva"] = "", -- 
---      ["Sheepy"] = "", -- 
---      ["She's behind that tall thingy."] = "", -- A_Classic_Fairytale:family
---      ["Shield boosted! +%d power"] = "", -- Space_Invasion
---      ["Shield depleted"] = "", -- Space_Invasion
---      ["Shield is fully recharged!"] = "",
---      ["Shield Master! +10 points!"] = "", -- Space_Invasion
---      ["Shield Miser! +%d points!"] = "", -- Space_Invasion
---      ["Shield OFF: %d power remaining"] = "", -- Space_Invasion
---      ["Shield ON: %d power remaining"] = "", -- Space_Invasion
---      ["Shield Seeker! +10 points!"] = "", -- Space_Invasion
---      ["Shinobi"] = "", -- 
---      ["%s hit the ground."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["Shoppa Love"] = "", -- Challenge_-_Speed_Shoppa_-_Hedgelove
---      ["Shotgun"] = "", -- Continental_supplies
---      ["Sigh."] = "", -- A_Classic_Fairytale:epil
---      ["Silly"] = "",
---      ["Silver"] = "", -- 
---      ["Sine Gun"] = "", -- Construction_Mode
---      ["Sinky"] = "",
---      ["Sirius Lee"] = "", -- A_Classic_Fairytale:enemy
---      ["%s is dead, who was critical to this mission!"] = "", -- SimpleMission
---      ["%s is eliminated!"] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s is now as poor as a church mouse"] = "", -- Construction_Mode
---      ["%s is now a zombie hedgehog"] = "", -- Construction_Mode
---      ["%s is suddenly low on ammo"] = "", -- Construction_Mode
---      ["Skulls"] = "", -- Bazooka_Battlefield
---      ["Slimer"] = "", -- 
---      ["Slippery"] = "", -- A_Classic_Fairytale:journey
---      ["%s lost all the weapons"] = "", -- Construction_Mode
---      ["%s lost, try again!"] = "", -- A_Space_Adventure:death01, A_Space_Adventure:death02, A_Space_Adventure:desert01, A_Space_Adventure:desert02, A_Space_Adventure:desert03, A_Space_Adventure:final, A_Space_Adventure:fruit01, A_Space_Adventure:fruit02, A_Space_Adventure:fruit03, A_Space_Adventure:ice01, A_Space_Adventure:moon01
---      ["Slot %d: %s"] = "", -- Frenzy
---      ["Slot keys save time! (F1-F10 by default)"] = "", -- Frenzy
---      ["Slowpoke"] = "", -- 
---      ["%s made it past the hogosphere."] = "", -- ClimbHome
---      ["%s managed to pass half of the distance towards home."] = "", -- ClimbHome
---      ["%s may choose the rules."] = "", -- WxW
---      ["Smith 0.97"] = "", -- A_Classic_Fairytale:enemy
---      ["Smith 0.98"] = "", -- A_Classic_Fairytale:enemy
---      ["Smith 0.99a"] = "", -- A_Classic_Fairytale:enemy
---      ["Smith 0.99b"] = "", -- A_Classic_Fairytale:enemy
---      ["Smith 0.99f"] = "", -- A_Classic_Fairytale:enemy
---      ["Smith 1.0"] = "", -- A_Classic_Fairytale:enemy
---      ["Smugglers"] = "", -- A_Space_Adventure:desert01
---      ["%s must collect the final crates."] = "", -- A_Space_Adventure:fruit02
---      ["%s must skip this turn for rule violation."] = "", -- WxW
---      ["Sneaks"] = "", -- Bazooka_Battlefield
---      ["%s never got the ninja diploma."] = "", -- ClimbHome
---      ["%s never wanted to reach for the sky in the first place."] = "", -- ClimbHome
---      ["Sniper! +8 points!"] = "", -- Space_Invasion
---      ["Sniper"] = "", -- HedgeEditor, The_Specialists
---      ["Sniper Rifle"] = "", -- Continental_supplies
-      ["Sniper Training"] = "狙击训练",
---      ["So, as promised I have brought you where I think that the device you are looking for is hidden."] = "", -- A_Space_Adventure:fruit02
---      ["So far, you had infinite ropes, but in the|real world, ropes are usually limited."] = "", -- Basic_Training_-_Rope
---      ["So humiliating..."] = "", -- A_Classic_Fairytale:first_blood
---      ["So, I believe that it's a good place to start."] = "", -- A_Space_Adventure:desert01
---      ["So, I kindly ask for your help."] = "", -- A_Space_Adventure:fruit01
---      ["So I shook my fist in the air!"] = "", -- A_Classic_Fairytale:epil
---      ["Soldier"] = "", -- HedgeEditor, The_Specialists
---      ["So, let me tell you what I know about Professor Hogevil."] = "", -- A_Space_Adventure:moon02
---      ["Some parts of the land are indestructible."] = "", -- A_Space_Adventure:fruit03
---      ["Some sick game of yours?!"] = "", -- A_Classic_Fairytale:queen
---      ["Some weapons can be dropped from the rope."] = "", -- Basic_Training_-_Rope
---      ["Somewhere else on the planet of fruits, Captain Lime helps %s"] = "", -- A_Space_Adventure:fruit02
---      ["Somewhere else on the planet of fruits, %s gets closer to the device"] = "", -- A_Space_Adventure:fruit02
---      ["Somewhere on the Planet of Fruits a terrible war is about to begin ..."] = "", -- A_Space_Adventure:fruit01
---      ["Somewhere on the uninhabitable Death Planet ..."] = "", -- A_Space_Adventure:death01
---      ["So, now I got the last part and I have your friends captured."] = "", -- A_Space_Adventure:death01
---      ["So, %s, here we are ..."] = "", -- A_Space_Adventure:cosmos
---      ["So the princess was never heard of again ..."] = "", -- A_Classic_Fairytale:family
---      ["So, uhmm, how did you manage to teleport them so far?"] = "", -- A_Classic_Fairytale:epil
---      ["Sour"] = "", -- 
---      ["South America"] = "", -- Continental_supplies
---      ["So? What will it be?"] = "", -- A_Classic_Fairytale:shadow
---      ["So you are able to launch projectiles into your aiming direction, always at full power."] = "", -- Basic_Training_-_Flying_Saucer
---      ["So you are interested in Professor Hogevil, huh?"] = "", -- A_Space_Adventure:moon02
---      ["So you basically did the dirty work for us."] = "", -- A_Classic_Fairytale:dragon
---      ["Space Invasion"] = "", -- Space_Invasion
---      ["SPACE INVASION"] = "", -- Space_Invasion
---      ["Spacetrip"] = "", -- A_Space_Adventure:cosmos
---      ["Spawn the crate and attack!"] = "", -- WxW
---      ["Specials: Kings and air generals drop helpers, not weapons"] = "", -- Battalion
---      ["Special weapons:"] = "", -- Continental_supplies
---      ["Special Weapons:"] = "", -- Continental_supplies
---      ["Speckles"] = "", -- 
---      ["Specs"] = "", -- 
---      ["Specs Appeal"] = "", -- 
---      ["Spectator"] = "", -- 
---      ["Speed Roping"] = "", -- Basic_Training_-_Rope
---      ["Speed Shoppa"] = "", -- SpeedShoppa
---      ["Spike"] = "", -- A_Space_Adventure:desert01
---      ["Spikes"] = "", -- 
---      ["Spiky Cheese"] = "", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen, A_Classic_Fairytale:shadow
---      ["%s, place the first hedgehog!"] = "", -- WxW
---      ["Spleenlover"] = "", -- A_Classic_Fairytale:united
---      ["Sponge"] = "",
-      ["Spooky Tree"] = "怪树",
---      ["Sprite Erasure Mode"] = "", -- HedgeEditor
---      ["Sprite Modification Mode"] = "", -- HedgeEditor
---      ["SPRITE MODIFICATION MODE"] = "", -- HedgeEditor
---      ["Sprite Placement Mode"] = "", -- Construction_Mode
---      ["SPRITE PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Sprite Testing Mode"] = "", -- Construction_Mode
---      ["Squirtle"] = "", -- 
---      ["Squishy"] = "", -- 
---      ["%s reached home in %.3f seconds. Congratulations!"] = "", -- ClimbHome
---      ["%s: %s"] = "", -- Continental_supplies
---      ["%s (%s) destroyed %d invaders in one round."] = "", -- Space_Invasion
---      ["%s (%s) does not have to feel ashamed for their best height of %d."] = "", -- ClimbHome
---      ["%s, select your continent!"] = "", -- Continental_supplies
---      ["%s (%s) gave short shrift to the invaders: Longest combo of %d!"] = "", -- Space_Invasion
---      ["%s (%s) has been invited to join the Planetary Association of the Hedgehogs, it destroyed a staggering %d invaders in just one round!"] = "", -- Space_Invasion
---      ["%s (%s) has captured the flag %d times."] = "", -- Capture_the_Flag
---      ["%s (%s) hate life and suicided %d times."] = "", -- Mutant
---      ["%s should try the rope training mission first."] = "", -- ClimbHome
---      ["%s (%s) is addicted to killing: %d invaders destroyed in one round."] = "", -- Space_Invasion
---      ["%s (%s) is a hardened hunter: No misses and %d hits in its best round!"] = "", -- Space_Invasion
---      ["%s (%s) is a tumbleweed: %d points in one round."] = "", -- Space_Invasion
---      ["%s (%s) is good at this: %d points in only one round!"] = "", -- Space_Invasion
---      ["%s (%s) is Rambo in a hedgehog costume! He destroyed %d invaders in one round."] = "", -- Space_Invasion
---      ["%s skipped ninja classes."] = "", -- ClimbHome
---      ["%s spawned at a really bad position."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s splatted."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s (%s) reached a decent peak height of %d."] = "", -- ClimbHome
---      ["%s (%s) reached a peak height of %d."] = "", -- ClimbHome
---      ["%s (%s) reached for the sky and beyond with a height of %d!"] = "", -- ClimbHome
---      ["%s (%s) reached home in %.3f seconds."] = "", -- ClimbHome
---      ["%s (%s) shot %d invaders and never missed in the best round!"] = "", -- Space_Invasion
---      ["%s (%s) struck like a meteor: %d points in only one round!"] = "", -- Space_Invasion
---      ["%s still had a long way to go."] = "", -- ClimbHome
---      ["%s stumbled."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s (%s) tumbles like no other: %d points in one round."] = "", -- Space_Invasion
---      ["%s stumpled."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s (%s) was certainly not afraid of heights: Peak height of %d!"] = "", -- ClimbHome
---      ["%s (%s) was lightning-fast! Longest combo of %d, absolutely insane!"] = "", -- Space_Invasion
---      ["%s (%s) was on fire: Longest combo of %d."] = "", -- Space_Invasion
---      ["%s (%s) was panicly afraid of the water and decided to get in a safe distance of %d from it."] = "", -- ClimbHome
---      ["%s (%s) was the best baby tumbler: %d points in one round."] = "", -- Space_Invasion
---      ["%s (%s) was the greediest hedgehog and collected %d crates."] = "", -- Mutant
---      ["%s (%s) was undoubtedly the very best professional tumbler in this game: %d points in one round!"] = "", -- Space_Invasion
---      ["Star"] = "", -- Big_Armory
---      ["Status update"] = "", -- Racer, TechRacer
---      ["Status Update"] = "", -- Space_Invasion
---      ["Stay away from our weapons!"] = "", -- A_Classic_Fairytale:queen
---      ["Stay there, comrades!"] = "", -- A_Classic_Fairytale:queen
---      ["Stay there to flee!"] = "", -- A_Space_Adventure:fruit01
---      ["Steel Eye"] = "", -- A_Classic_Fairytale:queen
---      ["Step 1: Activate your flying saucer but do NOT move yet!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Step 1: Start roping"] = "", -- Basic_Training_-_Rope
---      ["Step 2: Select grenade"] = "", -- Basic_Training_-_Rope
---      ["Step 2: Select your grenade."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Step 3: Drop the grenade"] = "", -- Basic_Training_-_Rope
---      ["Step 3: Start flying and get yourself right above the target."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Step 4: Drop your grenade by pressing the [Long jump] key."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Step 5: Get away quickly and land safely anywhere."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Step By Step"] = "", -- A_Classic_Fairytale:first_blood
---      ["Steve"] = "", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
---      ["Sticky Mine"] = "", -- Continental_supplies
---      ["Sticky Mine Placement Mode"] = "", -- Construction_Mode
---      ["STICKY MINE PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Stop, comrades!"] = "", -- A_Classic_Fairytale:queen
---      ["Stop right there, puny worms!"] = "", -- A_Classic_Fairytale:queen
---      ["Street Fighters"] = "", -- 
---      ["Strength: %d (multiplier for ammo)"] = "", -- Battalion
---      ["Strong knockback, but no poison."] = "", -- Continental_supplies
---      ["Stronglings"] = "", -- A_Classic_Fairytale:shadow
---      ["Structure Placement Mode"] = "", -- Construction_Mode
---      ["Structure Placer"] = "", -- Construction_Mode
---      ["Stupid, stupid Hogerians!"] = "", -- A_Space_Adventure:final
---      ["Subtract %d"] = "", -- HedgeEditor
---      ["--- Sudden Death ---"] = "", -- Battalion
---      ["Summer Squash"] = "", -- A_Space_Adventure:fruit01
---      ["Sundaland"] = "", -- Continental_supplies
---      ["Sunflame"] = "", -- Big_Armory
---      ["Super weapons: A few crates contain very powerful weapons."] = "", -- WxW
---      ["Super weapons: %s"] = "", -- WxW
---      ["Supplies: Each continent gives you unique weapons, specials and health."] = "", -- Continental_supplies
---      ["Support Station: Allows placement of crates."] = "", -- Construction_Mode
---      ["Support Station"] = "", -- Construction_Mode
---      ["Sure!"] = "", -- A_Classic_Fairytale:epil
---      ["Surf Before Crate: %s"] = "", -- WxW
---      ["Surf Before Crate: You must bounce off the water once before you can get crates."] = "", -- WxW
---      ["Surfer! +15 points!"] = "", -- Space_Invasion
---      ["Surfer!"] = "", -- WxW
---      ["Surprise supplies: Get 1-3 random weapons each turn."] = "", -- Continental_supplies
---      ["Survive!"] = "", -- A_Classic_Fairytale:shadow
---      ["%s violated the “All But Last” rule and will be penalized."] = "", -- WxW
---      ["%s violated the “Kill The Leader” rule and will be penalized."] = "", -- WxW
---      ["Swap place with a random enemy in the circle."] = "", -- Continental_supplies
---      ["%s was a good target."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s was close to home."] = "", -- ClimbHome
---      ["%s was damn close to home."] = "", -- ClimbHome
---      ["%s was doomed from the beginning."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s was extracted from the scheme"] = "", -- Continental_supplies
---      ["%s was good, but not good enough."] = "", -- ClimbHome
---      ["%s was knocked away."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s was really unlucky."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s was shoved away."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["%s was smashed."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["Sweet"] = "", -- 
---      ["%s went over a quarter of the way towards home."] = "", -- ClimbHome
---      ["%s! Why?!"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:united
---      ["Swing, Leaks A Lot, on the wings of the wind!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Swing: [Left]/[Right]"] = "", -- Basic_Training_-_Rope
---      ["%s wins, congratulations!"] = "", -- A_Space_Adventure:moon01
---      ["%s wins!"] = "", -- Racer, Space_Invasion, TechRacer, ClimbHome
---      ["%s wins with a best time of %.1fs."] = "", -- Racer, TechRacer
---      ["switch"] = "", -- Continental_supplies
---      ["Switch: Drop ball of dirt from parachute (once)"] = "", -- Continental_supplies
---      ["Switched to "] = "",
---      ["Switch Hedgehog (1/3)"] = "", -- Basic_Training_-_Movement
---      ["Switch Hedgehog (2/3)"] = "", -- Basic_Training_-_Movement
---      ["Switch Hedgehog (3/3)"] = "", -- Basic_Training_-_Movement
---      ["Switch Hedgehog (Failed!)"] = "", -- Basic_Training_-_Movement
---      ["Switch hedgehog: [Tabulator]"] = "", -- Basic_Training_-_Movement
---      ["Switch Hog"] = "", -- Construction_Mode
---      ["Switch: Select weapon special"] = "", -- Continental_supplies
---      ["Switch: Toggle crate radar"] = "", -- WxW
---      ["%s won!"] = "", -- A_Space_Adventure:fruit01
---      ["Swords"] = "", -- Bazooka_Battlefield
---      ["Syntax Errol"] = "", -- A_Classic_Fairytale:dragon
---      ["%s, you may choose the rules."] = "", -- WxW
---      ["szczur"] = "", -- 
---      ["Tackleberry"] = "", -- 
---      ["Tails"] = "", -- 
---      ["Talk about mixed signals..."] = "", -- A_Classic_Fairytale:dragon
---      ["Tall Potato"] = "", -- A_Space_Adventure:fruit01
---      ["Tap [Pause] to see the mission texts"] = "", -- Basic_Training_-_Movement
---      ["Tap the “rotating arrow” button on the left|until you have selected Cappy, the hedgehog with the cap!"] = "", -- Basic_Training_-_Movement
---      ["Target"] = "", -- HedgeEditor
---      ["Target Placement Mode"] = "", -- Construction_Mode
---      ["TARGET PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Target Practice: Bazooka (easy)"] = "", -- Target_Practice_-_Bazooka_easy
---      ["Target Practice: Bazooka (hard)"] = "", -- Target_Practice_-_Bazooka_hard
---      ["Target Practice: Grenade (easy)"] = "", -- Target_Practice_-_Grenade_easy
---      ["Target Practice: Grenade (hard)"] = "", -- Target_Practice_-_Grenade_hard
---      ["Target Practice: Homing Bee"] = "", -- Target_Practice_-_Homing_Bee
---      ["Target Practice: Shotgun"] = "", -- Target_Practice_-_Shotgun
---      ["Target Puncher"] = "", -- Basic_Training_-_Rope
---      ["Targets left: %d"] = "", -- TargetPractice
---      ["Tatsujin"] = "", -- 
---      ["Tatters"] = "", -- 
---      ["Team %d"] = "", -- SimpleMission
-      ["Team %d: "] = "队伍 %d",
---      ["Team highscore: %d"] = "", -- Utils
---      ["Team Identity Mode"] = "", -- HedgeEditor
---      ["TEAM IDENTITY MODE"] = "", -- HedgeEditor
---      ["Team lowscore: %d"] = "", -- Utils
---      ["Teams are tied! Continue playing rounds until we have a winner!"] = "", -- Space_Invasion
---      ["Team's best time: %.3fs"] = "", -- Utils
---      ["Team Scores:"] = "", -- Control
---      ["Team scores:"] = "", -- Space_Invasion
---      ["Team's longest time: %.3fs"] = "", -- Utils
---      ["Team's top accuracy: %d%"] = "", -- Utils
---      ["Teamwork 2"] = "", -- User_Mission_-_Teamwork_2
---      ["Teamwork"] = "", -- User_Mission_-_Teamwork
---      ["TechRacer"] = "", -- TechRacer
---      ["Teleporation Node"] = "", -- Construction_Mode
---      ["Teleportation Mode"] = "", -- Construction_Mode
---      ["Teleportation Node: Allows teleportation|    between other nodes."] = "", -- Construction_Mode
---      ["Teleportation Node"] = "", -- Construction_Mode
---      ["Teleport"] = "", -- Construction_Mode, Frenzy
---      ["Teleport hint: just use the mouse to select the destination!"] = "", -- A_Classic_Fairytale:dragon
---      ["Teleport hint: Just use the mouse to select the destination!"] = "", -- A_Classic_Fairytale:dragon
---      ["Teleport to the impact location."] = "", -- Continental_supplies
---      ["Teleport to the top of the map, expect fall damage!"] = "", -- Continental_supplies
---      ["Teleport unsuccessful. Please teleport within a clan teleporter's sphere of influence."] = "", -- Construction_Mode
---      ["Teleport Unsuccessful. Please teleport within a clan teleporter's sphere of influence."] = "", -- Construction_Mode
---      ["Tentacle Terror"] = "", -- Tentacle_Terror
---      ["Textile industry: Will give you a parachute every second turn."] = "", -- Continental_supplies
---      ["Thanks!"] = "", -- A_Classic_Fairytale:family
---      ["Thanks, dude! It really means a lot to me."] = "", -- A_Classic_Fairytale:epil
---      ["Thanks, man! It really means a lot to me."] = "", -- A_Classic_Fairytale:epil
---      ["Thank you, Dr. Cornelius."] = "", -- A_Space_Adventure:cosmos
---      ["Thank you for meeting me on such a short notice!"] = "", -- A_Space_Adventure:desert01
---      ["Thank you, my hero!"] = "", -- A_Classic_Fairytale:family
---      ["Thank you, oh, thank you, Leaks A Lot!"] = "", -- A_Classic_Fairytale:journey
---      ["Thank you, oh, thank you, my heroes!"] = "", -- A_Classic_Fairytale:journey
---      ["Thanta"] = "", -- A_Space_Adventure:ice01
---      ["That is, indeed, very weird..."] = "", -- A_Classic_Fairytale:united
---      ["That makes it almost invaluable!"] = "", -- A_Classic_Fairytale:enemy
---      ["That ought to show them!"] = "", -- A_Classic_Fairytale:backstab
---      ["That's all, folks!"] = "", -- A_Classic_Fairytale:epil
---      ["That's for my father!"] = "", -- A_Classic_Fairytale:backstab
---      ["That shaman sure knows what he's doing!"] = "", -- A_Classic_Fairytale:shadow
---      ["That Sinking Feeling"] = "",
---      ["That's just the way it works, you know."] = "", -- A_Classic_Fairytale:queen
---      ["That's not our problem!"] = "", -- A_Classic_Fairytale:enemy
---      ["That's typical of you!"] = "", -- A_Classic_Fairytale:family
---      ["That's why he always wears a hat since then."] = "", -- A_Space_Adventure:moon02
---      ["That traitor won't be killing us anymore!"] = "", -- A_Classic_Fairytale:queen
---      ["That was just mean!"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:united
---      ["That was pointless. The flag will respawn next round."] = "", -- CTF_Blizzard
---      ["The adventure begins!"] = "", -- A_Space_Adventure:cosmos
---      ["The air bombs are weaker than usual."] = "", -- Battalion
---      ["The aliens respect me, even worship me!"] = "", -- A_Classic_Fairytale:queen
---      ["The ally units share their ammo."] = "", -- A_Space_Adventure:fruit01
---      ["The ammo of %s has been vaporized"] = "", -- Construction_Mode
---      ["The answer is ... entertainment. You'll see what I mean."] = "", -- A_Classic_Fairytale:backstab
---      ["The answer is...entertaintment. You'll see what I mean."] = "", -- A_Classic_Fairytale:backstab
---      ["The anti-portal surface is all over the floor, and I have nothing to kill him. Dropping something could hurt him enough to kill him."] = "", -- portal
---      ["The big bang"] = "", -- A_Space_Adventure:final
---      ["The Boss"] = "", -- 
---      ["The boss has fallen! Retreat!"] = "", -- A_Space_Adventure:moon01
---      ["The Bull's Eye"] = "", -- A_Classic_Fairytale:first_blood
---      ["The caves are well hidden, they won't find us there!"] = "", -- A_Classic_Fairytale:united
---      ["The clan of the Red Strawberry wants to take over the dominion and overthrow King Pineapple."] = "", -- A_Space_Adventure:fruit01
---      ["The continent of cowards"] = "", -- Continental_supplies
---      ["The continent of dust"] = "", -- Continental_supplies
---      ["The continent of firearms"] = "", -- Continental_supplies
---      ["The continent of greed"] = "", -- Continental_supplies
---      ["The continent of guerilla tactics"] = "", -- Continental_supplies
---      ["The continent of ice and science"] = "", -- Continental_supplies
---      ["The continent of medicine"] = "", -- Continental_supplies
---      ["The continent of ninjas"] = "", -- Continental_supplies
---      ["The continent of sports"] = "", -- Continental_supplies
---      ["The Crate Frenzy"] = "", -- A_Classic_Fairytale:first_blood
---      ["The Customer is King"] = "", -- Challenge_-_Speed_Shoppa_-_ShoppaKing
---      ["The device part has been stolen!"] = "", -- A_Space_Adventure:fruit02
---      ["The device part is hidden in one of the crates! Go and get it!"] = "", -- A_Space_Adventure:desert01
---      ["The Devs"] = "", -- 
---      ["The Dilemma"] = "", -- A_Classic_Fairytale:shadow
---      ["The editor weapons and tools have been added!"] = "", -- HedgeEditor
---      ["The editor weapons and tools have been removed!"] = "", -- HedgeEditor
---      ["The enemies aren't many anyway, it is going to be easy!"] = "", -- A_Space_Adventure:fruit01
---      ["The enemy can't move but it might be a good idea to stay out of sight!"] = "", -- A_Classic_Fairytale:dragon
---      ["The enemy has taken a crate which we really needed!"] = "", -- SimpleMission
---      ["The enemy hogs play in a random order."] = "", -- A_Space_Adventure:death02
-      ["The enemy is hiding out on yonder ducky!"] = "敌人藏在那边!",
---      ["The Enemy Of My Enemy"] = "", -- A_Classic_Fairytale:enemy
---      ["The explosion is weaker than usual."] = "", -- Battalion
---      ["The fastest hedgehog was %s from %s with a time of %.3fs."] = "", -- TrophyRace
---      ["The fight begins!"] = "", -- A_Space_Adventure:moon01
---      ["The final part"] = "", -- A_Space_Adventure:death01
---      ["The final targets are quite tricky. You need to aim well."] = "", -- Basic_Training_-_Bazooka
---      ["The First Blood"] = "", -- A_Classic_Fairytale:first_blood
---      ["The First Encounter"] = "", -- A_Classic_Fairytale:shadow
---      ["The first hedgehog to kill someone becomes the Mutant."] = "", -- Mutant
---      ["The first hedgehog which scores %d or more wins the game."] = "", -- Mutant
---      ["The first stop"] = "", -- A_Space_Adventure:moon01
---      ["The first turn will last 25 sec and every other turn 15 sec."] = "", -- A_Space_Adventure:fruit03
---      ["The flag will respawn next round."] =
---      ["The flood has stopped! Challenge over."] = "", -- User_Mission_-_That_Sinking_Feeling
---      ["The food bites back"] = "", -- A_Classic_Fairytale:backstab
---      ["The forgotten continent"] = "", -- Continental_supplies
---      ["The giant umbrella from the last crate should help break the fall."] = "", -- A_Classic_Fairytale:first_blood
---      ["The Great Escape"] = "", -- User_Mission_-_The_Great_Escape
---      ["- The green target must survive"] = "", -- HedgeEditor
---      ["- The green targets must survive"] = "", -- HedgeEditor
---      ["The guardian"] = "", -- A_Classic_Fairytale:shadow
---      ["The hardships of the war turned %s (%s) into a killing machine: %d invaders destroyed in one round!"] = "", -- Space_Invasion
---      ["The health of your current hedgehog|is shown at the top right corner."] = "", -- Basic_Training_-_Movement
---      ["The hedgehog with least points (or most deaths) becomes the Bottom Feeder."] = "", -- Mutant
---      ["The Hospital"] = "", -- 
---      ["The Individualist"] = "", -- A_Classic_Fairytale:shadow
---      ["Their buildings were very primitive back then, even for an uncivilised island."] = "", -- A_Classic_Fairytale:united
---      ["The Iron Curtain"] = "", -- 
---      ["The Journey Back"] = "", -- A_Classic_Fairytale:journey
---      ["The king of %s has died!"] = "", -- Battalion
---      ["The last encounter"] = "", -- A_Space_Adventure:death01
---      ["The last surviving clan wins."] = "", -- TrophyRace
---      ["The leader escaped. Defeat the rest of the aliens!"] = "", -- A_Classic_Fairytale:queen
---      ["The leader seems scared, he will probably flee."] = "", -- A_Classic_Fairytale:queen
---      ["The Leap of Faith"] = "", -- A_Classic_Fairytale:first_blood
---      ["The meteorite has come too close and the anti-gravity device isn't powerful enough to stop it now."] = "", -- A_Space_Adventure:cosmos
---      ["The Moonwalk"] = "", -- A_Classic_Fairytale:journey
---      ["The Mutant has super weapons and a lot of health."] = "", -- Mutant
---      ["The Mutant has super-weapons and a lot of health."] = "", -- Mutant
---      ["The Mutant loses health quickly, but gains health by killing."] = "", -- Mutant
---      ["The Mutant loses health quickly if he doesn't keep scoring kills."] = "", -- Mutant
---      ["The Navy greets %s for managing to get in a distance of %d away from the mainland!"] = "", -- ClimbHome
---      ["The next 4 times you play the \"The last encounter\" mission you'll get 20 more hit points and a laser sight."] = "", -- A_Space_Adventure:death02
---      ["The next crate is an utility crate."] = "", -- Basic_Training_-_Movement
---      ["The next one is pretty hard! |Tip: You have to do multiple swings!"] = "", -- Basic_Training_-_Rope
---      ["The next target can only be reached by something called “bouncing bomb”."] = "", -- Basic_Training_-_Bazooka
---      ["The next target is high in the sky."] = "", -- Basic_Training_-_Bazooka
---      ["Then how do they keep appearing?"] = "", -- A_Classic_Fairytale:shadow
---      ["The Ninja-Samurai Alliance"] = "", -- 
---      ["Then prepare for battle!"] = "", -- A_Space_Adventure:death01
---      ["Then what am I?"] = "", -- A_Classic_Fairytale:epil
---      ["The only woman, huh?"] = "", -- A_Classic_Fairytale:epil
---      ["The oppression of the elders, of course!"] = "", -- A_Classic_Fairytale:queen
---      ["The opression of the elders, of course!"] = "", -- A_Classic_Fairytale:queen
---      ["The other hog has died, he should have survived!"] = "", -- A_Space_Adventure:moon02
---      ["The other one were all cannibals, spending their time eating the organs of fellow hedgehogs..."] = "", -- A_Classic_Fairytale:first_blood
---      ["The Police"] = "", -- 
---      ["The power of love! No, wait, the power of the aliens!"] = "", -- A_Classic_Fairytale:queen
---      ["The RC plane only carries 2 weak bombs."] = "", -- Battalion
---      ["There are a variety of structures available to aid you."] = "", -- Construction_Mode
---      ["There are no snarky comments this time."] = "", -- Space_Invasion
---      ["There is one below us!"] = "", -- A_Space_Adventure:ice01
---      ["There must be a spy among us!"] = "", -- A_Classic_Fairytale:backstab
---      ["There's more of them? When did they become so hungry?"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:united
---      ["There's nothing more satisfying for me than seeing you share your beauty with the world every morning, my princess!"] = "", -- A_Classic_Fairytale:journey
---      ["There's nothing more satisfying to us than seeing you share your beauty..."] = "", -- A_Classic_Fairytale:journey
---      ["There's nothing more satisfying to us than seeing you share your beauty with the world every morning, my princess!"] = "", -- A_Classic_Fairytale:journey
---      ["The respawner respawns %s"] = "", -- Construction_Mode
---      ["The Rising"] = "", -- A_Classic_Fairytale:first_blood
---      ["The rope won't get reset."] = "", -- A_Space_Adventure:death02
---      ["The Savior"] = "", -- A_Classic_Fairytale:journey
---      ["The score and deaths are shown next to the team bar."] = "", -- Mutant
---      ["These girders are slippery, like ice."] = "", -- Basic_Training_-_Movement
---      ["These primitive people are so funny!"] = "", -- A_Classic_Fairytale:backstab
---      ["These weapon specials cannot be used close to other hogs."] = "", -- Continental_supplies
---      ["The Shadow Falls"] = "", -- A_Classic_Fairytale:shadow
---      ["The Showdown"] = "", -- A_Classic_Fairytale:shadow
---      ["The Slaughter"] = "", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:first_blood
---      ["The Society of Perfectionists greets %s (%s): No misses and %d hits in its best round."] = "", -- Space_Invasion
---      ["The Specialists: Each hedgehog starts with its own weapon set"] = "", -- The_Specialists
---      ["The spinning arrows above your hedgehog show|which hedgehog is selected right now."] = "", -- Basic_Training_-_Movement
---      ["The spirits of the ancerstors are surely pleased, Leaks A Lot."] = "", -- A_Classic_Fairytale:first_blood
---      ["The spirits of the ancestors are surely pleased, Leaks A Lot."] = "", -- A_Classic_Fairytale:first_blood
---      ["The targets will guide you through the training."] = "", -- Basic_Training_-_Rope
---      ["The team continued their quest of finding the rest of the tribe."] = "", -- A_Classic_Fairytale:queen
---      ["The teams are tied for the fastest time."] = "", -- Racer, TechRacer
---      ["The teams were tied, so an additional round has been played to determine the winner."] = "", -- Space_Invasion
---      ["The teams were tied, so %d additional rounds have been played to determine the winner."] = "", -- Space_Invasion
---      ["The time that you have left when you reach the blue hedgehog will be added to the next turn."] = "", -- A_Space_Adventure:moon02
---      ["The Torment"] = "", -- A_Classic_Fairytale:first_blood
---      ["The truth about Professor Hogevil"] = "", -- A_Space_Adventure:moon02
---      ["The tunnel entrance is over there."] = "", -- A_Space_Adventure:desert01
---      ["The tunnel is about to get flooded!"] = "", -- A_Space_Adventure:desert02
---      ["The Tunnel Maker"] = "", -- A_Classic_Fairytale:journey
---      ["The Ultimate Weapon"] = "", -- A_Classic_Fairytale:first_blood
---      ["The Union"] = "", -- A_Classic_Fairytale:enemy
---      ["The Union: You can select a hedgehog at the start of your turns."] = "", -- Continental_supplies
---      ["The village, unprepared, was destroyed by the cyborgs..."] = "", -- A_Classic_Fairytale:journey
---      ["The walk of Fame"] = "", -- A_Classic_Fairytale:shadow
---      ["The wasted youth"] = "", -- A_Classic_Fairytale:first_blood
---      ["The way you handled your little internal conflicts …"] = "", -- A_Classic_Fairytale:queen
---      ["The weapon in that last crate was bestowed upon us by the ancients!"] = "", -- A_Classic_Fairytale:first_blood
---      ["The what?!"] = "", -- A_Classic_Fairytale:dragon
---      ["The wind whispers that you are ready to become familiar with tools, now..."] = "", -- A_Classic_Fairytale:first_blood
---      ["The wrong hedgehog has taken the crate."] = "", -- SimpleMission
---      ["They are all waiting back in the village, haha."] = "", -- A_Classic_Fairytale:enemy
---      ["They are up there! Take this rope and hurry!"] = "", -- A_Space_Adventure:moon01
---      ["They Call Me Bullseye! +16 points!"] = "", -- Space_Invasion
---      ["They have weapons we've never seen before!"] = "", -- A_Classic_Fairytale:united
---      ["They keep appearing like this. It's weird!"] = "", -- A_Classic_Fairytale:united
---      ["They killed %s! You bastards!"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:united
---      ["They must be trying to weaken us!"] = "", -- A_Classic_Fairytale:enemy
---      ["They never learn"] = "", -- A_Classic_Fairytale:journey
---      ["They stumbled upon a pile of weapons, they seemed to be getting closer."] = "", -- A_Classic_Fairytale:queen
---      ["They told us to wear these clothes. They said that this is the newest trend."] = "", -- A_Classic_Fairytale:enemy
---      ["They've been manipulating us all this time!"] = "", -- A_Classic_Fairytale:enemy
---      ["They won't hesitate to attack you in order to rob you!"] = "", -- A_Space_Adventure:desert01
---      ["The Zoo"] = "", -- 
---      ["Thighlicker"] = "", -- A_Classic_Fairytale:united
---      ["Things are going to get messy around here."] = "", -- A_Space_Adventure:fruit01
---      ["This allows to select any hedgehog in your team!"] = "", -- Basic_Training_-_Movement
---      ["This allows you to create a crate anywhere|within your clan's area of influence,|at the cost of energy."] = "", -- Construction_Mode
---      ["This allows you to create and place mines,|sticky mines and barrels anywhere within your|clan's area of influence at the cost of energy."] = "", -- Construction_Mode
---      ["This allows you to create and place mines,|sticky mines and barrels anywhere within your|clan's area of influence at the cost of energy.|Up/down: Choose object type|Left/right: Choose timer (for mines)|Cursor: Place object"] = "", -- Construction_Mode
---      ["This almost concludes our tutorial."] = "", -- Basic_Training_-_Flying_Saucer
---      ["This also increases the effectiveness of Medicine."] = "", -- Continental_supplies
---      ["This game wasn’t really exciting."] = "", -- Space_Invasion
---      ["This is a new personal best, congratulations!"] = "", -- A_Space_Adventure:death02, A_Space_Adventure:desert02, A_Space_Adventure:fruit03
---      ["This is a new personal best time, congratulations!"] = "", -- A_Space_Adventure:ice02, A_Space_Adventure:moon02
---      ["This is Cappy."] = "", -- Basic_Training_-_Movement
---      ["This is it! It's time to make Fell From Heaven fall for me..."] = "", -- A_Classic_Fairytale:first_blood
---      ["This island is the only place left on Earth with grass on it!"] = "", -- A_Classic_Fairytale:enemy
---      ["This is seems like a wealthy hedgehog, nice ..."] = "", -- A_Space_Adventure:desert01
---      ["This is the mission panel."] = "", -- Basic_Training_-_Movement
---      ["This is the Olympic stadium of saucer flying."] = "", -- A_Space_Adventure:ice02
---      ["This is the Olympic Stadium of Saucer Flying."] = "", -- A_Space_Adventure:ice02
---      ["This is typical!"] = "", -- A_Classic_Fairytale:dragon
---      ["This must be some kind of sorcery!"] = "", -- A_Classic_Fairytale:shadow
---      ["This must be the caves!"] = "", -- A_Classic_Fairytale:backstab
---      ["This one's tricky."] = "",
---      ["This planet seems dangerous!"] = "", -- A_Space_Adventure:cosmos
---      ["This rain is really something..."] = "",
---      ["This round’s award for ultimate disappointment goes to: Everyone!"] = "", -- ClimbHome
---      ["This seems like a wealthy hedgehog, nice ..."] = "", -- A_Space_Adventure:desert01
---      ["This %s is so naive! I'm going to shoot this fool so I can keep that device for myself!"] = "", -- A_Space_Adventure:fruit02
---      ["This was an awesome performance! But this challenge can be finished with even just one RC plane. Can you figure out how?"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["This will be fun!"] = "", -- A_Classic_Fairytale:enemy
---      ["This will be useful when I need a new platform or if I want to rise."] = "", -- portal
---      ["This will certainly come in handy."] = "", -- User_Mission_-_Teamwork_2
---      ["This will certianly come in handy."] = "", -- User_Mission_-_Teamwork_2
---      ["Thompson"] = "", -- 
---      ["Those aliens are destroying the island!"] = "", -- A_Classic_Fairytale:family
---      ["Those were scheduled for disposal anyway."] = "", -- A_Classic_Fairytale:dragon
---      ["Throw a 1 second mine!"] = "", -- Continental_supplies
---      ["Throw a baseball at your foes|and send them flying!"] = "", -- Knockball
---      ["Throw a grenade to destroy the target!"] = "", -- Basic_Training_-_Grenade
---      ["Throw some grenades to destroy the targets!"] = "", -- Basic_Training_-_Grenade
---      ["Thug #%d"] = "", -- A_Space_Adventure:death01
---      ["Tie-breaking round %d"] = "", -- Space_Invasion
---      ["Timbers"] = "", -- 
---      ["Time: %.1fs"] = "", -- Racer, TechRacer
---      ["Time: %.3fs by %s"] = "", -- TrophyRace
---      ["Time: %.3fs"] = "", -- TrophyRace
---      ["Time Box"] = "", -- Construction_Mode
---      ["Timed Kamikaze! +10 points!"] = "", -- Space_Invasion
---      ["Time extended! +%dsec"] = "", -- Space_Invasion
---      ["Time extension: %ds"] = "", -- Tumbler
---      ["Time for a more interesting stunt, but first just collect the next crate!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Timer"] = "", -- Basic_Training_-_Grenade
---      ["Time's up!"] = "", -- Basic_Training_-_Sniper_Rifle, SpeedShoppa, Space_Invasion
---      ["Time’s up!"] = "", -- TargetPractice
---      ["Time to run!"] = "", -- A_Space_Adventure:fruit01
---      ["Tip: Changing your aim while flying is very difficult, so adjust it before you take off."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Tip: Don't remain for too long in the water, or you won't make it."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Tip: If you get stuck in this training, use \"Skip turn\" to restart the current objective."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Tip: See the \"esc\" key (this menu) if you want to see the currently playing teams continent, or that continents specials."] = "", -- Continental_supplies
---      ["Tip: See the \"Esc\" key (this menu) if you want to see the currently playing teams continent, or that continents specials."] = "", -- Continental_supplies
---      ["Tip: The rope physics are different than in the real world, |use it to your advantage!"] = "", -- Basic_Training_-_Rope
---      ["Tip: You can change your flying saucer|in mid-flight by hitting the [Attack] key twice."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Tiyuri"] = "", -- 
---      ["Toad"] = "", -- 
---      ["To begin, walk to the crate to the right."] = "", -- Basic_Training_-_Movement
---      ["To begin with the training, hit the attack key!"] = "", -- Basic_Training_-_Movement
---      ["To begin with the training, select the bazooka from the ammo menu!"] = "", -- Basic_Training_-_Bazooka
---      ["To begin with the training, select the grenade from the ammo menu!"] = "", -- Basic_Training_-_Grenade
---      ["To begin with the training, tap the attack button!"] = "", -- Basic_Training_-_Movement
---      ["To finish hedgehog selection, just do anything|with him, like walking."] = "", -- Basic_Training_-_Movement
---      ["To get over the next obstacles, keep some distance from the wall before you back jump."] = "", -- Basic_Training_-_Movement
---      ["To get over the water, you have to do multiple|rope shots and swings."] = "", -- Basic_Training_-_Rope
---      ["Toggle Editing Weapons and Tools: [Precise]+[2]"] = "", -- HedgeEditor
---      ["Toggle Help: [Precise]+[1]"] = "", -- HedgeEditor
---      ["Toggle Placement/Deletion: [Left], [Right]"] = "", -- HedgeEditor
---      ["Toggle Shield: [Long jump]"] = "", -- Space_Invasion
---      ["To help you, of course!"] = "", -- A_Classic_Fairytale:journey
---      ["To launch a projectile in mid-flight, hold [Precise] and press [Long jump]."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Tony"] = "", -- 
---      ["Too bad! Then you should really leave!"] = "", -- A_Space_Adventure:fruit01
---      ["Too slow! Try again ..."] = "", -- A_Space_Adventure:moon02
---      ["Top-class elite pilot"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["To reach higher ground, walk to a ledge, look to the left, then do a back jump."] = "", -- Basic_Training_-_Movement
---      ["Torn Muscle"] = "", -- A_Classic_Fairytale:journey
---      ["To the caves..."] = "", -- A_Classic_Fairytale:united
---      ["Touch all waypoints as fast as you can!"] = "", -- Racer
---      ["- Touch the sparkles near your base to teleport"] = "", -- CTF_Blizzard
---      ["To win the game, %s has to get the bottom crates and come back to the surface."] = "", -- A_Space_Adventure:fruit02
---      ["To win the game you had to collect the 2 crates with no specific order."] = "", -- A_Space_Adventure:desert01
---      ["To win the game you have to eliminate Professor Hogevil."] = "", -- A_Space_Adventure:death01
---      ["To win the game you have to find the right crate."] = "", -- A_Space_Adventure:desert01
---      ["To win the game you have to go next to Thanta."] = "", -- A_Space_Adventure:ice01
---      ["To win the game you have to go to the surface."] = "", -- A_Space_Adventure:desert02
---      ["To win the game you have to pass into the rings in time."] = "", -- A_Space_Adventure:ice02
---      ["To win the game you have to stand next to Thanta."] = "", -- A_Space_Adventure:ice01
-      ["Toxic Team"] = "腐坏的队伍", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork
---      ["Track completed!"] = "", -- Racer, TechRacer
---      ["Training"] = "", -- Basic_Training_-_Flying_Saucer, Basic_Training_-_Rope
---      ["Training complete!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Traitors"] = "", -- A_Classic_Fairytale:epil
---      ["Traitors don't get to shout around here!"] = "", -- A_Classic_Fairytale:epil
---      ["Trapper"] = "", -- HedgeEditor
---      ["Travel carefully as your fuel is limited"] = "", -- A_Space_Adventure:cosmos
---      ["Travel to all the neighbor planets and collect all the pieces"] = "", -- A_Space_Adventure:cosmos
---      ["Treasure: Massive weapon bonus in first turn."] = "", -- Continental_supplies
---      ["Tribe"] = "", -- A_Classic_Fairytale:backstab
-      ["TrophyRace"] = "竞速",
---      ["Trunks"] = "", -- 
---      ["Try again!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Try it now and dive here to collect the crate on the right girder."] = "", -- Basic_Training_-_Flying_Saucer
---      ["Try not to get spotted by the guards!"] = "", -- A_Space_Adventure:cosmos
---      ["Try out different bounciness levels to reach difficult targets."] = "", -- Basic_Training_-_Grenade
---      ["Try to be smart and eliminate them quickly. This way you might scare off the rest!"] = "", -- A_Space_Adventure:fruit01
---      ["Try to keep as many allies alive as possible."] = "", -- A_Space_Adventure:fruit01
---      ["Try to land softly, as you can still take fall damage!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["Try to protect the chief! You won't lose if he dies, but it is advised that he survives."] = "", -- A_Classic_Fairytale:united
---      ["Try to reach and destroy the next target quickly."] = "", -- Basic_Training_-_Rope
---      ["Tumbler"] = "", -- Tumbler
---      ["Turn around: [Left Shift] + [Left]/[Right]"] = "", -- Basic_Training_-_Movement
---      ["Turning Around"] = "", -- Basic_Training_-_Movement
---      ["Turns: Hogs get %d random weapon(s) from their pool"] = "", -- Battalion
---      ["Turns: King's health is set to %d%% of the team health"] = "", -- Battalion
---      ["Turns left: %d"] = "", -- A_Classic_Fairytale:journey
---      ["Turns: Refill %d weapon and %d helper points|and randomize weapons and helpers based on team points"] = "", -- Battalion
---      ["Turns until arrival: %d"] = "", -- A_Classic_Fairytale:backstab
---      ["Turn Time: %dsec"] = "", -- Space_Invasion
---      ["Twenty-Twenty"] = "", -- 
---      ["Two flowers: All missions complete"] = "", -- A_Space_Adventure:cosmos
---      ["Two little hogs cooperating, getting past obstacles..."] = "", -- A_Classic_Fairytale:journey
---      ["Ugly Mug"] = "", -- 
---      ["Uhm...I met one of them and took his weapons."] = "", -- A_Classic_Fairytale:shadow
---      ["Uhmm, it's … uhm … my ring!"] = "", -- A_Classic_Fairytale:queen
---      ["Uhmm...ok no."] = "", -- A_Classic_Fairytale:enemy
---      ["Ukemi"] = "", -- 
---      ["Ultra kill!"] = "", -- Mutant
---      ["unC0Rr"] = "", -- 
---      ["Under Construction"] = "", -- A_Classic_Fairytale:shadow
---      ["Under normal circumstances we could easily defeat them but we have kindly sent most of our men to the Kingdom of Sand to help with the annual dusting of the king's palace."] = "", -- A_Space_Adventure:fruit01
---      ["Under the meteorite’s shadow ..."] = "", -- A_Space_Adventure:cosmos
---      ["Under the meteorites shadow ..."] = "", -- A_Space_Adventure:cosmos
---      ["Unexpected Igor"] = "", -- A_Classic_Fairytale:dragon
---      ["Unique new weapons"] = "", -- Continental_supplies
---      ["Unit"] = "",
---      ["Unit 0x0007"] = "", -- A_Classic_Fairytale:family
---      ["Unit 189"] = "", -- 
---      ["Unit 234"] = "", -- 
---      ["Unit 333"] = "", -- 
---      ["Unit 334a$7%;.*"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:family, A_Classic_Fairytale:queen, A_Classic_Fairytale:united
-      ["Unit 3378"] = "3378",
---      ["Unit 485"] = "", -- 
---      ["Unit 527"] = "", -- 
---      ["Unit 638"] = "", -- 
---      ["Unit 709"] = "", -- 
---      ["Unit 835"] = "",
---      ["Unit 881"] = "", -- User_Mission_-_Newton_and_the_Hammock
---      ["Unit 883"] = "", -- 
---      ["United We Stand"] = "", -- A_Classic_Fairytale:united
---      ["Unlike bazookas, grenades are not influenced by wind."] = "", -- Basic_Training_-_Grenade
---      ["Unlimited Attacks: Attacks don't end your turn"] = "", -- User_Mission_-_Diver, User_Mission_-_Nobody_Laugh, User_Mission_-_Spooky_Tree
---      ["Unlucky Sods"] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["Unstoppable!"] = "",
---      ["Unsuspecting Louts"] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["Up/Down: Adjust dust storm damage"] = "", -- Continental_supplies
---      ["Up/Down: Browse through continents"] = "", -- Continental_supplies
---      ["Up/Down: Change placement mode"] = "", -- HedgeEditor
---      ["Up/down: Choose crate type"] = "", -- Construction_Mode
---      ["Up/down: Choose object type|1-5/Switch/Left/Right: Choose mine timer|Cursor: Place object"] = "", -- Construction_Mode
---      ["Upper-class elite pilot"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Upside-Down World"] = "", -- Continental_supplies
---      ["Use it wisely!"] = "", -- A_Classic_Fairytale:dragon
---      ["Use it with precaution!"] = "", -- A_Classic_Fairytale:first_blood
---      ["User Challenge"] = "",
---      ["!"] = "", -- User_Mission_-_Dangerous_Ducklings
---      ["User Mission"] = "", -- HedgeEditor
---      ["Use the attack key twice to change the flying saucer while being in air."] = "", -- A_Space_Adventure:ice02
---      ["Use the attack key twice to change the flying saucer while floating in mid-air."] = "", -- A_Space_Adventure:ice02
---      ["Use the bazooka and the flying saucer to get the freezer."] = "", -- A_Space_Adventure:ice01
---      ["Use the flying saucer from the crate to fly to the moon."] = "", -- A_Space_Adventure:cosmos
---      ["Use the flying saucer to fly the other planets."] = "", -- A_Space_Adventure:cosmos
---      ["Use the flying saucer to fly to the other planets."] = "", -- A_Space_Adventure:cosmos
---      ["Use the parachute to get the next crate."] = "", -- A_Classic_Fairytale:first_blood
---      ["Use the portal gun to get to the next crate, then use the new gun to get to the final destination!|"] = "", -- A_Classic_Fairytale:dragon
---      ["Use the RC plane and destroy the all the targets."] = "", -- A_Space_Adventure:desert03
---      ["Use the rope in order to catch the blue hedgehog"] = "", -- A_Space_Adventure:moon02
---      ["Use the rope to complete the obstacle course!"] = "", -- Basic_Training_-_Rope
---      ["Use the rope to get on the head of the mole, young one!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Use the rope to get to the crate"] = "", -- A_Space_Adventure:cosmos
---      ["Use the rope to get to the target!"] = "", -- Basic_Training_-_Rope
---      ["Use the rope to knock your enemies to their doom."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["Use the rope to quickly get to the surface!"] = "", -- A_Space_Adventure:desert02
---      ["Use the saucer and fly away"] = "", -- A_Space_Adventure:cosmos
---      ["Use the saucer and fly to the moon"] = "", -- A_Space_Adventure:cosmos
---      ["Use the shield to protect yourself from bazookas."] = "", -- Space_Invasion
---      ["Use the structure placer to place structures."] = "", -- Construction_Mode
---      ["Use your ammo wisely."] = "", -- A_Space_Adventure:desert01
---      ["Use your available weapons in order to eliminate the enemies."] = "", -- A_Space_Adventure:death02, A_Space_Adventure:fruit03
---      ["Use your ready time to think."] = "", -- Frenzy
---      ["Use your rope to collect all crates as fast as possible."] = "", -- SpeedShoppa
-      ["Use your rope to get from start to finish as fast as you can!"] = "抓起绳子飞向目的地,越快越好。",
---      ["Use your rope to get to the next target, then destroy it!"] = "", -- Basic_Training_-_Rope
---      ["Utility Crate Placement Mode"] = "", -- Construction_Mode
---      ["UTILITY CRATE PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Utility crates extend your time."] = "", -- Tumbler
---      ["Variants: Hogs will be randomized from 12 different variants"] = "", -- Battalion
---      ["Variants: Kings and air generals are disabled"] = "", -- Battalion
---      ["Variants: The last hog of each team will be a king"] = "", -- Battalion
---      ["Vedgies"] = "", -- A_Classic_Fairytale:journey
---      ["Vega"] = "", -- 
---      ["Vegan Jack"] = "", -- A_Classic_Fairytale:enemy
---      ["Very valuable, haha!"] = "", -- A_Classic_Fairytale:queen
---      ["Victory!"] = "", -- Basic_Training_-_Rope
---      ["Victory Condition: Collect"] = "", -- HedgeEditor
---      ["Victory Condition: Destroy"] = "", -- HedgeEditor
---      ["Victory for %s!"] = "", -- Capture_the_Flag
---      ["Violence is not the answer to your problems!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Visit the planets of Ice, Desert and Fruit before you proceed to the Death Planet"] = "", -- A_Space_Adventure:cosmos
---      ["Vladimir"] = "", -- 
---      ["Void"] = "", -- Big_Armory
---      ["Voldemort"] = "", -- portal
---      ["Voltorb"] = "", -- 
---      ["Wait a moment …"] = "", -- A_Space_Adventure:final
---      ["Walking on Ice"] = "", -- Basic_Training_-_Movement
---      ["Walk: [Left] and [Right]"] = "", -- Basic_Training_-_Movement
---      ["Walk: [Left]/[Right]"] = "", -- Basic_Training_-_Bazooka
---      ["Wall Before Crate: You must touch the marked wall before you can get crates."] = "", -- WxW
---      ["Walls Before Crate: You must touch the %d marked walls before you can get crates."] = "", -- WxW
---      ["Wall set: No walls"] = "", -- WxW
---      ["Wall set: %s (%d walls)"] = "", -- WxW
---      ["Wall set: %s"] = "", -- WxW
---      ["Walls left: %d"] = "", -- WxW
---      ["Wall to wall"] = "", -- WxW
---      ["Waluigi"] = "", -- 
---      ["Wario"] = "", -- 
---      ["Warming Up"] = "", -- Basic_Training_-_Grenade
---      ["Warning: Fire cake detected"] = "", -- ClimbHome
---      ["Warning: Never ever leave the flying saucer while in water!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["WARNING: Sabotage detected!"] = "", -- Continental_supplies
---      ["Warrior"] = "", -- Battalion
---      [" was extracted from the scheme|- This continent will be able to use the specials from the other continents!"] = "", -- Continental_supplies
---      ["WatchBot 4000"] = "", -- User_Mission_-_Teamwork_2
---      ["Watch your steps, young one!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Watermelon Heart"] = "", -- A_Space_Adventure:fruit02
---      ["Water: Rises by 37 per turn"] = "", -- Battalion
---      ["Waypoint Editing Mode"] = "", -- HedgeEditor
---      ["WAYPOINT EDITING MODE"] = "", -- HedgeEditor
---      ["Waypoint placed. Available points remaining: %d"] = "", -- Racer
---      ["Waypoint placement phase"] = "", -- Racer
---      ["Waypoint removed. Available points: %d"] = "", -- Racer
---      ["Waypoints remaining: %d"] = "", -- Racer, TechRacer
---      ["Weaklings"] = "", -- A_Classic_Fairytale:shadow
---      ["We all know what happens when you get frightened..."] = "", -- A_Classic_Fairytale:first_blood
---      ["Weapon Crate Placement Mode"] = "", -- Construction_Mode
---      ["WEAPON CRATE PLACEMENT MODE"] = "", -- HedgeEditor
---      ["Weapon Filter"] = "", -- Construction_Mode
---      ["Weapon Filter: Dematerializes all ammo|    carried by enemies entering it."] = "", -- Construction_Mode
---      ["weaponschemes"] = "", -- Continental_supplies
---      ["Weapons: Each team starts with %d weapon points"] = "", -- Battalion
---      ["Weapons: Hogs will get 1 out of 3 weapons randomly each turn"] = "", -- Battalion
---      ["Weapons: Nearly every hog variant gets 1 kamikaze"] = "", -- Battalion
---      ["Weapon specials: Some weapons have special modes (see weapon description)."] = "", -- Continental_supplies
---      ["Weapons reset: The weapons are reset after each turn."] = "", -- WxW
---      ["We are indeed."] = "", -- A_Classic_Fairytale:backstab
---      ["We can't defeat them!"] = "", -- A_Classic_Fairytale:shadow
---      ["We can't hold them up much longer!"] = "", -- A_Classic_Fairytale:united
---      ["We can't let them take over our little island!"] = "", -- A_Classic_Fairytale:enemy
---      ["We come in peace! Just let our friends go!"] = "", -- A_Classic_Fairytale:queen
---      ["We could just have blown up the meteorite from the the beginning!"] = "", -- A_Space_Adventure:final
---      ["We don't have time for that now!"] = "", -- A_Classic_Fairytale:queen
---      ["We have lost an object which was critical to this mission."] = "", -- SimpleMission
---      ["We have no time to waste..."] = "", -- A_Classic_Fairytale:journey
---      ["We have nowhere else to live!"] = "", -- A_Classic_Fairytale:enemy
---      ["We have spotted the enemy! We'll attack when the enemies start gathering!"] = "", -- A_Space_Adventure:fruit02
---      ["We have to find our folk!"] = "", -- A_Classic_Fairytale:queen
---      ["We have to hurry! Are you armed?"] = "", -- A_Space_Adventure:moon01
---      ["We have to protect the village!"] = "", -- A_Classic_Fairytale:united
---      ["We have to unite and defeat those cylergs!"] = "", -- A_Classic_Fairytale:enemy
---      ["Welcome home! Please take a seat"] = "", -- ClimbHome
---      ["Welcome, Leaks A Lot!"] = "", -- A_Classic_Fairytale:journey
---      ["Welcome, %s, surprised to see me?"] = "", -- A_Space_Adventure:death01
---      ["Welcome to the Death Planet!"] = "", -- A_Space_Adventure:cosmos
---      ["Welcome to the Desert Planet!"] = "", -- A_Space_Adventure:cosmos
---      ["Welcome to the Fruit Planet!"] = "", -- A_Space_Adventure:cosmos
---      ["Welcome to the meteorite!"] = "", -- A_Space_Adventure:cosmos
---      ["Welcome to the moon!"] = "", -- A_Space_Adventure:cosmos
---      ["Welcome to the Planet of Ice!"] = "", -- A_Space_Adventure:cosmos
---      ["Well done."] = "",
---      ["Well done! Let's destroy the next target!"] = "", -- Basic_Training_-_Rope
---      ["Well done! The next target awaits."] = "", -- Basic_Training_-_Rope
---      ["We'll give you a problem then!"] = "", -- A_Classic_Fairytale:enemy
---      ["We'll play a game first."] = "", -- A_Space_Adventure:moon02
---      ["We'll spare your life for now!"] = "", -- A_Classic_Fairytale:backstab
---      ["Well, that escalated quickly!"] = "", -- ClimbHome
---      ["Well that was an unnecessary act of violence."] = "", -- A_Classic_Fairytale:epil
---      ["Well, that was an unnecessary act of violence."] = "", -- A_Classic_Fairytale:epil
---      ["Well, that was a waste of time."] = "", -- A_Classic_Fairytale:dragon
---      ["We'll use our communicators to contact you."] = "", -- A_Space_Adventure:cosmos
---      ["Well, well! Isn't that the cutest thing you've ever seen?"] = "", -- A_Classic_Fairytale:journey
---      ["Well, yes. This was a cyborg television show."] = "", -- A_Classic_Fairytale:enemy
---      ["Well, you're about to wake up!"] = "", -- A_Classic_Fairytale:queen
---      ["We made sure noone followed us!"] = "", -- A_Classic_Fairytale:backstab
---      ["We need it to get split into at least two parts."] = "", -- A_Space_Adventure:cosmos
---      ["We need to go back!"] = "", -- A_Classic_Fairytale:queen
---      ["We need to hurry!"] = "", -- A_Classic_Fairytale:queen
---      ["We need to move!"] = "", -- A_Classic_Fairytale:united
---      ["We need to prevent their arrival!"] = "", -- A_Classic_Fairytale:backstab
---      ["We need to warn the village."] = "", -- A_Classic_Fairytale:shadow
---      ["We need you to go there and detonate them yourself! Good luck!"] = "", -- A_Space_Adventure:cosmos
---      ["We oppressed her, the only woman in the tribe!"] = "", -- A_Classic_Fairytale:epil
---      ["We're terribly sorry!"] = "", -- A_Classic_Fairytale:epil
---      ["We risk our lives going through challenges."] = "", -- A_Classic_Fairytale:queen
---      ["We should better report this and continue our watch!"] = "", -- A_Space_Adventure:cosmos
---      ["We should head back to the village now."] = "", -- A_Classic_Fairytale:shadow
---      ["We, the youth, have to constantly prove our value."] = "", -- A_Classic_Fairytale:queen
---      ["We trusted you, you fool!"] = "", -- A_Classic_Fairytale:queen
---      ["We were trying to save her and we got lost."] = "", -- A_Classic_Fairytale:family
---      ["We were your home! Your family!"] = "", -- A_Classic_Fairytale:queen
---      ["We won't accept you destroying our village!"] = "", -- A_Classic_Fairytale:queen
---      ["We won't let you hurt any more of us!"] = "", -- A_Classic_Fairytale:queen
---      ["We won't let you hurt her!"] = "", -- A_Classic_Fairytale:journey
---      ["We work and work until we sweat blood."] = "", -- A_Classic_Fairytale:queen
---      ["What?! A cannibal? Here? There is no time to waste! Come, you are prepared."] = "", -- A_Classic_Fairytale:first_blood
---      ["What?!"] = "", -- A_Classic_Fairytale:queen
---      ["What a douche!"] = "", -- A_Classic_Fairytale:enemy
---      ["What am I gonna...eat, yo?"] = "", -- A_Classic_Fairytale:family
---      ["What are you doing at a distance so great, young one?"] = "", -- A_Classic_Fairytale:first_blood
---      ["What are you doing? Let her go!"] = "", -- A_Classic_Fairytale:journey
---      ["What a ride!"] = "", -- A_Classic_Fairytale:shadow
---      ["What a strange cave!"] = "", -- A_Classic_Fairytale:dragon
---      ["What a strange feeling!"] = "", -- A_Classic_Fairytale:backstab
---      ["What could you possibly forget in that cage?"] = "", -- A_Classic_Fairytale:queen
---      ["What does it look like?"] = "", -- A_Classic_Fairytale:queen
---      ["What do my faulty eyes observe? A spy!"] = "", -- A_Classic_Fairytale:first_blood
---      ["What do you say? Are you in?"] = "", -- A_Space_Adventure:fruit02
---      ["What do you say? Will you fight for us?"] = "", -- A_Space_Adventure:fruit01
---      ["What do you want to do?"] = "", -- A_Space_Adventure:fruit01
---      ["Whatever floats your boat..."] = "", -- A_Classic_Fairytale:shadow
---      ["What?! For all this struggle I just win some ... time? Oh dear!"] = "", -- portal
---      ["What has %s ever done to you?"] = "", -- A_Classic_Fairytale:backstab
---      ["What? Here? How did they find us?!"] = "", -- A_Classic_Fairytale:backstab
---      ["What? Is it over already?"] = "", -- ClimbHome
---      ["What is it that you forgot?"] = "", -- A_Classic_Fairytale:queen
---      ["What is this place?"] = "", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy
---      ["What oppression? You were the most unoppressed member of the tribe!"] = "", -- A_Classic_Fairytale:queen
---      ["What shall we do with the traitor?"] = "", -- A_Classic_Fairytale:backstab
---      ["What's in the box, you ask? Let's find out!"] = "", -- Basic_Training_-_Movement
---      ["What the?"] = "", -- A_Classic_Fairytale:queen
---      ["WHAT?! You're the ones attacking us!"] = "", -- A_Classic_Fairytale:enemy
---      ["When?"] = "", -- A_Classic_Fairytale:enemy
---      ["When I find it..."] = "", -- A_Classic_Fairytale:dragon
---      ["When you're in mid-air, you can continue to aim|and fire another rope if you're not attached."] = "", -- Basic_Training_-_Rope
---      ["Where are all these crates coming from?!"] = "", -- A_Classic_Fairytale:shadow
---      ["Where are they?!"] = "", -- A_Classic_Fairytale:backstab
---      ["Where did that alien run?"] = "", -- A_Classic_Fairytale:dragon
---      ["Where did you get the exploding apples?"] = "", -- A_Classic_Fairytale:shadow
---      ["Where did you get the exploding apples and the magic bow that shoots many arrows?"] = "", -- A_Classic_Fairytale:shadow
---      ["Where did you get the magic bow that shoots many arrows?"] = "", -- A_Classic_Fairytale:shadow
---      ["Where did you get the weapons in the forest, Dense Cloud?"] = "", -- A_Classic_Fairytale:backstab
---      ["Where do you get that?!"] = "", -- A_Classic_Fairytale:enemy
---      ["Where have you been?!"] = "", -- A_Classic_Fairytale:backstab
---      ["Where have you been?"] = "", -- A_Classic_Fairytale:united
---      ["While in modification mode, you can change|the LandFlag by clicking on an object."] = "", -- HedgeEditor
---      ["White Tee"] = "", -- A_Space_Adventure:ice01
---      ["Who's there?! I'll get you!"] = "", -- A_Space_Adventure:desert01
---      ["Why?"] = "", -- A_Classic_Fairytale:queen
---      ["Why are you doing this?"] = "", -- A_Classic_Fairytale:journey
---      ["Why are you helping us, uhm...?"] = "", -- A_Classic_Fairytale:family
---      ["Why can't he just let her go?!"] = "", -- A_Classic_Fairytale:family
---      ["… why did I risk my life to collect all the parts of the anti-gravity device?"] = "", -- A_Space_Adventure:final
---      ["Why did you do this?"] = "", -- A_Classic_Fairytale:queen
---      ["Why did you kill your father?"] = "", -- A_Classic_Fairytale:queen
---      ["Why do men keep hurting me?"] = "", -- A_Classic_Fairytale:first_blood
---      ["Why do you always have to call me names?"] = "", -- A_Classic_Fairytale:queen
---      ["Why do you keep betraying us?"] = "", -- A_Classic_Fairytale:queen
---      ["Why do you not like me?"] = "", -- A_Classic_Fairytale:shadow
---      ["Why do you want to take over our island?"] = "", -- A_Classic_Fairytale:enemy
---      ["Why me?!"] = "", -- A_Classic_Fairytale:backstab
---      ["Why %s? Why?"] = "", -- A_Classic_Fairytale:backstab
---      ["Why, why, why, why!"] = "", -- A_Classic_Fairytale:queen
---      ["Why would they do this?"] = "", -- A_Classic_Fairytale:backstab
---      ["- Will get 1-3 random weapons"] = "", -- Continental_supplies
---      ["- Will Get 1-3 random weapons"] = "", -- Continental_supplies
---      ["- Will give you a parachute every second turn."] = "", -- Continental_supplies
---      ["Will this ever end?"] = "",
---      ["Will you give me the other parts?"] = "", -- A_Space_Adventure:death01
---      ["Win"] = "", -- A_Space_Adventure:ice01
---      ["Wind"] = "", -- Basic_Training_-_Bazooka
---      ["Winner: %s"] = "", -- Mutant
---      ["Winning time: %s"] = "", -- Racer, TechRacer
---      ["Wise Oak"] = "", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
---      ["With Dense Cloud on the land of shadows, I'm the village's only hope..."] = "", -- A_Classic_Fairytale:journey
---      ["With low bounciness, it barely bounces at all, but it is much more predictable."] = "", -- Basic_Training_-_Grenade
---      ["With the rest of the tribe gone, it was up to %s to save the village."] = "", -- A_Classic_Fairytale:dragon
---      ["Worry not, for it is a peaceful animal! There is no reason to be afraid..."] = "", -- A_Classic_Fairytale:first_blood
---      ["Wow, what a dream!"] = "", -- A_Classic_Fairytale:backstab
---      ["Xeli"] = "", -- 
---      ["Xerxes"] = "", -- 
---      ["Y3K1337"] = "", -- A_Classic_Fairytale:journey, A_Classic_Fairytale:shadow
---      ["Yay, we won!"] = "", -- A_Classic_Fairytale:enemy
---      ["Y Chwiliad"] = "", -- A_Classic_Fairytale:dragon
---      ["Yeah...I think it's a 'he', lol."] = "", -- A_Classic_Fairytale:shadow
---      ["Yeah, sure! I died. Hilarious!"] = "", -- A_Classic_Fairytale:backstab
---      ["Yeah, sure! I died. Hillarious!"] = "", -- A_Classic_Fairytale:backstab
---      ["Yeah, take that!"] = "", -- A_Classic_Fairytale:dragon
---      ["Yeah? Watcha gonna do? Cry?"] = "", -- A_Classic_Fairytale:journey
---      ["Yeah, well, for some dude to be happy, some other dude has to suffer."] = "", -- A_Classic_Fairytale:queen
---      ["Yellow"] = "", -- 
---      ["Yellow Pepper"] = "", -- A_Space_Adventure:fruit01
---      ["Yellow Watermelons"] = "", -- A_Space_Adventure:fruit01
---      ["Yes!"] = "", -- A_Classic_Fairytale:enemy
---      ["Yes, but you're … different!"] = "", -- A_Classic_Fairytale:queen
---      ["Yes, yeees! You are now ready to enter the real world!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Yeti"] = "", -- 
---      ["Yikes!"] = "", -- A_Space_Adventure:desert01
---      ["Yo, dude! Get away from our weapons!"] = "", -- A_Classic_Fairytale:queen
---      ["Yo, dude, we're here, too!"] = "", -- A_Classic_Fairytale:family
---      ["Yo, escort my buttocks!"] = "", -- A_Classic_Fairytale:queen
---      ["Yoshi"] = "", -- 
---      ["Yo, the aliens gave me plants. Medicinal plants. Lots of it."] = "", -- A_Classic_Fairytale:queen
---      ["You are far from home, and the water is rising, climb up as high as you can!|Your score will be based on your height."] = "", -- ClimbHome
---      ["You are given the chance to turn your life around..."] = "", -- A_Classic_Fairytale:shadow
---      ["You are in control of all the active ally units."] = "", -- A_Space_Adventure:fruit01
---      ["You are indeed the best PAotH pilot."] = "", -- A_Space_Adventure:desert03
---      ["You are out of danger, time to go to the moon!"] = "", -- A_Space_Adventure:cosmos
---      ["You are playing with our lives here!"] = "", -- A_Classic_Fairytale:enemy
---      ["You are sabotaged, RUN!"] = "", -- Continental_supplies
---      ["You are the one who fled! So, you are alive."] = "", -- A_Space_Adventure:fruit02
---      ["You bear impressive skills, %s!"] = "", -- A_Classic_Fairytale:dragon
---      ["You can also hold down the key for “Precise Aim” to prevent slipping."] = "", -- Basic_Training_-_Movement
---      ["You can always trust me!"] = "", -- A_Classic_Fairytale:epil
---      ["You can always trust me! I love you!"] = "", -- A_Classic_Fairytale:epil
---      ["You can avoid some battles."] = "", -- A_Space_Adventure:desert01
---      ["You can change the detonation timer of grenades."] = "", -- Basic_Training_-_Grenade
---      ["You can choose another planet by replaying this mission."] = "", -- A_Space_Adventure:cosmos
---      ["You can dive with your flying saucer!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["You can even change your aiming direction in mid-flight if you first hold [Precice] and then press [Up] or [Down]."] = "", -- Basic_Training_-_Flying_Saucer
---      ["You can even change your aiming direction in mid-flight if you first hold [Precise] and then press [Up] or [Down]."] = "", -- Basic_Training_-_Flying_Saucer
---      ["You can further customize the race by changing the scheme script paramater."] = "", -- TechRacer
---      ["You can further customize the race by changing the scheme script parameter."] = "", -- TechRacer
---      ["You can only use the sniper rifle or the watermelon bomb."] = "", -- A_Space_Adventure:fruit03
---      ["You can practice moving around and using utilities in this mission.|However, it will never end!"] = "", -- A_Classic_Fairytale:epil
---      ["You can set the bounciness of grenades (and grenade-like weapons)."] = "", -- Basic_Training_-_Grenade
---      ["- You can switch between hogs at the start of your turns. (Not first one)"] = "", -- Continental_supplies
---      ["You can’t open a portal on the blue surface."] = "", -- portal
---      ["You can use the other 2 hogs to assist you."] = "", -- A_Space_Adventure:fruit02
---      ["You can use the rope to reach new places."] = "", -- Basic_Training_-_Rope
---      ["You choose well, %s!"] = "", -- A_Space_Adventure:fruit01
---      ["You completed the mission in %.3f seconds."] = "", -- A_Space_Adventure:ice02
---      ["You completed the mission in %d rounds."] = "", -- A_Space_Adventure:death02, A_Space_Adventure:fruit03
---      ["You couldn't have come to a worse time, %s!"] = "", -- A_Space_Adventure:fruit01
---      ["You couldn't possibly believe that after refusing my offer I'd just let you go!"] = "", -- A_Classic_Fairytale:journey
---      ["You'd almost swear the water was rising!"] = "",
---      ["You'd better watch your steps..."] = "", -- A_Classic_Fairytale:journey
---      ["You defended yourself against Captain Lime."] = "", -- A_Space_Adventure:fruit02
---      ["You defended yourself against %s."] = "", -- A_Space_Adventure:fruit02
---      ["You did great, %s! However, we aren't out of danger yet!"] = "", -- A_Space_Adventure:cosmos
---      ["You did not make it in time, try again!"] = "", -- Basic_Training_-_Rope
---      ["You don't deserve my sacrifice!"] = "", -- A_Classic_Fairytale:queen
---      ["You drove Professor Hogevil away."] = "", -- A_Space_Adventure:moon01
---      ["You drove the minions away."] = "", -- A_Space_Adventure:moon01
---      ["You earned the \"Rope Master\" achievement for finishing in under 50 seconds."] = "", -- Basic_Training_-_Rope
---      ["You endangered your whole tribe, you bastard!"] = "", -- A_Classic_Fairytale:queen
---      ["You failed!"] = "", -- Basic_Training_-_Rope
---      ["You failed to kill all enemies in a single turn."] = "", -- Big_Armory
---      ["You failed to kill all enemies in this turn."] = "", -- Big_Armory
---      ["You fought bravely and you helped us win this battle!"] = "", -- A_Space_Adventure:fruit02
---      ["You give me no choice!"] = "", -- A_Classic_Fairytale:queen
---      ["You got a killer mask there, amigo!"] = "", -- A_Classic_Fairytale:epil
---      ["You got me!"] = "", -- A_Space_Adventure:moon02
---      ["You had %.1fs remaining on the clock (+%d points)."] = "", -- TargetPractice
---      ["You had %.2fs remaining on the clock (+%d points)."] = "", -- Basic_Training_-_Sniper_Rifle
---      ["You have 7 turns until the next wave arrives.|Make sure the arriving cannibals are greeted appropriately!|If the hog dies, the cause is lost.|Hint: you might want to use some mines..."] = "", -- A_Classic_Fairytale:backstab
---      ["You have 7 turns until the next wave arrives.|Make sure the arriving cannibals are greeted appropriately!|If the hog dies, the cause is lost.|Hint: You might want to use some mines ..."] = "", -- A_Classic_Fairytale:backstab
---      ["You have acquired the last device part."] = "", -- A_Space_Adventure:death01
---      ["You have activated Switch Hedgehog!"] = "", -- Basic_Training_-_Movement
---      ["You have beaten the challenge!"] = "", -- ClimbHome
---      ["You have beaten the team record, congratulations!"] = "", -- Utils
---      ["You have been giving us out to the enemy, haven't you!"] = "", -- A_Classic_Fairytale:backstab
---      ["You have chosen the perfect moment to leave."] = "", -- A_Classic_Fairytale:united
---      ["You have chosen to fight!"] = "", -- A_Space_Adventure:fruit01
---      ["You have chosen to flee."] = "", -- A_Space_Adventure:fruit01
---      ["You have collected %d out of %d crate(s)."] = "", -- SpeedShoppa
---      ["You have collected the “Switch Hedgehog” utility!"] = "", -- Basic_Training_-_Movement
---      ["You have completed the Basic Bazooka Training!"] = "", -- Basic_Training_-_Bazooka
---      ["You have completed the Basic Grenade Training!"] = "", -- Basic_Training_-_Grenade
---      ["You have completed the Basic Movement Training!"] = "", -- Basic_Training_-_Movement
---      ["You have completed this challenge in %.2f s (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["You have destroyed all targets!"] = "", -- TargetPractice
---      ["You have destroyed all the targets."] = "", -- A_Space_Adventure:desert03
---      ["You have destroyed %d of %d targets."] = "", -- Basic_Training_-_Bazooka
---      ["You have destroyed %d of %d targets (+%d points)."] = "", -- Basic_Training_-_Sniper_Rifle, TargetPractice
---      ["You have dropped %d missiles."] = "", -- User_Mission_-_RCPlane_Challenge
---      ["You have eliminated all visible enemy hedgehogs!"] = "", -- A_Space_Adventure:fruit01
---      ["You have eliminated Professor Hogevil."] = "", -- A_Space_Adventure:moon01
---      ["You have eliminated the evil minions."] = "", -- A_Space_Adventure:moon01
---      ["You have escaped successfully."] = "", -- A_Space_Adventure:desert02
---      ["You have failed to complete your task, young one!"] = "", -- A_Classic_Fairytale:journey
---      ["You have failed to save the tribe!"] = "", -- A_Classic_Fairytale:backstab
---      ["You have finally figured it out!"] = "", -- A_Classic_Fairytale:enemy
---      ["You have finished the Basic Rope Training!"] = "", -- Basic_Training_-_Rope
---      ["You have finished the bazooka training!"] = "", -- Basic_Training_-_Bazooka
---      ["You have finished the challenge in %.3f s."] = "", -- SpeedShoppa
---      ["You have finished the challenge!"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["You have finished the Flying Saucer Training!"] = "", -- Basic_Training_-_Flying_Saucer
---      ["You have finished the target practice!"] = "", -- TargetPractice
---      ["You have kidnapped our whole tribe!"] = "", -- A_Classic_Fairytale:enemy
---      ["You have killed all enemies."] = "", -- Big_Armory
---      ["You have killed an innocent hedgehog!"] = "", -- A_Classic_Fairytale:backstab
---      ["You have killed %d of 16 hedgehogs (+%d points)."] = "", -- User_Mission_-_Rope_Knock_Challenge
---      ["You have launched %d bazookas."] = "", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
---      ["You have launched %d homing bees."] = "", -- Target_Practice_-_Homing_Bee
---      ["You have made %d shots."] = "", -- Basic_Training_-_Sniper_Rifle
---      ["You have managed to catch the blue hedgehog in %.3f seconds."] = "", -- A_Space_Adventure:moon02
---      ["You have never worked a bit in your life!"] = "", -- A_Classic_Fairytale:queen
---      ["You have nothing to be afraid of now."] = "", -- A_Classic_Fairytale:epil
---      ["You haven't rescued anyone."] = "", -- User_Mission_-_That_Sinking_Feeling
---      ["You have perfectly beaten the challenge!"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["You have proven yourself worthy to see our most ancient secret!"] = "", -- A_Classic_Fairytale:first_blood
---      ["You have proven yourselves worthy!"] = "", -- A_Classic_Fairytale:enemy
---      ["You have reached the take-off area successfully!"] = "", -- A_Space_Adventure:fruit01
---      ["You have rescued H and Dr. Cornelius."] = "", -- A_Space_Adventure:death01
-      ["You have SCORED!!"] = "得分",
---      ["You have shot %d times."] = "", -- TargetPractice
---      ["You have successfully eliminated Professor Hogevil."] = "", -- A_Space_Adventure:death01
---      ["You have successfully finished the campaign!"] = "", -- A_Classic_Fairytale:epil
---      ["You have successfully finished the sniper rifle training!"] = "", -- Basic_Training_-_Sniper_Rifle
---      ["You have thrown %d cluster bombs."] = "", -- Target_Practice_-_Cluster_Bomb
---      ["You have thrown %d grenades."] = "", -- Target_Practice_-_Grenade_easy, Target_Practice_-_Grenade_hard
---      ["You have to be careful and must not die!"] = "", -- A_Space_Adventure:cosmos
---      ["You have to catch the other hog 3 times."] = "", -- A_Space_Adventure:moon02
---      ["You have to complete the main mission on moon in order to travel to other planets."] = "", -- A_Space_Adventure:cosmos
---      ["You have to continue alone from now on."] = "", -- A_Space_Adventure:cosmos
---      ["You have to destroy all the explosives without dying!"] = "", -- A_Space_Adventure:final
---      ["You have to destroy all the targets."] = "", -- A_Space_Adventure:desert03
---      ["You have to destroy the target above by dropping a grenade on it from your flying saucer."] = "", -- Basic_Training_-_Flying_Saucer
---      ["You have to destroy two targets, but the previous technique would be very difficult or dangerous to use."] = "", -- Basic_Training_-_Flying_Saucer
---      ["You have to drop the grenade from rope!"] = "", -- Basic_Training_-_Rope
---      ["You have to eliminate all the enemies."] = "", -- A_Space_Adventure:death02, A_Space_Adventure:fruit03
---      ["You have to eliminate all the visible enemies."] = "", -- A_Space_Adventure:fruit01
---      ["You have to get the weapons and rescue the PAotH researchers."] = "", -- A_Space_Adventure:moon01
---      ["You have to get to the left-most land and remove any enemy hog from there."] = "", -- A_Space_Adventure:fruit01
---      ["You have to go back to the moon!"] = "", -- A_Space_Adventure:cosmos
---      ["You have to move upwards, not downwards, %s!"] = "", -- ClimbHome
---      ["You have to reach the left-most place on the map."] = "", -- A_Space_Adventure:fruit01
---      ["You have to stand very close to him"] = "", -- A_Space_Adventure:moon02
---      ["You have to travel again"] = "", -- A_Space_Adventure:cosmos
---      ["You have to try again!"] = "", -- A_Space_Adventure:cosmos
---      ["You have triggered the secret Do-Not-Rope-to-the-Moon Defense System."] = "", -- A_Space_Adventure:cosmos
---      ["You have unlocked the target radar!"] = "", -- TargetPractice
---      ["You have used %d flying saucers."] = "", -- A_Space_Adventure:ice02
---      ["You have used %d RC planes."] = "", -- User_Mission_-_RCPlane_Challenge
---      ["You have used only 1 RC plane. Outstanding!"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["You have violated PAotH regulations!"] = "", -- A_Space_Adventure:cosmos
---      ["You have won the game by proving true cooperative skills!"] = "", -- A_Classic_Fairytale:enemy
---      ["You just appeared out of thin air!"] = "", -- A_Classic_Fairytale:backstab
---      ["You just can't let it go, can you!"] = "", -- A_Classic_Fairytale:queen
---      ["You just committed suicide..."] = "", -- A_Classic_Fairytale:shadow
---      ["You just got yourself some extra health.|The more health your hedgehogs have, the better!"] = "", -- Basic_Training_-_Movement
---      ["You killed my father, you monster!"] = "", -- A_Classic_Fairytale:backstab
---      ["You know...taking a stroll."] = "", -- A_Classic_Fairytale:backstab
---      ["You know what? I don't even regret anything!"] = "", -- A_Classic_Fairytale:backstab
---      ["You'll get an extra sniper rifle every time you kill an enemy hog with a limit of max 4 rifles."] = "", -- A_Space_Adventure:fruit03
---      ["You'll get an extra teleport every time you kill an enemy hog with a limit of max 2 teleports."] = "", -- A_Space_Adventure:fruit03
---      ["You'll get extra time in case you need it when you pass a ring."] = "", -- A_Space_Adventure:ice02
---      ["You'll have only 2 watermelon bombs during the game."] = "", -- A_Space_Adventure:fruit03
---      ["You'll have only one RC plane at the start of the mission."] = "", -- A_Space_Adventure:desert03
---      ["You'll have to eliminate Captain Lime at the end."] = "", -- A_Space_Adventure:fruit02
---      ["You'll have to eliminate %s at the end."] = "", -- A_Space_Adventure:fruit02
---      ["You'll lose if you die or if your time is up."] = "", -- A_Space_Adventure:moon02
---      ["You'll see what I mean!"] = "", -- A_Classic_Fairytale:enemy
---      ["You lost your target, try again!"] = "", -- TargetPractice
---      ["You may find it handy."] = "", -- A_Space_Adventure:cosmos
---      ["You may only attack from a rope!"] = "", -- WxW
---      ["You may only place 1 Extra Time crate per turn."] = "", -- Construction_Mode
---      ["You may only place %d crates per round."] = "", -- Construction_Mode
---      ["- You may only score when your flag is in your base"] = "", -- Capture_the_Flag
---      ["You meatbags are pretty slow, you know!"] = "", -- A_Classic_Fairytale:enemy
---      ["You might want to find a way to instantly kill arriving cannibals!"] = "", -- A_Classic_Fairytale:backstab
---      ["You must attack from a rope, after you collected a crate!"] = "", -- WxW
---      ["You must first collect a crate before you attack!"] = "", -- WxW
---      ["You must survive the flood in order to score."] = "", -- User_Mission_-_That_Sinking_Feeling
---      ["You never give me plants!"] = "", -- A_Classic_Fairytale:queen
---      ["Young one, you are telling us that they can instantly change location without a shaman?"] = "", -- A_Classic_Fairytale:united
---      ["You now have infinite fuel, grenades and bazookas for fun."] = "", -- Basic_Training_-_Flying_Saucer
---      ["You only get 1 rope this time, don't waste it!"] = "", -- Basic_Training_-_Rope
---      ["You only have 2 flying saucers this time."] = "", -- Basic_Training_-_Flying_Saucer
---      ["You only have one flying saucer this time."] = "", -- Basic_Training_-_Flying_Saucer
---      ["You probably know what to do next..."] = "", -- A_Classic_Fairytale:first_blood
---      ["Your accuracy was %.1f%%."] = "", -- Basic_Training_-_Bazooka, TargetPractice
---      ["Your accuracy was %.1f%% (+%d points)."] = "", -- TargetPractice
---      ["Your ammo is limited this time."] = "", -- Basic_Training_-_Bazooka
---      ["Your deaths will be avenged, %s!"] = "", -- A_Classic_Fairytale:enemy
---      ["Your death will not be in vain, Dense Cloud!"] = "", -- A_Classic_Fairytale:shadow
---      ["You're a coward!"] = "", -- A_Classic_Fairytale:queen
---      ["You're...alive!? But we saw you die!"] = "", -- A_Classic_Fairytale:backstab
---      ["You're a pathetic liar!"] = "", -- A_Classic_Fairytale:backstab
---      ["You're funny!"] = "", -- A_Classic_Fairytale:journey
---      ["You're getting pretty good! |Tip: When you shorten you rope, you move faster!|And when you lengthen it, you move slower."] = "", -- Basic_Training_-_Rope
---      ["You're on your way to freeing your tribe!"] = "", -- A_Classic_Fairytale:queen
---      ["You're pathetic! You are not worthy of my attention..."] = "", -- A_Classic_Fairytale:shadow
---      ["You're probably wondering why I bought you back..."] = "", -- A_Classic_Fairytale:backstab
---      ["You're probably wondering why I brought you back ..."] = "", -- A_Classic_Fairytale:backstab
---      ["Your escape took you %d turns."] = "", -- A_Space_Adventure:desert02
---      ["You're so brave! I feel safe with you."] = "", -- A_Classic_Fairytale:epil
---      ["You're some piece of hypocrite junkie!"] = "", -- A_Classic_Fairytale:queen
---      ["You're terrorizing the forest...We won't catch anything like this!"] = "", -- A_Classic_Fairytale:shadow
---      ["You retrieved the lost part."] = "", -- A_Space_Adventure:fruit02
---      ["Your fastest escape so far: %d turns"] = "", -- A_Space_Adventure:desert02
---      ["Your fastest victory so far: %d rounds"] = "", -- A_Space_Adventure:death02, A_Space_Adventure:fruit03
---      ["Your first destination is the moon in order to get more fuel."] = "", -- A_Space_Adventure:cosmos
---      ["Your hedgehog died!"] = "", -- User_Mission_-_That_Sinking_Feeling
---      ["Your hedgehog has been revived!"] = "", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope
---      ["Your hedgehog was panicly afraid of the water and decided to go in a safe distance of %d from it."] = "", -- ClimbHome
---      ["Your height over time"] = "", -- ClimbHome
---      ["Your hogs must survive!"] = "", -- A_Classic_Fairytale:journey
---      ["Your movement skills will be evaluated now."] = "", -- A_Classic_Fairytale:first_blood
---      ["Your next task is to collect some crates by using the rope!"] = "", -- A_Classic_Fairytale:first_blood
---      ["Your personal best time so far: %.3f seconds"] = "", -- A_Space_Adventure:ice02, A_Space_Adventure:moon02
---      ["Your rank: %s"] = "", -- User_Mission_-_RCPlane_Challenge
---      ["Your rope is gone! Try again!"] = "", -- Basic_Training_-_Rope
---      ["You saved %d of 8 hegehogs."] = "", -- User_Mission_-_That_Sinking_Feeling
---      ["You see, hedgehog spikes are very, very valuable."] = "", -- A_Classic_Fairytale:queen
---      ["You see the wind strength at the bottom right corner."] = "", -- Basic_Training_-_Bazooka
---      ["You see the wind strength at the top."] = "", -- Basic_Training_-_Bazooka
---      ["You should have known that we don't rely on meatbags!"] = "", -- A_Classic_Fairytale:queen
---      ["You should know this more than anyone, Leaks!"] = "", -- A_Classic_Fairytale:queen
---      ["You speak great truth, Hannibal. Here, take a sip!"] = "", -- A_Classic_Fairytale:epil
---      ["You've been assaulting us, we have been just defending ourselves!"] = "", -- A_Classic_Fairytale:enemy
-      ["You've reached the goal!| |Time: "] = "目标达成| |时间:",
---      ["You will be avenged!"] = "", -- A_Classic_Fairytale:shadow
---      ["You will fail if you run out of ammo and there are still targets available."] = "", -- A_Space_Adventure:desert03
---      ["You will gain some extra ammo from the crates the next time you play the \"Getting to the device\" mission."] = "", -- A_Space_Adventure:fruit03
---      ["You will play every 3 turns."] = "", -- A_Space_Adventure:fruit01
---      ["- You will recieve 2-4 weapons on each kill! (Even on own hogs)"] = "", -- Continental_supplies
---      ["You won't believe what happened to me!"] = "", -- A_Classic_Fairytale:backstab
---      ["Yuck! I bet they'll keep worshipping her even after I save the village!"] = "", -- A_Classic_Fairytale:family
---      ["Yumme Gunpowder"] = "", -- 
---      ["Zealandia"] = "", -- Continental_supplies
---      ["Zombie"] = "", -- 
---      ["Zombi"] = "", -- portal
-      ["'Zooka Team"] = "火箭队",
---      ["Zoom: [Pinch] with 2 fingers"] = "", -- Basic_Training_-_Movement
---      ["Zoom: [Rotate mouse wheel]"] = "", -- Basic_Training_-_Movement
---      ["Zork"] = "", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
+["!!!"] = "!!!",
+["..."] = "...",
+["011101000"] = "011101000", -- A_Classic_Fairytale:dragon
+["011101001"] = "011101001", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:family, A_Classic_Fairytale:journey, A_Classic_Fairytale:queen, A_Classic_Fairytale:shadow, A_Classic_Fairytale:united
+["10 weapon schemes"] = "10武器方案", -- Continental_supplies
+["15+%d damage, %d invulnerable left"] = "15+%d伤害,无敌还有%d", -- Continental_supplies
+["1-5, Precise + 1-4: Choose structure type"] = "1-5,精确+ 1-4: 选择结构类型", -- Construction_Mode
+["+1 barrel!"] = "+1油桶", -- Tumbler
+["%.1f seconds were remaining."] = "还有%.1f秒", -- Basic_Training_-_Bazooka
+["%.1fs"] = "%.1f秒", -- Racer, TechRacer
+["+1 Grenade"] = "+1手榴弹", -- Basic_Training_-_Flying_Saucer
+["+1 mine!"] = "+1地雷", -- Tumbler
+["+1 point"] = "+1分", -- Mutant
+["-1 point"] = "-1分", -- Mutant
+["-1 to anyone for a suicide"] = "自杀-1分", -- Mutant
+["+1 to the Bottom Feeder for killing anyone"] = "让对手喂鱼+1分", -- Mutant
+["+1 to the Mutant for killing anyone"] = "变种人杀死对手+1分", -- Mutant
+["+2 for becoming the Mutant"] = "成为变种人+2分", -- Mutant
+["30 minutes later..."] = "30分钟后", -- A_Classic_Fairytale:shadow
+["%.3fs"] = "%.3f秒", -- A_Space_Adventure:ice02
+["5 additional enemies will be spawned during the game."] = "五个额外的敌人会在游戏中出现", -- A_Space_Adventure:fruit01
+["5 Deadly Hogs"] = "致命五刺猬", -- A_Space_Adventure:death02
+["6 more seconds added to the clock"] = "加6秒", -- A_Space_Adventure:ice02
+["About a month ago, a cyborg came and told us that you're the cannibals!"] = "大约一个月前,机器人来到,并说你们是食人族", -- A_Classic_Fairytale:enemy
+["Above-average pilot"] = "平均水平之上的飞行员", -- User_Mission_-_RCPlane_Challenge
+["Accuracy Bonus! +15 points"] = "准确奖励!+15分", -- Space_Invasion
+["Accuracy bonus: +%d points"] = "准确奖励: +%d分", -- Basic_Training_-_Sniper_Rifle
+["Achievement gotten: %s"] = "获得成就: %s", -- User_Mission_-_RCPlane_Challenge, User_Mission_-_That_Sinking_Feeling, User_Mission_-_Bamboo_Thicket, User_Mission_-_Dangerous_Ducklings, Basic_Training_-_Rope, Tumbler
+["A Classic Fairytale"] = "经典童话故事", -- A_Classic_Fairytale:first_blood
+["A crate critical to this mission has been destroyed."] = "这个任务的一个关键箱子被破坏", -- SimpleMission
+["Actually, you aren't worthy of life! Take this..."] = "实际上,你不值得活着!拿着这个……", -- A_Classic_Fairytale:shadow
+["A cy-what?"] = "一个机器-什么?", -- A_Classic_Fairytale:enemy
+["Add %d"] = "添加%d", -- HedgeEditor
+["Admit what?"] = "承认什么?", -- A_Classic_Fairytale:queen
+["Adventurous"] = "Adventurous", -- A_Classic_Fairytale:journey
+["A frenetic Hedgewars mini-game"] = "狂乱的迷你游戏", -- Frenzy
+["Africa"] = "非洲", -- Continental_supplies
+["A frozen adventure"] = "一个冰冻的冒险", -- A_Space_Adventure:ice01
+["After Leaks A Lot betrayed his tribe, he joined the cannibals..."] = "Leaks A Lot背叛了他的部落后加入了食人族", -- A_Classic_Fairytale:first_blood
+["After that incident he went underground and started working on his plan to steal the device."] = "在那次严重事件后,他进入地下开始偷走设备的计划", -- A_Space_Adventure:moon02
+["After the shock caused by the enemy spy, Leaks A Lot and Dense Cloud went hunting to relax."] = "被敌人间谍吓到后,Leaks A Lot 和 Dense Cloud 去打猎放松一下", -- A_Classic_Fairytale:shadow
+["After you killed an enemy, you'll lose the weapon that he is named after."] = "杀死敌人后,会失去跟敌人同样名字的武器", -- A_Space_Adventure:death02
+["After you left the moon, my other loyal minions came and resurrected me so I could complete my master plan."] = "你离开月球后,我的其他忠诚部下来到并复活我,这样我就能完成我的伟大计划", -- A_Space_Adventure:death01
+["Again with the 'cannibals' thing!"] = "和食人族的又一件事情", -- A_Classic_Fairytale:enemy
+["A Hedgewars minigame"] = "迷你游戏", -- Capture_the_Flag
+["A Hedgewars mini-game"] = "迷你游戏", -- Racer, Space_Invasion, TechRacer, Tumbler
+["A Hedgewars tag game"] = "迷你游戏", -- Mutant
+["Ahhh, home, sweet home. Made it in %d seconds."] = "回到家了,用时%d秒", -- ClimbHome
+["Aim at the ceiling and hold [Attack] pressed until the rope attaches."] = "瞄准天花板,长按[攻击]直到绳索连接", -- Basic_Training_-_Rope
+["Aiming practice"] = "瞄准练习", -- TargetPractice
+["Aiming Practice"] = "瞄准练习", --火箭筒、霰弹枪、狙击枪
+["Aim: [Up]/[Down]"] = "瞄准: [上]/[下]", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Rope
+["Air Attack"] = "空袭", -- Construction_Mode
+["Air General"] = "空军将军", -- Battalion
+["Air Mine Placement Mode"] = "浮空雷放置模式", -- HedgeEditor
+["AIR MINE PLACEMENT MODE"] = "浮空雷放置模式", -- HedgeEditor
+["A leap in a leap"] = "一跳一跳", -- A_Classic_Fairytale:first_blood
+["Alex"] = "Alex", -- 
+["Alien! I wish to be moved!"] = "外星人,我希望能转移", -- A_Classic_Fairytale:queen
+["A little gift from the cyborgs"] = "机器人的一个小礼物", -- A_Classic_Fairytale:shadow
+["Al.Kaholic"] = "Al.Kaholic", -- 
+["All But Last"] = "除了最后一个", -- WxW
+["All But Last: You must not solely attack the team with the least health"] = "除了最后一个: 你不能攻击血量最少的队伍", -- WxW
+["All gone...everything!"] = "一切都消失了…一切!", -- A_Classic_Fairytale:enemy
+["Allies"] = "Allies", -- A_Space_Adventure:ice01, A_Space_Adventure:ice02
+["All right, I'll admit it!"] = "好吧,我承认了!", -- A_Classic_Fairytale:queen
+["All right, we just need to get to the other side of the island!"] = "好吧,我们只需要到达岛屿的另一边", -- A_Classic_Fairytale:journey
+["All right, you got me!"] = "好吧,你懂我的!", -- A_Classic_Fairytale:queen
+["All the other places are protected by our flight-inhibiting weapons."] = "所有其他地方都受到我们的飞行抑制武器保护", -- A_Space_Adventure:fruit01
+["All the saucer pilots dream to come here one day in order to compete with the best!"] = "所有飞碟飞行员都梦想有一天来到这里,和最优秀的人比赛", -- A_Space_Adventure:ice02
+["All they do is sit around and judge us!"] = "他们做的只有坐下和审判我们", -- A_Classic_Fairytale:queen
+["All this to please our beloved “elders” … hick …"] = "这些都是为了取悦我们心爱的“长辈”", -- A_Classic_Fairytale:queen
+["All walls touched!"] = "碰到所有墙壁了", -- WxW
+["All you do is take long walks when everyone else works."] = "其他人工作的时候你在散步", -- A_Classic_Fairytale:queen
+["All your hedgehogs must be above the marked height!"] = "你的所有刺猬都要在标记的高度之上", -- A_Classic_Fairytale:family
+["Also, you should know that the only place where you can fly is the left-most part of this area."] = "并且,你应该知道这个地区的最左边是唯一能飞的地方", -- A_Space_Adventure:fruit01
+["Always being considered weak and fragile."] = "一直被当做美丽的花瓶", -- A_Classic_Fairytale:queen
+["Amazing! I was never beaten in a race before!"] = "令人惊叹!之前我没有在竞赛中输过!", -- A_Space_Adventure:moon02
+["Ammo depleted!"] = "弹药耗尽!", -- Space_Invasion
+["Ammo: %d"] = "弹药: %d", -- Tumbler
+["Ammo is reset at the end of your turn."] = "你的回合结束后弹药重置",
+["Ammo Limit: Hogs can’t have more than 1 ammo per type"] = "弹药限制: 每个类型武器的数量不能超过一", -- Highlander
+["Ammo Maniac! +5 points!"] = "弹药狂人!+5分", -- Space_Invasion
+["A mysterious Box"] = "一个神秘的箱子", -- Basic_Training_-_Movement
+["And how am I alive?!"] = "我怎么还活着?!", -- A_Classic_Fairytale:enemy
+["And I just forgot the checkpoint of my main mission. Great, just great!"] = "我忘了主要任务的检查点,好,太好了!", -- A_Space_Adventure:cosmos
+["… and I think they are up to something. Something bad!"] = "… 而且我认为他们要搞事,搞坏事", -- A_Classic_Fairytale:epil
+["Andrey"] = "Andrey", -- 
+["And so happened that Leaks A Lot failed to complete the challenge! He landed, pressured by shame ..."] = "Leaks A Lot 没能完成挑战", -- A_Classic_Fairytale:first_blood
+["And so it began..."] = "就这样开始了……", -- A_Classic_Fairytale:first_blood
+["And so the cyborgs took over the island."] = "就这样机器人控制了这个岛屿", -- A_Classic_Fairytale:queen
+["...and so the cyborgs took over the world..."] = "……就这样机器人控制了这个世界……", -- A_Classic_Fairytale:shadow
+["And so they discovered that cyborgs weren't invulnerable..."] = "就这样他们发现机器人不是无敌的……", -- A_Classic_Fairytale:journey
+["… and then I took a stroll …"] = "……然后我去闲逛了……", -- A_Classic_Fairytale:epil
+["And what do they do in the meantime? Nothing!"] = "在同一时间他们做了什么?什么都没做!", -- A_Classic_Fairytale:queen
+["And where's all the weed?"] = "所有杂草在哪里?", -- A_Classic_Fairytale:dragon
+["And you believed me? Oh, god, that's cute!"] = "你相信我?哦,太可爱了!", -- A_Classic_Fairytale:journey
+["And you need to move to the top!"] = "你需要走到上面!", -- Basic_Training_-_Movement
+["An experimental editing tool for missions and more"] = "一个实验性的编辑工具用于任务和更多", -- HedgeEditor
+["Anno 1032"] = "Anno 1032", -- Continental_supplies
+["Anno 1032: [The explosion will make a strong push ~ Wide range, wont affect hogs close to the target]"] = "Anno 1032: [爆炸会造成大范围的强烈冲击,不会影响靠近目标的刺猬]", -- Continental_supplies
+["An object has been destroyed before it took enough damage."] = "一个对象在它造成足够伤害前被破坏了", -- SimpleMission
+["Antarctica"] = "南极洲", -- Continental_supplies
+["Antarctic summer: Every 4th turn you get 1 girder, 1 mudball, 2 sine guns and 1 portable portal device."] = "南极的夏天: 每四个回合,你会得到1大梁、1泥球、2正弦枪、1便携传送设备", -- Continental_supplies
+["Antarctic summer: - Will give you one girder/mudball and two sineguns/portals every fourth turn."] = "南极的夏天: 每四个回合给你1大梁/泥球、2正弦枪/传送门", -- Continental_supplies
+["Anti-Gravity Device Part (+1)"] = "反重力设备部件(+1)", -- A_Space_Adventure:desert01, A_Space_Adventure:fruit02, A_Space_Adventure:ice01
+["Anton"] = "Anton", -- 
+["An unexpected event!"] = "一个意外事件!", -- A_Space_Adventure:cosmos
+["Anyway, the aliens accept me for who I am."] = "不管怎样,外星人接受了我是谁", -- A_Classic_Fairytale:queen
+["A random hedgehog will inherit the weapons of his deceased team-mates."] = "一个随机刺猬会继承死了的队友的武器", -- A_Space_Adventure:death02
+["Arashi"] = "Arashi", -- 
+["Area"] = "地区", -- Continental_supplies
+["Areas surrounded by a green dashed outline are portal-proof and repel portals."] = "绿色轮廓包围的地区防传送门和排斥传送门", -- A_Space_Adventure:final
+["Areas surrounded by a security border are indestructible."] = "安全边界包围的地区不可破坏", -- A_Space_Adventure:final
+["Areas with a green dashed outline are portal-proof."] = "有绿色轮廓的地区防传送门", -- A_Space_Adventure:final
+["Areas with a security outline are indestructible."] = "有安全轮廓的地区不可破坏", -- A_Space_Adventure:final
+["Are we there yet?"] = "我们到了吗?", -- A_Classic_Fairytale:shadow
+["Are you accusing me of something?"] = "你因某事指责我?", -- A_Classic_Fairytale:backstab
+["Are you helping the aliens?"] = "你在帮助外星人?", -- A_Classic_Fairytale:queen
+["Are you saying that many of us have died for your entertainment?"] = "你说我们会为你的娱乐死掉很多人?", -- A_Classic_Fairytale:enemy
+["Argh, the boredom!"] = "啊,无聊啊!", -- A_Classic_Fairytale:queen
+["Artur Detour"] = "Artur Detour", -- A_Classic_Fairytale:queen
+["As a reward for your performance, here's some new technology!"] = "作为你的表现的奖励,这是一些新科技!", -- A_Classic_Fairytale:dragon
+["Ash"] = "Ash", -- 
+["A Shoppa minigame"] = "一个 Shoppa 迷你游戏", -- WxW
+["Asia"] = "亚洲", -- Continental_supplies
+["As long you don't touch the ground, you can|re-use the same rope as often as you like."] = "只要你还没碰到地面,就能重新使用绳索", -- Basic_Training_-_Rope
+["A smuggler! Prepare for battle"] = "一个走私者!准备战斗", -- A_Space_Adventure:desert01
+["A Space Adventure"] = "一个太空冒险", -- A_Space_Adventure:desert01, A_Space_Adventure:moon01
+["Assault Team"] = "突击小队", -- A_Classic_Fairytale:backstab
+["Asteroid"] = "Asteroid", -- Big_Armory
+["As the ammo is sparse, you might want to reuse ropes while mid-air."] = "弹药稀少,你可能要在空中重新使用绳索", -- A_Classic_Fairytale:dragon
+["As the challenge was completed, Leaks A Lot set foot on the ground..."] = "Leaks A Lot挑战完成", -- A_Classic_Fairytale:first_blood
+["As you are more experienced, I want you to lead them to battle."] = "你更有经验,我想要你带领他们去战斗", -- A_Space_Adventure:fruit01
+["As you can see I have survived our last encounter and I had time to plot my master plan!"] = "如你所见,我在我们上一次遭遇中活下来,我有时间实现我的伟大计划", -- A_Space_Adventure:death01
+["As you can see, there is no way to get on the other side!"] = "如你所见,这里没有路到另一边", -- A_Classic_Fairytale:dragon
+["As you probably noticed, these rubber bands|are VERY elastic. Hedgehogs and many other|things will bounce off without taking any damage."] = "你可能注意到,这些橡皮筋很有弹性,|可以弹走刺猬和大部分东西", -- Basic_Training_-_Movement
+["As you've seen, the dropped grenade roughly fell into your flying direction."] = "如你所见,手榴弹只会掉到你的飞碟下面", -- Basic_Training_-_Flying_Saucer
+["Athlete"] = "运动员", -- Battalion
+["Attack: Activate"] = "攻击: 激活", -- Racer
+["Attack Captain Lime before he attacks back."] = "先发制人, 攻击Captain Lime", -- A_Space_Adventure:fruit02
+["Attack From Rope: %s"] = "从绳索攻击: %s", -- WxW
+["Attack From Rope: You may only attack from a rope."] = "从绳索攻击: 你只能在绳索上攻击", -- WxW
+["Attack rule: %s"] = "攻击规则: %s", -- WxW
+["Attack: Select this continent"] = "攻击: 选择这个大陆", -- Continental_supplies
+["Attack: [Space]"] = "攻击: [Space]", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope
+["Attack: Tap the [Bomb]"] = "攻击: [Bomb]", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope, A_Classic_Fairytale:first_blood, A_Classic_Fairytale:shadow
+["Attack the assassins before they attack back."] = "先发制人,攻击刺客", -- A_Space_Adventure:fruit02
+["Attack: Throw ball"] = "攻击: 扔球", -- Knockball
+["At the end of the game your health was %d."] = "游戏的最后你还有%d血量", -- A_Space_Adventure:ice01
+["At the start of the game each enemy hog has only the weapon that he is named after."] = "在游戏的开始,每个敌人刺猬只有相同名字的武器", -- A_Space_Adventure:death02
+["Australia"] = "澳大利亚", -- Continental_supplies
+["Available weapon specials:"] = "可用的武器特别模式:", -- Continental_supplies
+["Average pilot"] = "平均水平的飞行员", -- User_Mission_-_RCPlane_Challenge
+["Avoid bazookas, red and blue invaders."] = "避开火箭炮、红蓝入侵者", -- Space_Invasion
+["Axes"] = "Axes", -- Bazooka_Battlefield
+["Aye! Fellow! Let me exit this chamber of doom!"] = "喂,老兄!让我离开这个房间", -- A_Classic_Fairytale:epil
+["Back Breaker"] = "Back Breaker", -- A_Classic_Fairytale:backstab
+["Back in the village, after telling the villagers about the threat..."] = "回到村子,告诉村民关于威胁之后……", -- A_Classic_Fairytale:united
+["Back in the village, the two tribes finally started to live in harmony."] = "回到村子,两个部落终于和睦相处", -- A_Classic_Fairytale:epil
+["Back Jump: [Backspace] ×2"] = "后跳: [Backspace]×2", -- Basic_Training_-_Movement
+["Back Jump: Double-tap the [Curvy Arrow]"] = "后跳: 双击[Curvy Arrow]", -- Basic_Training_-_Movement
+["Back Jumping (1/2)"] = "后跳(1/2)", -- Basic_Training_-_Movement
+["Back Jumping (2/2)"] = "后跳(2/2)", -- Basic_Training_-_Movement
+["Backstab"] = "背刺", -- A_Classic_Fairytale:backstab
+["Backwards jump: Press [Backspace] twice"] = "后跳: 按两次[Backspace]", -- A_Classic_Fairytale:first_blood
+["Backwards jump: Tap the [Curvy Arrow] twice"] = "后跳: 按两次[Curvy Arrow]", -- A_Classic_Fairytale:first_blood
+["Bacon"] = "Bacon", -- 
+["Bad Guy"] = "Bad Guy", -- User_Mission_-_The_Great_Escape
+["Badmad"] = "Badmad", -- portal
+["Bad Team"] = "Bad Team", -- User_Mission_-_The_Great_Escape
+["Bad timing"] = "坏时机", -- A_Space_Adventure:fruit01
+["Baggy"] = "Baggy", -- 
+["Balrog"] = "Balrog", -- 
+["Bamboo Thicket"] = "竹林",
+["Barrel Launcher"] = "油桶发射器",
+["Barrel Placement Mode"] = "油桶放置模式", -- Construction_Mode
+["BARREL PLACEMENT MODE"] = "油桶放置模式", -- HedgeEditor
+["Barrier unlocked!"] = "障碍解锁了!", -- Basic_Training_-_Rope
+["Baseballbat"] = "棒球棒", -- Continental_supplies
+["Baseball bat specials cannot be used close to other hogs."] = "棒球棒不能在非常靠近其他刺猬的时候使用", -- Continental_supplies
+["Baseball Bat with Ball"] = "棒球棒和球", -- Knockball
+["Base damage has been modified to 12 per shot."] = "基础伤害被修改为每发12", -- Battalion
+["Based on what you've learned, destroy the target on the girder and as always, land safely!"] = "用你学到的东西,破坏大梁上的目标,安全地着陆!", -- Basic_Training_-_Flying_Saucer
+["Basically this is a combination of diving and launching."] = "本质上这是潜水和发射的结合", -- Basic_Training_-_Flying_Saucer
+["Basic Bazooka Training"] = "基础火箭炮训练", -- Basic_Training_-_Bazooka
+["Basic Grenade Training"] = "基础手榴弹训练", -- Basic_Training_-_Grenade
+["Basic Movement Training"] = "基础移动训练", -- Basic_Training_-_Movement
+["Basic Rope Training"] = "基础绳索训练", -- Basic_Training_-_Rope
+["Basic Training"] = "基础训练", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope
+["Basketball"] = "篮球", -- Basketball
+["Bat balls at your enemies and|push them into the sea!"] = "挥动棒球把敌人打下海",
+["Battalion"] = "Battalion", -- Battalion
+["Battle Starts Now!"] = "战斗现在开始!", -- A_Space_Adventure:fruit01
+["Batty"] = "Batty", -- 
+["Bat your opponents through the|baskets and out of the map!"] = "把敌人打进篮筐",
+["Bazooka Battlefield"] = "火箭炮战场", -- Bazooka_Battlefield
+["Bazooka Master"] = "火箭炮大师", -- Basic_Training_-_Bazooka
+["Bazookas are influenced by wind."] = "火箭炮受风力影响", -- Basic_Training_-_Bazooka
+["Bazooka Training"] = "火箭炮训练",
+["Bearded Beast"] = "Bearded Beast", -- 
+["Be careful, the future of Hogera is in your hands!"] = "注意,Hogera的未来在你手上!", -- A_Space_Adventure:cosmos
+["Be careful, your fuel is limited from now on!"] = "注意,从现在开始你的燃料受到限制", -- Basic_Training_-_Flying_Saucer
+["Be careful, your gadgets won't work in the bandit area. You should get an ice gun."] = "注意,你的小工具在强盗的领地不起作用,你应该找一把冰冻枪", -- A_Space_Adventure:ice01
+["Beep Loopers"] = "Beep Loopers", -- A_Classic_Fairytale:queen
+["Beginner"] = "新手", -- User_Mission_-_RCPlane_Challenge
+["Behind these trees on the east side there is Secret Base 17."] = "东边的树木后面就是秘密基地17", -- A_Space_Adventure:cosmos
+["Below-average pilot"] = "平均水平之下的飞行员", -- User_Mission_-_RCPlane_Challenge
+["Besides, why would I choose certain death?"] = "此外,为什么我要选择死亡?", -- A_Classic_Fairytale:queen
+["Best laps per team: "] = "每队一圈最佳速度: ",
+["Best team times: "] = "队伍最佳时间: ", -- Racer, TechRacer
+["Better get yourself another health crate to heal your wounds."] = "最好得到另一个医疗箱治疗你的伤口", -- Basic_Training_-_Movement
+["Better luck next time!"] = "祝你下次好运!", -- ClimbHome
+["Better Safe Than Sorry"] = "安全比抱歉要好", -- A_Space_Adventure:desert02
+["Beware, any damage taken will stay until you complete the moon's main mission"] = "当心,任何受到的伤害会停留,直到你完成月球的主要任务", -- A_Space_Adventure:cosmos
+["Beware of mines: They explode after 3 seconds."] = "当心地雷: 他们在3秒后爆炸", -- A_Classic_Fairytale:journey
+["Beware of mines: They explode after 5 seconds."] = "当心地雷: 他们在5秒后爆炸", -- A_Classic_Fairytale:journey
+["Beware, though! If you are slow, you die!"] = "当心,如果你太慢就会死!", -- A_Classic_Fairytale:dragon
+["Beware, though! Many smugglers come often to explore these tunnels and scavenge whatever valuable items they can find."] = "当心,经常有很多走私者探索这些隧道,并搜寻值钱的东西", -- A_Space_Adventure:desert01
+["Beware, though, you will only be able to move slowly through the water."] = "当心,你只能慢慢地穿过这些水", -- Basic_Training_-_Flying_Saucer
+["Big Armory"] = "大军械库", -- Big_Armory
+["Billy Frost"] = "Billy Frost", -- A_Space_Adventure:ice01
+["Bingo"] = "Bingo", -- 
+["Bio-Filter: Aggressively removes enemies."] = "生物过滤器: 积极清除敌人", -- Construction_Mode
+["Bio-Filter"] = "生物过滤器", -- Construction_Mode
+["Biomechanic Team"] = "Biomechanic Team", -- A_Classic_Fairytale:family
+["Bitter"] = "Bitter", -- 
+["Blanka"] = "Blanka", -- 
+["Blender"] = "Blender", -- A_Classic_Fairytale:family
+["Bloodpie"] = "Bloodpie", -- A_Classic_Fairytale:backstab
+["Bloodrocutor"] = "Bloodrocutor", -- A_Classic_Fairytale:shadow
+["Bloodsucker"] = "Bloodsucker", -- A_Classic_Fairytale:shadow
+["Blue"] = "蓝", -- 
+["Blue Team"] = "蓝队", -- User_Mission_-_Dangerous_Ducklings
+["Bob"] = "Bob", -- A_Space_Adventure:cosmos
+["Bobo"] = "Bobo", -- User_Mission_-_Nobody_Laugh
+["Bone Jackson"] = "Bone Jackson", -- A_Classic_Fairytale:backstab
+["Bonely"] = "Bonely", -- A_Classic_Fairytale:shadow
+["Bones"] = "Bones", -- 
+["Boom!"] = "Boom!", 
+["BOOM! BOOM! BOOM! %s are the masters of destruction with %d destroyed invaders."] = "BOOM! BOOM! BOOM! %s 是破坏大师,消灭了%d个入侵者", -- Space_Invasion
+["Boom! %s has destroyed %d invaders."] = "Boom! %s 消灭了%d个入侵者", -- Space_Invasion
+["BOOM! %s really didn't like the invaders, so they decided to destroy as much as %d of them."] = "BOOM! %s 真的不喜欢入侵者,所以他们决定%d敌人来一个杀一个", -- Space_Invasion
+["Boris"] = "Boris", -- A_Space_Adventure:moon01
+["Boss defeated! +30 points!"] = "打败首领!+30分", -- Space_Invasion
+["Boss Slayer! +25 points!"] = "首领杀手!+25分", -- Space_Invasion
+["Both Barrels"] = "两个油桶", -- 
+["Both your hedgehogs must survive."] = "你的两个刺猬都要活下来", -- User_Mission_-_Teamwork_2, User_Mission_-_Teamwork
+["Bottom Feeder"] = "喂鱼人", -- Mutant
+["Bounciness"] = "弹性", -- Basic_Training_-_Grenade
+["Bouncing Bomb"] = "弹性炸弹", -- Basic_Training_-_Bazooka
+["Bouncy Boomerang"] = "弹性回力镖", -- Continental_supplies
+["Bouncy Girder: [4]"] = "弹性大梁: [4]", -- HedgeEditor
+["Bouncy Land: [4]"] = "弹性地面: [4]", -- HedgeEditor
+["Bouncy Land"] = "弹性地面", -- HedgeEditor
+["Bounty: Get 6 weapons for each kill (even on own hogs)."] = "赏金: 每杀一个得到六个武器(即使是自己人)", -- Continental_supplies
+["Bozo"] = "Bozo", -- 
+["Brain Blower"] = "Brain Blower", -- A_Classic_Fairytale:journey
+["Brainiac"] = "Brainiac", -- A_Classic_Fairytale:epil, A_Classic_Fairytale:first_blood, A_Classic_Fairytale:shadow
+["Brainila"] = "Brainila", -- A_Classic_Fairytale:united
+["Brain Stu"] = "Brain Stu", -- A_Classic_Fairytale:united
+["Brain Teaser"] = "Brain Teaser", -- A_Classic_Fairytale:backstab
+["Brigadier Briggs"] = "Brigadier Briggs", -- 
+["Bruce"] = "Bruce", -- A_Space_Adventure:moon01
+["Brutal Lily"] = "Brutal Lily", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil
+["Brutus"] = "Brutus", -- A_Classic_Fairytale:backstab
+["Build a fortress and destroy your enemy."] = "建造堡垒并消灭你的敌人", -- Construction_Mode
+["Build an awesome race track by placing|waypoints which the hedgehogs have to|touch in any order to finish a round."] = "建造一个赛道,放置刺猬必须触碰的路标", -- Racer
+["Build a track and race."] = "建造赛道并竞赛",
+["Builder"] = "Builder", -- Battalion
+["Build one of multiple different structures|to aid you in victory, at the cost of energy."] = "消耗能量建造多个不同结构", -- Construction_Mode
+["Bullseye"] = "靶心", -- A_Classic_Fairytale:dragon
+["Bunny"] = "Bunny", -- 
+["burp"] = "burp", -- 
+["Bushes"] = "Bushes", -- Bazooka_Battlefield
+["Bushi"] = "Bushi", -- 
+["Buster"] = "Buster", -- 
+["But it proved to be no easy task!"] = "但事实证明这并非易事", -- A_Classic_Fairytale:dragon
+["But I want my sandals!"] = "但我想要我的拖鞋!", -- A_Classic_Fairytale:queen
+["But one thing's for sure:"] = "但有一件事是确定的:", -- A_Space_Adventure:final
+["But that's impossible!"] = "但那不可能!", -- A_Classic_Fairytale:backstab
+["But the ones alive are stronger in their heart!"] = "但活着的那一个内心比其他人强大", -- A_Classic_Fairytale:enemy
+["But … they kidnapped you!"] = "但……他们绑架了你!", -- A_Classic_Fairytale:queen
+["But...we died!"] = "但是……我们死了!", -- A_Classic_Fairytale:backstab
+["But where can we go?"] = "但我们能去哪里?", -- A_Classic_Fairytale:united
+["But why did you betray us?!"] = "但为什么你要背叛我们?!", -- A_Classic_Fairytale:queen
+["But why would they help us?"] = "但为什么他们要帮助我们?", -- A_Classic_Fairytale:backstab
+["But you're cannibals. It's what you do."] = "但你是食人族,这就是你做的事", -- A_Classic_Fairytale:enemy
+["But you said you'd let her go!"] = "但你说了你会让她走!", -- A_Classic_Fairytale:journey
+["But you saved me!"] = "但你救了我!", -- A_Classic_Fairytale:queen
+["By the way, not only bazookas will bounce on water, but also greandes and many other things."] = "顺便说一下,不只是火箭炮会在水面弹跳,手榴弹和许多其他东西也行", -- Basic_Training_-_Bazooka
+["By the way, not only bazookas will bounce on water, but also grenades and many other things."] = "顺便说一下,不只是火箭炮会在水面弹跳,手榴弹和许多其他东西也行", -- Basic_Training_-_Bazooka
+["By the way, you can turn around without walking|by holding down Precise when you hit a walk control."] = "顺便说一下,你可以按着精确键+方向键不用走路就能转身", -- Basic_Training_-_Movement
+["C-1"] = "C-1", -- portal
+["C-2"] = "C-2", -- portal
+["Callahan"] = "Callahan", -- 
+["Call me Beep! Well, 'cause I'm such a nice...person!"] = "叫我“Beep”,因为我是一个多好的……人!", -- A_Classic_Fairytale:family
+["Cannibals"] = "食人族", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:first_blood
+["Cannibal Sentry"] = "食人族哨兵", -- A_Classic_Fairytale:journey
+["Cannibals?! You're the cannibals!"] = "食人族?!你才是食人族!", -- A_Classic_Fairytale:enemy
+["Can you do it?"] = "你能做到吗?", -- A_Space_Adventure:ice02
+["Cappy"] = "Cappy", -- Basic_Training_-_Movement
+["Captain Lime"] = "Captain Lime", -- A_Space_Adventure:fruit01, A_Space_Adventure:fruit02
+["Captain Lime offered his help if you assist him in battle."] = "如果你在战斗中帮助Captain Lime,他会给你提供帮助", -- A_Space_Adventure:fruit01
+["Capture The Flag"] = "夺取光环", -- Capture_the_Flag, CTF_Blizzard
+["Careful, hedgehogs can't swim!"] = "小心,刺猬不会游泳!", -- Basic_Training_-_Movement
+["Careless"] = "Careless",
+["Carol"] = "Carol", -- A_Classic_Fairytale:family
+["Challenge completed!"] = "挑战完成!", -- User_Mission_-_Rope_Knock_Challenge, User_Mission_-_That_Sinking_Feeling, SpeedShoppa
+["CHALLENGE COMPLETE"] = "挑战完成", -- User_Mission_-_RCPlane_Challenge
+["Challenge failed!"] = "挑战失败", -- SpeedShoppa
+["Challenge objectives"] = "挑战目标", -- A_Space_Adventure:death02, A_Space_Adventure:desert03, A_Space_Adventure:final, A_Space_Adventure:fruit03, A_Space_Adventure:moon02
+["Challenge over!"] = "挑战结束", -- User_Mission_-_Rope_Knock_Challenge
+["Challenge"] = "挑战", -- User_Mission_-_RCPlane_Challenge, User_Mission_-_Rope_Knock_Challenge, User_Mission_-_That_Sinking_Feeling, SpeedShoppa, ClimbHome
+["Change bounciness: Tap [B]"] = "改变弹力: 按[B]", -- Basic_Training_-_Grenade
+["Change Content: [Left], [Right]"] = "改变内容: [左]/[右]", -- HedgeEditor
+["Change detonation timer: Tap the [Clock]"] = "改变引爆定时器: 按[Clock]", -- Basic_Training_-_Grenade, A_Classic_Fairytale:shadow
+["Change direction: [Left]/[Right]"] = "改变方向: [左]/[右]", -- Basic_Training_-_Grenade
+["Change Health Boost: [Left], [Right]"] = "改变加血: [左]/[右]", -- HedgeEditor
+["Change Health: [Left], [Right]"] = "改变血量: [左]/[右]", -- HedgeEditor
+["Change modification mode: [Left], [Right]"] = "改变修改模式: [左]/[右]", -- HedgeEditor
+["Change Placement Mode: [Up], [Down]"] = "改变放置模式: [上]/[下]", -- HedgeEditor
+["Change Rotation: [Left], [Right]"] = "改变旋转: [左]/[右]", -- HedgeEditor
+["Change Sprite Frame: [Precise]+[Left], [Precise]+[Right]"] = "改变Sprite Frame: [精确]+[左],[精确]+[右]", -- HedgeEditor
+["Change Sprite: [Left], [Right]"] = "改变Sprite: [左]/[右]", -- HedgeEditor
+["Change Timer: [Left], [Right]"] = "改变定时器: [左]/[右]", -- HedgeEditor
+["Change weapon: [Long jump] or [Slot 1]-[Slot 3]"] = "改变武器: [远跳]或[槽位1-3]", -- Tumbler
+["Charmander"] = "Charmander", -- 
+["Chasing the blue hog"] = "追逐蓝刺猬", -- A_Space_Adventure:moon02
+["Cheater"] = "Cheater", -- User_Mission_-_RCPlane_Challenge
+["Checkpoint reached!"] = "到达检查点!", -- A_Space_Adventure:cosmos, A_Space_Adventure:ice01, A_Space_Adventure:moon01
+["Chef"] = "厨师", -- Battalion, HedgeEditor
+["Chester"] = "Chester", -- 
+["Chicken"] = "Chicken", -- 
+["Chief Sandologist"] = "Chief Sandologist", -- A_Space_Adventure:desert01
+["Chikorita"] = "Chikorita", -- 
+["Choose location: Left click"] = "选择位置: 左键", -- A_Classic_Fairytale:shadow
+["Choose location: Tap the [Target] button, then tap on the spot you want to choose"] = "选择位置: 按[Target],然后按下你想选的位置", -- A_Classic_Fairytale:shadow
+["Choose Selection/Placement/Deletion: [Left], [Right]"] = "选择/放置/删除: [左]/[右]", -- HedgeEditor
+["Choose your continent wisely, as your decision will be permanent."] = "明智地选择你的大陆,你的决定会是永久的", -- Continental_supplies
+["Choose your side! If you want to join the strange man, walk up to him.|Otherwise, walk away from him. If you decide to att...nevermind..."] = "选择你的阵营!如果你想加入奇怪的人,走近他。否则离远点。如果你决定攻……没什么……", -- A_Classic_Fairytale:shadow
+["Chunli"] = "Chunli", -- 
+["Clark Kent"] = "Clark Kent", -- 
+["Cleaver"] = "菜刀", -- Construction_Mode
+["Cleaver Placement Mode"] = "菜刀放置模式", -- Construction_Mode
+["CLEAVER PLACEMENT MODE"] = "菜刀放置模式", -- HedgeEditor
+["Climb Home"] = "爬回家", -- ClimbHome
+["Closing in"] = "逼近", -- A_Classic_Fairytale:queen
+["Clown"] = "小丑", -- HedgeEditor
+["Clowns"] = "小丑", -- User_Mission_-_Nobody_Laugh
+["Cluck-cluck time: [Fire an egg ~ Sabotages and cures poison ~ Cannot be fired close to another hog]"] = "Cluck-cluck 时间: [发射一个蛋,妨害和治疗中毒,不能靠得太近发射]", -- Continental_supplies
+["Clumsy"] = "Clumsy",
+["Cluster Bomb Training"] = "集束炸弹训练", -- Basic_Training_-_Cluster_Bomb
+["Collateral Damage"] = "Collateral Damage", -- A_Classic_Fairytale:journey
+["Collateral Damage II"] = "Collateral Damage II", -- A_Classic_Fairytale:journey
+["- Collect all the blue crates"] = "- 收集所有蓝箱子", -- HedgeEditor
+["Collect all the crates, but remember, our time in this life is limited!"] = "收集所有箱子,记住时间有限!", -- A_Classic_Fairytale:first_blood
+["Collect or destroy all the health crates."] = "收集或破坏所有医疗箱", -- User_Mission_-_RCPlane_Challenge
+["Collect or destroy the final crate to finish the training."] = "收集或破坏最后的箱子来完成训练", -- Basic_Training_-_Flying_Saucer
+["- Collect the blue crate"] = "- 收集蓝箱子", -- HedgeEditor
+["Collect the crate and attack!"] = "收集箱子并攻击!", -- WxW
+["Collect the crate on the right."] = "收集右边的箱子", -- A_Classic_Fairytale:first_blood
+["Collect the crates within the time limit!|If you fail, you'll have to try again."] = "在限制的时间内收集箱子,如果你失败了就要重来", -- A_Classic_Fairytale:first_blood
+["Collect the first crate to begin!"] = "收集第一个箱子以开始", -- Basic_Training_-_Flying_Saucer
+["Collect the freezer and get the device part from Thanta."] = "收集冰冻枪并从Thanta那里得到设备部件", -- A_Space_Adventure:ice01
+["Collect the green and purple invaders."] = "收集绿色和紫色入侵者", -- Space_Invasion
+["Collect the remaining crates to complete the training."] = "收集剩余的箱子来完成训练", -- Basic_Training_-_Movement
+["Collect the weapon crate and drop|a grenade from rope to destroy the barrels."] = "收集武器箱并从绳索丢下手榴弹来破坏油桶", -- Basic_Training_-_Rope
+["Collect the weapon crate at the left coast!"] = "在左边海岸收集武器箱", -- A_Classic_Fairytale:journey
+["Color Squad"] = "颜色小队", -- 
+["Come closer and die! … burp …"] = "靠近并去死!……打嗝……", -- A_Classic_Fairytale:queen
+["Come closer, so that your training may continue!"] = "靠近点,这样你的训练就能继续", -- A_Classic_Fairytale:first_blood
+["Comet"] = "Comet", -- Big_Armory
+["Commander"] = "指挥官", -- HedgeEditor
+["Compete to use as few planes as possible!"] = "比赛尽量少用飞机", -- User_Mission_-_RCPlane_Challenge
+["Complete all main and side missions to complete the spacetrip mission."] = "完成所有主要和支线任务来完成太空旅行任务", -- A_Space_Adventure:cosmos
+["Complete the obstacle course."] = "完成障碍课程", -- Basic_Training_-_Movement
+["Complete the remaining side missions to complete this mission."] = "完成剩余的支线任务来完成这个任务", -- A_Space_Adventure:cosmos
+["Complete the track as fast as you can!"] = "尽快完成赛道",
+["Completion time: %.2fs"] = "完成时间: %.2f秒", -- User_Mission_-_Rope_Knock_Challenge
+["Comrades! Sail me away!"] = "同志,我们走", -- A_Classic_Fairytale:queen
+["Configuration accepted."] = "配置已接受", -- WxW
+["Configuration phase"] = "配置阶段", -- WxW
+["Congrats! You won!"] = "恭喜!你赢了!", -- A_Space_Adventure:moon01
+["Congratulations"] = "恭喜", -- Basic_Training_-_Rope
+["Congratulations, you acquired the device part!"] = "恭喜,你得到了设备部件!", -- A_Space_Adventure:ice01
+["Congratulations, you are the best!"] = "恭喜,你是最棒的!", -- A_Space_Adventure:desert03
+["Congratulations, you are the fastest!"] = "恭喜,你是最快的!", -- A_Space_Adventure:moon02
+["Congratulations, you collected the device part!"] = "恭喜,你收集了设备部件!", -- A_Space_Adventure:ice01
+["Congratulations! You have completed the obstacle course!"] = "恭喜,你完成了障碍课程!", -- Basic_Training_-_Movement
+["Congratulations! You have destroyed all targets within the time."] = "恭喜,你在时间内破坏了所有目标!", -- TargetPractice
+["Congratulations, you have saved Hogera!"] = "恭喜,你救了Hogera!", -- A_Space_Adventure:final
+["Congratulations! You have truly mastered this challenge! Don't forget to save the demo."] = "恭喜,你真正地掌握了这个挑战,别忘了保存demo", -- User_Mission_-_RCPlane_Challenge
+["Congratulations! You've completed the Basic Rope Training!"] = "恭喜,你完成了基础绳索训练!", -- Basic_Training_-_Rope
+["Congratulations! You've eliminated all targets|within the allowed time frame."] = "恭喜!你在规定时间内消灭了全部目标。", --Bazooka, Shotgun, SniperRifle
+["Congratulations! You win."] = "恭喜,你赢了", -- Big_Armory
+["Congratulations, you won!"] = "恭喜,你赢了!", -- A_Space_Adventure:death01, A_Space_Adventure:death02, A_Space_Adventure:desert01, A_Space_Adventure:desert02, A_Space_Adventure:fruit02, A_Space_Adventure:fruit03, A_Space_Adventure:ice02
+["Congratulations!"] = "恭喜",
+["Conquering the galaxy"] = "征服星系", -- A_Space_Adventure:cosmos
+["CONSTRUCTION MODE"] = "建造模式", -- Construction_Mode
+["Construction Mode tool"] = "建造模式工具", -- Construction_Mode
+["Construction Station: Allows placement of|    girders, rubber, mines, sticky mines|    and barrels."] = "建造站: 允许放置大梁、橡皮筋、地雷、黏性地雷和油桶", -- Construction_Mode
+["Construction Station"] = "建造站", -- Construction_Mode
+["Continental supplies"] = "大陆的物资", -- Continental_supplies
+["Continent selection"] = "选择大陆", -- Continental_supplies
+["Continents: Select a continent at the beginning."] = "大陆: 在开头选择一个大陆", -- Continental_supplies
+["Control"] = "控制", -- Control
+["Control pillars to score points."] = "控制柱子得分",
+["Controls: Hold the Attack key (space by default) to|fire the rope, then, once attached use:|Left and Right to swing the rope;|Up and Down to contract and expand."] = "控制: 按着攻击键发射绳索,连上后|左和右摇晃,上和下伸缩", -- Basic_Training_-_Rope
+["Copper"] = "Copper", -- User_Mission_-_Nobody_Laugh
+["Corn"] = "Corn", -- A_Space_Adventure:fruit01
+["Corporal Calvin"] = "Corporal Calvin", -- 
+["Corporationals"] = "Corporationals", -- A_Classic_Fairytale:queen
+["Corpsemonger"] = "Corpsemonger", -- A_Classic_Fairytale:shadow
+["Corpse Thrower"] = "Corpse Thrower", -- A_Classic_Fairytale:epil
+["Cost"] = "消耗", -- Construction_Mode
+["Cost: %d"] = "消耗: %d", -- Construction_Mode
+["Cotton Needer"] = "Cotton Needer", -- Mutant
+["Count Hogula"] = "Count Hogula", -- 
+["Coward"] = "懦夫", -- A_Classic_Fairytale:queen
+["Crate Before Attack: %s"] = "攻击之前的箱子: %s", -- WxW
+["Crate Before Attack: You must collect a crate before you can attack."] = "攻击之前的箱子: 你必须在你能攻击之前收集一个箱子", -- WxW
+["Crate Placer"] = "箱子放置器", -- Construction_Mode
+["Crates: Crates drop more often with a higher chance of bonus ammo"] = "箱子: 箱子经常掉落有更高机会得到额外武器", -- Battalion
+["Crates: Crates drop randomly and may be empty"] = "箱子: 箱子随机掉落而且可能是空的", -- Battalion
+["Crates: Crates drop randomly with chance of being empty"] = "箱子: 箱子随机掉落,有可能是空的", -- Battalion
+["Crates left: %d"] = "箱子还有: %d", -- User_Mission_-_RCPlane_Challenge
+["Crates Left:"] = "箱子还有:", -- User_Mission_-_RCPlane_Challenge
+["Crates per turn: %d"] = "每个回合的箱子: %d", -- WxW
+["Crazy Gravity: Gravity randomly changes within a range from %i%% to %i%% with a period of %s"] = "疯狂的重力: 重力会随机改变,一段时间%s内从%i%%到%i%%", -- Gravity
+["Crazy Runner"] = "Crazy Runner", -- A_Space_Adventure:moon02
+["Cricket Time"] = "板球时间", -- Continental_supplies
+["Cricket time: [Fire away a 1 sec mine! ~ Cannot be fired close to another hog]"] = "板球时间: [发射一个一秒的地雷,不能靠得太近发射]", -- Continental_supplies
+["CTF_Blizzard"] = "CTF_暴风雪", -- CTF_Blizzard
+["Cursor: Build structure"] = "光标: 建造结构", -- Construction_Mode
+["Cursor: Mode action"] = "光标: 模式动作", -- HedgeEditor
+["|Cursor: Place crate"] = "|光标: 放置箱子", -- Construction_Mode
+["Cursor: Place waypoint"] = "光标: 放置路径点", -- Racer
+["Cutlass Cain"] = "Cutlass Cain", -- 
+["Cybernetic Empire"] = "Cybernetic Empire",
+["Cyborg. It's what the aliens call themselves."] = "机器人,外星人这么称呼自己", -- A_Classic_Fairytale:enemy
+["Dahmer"] = "Dahmer", -- A_Classic_Fairytale:backstab
+["Daisy"] = "Daisy", -- 
+["DAMMIT, ROOKIE! GET OFF MY HEAD!"] = "新手,别站在我的头上",
+["DAMMIT, ROOKIE!"] = "妈的,新手!",
+["+%d ammo"] = "+%d弹药", -- Battalion
+["+%d Ammo"] = "+%d弹药", -- Space_Invasion
+["Dangerous Ducklings"] = "危险的小鸭子",
+["Dark Strawberry"] = "Dark Strawberry", -- A_Space_Adventure:fruit02
+["+%d"] = "+%d", -- Battalion
+["%d crate(s) remaining"] = "剩余%d箱子", -- SpeedShoppa
+["%d damage was dealt in this game."] = "这场游戏造成了%d伤害", -- Mutant
+["%d / %d"] = "%d / %d", -- Battalion
+["%d | %d"] = "%d | %d", -- Mutant
+["%d/%d"] = "%d/%d", -- SpeedShoppa
+["Deadly Grape"] = "Deadly Grape", -- A_Space_Adventure:fruit02
+["Deadweight"] = "Deadweight",
+["Deal 15 damage + 10% of your hog’s health to all hogs around you and get 2/3 back."] = "你附近的所有刺猬造成15伤害+你血量的10%,并返回2/3", -- Continental_supplies
+["Deals 15 damage to all enemies in the circle."] = "对圈中所有敌人造成15伤害", -- Continental_supplies
+["Deer"] = "Deer", -- 
+["Defeat all enemies!"] = "打败所有敌人!", -- portal
+["Defeat!"] = "战胜!", -- HedgeEditor
+["Defeat Professor Hogevil!"] = "打败Hogevil教授!", -- A_Space_Adventure:death01
+["Defeat the cannibals!"] = "打败食人族!", -- A_Classic_Fairytale:shadow
+["Defeat the cannibals!|Grenade hint: set the timer with [1-5], aim with [Up]/[Down] and hold [Space] to set power"] = "打败食人族!|手榴弹提示: [1-5]设置定时器,[上]/[下]调整方向,[空格]蓄力投掷", -- A_Classic_Fairytale:shadow
+["Defeat the cyborgs!"] = "打败机器人", -- A_Classic_Fairytale:enemy
+["Defeat the enemy!"] = "打败敌人!", -- A_Classic_Fairytale:queen
+["Delete Waypoint"] = "删除路径点", -- HedgeEditor
+["Deletion Mode: [5]"] = "删除模式: [5]", -- HedgeEditor
+["Deletion Mode"] = "删除模式", -- HedgeEditor
+["Deletition Mode"] = "删除模式", -- HedgeEditor
+["Demolition is fun!"] = "破坏很好玩!",
+["Demo"] = "Demo", -- The_Specialists
+["Dense Cloud"] = "Dense Cloud", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:journey, A_Classic_Fairytale:queen, A_Classic_Fairytale:shadow, A_Classic_Fairytale:united
+["Dense Cloud must have already told them everything..."] = "Dense Cloud一定已经告诉他们所有事情……", -- A_Classic_Fairytale:shadow
+["Dense Cloud?! What are you doing?!"] = "Dense Cloud?!你在做什么?!", -- A_Classic_Fairytale:queen
+["Depleted Kamikaze! +5 points!"] = "耗尽神风特攻队!+5分", -- Space_Invasion
+["Derp"] = "Derp", -- User_Mission_-_Nobody_Laugh
+["Desert Storm"] = "沙漠风暴", -- 
+["Destroy all targets with no more than 10 bazookas."] = "破坏所有目标,不超过10火箭炮", -- Basic_Training_-_Bazooka
+["Destroy all targets with no more than 5 bazookas."] = "破坏所有目标,不超过5火箭炮", -- Basic_Training_-_Bazooka
+["Destroy all the targets!"] = "破坏所有目标!", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
+["Destroyer of planes"] = "飞机破坏者", -- User_Mission_-_RCPlane_Challenge
+["Destroy him, Leaks A Lot! He is responsible for the deaths of many of us!"] = "Leaks A Lot消灭他!他要为我们许多人的死亡负责", -- A_Classic_Fairytale:first_blood
+["Destroy invaders and collect bonuses to score points."] = "消灭入侵者并收集奖励得分", -- Space_Invasion
+["- Destroy the enemy"] = "- 消灭敌人", -- HedgeEditor
+["- Destroy the red target"] = "- 破坏红色目标", -- HedgeEditor
+["- Destroy the red targets"] = "- 破坏红色目标", -- HedgeEditor
+["Destroy the targets!"] = "破坏目标", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
+["+%d flamer fuel!"] = "+%d喷火器燃料", -- Tumbler
+["+%d health"] = "+%d血量", -- Mutant
+["%d-Hit Combo! +%d points!"] = "%d连击,+%d分", -- Space_Invasion
+["Did anyone follow you?"] = "有人跟着你吗?", -- A_Classic_Fairytale:united
+["Did I miss something?"] = "我错过什么了吗?", -- Space_Invasion
+["Did not finish"] = "没有完成", -- Racer, TechRacer
+["Did you really think I've changed?"] = "你真的认为我改变了?", -- A_Classic_Fairytale:queen
+["Did you really think that I've changed?"] = "你真的认为我改变了?", -- A_Classic_Fairytale:queen
+["Did you really think that we needed the help of one of you?"] = "你真的认为我需要你们的帮助?", -- A_Classic_Fairytale:queen
+["Did you see him coming?"] = "你有看到他来吗?", -- A_Classic_Fairytale:shadow
+["Did you warn the village?"] = "你有警告村子吗?", -- A_Classic_Fairytale:shadow
+["Die, die, die!"] = "死,死,死!", -- A_Classic_Fairytale:dragon
+["Difficulty: "] = "难度: ", -- Continental_supplies
+["Difficulty: Easy"] = "难度: 简单", -- A_Classic_Fairytale:first_blood
+["Difficulty: Hard"] = "难度: 困难", -- A_Classic_Fairytale:first_blood
+["Dimitry"] = "Dimitry", -- 
+["%d invaders have been destroyed in this game."] = "这场游戏有%d入侵者被消灭", -- Space_Invasion
+["Disabled"] = "禁用", -- WxW
+["Disguise as a Rockhopper Penguin"] = "假装成Rockhopper企鹅", -- Continental_supplies
+["Disguise as a Rockhopper Penguin: [Swap place with a random enemy hog in the circle]"] = "假装成Rockhopper企鹅: [跟圈里的一个随机敌人交换位置]", -- Continental_supplies
+["Displacer"] = "Displacer", -- 
+["Diver"] = "潜水员", -- User_Mission_-_Diver
+["%d ms"] = "%d毫秒", -- HedgeEditor
+["Doing stuff a monkey could do."] = "做一个猴子也能做的事情", -- A_Classic_Fairytale:queen
+["Domination game"] = "支配游戏", -- Control
+["Donald"] = "Donald", -- 
+["Do not destroy the crates!"] = "不要破坏箱子!", -- A_Space_Adventure:fruit02
+["Do not laugh, inexperienced one, for he speaks the truth!"] = "不要笑,经验不足的人,他讲的是事实!", -- A_Classic_Fairytale:backstab
+["Do not let his words fool you, young one! He will stab you in the back as soon as you turn away!"] = "不要让他愚弄你,年轻人,他会在你转身后立刻在背后捅你一刀", -- A_Classic_Fairytale:first_blood
+["Don't be foolish, son, there will be more."] = "别傻了,孩子,还会有更多", -- A_Space_Adventure:fruit01
+["Don't blow up the crate."] = "不要炸掉箱子", -- A_Classic_Fairytale:journey
+["Don't destroy the device crate!"] = "不要破坏设备箱子!", -- A_Space_Adventure:desert01
+["Don't eliminate Captain Lime before collecting the last crate!"] = "在收集最后的箱子前不要消灭Captain Lime", -- A_Space_Adventure:fruit02
+["Don't hit me, you fools!"] = "别打我,你这个傻子!", -- A_Space_Adventure:moon01
+["Don't hit yourself!"] = "别打自己!", -- Basic_Training_-_Bazooka
+["Don't touch the flames!"] = "不要碰火焰!", -- ClimbHome
+["Don't you dare harming our tribe!"] = "你敢伤害我们的部落!", -- A_Classic_Fairytale:queen
+["Double Kill!"] = "双杀!",
+["Double kill!"] = "双杀!", -- Mutant
+["Do you have any idea how bad an exploding arrow hurts?"] = "你知道爆炸箭的伤害有多糟糕吗?", -- A_Classic_Fairytale:queen
+["Do you have any idea how valuable grass is?"] = "你知道这个草有多值钱吗?", -- A_Classic_Fairytale:enemy
+["Do you have any idea what it's like in the village for a woman?"] = "你知道这对一个女人来说在村子里像什么?", -- A_Classic_Fairytale:queen
+["Do you know where they are?"] = "你知道他们在哪吗?", -- A_Classic_Fairytale:queen
+["Do you think you're some kind of god?"] = "你认为自己是某种神?", -- A_Classic_Fairytale:enemy
+["Dragon's Lair"] = "龙的巢穴", -- A_Classic_Fairytale:dragon
+["Dr. Banting"] = "Dr. Banting", -- 
+["Dr. Barnard"] = "Dr. Barnard", -- 
+["Dr. Blackwell"] = "Dr. Blackwell", -- 
+["Dr. Cornelius"] = "Dr. Cornelius", -- A_Space_Adventure:cosmos, A_Space_Adventure:death01
+["Dr. Crushing"] = "Dr. Crushing", -- 
+["Dr. Drew"] = "Dr. Drew", -- 
+["Dr. Harvey"] = "Dr. Harvey", -- 
+["Dr. Hollows"] = "Dr. Hollows", -- 
+["Dr. Horace"] = "Dr. Horace", -- 
+["Drills"] = "Drills", -- A_Classic_Fairytale:backstab
+["Drill Strike"] = "钻地空袭", -- Construction_Mode
+["Dr. Jenner"] = "Dr. Jenner", -- 
+["Dr. Jung"] = "Dr. Jung", -- 
+["Drone Hunter! +10 points!"] = "Drone 猎人!+10分", -- Space_Invasion
+["Drop a ball of dirt which turns into a|cluster on impact. Doesn’t end turn."] = "丢下一个泥球,撞击时变成一粒炸弹,不会结束回合", -- Continental_supplies
+["Drop a bomb: [Drop some heroic wind that will turn into a bomb on impact]"] = "丢下炸弹: [丢下一些英雄的风,撞击时变成炸弹]", -- Continental_supplies
+["- Dropped flags may be returned or recaptured"] = "- 掉落的光环可重新夺取或被送回", -- Capture_the_Flag
+["Dropping a weapon while in water would just drown it, but launching one would work."] = "在水中丢下的武器会沉下去,发射的那个会起作用", -- Basic_Training_-_Flying_Saucer
+["Drop weapon (while on rope): [Long Jump]"] = "丢下武器(在绳索时): [远跳]", -- Basic_Training_-_Rope
+["Drowner"] = "Drowner",
+["Dr. Parkinson"] = "Dr. Parkinson", -- 
+["Drunk greenhorn"] = "喝醉的新手", -- User_Mission_-_RCPlane_Challenge
+["Drunk with power, perhaps!"] = "喝醉了有力量,大概吧", -- A_Classic_Fairytale:queen
+["%d sec"] = "%d秒", -- Construction_Mode
+["+%d seconds!"] = "+%d秒", -- Tumbler
+["Dubloon Devil"] = "Dubloon Devil", -- 
+["Dude, all the plants are gone!"] = "老兄,所有植物都没了!", -- A_Classic_Fairytale:family
+["Dude, can you see Ramon and Spiky?"] = "老兄,你能看到Ramon和Spiky吗?", -- A_Classic_Fairytale:journey
+["Dude, it's unbearable!"] = "老兄,这是难以忍受的!", -- A_Classic_Fairytale:queen
+["Dude, let me out!"] = "老兄,让我出去!", -- A_Classic_Fairytale:epil
+["Dude, that outfit is so cool!"] = "老兄,这衣服真酷!", -- A_Classic_Fairytale:epil
+["Dude, that's so cool!"] = "老兄,太酷了!", -- A_Classic_Fairytale:backstab
+["Dude, this is boring!"] = "老兄,这很无聊!", -- A_Classic_Fairytale:queen
+["Dude, we really need a new shaman..."] = "老兄,我们真的需要一个新的萨满……", -- A_Classic_Fairytale:shadow
+["Dude, what's this place?!"] = "老兄,这是哪里?!", -- A_Classic_Fairytale:dragon
+["Dude, where are we?"] = "老兄,我们在哪?", -- A_Classic_Fairytale:backstab
+["Dude, wow! I just had the weirdest high!"] = "老兄,哇!我经历了最奇怪的事情!", -- A_Classic_Fairytale:backstab
+["Dude, wow, you're so cute!"] = "老兄,哇,你真可爱!", -- A_Classic_Fairytale:queen
+["Dud Mine Placement Mode"] = "哑弹地雷放置模式", -- HedgeEditor
+["DUD MINE PLACEMENT MODE"] = "哑弹地雷放置模式", -- HedgeEditor
+["Duration"] = "持续时间", -- Continental_supplies
+["During the final testing of the device an accident happened."] = "在设备最后测试的时候,发生了意外", -- A_Space_Adventure:moon02
+["During the game you can get new RC planes by collecting the weapon crates."] = "在游戏中你可以收集武器箱子获得新的遥控飞机", -- A_Space_Adventure:desert03
+["Dust Storm"] = "沙尘暴", -- Continental_supplies
+["Dust storm: [Deals 15 damage to all enemies in the circle]"] = "沙尘暴: [对圈中所有敌人造成15伤害]", -- Continental_supplies
+["Each time you destroy all the targets on your current level you'll get teleported to the next level."] = "每次你破坏了当前关卡的所有目标后,你会传送到下一个关卡", -- A_Space_Adventure:desert03
+["Each time you play this missions enemy hogs will play in a random order."] = "每次你玩这个任务,敌人刺猬会随机顺序玩", -- A_Space_Adventure:death02
+["Each turn is only ONE SECOND!"] = "每个回合只有一秒!", -- Frenzy
+["Each turn you get 1-3 random weapons"] = "每个回合你得到1-3随机武器",
+["Each turn you get one random weapon"] = "每个回合你得到1随机武器",
+["Each turn you'll have only one rope to use."] = "每个回合你只有一个绳索可用", -- A_Space_Adventure:moon02
+["Eagle Eye"] = "鹰眼", -- A_Classic_Fairytale:backstab
+["Eagle Eye: [Blink to the impact ~ One shot]"] = "鹰眼: [闪现到子弹打中的位置,一发子弹]", -- Continental_supplies
+["Ear Sniffer"] = "Ear Sniffer", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:epil
+["EASY"] = "简单", -- Continental_supplies
+["Eckles"] = "Eckles", -- User_Mission_-_Nobody_Laugh
+["Eclipse"] = "Eclipse", -- Big_Armory
+["Editing Commands: (Use while no weapon is selected)"] = "编辑命令: (未选择武器时使用)", -- HedgeEditor
+["Ehm, okay ..."] = "嗯,好吧……", -- A_Space_Adventure:moon01
+["Elderbot"] = "Elderbot", -- A_Classic_Fairytale:family
+["Elimate your captor."] = "消灭你的捕获者", -- User_Mission_-_The_Great_Escape
+["Eliminate all targets before your time runs out.|You have unlimited ammo for this mission."] = "时间结束前消灭全部目标。无限弹药。", --Bazooka, Shotgun, SniperRifle
+["Eliminate the enemy before the time runs out."] = "时间结束前消灭敌人", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree
+["Eliminate the enemy hogs to win."] = "消灭敌人获胜",
+["Eliminate the enemy."] = "消灭敌人", -- User_Mission_-_Bamboo_Thicket, User_Mission_-_Newton_and_the_Hammock, User_Mission_-_Nobody_Laugh
+["Eliminate Unit 3378."] = "消灭单位3378", -- User_Mission_-_Teamwork
+["Eliminate WatchBot 4000."] = "消灭监视机器人4000", -- User_Mission_-_Teamwork_2
+["Eliminate your captor."] = "消灭你的捕获者", -- User_Mission_-_The_Great_Escape
+["Elite pilot"] = "精英飞行员", -- User_Mission_-_RCPlane_Challenge
+["Elmo"] = "Elmo", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
+["Enabled"] = "启用", -- WxW
+["Enemy kills: Collect victim's weapons and +%d%% of its base health"] = "杀死敌人: 收集受害者的东西,+%d%%他的基础血量", -- Battalion
+["Energetic Engineer"] = "充满活力的工程师",
+["Engineer"] = "工程师", -- HedgeEditor, The_Specialists
+["Enjoy the swim..."] = "游水愉快",
+["Entered boredom phase! Discrepancies detected …"] = "进入厌倦阶段!检测到差异……", -- A_Classic_Fairytale:queen
+["Epilogue"] = "后记", -- A_Classic_Fairytale:epil
+["ERROR [getHogInfo]: Hog is nil!"] = "错误[getHogInfo]: 刺猬是nil!", -- Battalion
+["Eugene"] = "Eugene", -- 
+["Europe"] = "欧洲", -- Continental_supplies
+["Everyone knows this."] = "大家都知道这个", -- A_Classic_Fairytale:enemy
+["Every single time!"] = "每一次!", -- A_Classic_Fairytale:dragon
+["Everything looks OK..."] = "所有东西看起来没问题……", -- A_Classic_Fairytale:enemy
+["Every time you kill an enemy hog your ammo will get reset next turn."] = "每次你杀死敌人,你的弹药会在下个回合重置", -- A_Space_Adventure:death02
+["Everywhere I look, I see hogs walking around …"] = "我看到的每个地方,都有刺猬在走动", -- A_Classic_Fairytale:epil
+["Exactly, man! That was my dream."] = "太对了,那是我的梦", -- A_Classic_Fairytale:backstab
+["Except me, of course! I just saved a whole planet!"] = "除了我,当然!我刚救了这个星球!", -- A_Space_Adventure:final
+["Experienced beginner"] = "有经验的新手", -- User_Mission_-_RCPlane_Challenge
+["Explore the tunnel with the other hedgehogs and search for the device."] = "和其他刺猬探索隧道找到设备", -- A_Space_Adventure:fruit02
+["Exploring the tunnel"] = "正在探索隧道", -- A_Space_Adventure:fruit02
+["Eye Chewer"] = "Eye Chewer", -- A_Classic_Fairytale:journey
+["Fair Wind"] = "Fair Wind", -- 
+["Fall Damage"] = "坠落伤害", -- Basic_Training_-_Movement
+["Fallen Angel"] = "Fallen Angel", -- Tentacle_Terror
+["Family Reunion"] = "家庭团聚", -- A_Classic_Fairytale:family
+["Fastest escape: %d turns"] = "最快逃离: %d回合", -- A_Space_Adventure:desert02
+["Fastest lap: %.3fs by %s"] = "最快一圈: %.3f秒 by %s", -- TrophyRace
+["Fastest lap: "] = "最快一圈: ",
+["Feeble Resistance"] = "Feeble Resistance",
+["Fell From Grace"] = "Fell From Grace", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
+["Fell From Heaven"] = "Fell From Heaven", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:first_blood, A_Classic_Fairytale:journey, A_Classic_Fairytale:queen
+["Fell From Heaven is the best! Fell From Heaven is the greatest!"] = "Fell From Heaven是最好的!Fell From Heaven是最棒的!", -- A_Classic_Fairytale:family
+["Femur Lover"] = "Femur Lover", -- A_Classic_Fairytale:shadow
+["Fierce Competition! +8 points!"] = "凶猛的比赛!+8分", -- Space_Invasion
+["Fiery Water"] = "Fiery Water", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen, A_Classic_Fairytale:united
+["Fiery Water?! Are you drunk again?"] = "Fiery Water,你又喝醉了?", -- A_Classic_Fairytale:queen
+["Fighting instead of cultivating a beautiful friendship."] = "战斗而不是培养友谊", -- A_Classic_Fairytale:epil
+["Fight: Press [Attack]"] = "战斗: 按[攻击]", -- A_Space_Adventure:fruit01
+["Filthy Blue"] = "Filthy Blue", -- User_Mission_-_Dangerous_Ducklings
+["Final Challenge:"] = "最后的挑战:", -- Basic_Training_-_Rope
+["Finally! We're out of this hellhole. Now go save the princess, %s!"] = "终于!我们从地狱出来了,现在去救公主,%s!", -- A_Classic_Fairytale:family
+["Finally you are here!"] = "你终于来了", -- A_Space_Adventure:desert01, A_Space_Adventure:ice01
+["Final result"] = "最终结果", -- Mutant
+["Final Targets"] = "最后的目标", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
+["Final team scores:"] = "最后的队伍分数:", -- Space_Invasion
+["Find all the parts of the anti-gravity device."] = "找到反重力设备的所有部件", -- A_Space_Adventure:cosmos
+["Find a way to detonate all the explosives and stay alive!"] = "想办法引爆所有爆炸物并活下来", -- A_Space_Adventure:final
+["Find your tribe!|Cross the lake!"] = "找到你的部落!|穿过湖泊", -- A_Classic_Fairytale:dragon
+["Finish this challenge as fast as possible to earn bonus points."] = "尽快完成这个挑战获得奖励分数", -- User_Mission_-_Rope_Knock_Challenge
+["Finish waypoint placement"] = "完成路径点放置", -- Racer
+["Finish your training."] = "完成你的训练", -- A_Classic_Fairytale:first_blood
+["Finite Ropes"] = "有限的绳索", -- Basic_Training_-_Rope
+["Fire a rocket with napalm."] = "发射带有凝固汽油弹的火箭", -- Continental_supplies
+["Fire: [Precise]"] = "开火: [精确]", -- Space_Invasion, Tumbler
+["Fire some exploding medicine that will heal 15 health to all hogs in its effect radius."] = "射击一些爆炸的药物会治疗它的影响半径内的所有刺猬", -- Continental_supplies
+["Fire your hedgehog like a sticky mine."] = "发射你的刺猬,就像一个黏性地雷", -- Continental_supplies
+["First aid kits?!"] = "急救包?!", -- A_Classic_Fairytale:united
+["First Blood"] = "第一滴血", -- A_Classic_Fairytale:first_blood
+["- First clan to capture the flag wins"] = "- 第一个夺得光环的战队赢", -- Capture_the_Flag
+["- First clan to score %d captures wins"] = "- 第一个%d分的战队赢", -- Capture_the_Flag
+["First killer will mutate"] = "第一个杀手会变异", -- Mutant
+["First Steps"] = "第一步", -- A_Classic_Fairytale:first_blood
+["- First team to capture the flag wins"] = "- 第一个夺得光环的队伍赢", -- Capture_the_Flag
+["- First team to score %d captures wins"] = "- 第一个%d分的队伍赢", -- Capture_the_Flag
+["Fishy"] = "Fishy", -- 
+["Flag captured!"] = "夺得光环!",
+["Flag respawned!"] = "光环重生!",
+["Flag returned!"] = "光环归还!",
+["Flamer"] = "喷火器",
+["Flaming Worm"] = "Flaming Worm", -- A_Classic_Fairytale:backstab
+["Flare"] = "Flare", -- Continental_supplies
+["Flawless victory!"] = "完美的胜利!", -- User_Mission_-_RCPlane_Challenge
+["Flee: Press [Jump]"] = "逃走: 按[跳]", -- A_Space_Adventure:fruit01
+["Flesh for Brainz"] = "Flesh for Brainz", -- A_Classic_Fairytale:journey
+["Flower Power"] = "Flower Power", -- Basic_Training_-_Rope
+["Fly around and hurl explosives to your enemies."] = "到处飞并丢炸弹向敌人", -- Tumbler
+["Flying Saucer Training"] = "飞碟训练", -- Basic_Training_-_Flying_Saucer
+["Fly into space to fight off the invaders with barrels!"] = "飞到太空并用油桶击退入侵者", -- Space_Invasion
+["Fly to the meteorite and detonate the explosives"] = "飞到陨石并引爆炸弹", -- A_Space_Adventure:cosmos
+["Follow the path and destroy the next target."] = "沿着这条路,破坏下一个目标", -- Basic_Training_-_Rope
+["For each kill you win %d seconds."] = "每次击杀获得%d秒", -- RopeKnocking
+["Forgetfulness: You will lose all your weapons each turn."] = "健忘: 每个回合你会失去所有武器", -- Continental_supplies
+["For the next crate, you have to do back jumps."] = "为拿到下一个箱子,你需要后跳", -- Basic_Training_-_Movement
+["Four Eyes"] = "Four Eyes", -- 
+["Frankie"] = "Frankie", -- 
+["Frank"] = "Frank", -- User_Mission_-_Nobody_Laugh
+["Free Dense Cloud and continue the mission!"] = "释放Dense Cloud并继续任务", -- A_Classic_Fairytale:journey
+["FRENZY"] = "FRENZY", -- Frenzy
+["Friendly Fire!"] = "友伤!",
+["Friendly kills: Clear killer's pool and -%d%% of its base health"] = "杀死友军: 清除杀手的职业武器和工具,-%d%%他的基础血量", -- Battalion
+["From the second turn and beyond the water rises."] = "从第二个回合开始水面上升", -- A_Space_Adventure:desert02
+["Frozen Bandits"] = "Frozen Bandits", -- A_Space_Adventure:ice01
+["Fruit"] = "水果", -- 
+["Fruit Assassins"] = "水果刺客", -- A_Space_Adventure:fruit02
+["Fruity"] = "Fruity", -- 
+["Fuel: %d"] = "燃料: %d", -- Tumbler
+["Fuzzy Beard"] = "Fuzzy Beard", -- 
+["“g=150”, where 150 is 150% of normal gravity."] = "“g=150”就是正常重力的150%", -- Gravity
+["“g=50, g2=150, period=4000” for gravity changing|from 50 to 150 and back with period of 4000 ms."] = "“g=50, g2=150, period=4000”,重力从50改成150,持续时间4000毫秒", -- Gravity
+["Galaxy Guardians"] = "Galaxy Guardians", -- Big_Armory
+["Game over!"] = "游戏结束", -- Space_Invasion
+["Game Started!"] = "游戏开始!",
+["Game? Was this a game to you?!"] = "游戏?这对你是一个游戏?!", -- A_Classic_Fairytale:enemy
+["Gangsters"] = "Gangsters", -- 
+["GasBomb"] = "毒气炸弹", -- Continental_supplies
+["Gas Gargler"] = "Gas Gargler", -- A_Classic_Fairytale:queen
+["Gasp! A smuggler!"] = "喘气,一个走私者!", -- A_Space_Adventure:desert01
+["Gasp!"] = "喘气!", -- A_Space_Adventure:desert01
+["Gathering fruits all day long."] = "一天都在采集水果", -- A_Classic_Fairytale:queen
+["Gear Placement Tool"] = "物体放置工具", -- HedgeEditor
+["General information"] = "一般信息", -- Continental_supplies
+["General information:"] = "一般信息", -- Continental_supplies
+["General Lemon"] = "General Lemon", -- A_Space_Adventure:fruit01
+["Generator"] = "发电机", -- Construction_Mode
+["Generator: Generates energy."] = "发电机: 产生能量", -- Construction_Mode
+["Get Dense Cloud out of the pit!"] = "让Dense Cloud离开深坑", -- A_Classic_Fairytale:journey
+["Get him, Spike!"] = "拿下他,Spike!", -- A_Space_Adventure:desert01
+["Get on over there and take him out!"] = "过去干掉他!",
+["Get on the head of the mole."] = "到鼹鼠的头上去", -- A_Classic_Fairytale:first_blood
+["Get past the flower."] = "穿过花朵", -- A_Classic_Fairytale:journey
+["Get ready to fight!"] = "准备战斗!", -- A_Space_Adventure:moon01
+["Get that crate!"] = "拿到那个箱子!", -- A_Classic_Fairytale:first_blood
+["Get the crate on the other side of the island!|"] = "拿到岛屿另一边的箱子|", -- A_Classic_Fairytale:journey
+["Get the crate on the other side of the island."] = "拿到岛屿另一边的箱子", -- A_Classic_Fairytale:journey
+["Get the final crate to the right to complete the training."] = "拿到最后的箱子到右边完成训练", -- Basic_Training_-_Movement
+["Get the highest score to win."] = "拿到最高分获胜", -- Space_Invasion
+["Get the next crate by jumping over the abyss."] = "跳过深渊拿到箱子", -- Basic_Training_-_Movement
+["Getting ready"] = "准备好", -- A_Space_Adventure:cosmos, A_Space_Adventure:desert01, A_Space_Adventure:desert02, A_Space_Adventure:ice01, A_Space_Adventure:ice02, A_Space_Adventure:moon01
+["Getting Started"] = "开始了", -- Basic_Training_-_Rope
+["Getting to the device"] = "取得设备", -- A_Space_Adventure:fruit02
+["Get to the crate using your flying saucer!"] = "用你的飞碟取得箱子", -- Basic_Training_-_Flying_Saucer
+["Get to the target using your rope!"] = "用你的绳索到达目标", -- Basic_Training_-_Rope
+["Get your teammates out of their natural prison and save the princess!"] = "让你的队友离开他们的自然监狱并且救公主", -- A_Classic_Fairytale:family
+["Get your teammates out of their natural prison and save the princess!|Hint: Drilling holes should solve everything.|Hint: It might be a good idea to place a girder before starting to drill. Just saying.|Hint: All your hedgehogs need to be above the marked height!|Hint: Leaks A Lot needs to get really close to the princess!"] = "让你的队友离开他们的自然监狱并且救公主|提示: 钻洞能解决所有问题|提示: 在钻之前放一个大梁是好主意|提示: 你的所有刺猬都要在标记的高度之上|提示: Leaks A Lot需要非常靠近公主", -- A_Classic_Fairytale:family
+["Giggles"] = "Giggles", -- 
+["Gimme Bones"] = "Gimme Bones", -- A_Classic_Fairytale:backstab
+["Girder"] = "大梁", -- Construction_Mode
+["Girder Placement Mode"] = "大梁放置模式", -- Construction_Mode
+["GIRDER PLACEMENT MODE"] = "大梁放置模式", -- HedgeEditor
+["Give a hog a preset identity and weapons"] = "给一个刺猬预设的身份和武器", -- HedgeEditor
+["Give an entire team themed hats and names"] = "给一整个队伍主题帽子和名字", -- HedgeEditor
+["Glark"] = "Glark", -- A_Classic_Fairytale:shadow
+["Glasses"] = "Glasses", -- 
+["Glassy"] = "Glassy", -- 
+["Goal Definition Mode"] = "目标定义模式", -- HedgeEditor
+["GOAL DEFINITION MODE"] = "目标定义模式", -- HedgeEditor
+["Goal: Score %d points or more to win!"] = "目标: 得%d分或更多获胜", -- Mutant
+["Go and collect the crate"] = "出发并收集箱子", -- A_Space_Adventure:cosmos
+["Godai"] = "Godai", -- 
+["Go down and save these PAotH hogs!"] = "去下面救这些星球协会刺猬", -- A_Space_Adventure:moon01
+["Go, get him again!"] = "去,再抓到他", -- A_Space_Adventure:moon02
+["Goggles"] = "Goggles", -- 
+["Goggs"] = "Goggs", -- 
+["GO! GO! GO!"] = "GO! GO! GO!",
+["Good birdy......"] = "乖鸟儿……",
+["Good bye!"] = "再见", -- Basic_Training_-_Flying_Saucer
+["Good idea, they'll never find us there!"] = "好主意,他们绝不会找到我们", -- A_Classic_Fairytale:united
+["Good job!"] = "干得好", -- Basic_Training_-_Flying_Saucer, Basic_Training_-_Rope
+["Good job! Defeat the rest of the aliens!"] = "干得好,打败剩下的外星人", -- A_Classic_Fairytale:queen
+["Good job! Now destroy the final targets to finish the training."] = "干得好,现在破坏最后的目标完成训练", -- Basic_Training_-_Grenade
+["Good luck!"] = "祝你好运", -- A_Space_Adventure:desert01, A_Space_Adventure:fruit02
+["Good luck...or else!"] = "祝你好远……或其他", -- A_Classic_Fairytale:journey
+["Good luck out there!"] = "祝你好运",
+["Good so far!"] = "到目前为止很好",
+["Good to go!"] = "Good to go!",
+["Good! You now control Cappy."] = "好,现在你控制Cappy了", -- Basic_Training_-_Movement
+["Go on top of the flower."] = "到花的顶部", -- A_Classic_Fairytale:first_blood
+["Go, quick!"] = "去,快点", -- A_Classic_Fairytale:backstab
+["Gorkij"] = "Gorkij", -- A_Classic_Fairytale:journey
+["Go surf!"] = "去冲浪", -- WxW
+["Got 1 more saucer and 8 more seconds added to the clock"] = "获得1飞碟和8秒时间", -- A_Space_Adventure:ice02
+["Got 1 more saucer"] = "获得1飞碟", -- A_Space_Adventure:ice02
+["GOTCHA!"] = "GOTCHA",
+["Go to Thanta and get the device part!"] = "接近Thanta拿到设备部件", -- A_Space_Adventure:ice01
+["Go to the surface!"] = "去到表面", -- A_Space_Adventure:fruit02
+["Go to the target."] = "去到目标", -- Basic_Training_-_Rope
+["Go to the upper platform and get the weapons in the crates!"] = "到上面的平台拿箱子里的武器", -- A_Space_Adventure:moon01
+["Got the saucer!"] = "获得飞碟", -- A_Space_Adventure:cosmos
+["Got to go back."] = "要回去了", -- A_Space_Adventure:cosmos
+["Got you? You're acting weird."] = "懂你?你很奇怪", -- A_Classic_Fairytale:queen
+["Grab mines/barrels: [High jump]"] = "拿走地雷/油桶: [高跳]", -- Tumbler
+["Gravity: 100%"] = "重力: 100%", -- Gravity
+["Great!"] = "很好", -- Basic_Training_-_Rope
+["Great choice, Steve! Mind if I call you that?"] = "选得好,Steve,介意我这么叫你吗?", -- A_Classic_Fairytale:shadow
+["Great! Let’s kill all these enemies, using portals."] = "很好,让我们用传送门杀死所有敌人", -- portal
+["Great work! Now hit it with your Baseball Bat! |Tip: You can change weapon with 'Right Click'!"] = "干得好,现在用你的棒球棒打|提示: 你可以右键换武器", -- Basic_Training_-_Rope
+["Great! You will be contacted soon for assistance."] = "很好,援助很快会联系你", -- A_Classic_Fairytale:shadow
+["Green"] = "Green", -- 
+["Green Bananas"] = "Green Bananas", -- A_Space_Adventure:fruit01
+["Green double rings also give you a new flying saucer."] = "绿色双环会给你新的飞碟", -- A_Space_Adventure:ice02
+["Green Hog Grape"] = "Green Hog Grape", -- A_Space_Adventure:fruit01
+["Green hogs won't intentionally hurt you."] = "绿色刺猬不会故意伤害你", -- A_Space_Adventure:fruit01
+["Greenhorn"] = "新手", -- User_Mission_-_RCPlane_Challenge
+["Green Lipstick Bullet"] = "绿色口红子弹", -- Continental_supplies
+["Green lipstick bullet: [Poisonous, deals no damage]"] = "绿色口红子弹: [有毒,无伤害]", -- Continental_supplies
+["Greetings, cloudy one!"] = "你好,Dense Cloud", -- A_Classic_Fairytale:shadow
+["Greetings from the Navy, %s (%s), for being a distance of %d away from the mainland!"] = "海军的问候,%s(%s),远离大陆已有%d距离", -- ClimbHome
+["Greetings, %s!"] = "你好,%s", -- A_Classic_Fairytale:dragon
+["Grenades explode after 1 to 5 seconds (you decide)."] = "手榴弹在1-5秒后爆炸(由你决定)", -- Basic_Training_-_Grenade
+["Grenades with high bounciness bounce a lot and behave chaotic."] = "高弹性的手榴弹跳得很高, 行为难测", -- Basic_Training_-_Grenade
+["Grenade Training"] = "手榴弹训练", -- Basic_Training_-_Grenade
+["Grenadiers"] = "手榴弹兵", -- Basic_Training_-_Grenade
+["Grenadier"] = "手榴弹兵", -- Target_Practice_-_Grenade_easy, Target_Practice_-_Grenade_hard, HedgeEditor
+["Grey"] = "Grey", -- 
+["Guards"] = "卫兵", -- A_Space_Adventure:cosmos
+["Guile"] = "Guile", -- 
+["Guys, do you think there's more of them?"] = "伙计们,你们认为那里有更多食人族吗?", -- A_Classic_Fairytale:backstab
+["HAHA!"] = "哈哈", -- A_Classic_Fairytale:enemy
+["Haha!"] = "哈哈", -- A_Classic_Fairytale:united
+["Haha! Come!"] = "哈哈,来", -- A_Classic_Fairytale:queen
+["Hahahaha!"] = "哈哈哈",
+["Haha, I love the look on your face!"] = "哈哈,我喜欢看你的表情", -- A_Classic_Fairytale:queen
+["Haha, now THAT would be something!"] = "我也不会……",
+["Haha, that was just a coincidence!"] = "哈哈,那只是一个巧合", -- A_Classic_Fairytale:queen
+["Hammer"] = "锤子", -- Construction_Mode, Continental_supplies
+["Hannibal"] = "Hannibal", -- A_Classic_Fairytale:epil
+["Hapless Hogs"] = "Hapless Hogs",
+[" Hapless Hogs left!"] = " Hapless Hogs left!",
+["Happy with your race track?|Then stop building and start racing!"] = "对你的赛道满意吗?|停止建造开始比赛", -- Racer
+["HARD"] = "困难", -- Continental_supplies
+["Hard flying"] = "艰难飞行", -- A_Space_Adventure:ice02
+["Harris"] = "Harris", -- 
+["Harry Potter"] = "Harry Potter", -- 
+["Harry"] = "Harry", -- User_Mission_-_Nobody_Laugh
+["H"] = "H", -- A_Space_Adventure:cosmos, A_Space_Adventure:death01
+["Hatless Jerry"] = "Hatless Jerry", -- A_Classic_Fairytale:queen
+["Have no illusions, your tribe is dead, indifferent of your choice."] = "不是幻觉,你的部落死了,无关你的选择", -- A_Classic_Fairytale:shadow
+["Haven't found it yet ..."] = "还没找到……", -- A_Space_Adventure:desert01
+["Have we ever attacked you first?"] = "我们有先攻击你吗?", -- A_Classic_Fairytale:enemy
+["H confirmed that there isn't such a PAotH activity logged."] = "H 确认这不是星球协会活动记录", -- A_Space_Adventure:desert01
+["Healing Station"] = "治疗站", -- Construction_Mode
+["Healing Station: Heals nearby hogs."] = "治疗站: 治疗附近的刺猬", -- Construction_Mode
+["Health and Mission Panel"] = "血量和任务面板", -- Basic_Training_-_Movement
+["Health"] = "血量", -- Basic_Training_-_Movement
+["Health Crate Placement Mode"] = "医疗箱放置模式", -- Construction_Mode
+["HEALTH CRATE PLACEMENT MODE"] = "医疗箱放置模式", -- HedgeEditor
+["Health: %d"] = "血量: %d", -- HedgeEditor
+["Health: Hogs lose up to 7% base health per turn"] = "血量: 刺猬每个回合最高失去%7基础血量", -- Battalion
+["Health Modification Mode"] = "血量修改模式", -- HedgeEditor
+["HEALTH MODIFICATION MODE"] = "血量修改模式", -- HedgeEditor
+["Heavenly Defense"] = "Heavenly Defense", -- Tentacle_Terror
+["Heavy"] = "Heavy",
+["Heavy Cannfantry"] = "Heavy Cannfantry", -- A_Classic_Fairytale:united
+["Heckles"] = "Heckles", -- 
+["Heck, you even executed one of your own!"] = "你甚至执行了自己的一个", -- A_Classic_Fairytale:queen
+["Hedge-cogs"] = "Hedge-cogs", -- A_Classic_Fairytale:enemy
+["HEDGEEDITOR"] = "刺猬编辑器", -- HedgeEditor
+["HedgeEditor tool"] = "刺猬编辑器工具", -- HedgeEditor
+["Hedgehog"] = "刺猬", -- 
+["Hedgehog Projectile"] = "刺猬炮弹", -- Continental_supplies
+["Hedgehog projectile: [Fire your hog like a Sticky Bomb]"] = "刺猬炮弹: [像黏性炸弹一样发射你的刺猬]", -- Continental_supplies
+["Hedgehogs can not be deleted."] = "刺猬不能被删除", -- HedgeEditor
+["Hedgehogs left: %d"] = "刺猬剩余: %d", -- User_Mission_-_That_Sinking_Feeling
+["Hedgehogs will be revived after their death."] = "刺猬死后会被救活", -- Mutant
+["Hedgehogs will start in the first waypoint."] = "刺猬会在第一个路径点开始", -- Racer
+["Hedgibal Lecter"] = "Hedgibal Lecter", -- A_Classic_Fairytale:backstab
+["He doesn't know it but this device is a part of the anti-gravity device."] = "他不知道这个,但这个设备是反重力设备的一部分", -- A_Space_Adventure:ice01
+["He has captured the rest of the PAotH team and awaits to capture you!"] = "他抓住了星球协会的剩余队伍,在等着抓你", -- A_Space_Adventure:moon01
+["Heh, it's not that bad."] = "水面在上升",
+["Height over time"] = "高度图表", -- ClimbHome
+["He is a very tough and very determined hedgehog. I would be extremely careful if I were you."] = "他是非常坚韧和坚定的刺猬,如果我是你,我会非常小心", -- A_Space_Adventure:moon02
+["Helena"] = "Helena", -- A_Space_Adventure:moon01
+["Hell Army"] = "Hell Army", -- portal
+["Hello again, %s!"] = "再次问好,%s", -- A_Classic_Fairytale:family
+["Help Disabled"] = "帮助已禁用", -- HedgeEditor
+["Help Enabled"] = "帮助已启用", -- HedgeEditor
+["Helpers: Each team starts with %d helper points"] = "工具: 每个队伍有%d工具分数", -- Battalion
+["Helpers: Hogs will get 1 out of 2 helpers randomly each turn"] = "工具: 每个回合随机得到本职业两种之一工具", -- Battalion
+["Help me, Leaks!"] = "救我,Leaks", -- A_Classic_Fairytale:journey
+["Help me, please!!!"] = "救我,求你", -- A_Classic_Fairytale:journey
+["Help me, please!"] = "救我,求求你", -- A_Classic_Fairytale:journey
+["He moves like an eagle in the sky."] = "他移动像天空的鹰", -- A_Classic_Fairytale:first_blood
+["He must be in the village already."] = "他一定已经在村子", -- A_Classic_Fairytale:journey
+["HeneK"] = "HeneK", -- 
+["Here, let me help you!"] = "来,让我帮你", -- A_Classic_Fairytale:backstab
+["Here, let me help you save her!"] = "来,让我帮你救她", -- A_Classic_Fairytale:family
+["Here...pick your weapon!"] = "来……挑你的武器", -- A_Classic_Fairytale:first_blood
+["Here! Take it!"] = "来,拿着它", -- A_Space_Adventure:ice01
+["Here we go!"] = "我们开始吧", -- A_Space_Adventure:moon01
+["Here you will find the current mission instructions."] = "在这里你能看到当前的任务指示", -- Basic_Training_-_Movement
+["Here you will learn how to fly the flying saucer|and get so learn some cool tricks."] = "在这里你会学到怎么开飞碟|还有一些很酷的技巧", -- Basic_Training_-_Flying_Saucer
+["Heroic Wind"] = "英雄的风", -- Continental_supplies
+["He's so brave..."] = "他多勇敢……", -- A_Classic_Fairytale:first_blood
+["He was the lab assistant of Dr. Goodhogan, the inventor of the anti-gravity device."] = "他是Dr.Goodhogan的实验室助手,反重力设备的发明者", -- A_Space_Adventure:moon02
+["He won't be selling us out anymore!"] = "他不会再出卖我们", -- A_Classic_Fairytale:backstab
+["Hey, don't forget us! We still need to climb up!"] = "嘿,别忘了我们,我们还要爬上去", -- A_Classic_Fairytale:family
+["Hey, guys!"] = "嘿,伙计们", -- A_Classic_Fairytale:backstab
+["Hey guys!"] = "嘿,伙计们", -- A_Classic_Fairytale:united
+["Hey! I was supposed to collect it!"] = "嘿,应该由我收集它", -- A_Space_Adventure:fruit02
+["Hey, %s! Finally you have come!"] = "嘿,%s,你终于来了", -- A_Space_Adventure:moon01
+["Hey, %s! Look, someone is stealing the saucer!"] = "嘿,%s,看,有人在偷飞碟", -- A_Space_Adventure:cosmos
+["Hey! This is cheating!"] = "嘿,这是作弊", -- A_Classic_Fairytale:journey
+["Hidden"] = "Hidden", -- portal
+["High Gravity: Gravity is %i%%"] = "高重力: 重力是%i%%", -- Gravity
+["High Jump: [Backspace]"] = "高跳: [Backspace]", -- Basic_Training_-_Movement
+["High Jump: Tap the [Curvy Arrow] shortly"] = "高跳: 短按[Curvy Arrow]", -- Basic_Training_-_Movement
+["--- Highland ---"] = "---高地---", -- Battalion
+["Highlander: Eliminate hogs to take their weapons"] = "高地人: 消灭刺猬拿走他们的武器", -- Highlander
+["Highland: Hogs get %d random weapons from their pool"] = "高地: 刺猬从他们的职业获得%d随机武器", -- Battalion
+["--- Highland Mode ---"] = "---高地模式---", -- Battalion
+["High Target"] = "高目标", -- Basic_Training_-_Bazooka
+["Hightime"] = "高时间", -- A_Classic_Fairytale:first_blood
+["Hightower"] = "高塔", -- 
+["Hill Guard"] = "Hill Guard", -- Bazooka_Battlefield
+["Hi! Nice to meet you."] = "嗨,很高兴遇见你", -- A_Space_Adventure:ice01
+["--- Hint ---"] = "---提示---", -- Battalion
+["Hint: Cinematics can be skipped with the [Precise] key."] = "提示: 对话可以按[精确]跳过", -- A_Classic_Fairytale:first_blood, A_Classic_Fairytale:shadow
+["Hint: Drilling holes should solve everything."] = "提示: 钻洞可以解决所有问题", -- A_Classic_Fairytale:family
+["Hint: Hold down [M] to review the mission texts."] = "提示: 按着[M]查看任务信息", -- A_Classic_Fairytale:first_blood
+["Hint: If this mission panel disappears, you can|see it again by hitting the Pause or Quit key."] = "提示: 如果任务面板消失,按暂停或退出就能看到", -- Basic_Training_-_Movement
+["Hint: It might be a good idea to place a girder before starting to drill. Just saying."] = "提示: 在钻地前放一个大梁是个好主意", -- A_Classic_Fairytale:family
+["Hint: It might be easier if you vary the angle only slightly."] = "提示: 如果你稍微改变角度就会简单点", -- Basic_Training_-_Bazooka
+["Hint: Just select the parachute, it opens automatically when you fall."] = "提示: 选择降落伞,它会在掉落时自动打开", -- A_Classic_Fairytale:first_blood
+--    ["Hint: Kills won't transfer a hog's pool to the killer's pool"] = "", -- Battalion我没有翻译这一句,画蛇添足
+["Hint: Launch the bazooka horizontally at full power."] = "提示: 水平全力发射火箭炮", -- Basic_Training_-_Bazooka
+["Hint: Pause the game to review the mission texts."] = "提示: 暂停游戏查看任务信息", -- A_Classic_Fairytale:first_blood
+["Hint: Select the blow torch, aim and press [Fire]. Press [Fire] again to stop."] = "提示: 选择焊枪,瞄准并按[Fire], 再按[Fire]到顶部", -- A_Classic_Fairytale:journey
+["Hint: Select the low gravity and press [Fire]."] = "提示: 选择低重力并按[Fire]", -- A_Classic_Fairytale:journey
+["Hint: Select the rope, [Up] or [Down] to aim, [Attack] to fire, directional keys to move."] = "提示: 选择绳索,上下瞄准,攻击发射,方向移动", -- A_Classic_Fairytale:first_blood
+["Hint: Select the Shoryuken and hit [Attack].|P.S.: You can use it mid-air."] = "提示: 选择升龙拳并按[攻击]|你可以在空中使用", -- A_Classic_Fairytale:first_blood
+["Hint: %s needs to get really close to the princess!"] = "提示: %s需要非常靠近公主", -- A_Classic_Fairytale:family
+["Hint: The rope only bends around objects.|When it doesn't hit anything, it's always straight."] = "提示: 绳索只在碰到物体时弯曲|没碰到东西,一直是直的", -- Basic_Training_-_Rope
+["Hint: To jump higher, wait a bit before you hit “High Jump” a second time."] = "提示: 要跳得更高,等一下再跳第二次", -- Basic_Training_-_Movement
+["Hint: To place a girder, select it,|then use [Left] and [Right] to select angle and length,|then choose a location for the girder."] = "提示: 要放置大梁,选择它|然后用[左]/[右]选择角度和长度|然后选择一个位置", -- A_Classic_Fairytale:shadow
+["Hint: Use the quit key to see the team’s continent."] = "提示: 用退出键看队伍的大陆", -- Continental_supplies
+["Hint: When you shorten the rope, you move faster!|And when you lengthen it, you move slower."] = "提示: 绳索短,移动快,绳索长,移动慢", -- Basic_Training_-_Rope
+["Hint: you might want to stay out of sight and take all the crates...|"] = "提示: 你可能需要避免进入敌人的视线,拿到所有箱子……|", -- A_Classic_Fairytale:journey
+["Hint: You might want to stay out of sight and take all the crates ..."] = "提示: 你可能需要避免进入敌人的视线,拿到所有箱子……", -- A_Classic_Fairytale:journey
+["His arms are so strong!"] = "他的手臂多强壮!", -- A_Classic_Fairytale:first_blood
+["hits"] = "hits", -- Basic_Training_-_Bazooka
+["Hit the “Switch Hedgehog” key until you have|selected Cappy, the hedgehog with the cap!"] = "按“切换刺猬”键,直到你选中Cappy,有帽子的刺猬", -- Basic_Training_-_Movement
+["Hmm … it's going slower than expected."] = "呃……它比想象中的要慢", -- A_Classic_Fairytale:queen
+["Hmmm...actually...I didn't either."] = "呃……实际上……两个都不", -- A_Classic_Fairytale:enemy
+["Hmmm, I’ll have to find some way of moving him off this anti-portal surface."] = "呃……我必须想办法把他从这个反传送门表层移走", -- portal
+["Hmmm...it's a draw. How unfortunate!"] = "呃……这是平局,多不幸!", -- A_Classic_Fairytale:enemy
+["Hmmm...perhaps a little more time will help."] = "呃……或许多一点时间会有帮助", -- A_Classic_Fairytale:first_blood
+["Hmmm..."] = "呃...",
+["Hm ... Now I ran out of fuel."] = "呃……现在没油了", -- A_Space_Adventure:cosmos
+["Hog 100"] = "刺猬 100", -- A_Space_Adventure:fruit03
+["Hog 1"] = "刺猬 1", -- A_Space_Adventure:fruit03
+["Hog 3x5"] = "刺猬 3x5", -- A_Space_Adventure:fruit03
+["Hog 7+7"] = "刺猬 7+7", -- A_Space_Adventure:fruit03
+["Hog D"] = "刺猬 D", -- A_Space_Adventure:fruit03
+["Hog decar"] = "刺猬 decar", -- A_Space_Adventure:fruit03
+["Hog dertien"] = "刺猬 dertien", -- A_Space_Adventure:fruit03
+["Hog %d"] = "刺猬 %d", -- SimpleMission
+["Hog EOF"] = "刺猬 EOF", -- A_Space_Adventure:fruit03
+["Hogera is definitely the last planet I saved!"] = "Hogera肯定是我救的最后一个星球", -- A_Space_Adventure:final
+["Hogera is safe!"] = "Hogera安全了!", -- A_Space_Adventure:final
+["Hog exi"] = "刺猬 exi", -- A_Space_Adventure:fruit03
+["Hog Hephaestus"] = "刺猬 Hephaestus", -- A_Space_Adventure:fruit03
+["Hog Identity Mode"] = "刺猬身份模式", -- HedgeEditor
+["HOG IDENTITY MODE"] = "刺猬身份模式", -- HedgeEditor
+["Hog III"] = "刺猬 III", -- A_Space_Adventure:fruit03
+["Hogminator"] = "Hogminator", -- A_Classic_Fairytale:family
+["Hog nueve"] = "刺猬 nueve", -- A_Space_Adventure:fruit03
+["Hog octo"] = "刺猬 octo", -- A_Space_Adventure:fruit03
+["Hog onze"] = "刺猬 onze", -- A_Space_Adventure:fruit03
+["Hog Saturn"] = "刺猬 Saturn", -- A_Space_Adventure:fruit03
+["Hogs in sight!"] = "圈中有刺猬", -- Continental_supplies
+["Hog Solo and GB"] = "刺猬 Solo 和绿色香蕉", -- A_Space_Adventure:fruit02
+["Hog Solo"] = "刺猬 Solo", -- A_Space_Adventure:cosmos, A_Space_Adventure:death01, A_Space_Adventure:death02, A_Space_Adventure:desert01, A_Space_Adventure:desert02, A_Space_Adventure:desert03, A_Space_Adventure:final, A_Space_Adventure:fruit01, A_Space_Adventure:fruit02, A_Space_Adventure:fruit03, A_Space_Adventure:ice01, A_Space_Adventure:ice02, A_Space_Adventure:moon01, A_Space_Adventure:moon02
+["- Hogs will be revived"] = "- 刺猬会重生", -- Capture_the_Flag
+["- Hogs will drop the flag when killed"] = "- 刺猬被杀会掉落光环", -- Capture_the_Flag
+["Hog two"] = "刺猬 two", -- A_Space_Adventure:fruit03
+["Hold [Attack] to attach the rope."] = "长按[攻击]发射绳索", -- Basic_Training_-_Rope
+["Hold the Attack key pressed for more power."] = "长按攻击键蓄力攻击", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
+["Holy shit!"] = "Holy shit!", -- Mutant
+["Homing Bee"] = "蜜蜂枪", -- Construction_Mode
+["Honda"] = "Honda", -- 
+["Honest Lee"] = "Honest Lee", -- A_Classic_Fairytale:enemy
+["Hooks"] = "Hooks", -- 
+["Hooray! I actually did it! Hogera is safe!"] = "万岁!我真的做到了,Hogera安全了!", -- A_Space_Adventure:final
+["Hooray! I've found it, now I have to get back to Captain Lime!"] = "万岁!我找到了,现在回去找Captain Lime", -- A_Space_Adventure:fruit02
+["Hooray! You are a champion!"] = "万岁!你是冠军!", -- A_Space_Adventure:ice02
+["Hopeless case"] = "绝望的情况", -- User_Mission_-_RCPlane_Challenge
+["Hop on top of the next flower and advance to the left coast."] = "登上下一朵花的顶部,前进到左边海岸", -- A_Classic_Fairytale:journey
+["Horns"] = "Horns", -- 
+["Hostage Situation"] = "人质情况", -- A_Classic_Fairytale:family
+["How can I ever repay you for saving my life?"] = "你救了我,我要怎么报答?", -- A_Classic_Fairytale:journey
+["How come in a village full of warriors, it's up to me to save it?"] = "怎么会在一个全是战士的村子,由我来拯救它?", -- A_Classic_Fairytale:dragon
+["How could you betray us?"] = "你怎能背叛我们?", -- A_Classic_Fairytale:queen
+["How difficult would you like it to be?"] = "你想玩什么难度?", -- A_Classic_Fairytale:first_blood
+["HOW DO THEY KNOW WHERE WE ARE?"] = "他们怎么知道我们在哪?", -- A_Classic_Fairytale:united
+["However, if you fail to do so, she dies a most violent death, just like your friend! Muahahaha!"] = "然而,如果你不这样做,她会死得很惨,就像你的朋友,哈哈哈", -- A_Classic_Fairytale:journey
+["However, if you fail to do so, she dies a most violent death! Muahahaha!"] = "然而,如果你不这样做,她会死得很惨,哈哈哈", -- A_Classic_Fairytale:journey
+["However, my mates don't agree with me on letting you go..."] = "然而,我的同伴不同意让你走……", -- A_Classic_Fairytale:dragon
+["However, the army of %s is about to attack any moment now."] = "然而,%s的军队随时要进攻了", -- A_Space_Adventure:fruit01
+["How to Rope"] = "怎么使用绳索", -- Basic_Training_-_Rope
+["How would you like being discriminated against?"] = "你想受到歧视吗?", -- A_Classic_Fairytale:queen
+["Huh?"] = "哈?", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:queen
+["Hunter"] = "猎人", --Bazooka, Shotgun, SniperRifle
+["I ain't gonna sit around no more!"] = "我不要再呆在这里!", -- A_Classic_Fairytale:queen
+["I already said I'm sorry!"] = "我已经说了我很抱歉!", -- A_Classic_Fairytale:epil
+["I always suspected him!"] = "我一直怀疑他!", -- A_Classic_Fairytale:epil
+["I am going to leave the kids play by themselves."] = "我打算让他们自己玩过家家", -- A_Classic_Fairytale:queen
+["I am not ready for this planet yet. I should visit it when I have found all the other device parts."] = "我还没准备好去这个星球,我应该在找到所有设备部件后参观它", -- A_Space_Adventure:cosmos
+["I am sorry but I was looking for a device that may be hidden somewhere around here."] = "抱歉,我在找可能藏在这里的一个设备", -- A_Space_Adventure:fruit02
+["I believe there's more of them."] = "我相信那里还有更多食人族", -- A_Classic_Fairytale:backstab
+["I cannot let you go any further! … burp …"] = "我不能再让你走了……打嗝……", -- A_Classic_Fairytale:queen
+["I can see you have been training diligently."] = "我能看到你一直在努力训练", -- A_Classic_Fairytale:first_blood
+["I can't believe how blind we were."] = "我不能相信我们有多瞎", -- A_Classic_Fairytale:epil
+["I can't believe it worked!"] = "我不敢相信它有用", -- A_Classic_Fairytale:shadow
+["I can't believe this!"] = "我不相信这个!", -- A_Classic_Fairytale:enemy
+["I can't believe what I'm hearing!"] = "我不敢相信听到了什么!", -- A_Classic_Fairytale:backstab
+["I can't let you go further because …"] = "我不能再让你走了,因为……", -- A_Classic_Fairytale:queen
+["I can't wait any more, I have to save myself!"] = "我不能再等了,我要救自己", -- A_Classic_Fairytale:shadow
+["Ice Jake"] = "Ice Jake", -- A_Space_Adventure:ice01
+["I could just teleport myself there..."] = "我可以传送自己到那……", -- A_Classic_Fairytale:family
+["Icy Girder: [3]"] = "冰大梁: [3]", -- HedgeEditor
+["Icy Land: [3]"] = "冰地面: [3]", -- HedgeEditor
+["Icy Land"] = "冰地面", -- HedgeEditor
+["I'd better get going myself."] = "我最好自己去", -- A_Classic_Fairytale:journey
+["Identity Thief"] = "Identity Thief", -- Mutant
+["I didn't until about a month ago."] = "我一个月前才知道", -- A_Classic_Fairytale:enemy
+["I don't care. It's worth a fortune! Good bye, you idiot!"] = "我不在乎,它值很多钱!再见,你这傻瓜!", -- A_Space_Adventure:fruit02
+["I don't know how you did that. But good work!|The next one should be easy as cake for you!"] = "我不知道你怎么做到的,但做得好|下一个对你应该很轻松", -- Basic_Training_-_Rope
+["I don't know if I can forget what you've done!"] = "我希望我能忘记你做了什么", -- A_Classic_Fairytale:epil
+["I don't know who I can trust anymore."] = "我不知道还能相信谁", -- A_Classic_Fairytale:epil
+["I don't like your tone! You're hurting me!"] = "我不喜欢你的语气,你伤害了我", -- A_Classic_Fairytale:queen
+["I feel something...a place! They will arrive near the circles!"] = "我感觉到了什么……一个地方!他们会达到圆圈附近", -- A_Classic_Fairytale:backstab
+["If only I had a way..."] = "如果我有办法", -- A_Classic_Fairytale:backstab
+["If only I were given a chance to explain my being here..."] = "如果我有机会解释我怎么在这里……", -- A_Classic_Fairytale:first_blood
+["If only one enemy is left, you'll get bonus ammo."] = "如果还剩下一个敌人,你会得到额外弹药", -- A_Space_Adventure:death02
+["I forgot that she's the daughter of the chief, too..."] = "我也忘了她是首领的女儿", -- A_Classic_Fairytale:backstab
+["I found it! Hooray!"] = "我找到它了,万岁", -- A_Space_Adventure:desert01
+["If some good old explosives were enough to save Hogera …"] = "如果爆炸物足以拯救Hogera", -- A_Space_Adventure:final
+["If they try coming here, they can have a taste of my delicious knuckles!"] = "如果他们试图来这里,他们就能尝到我美味的拳头", -- A_Classic_Fairytale:united
+["If you agree to provide the information we need, you will be spared!"] = "如果你提供我们需要的信息,我就放了你", -- A_Classic_Fairytale:shadow
+["If you can get that crate fast enough, your beloved \"princess\" may go free."] = "如果你能尽快得到箱子,你最爱的“公主”就能自由", -- A_Classic_Fairytale:journey
+["If you decide to help us, though, we will no longer need to find a new governor for the island."] = "如果你决定帮助我们,我就不需要给这个岛屿找一个新管理者", -- A_Classic_Fairytale:shadow
+["If you don't want to slip away, you have to keep moving!"] = "如果你不想滑走,你必须保持移动", -- Basic_Training_-_Movement
+["If you get stuck, use your Desert Eagle or restart the mission!"] = "如果你卡住了,使用沙漠之鹰或重开任务", -- A_Classic_Fairytale:journey
+["If you get stuck, use your Desert Eagle or restart the mission!|"] = "如果你卡住了,使用沙漠之鹰或重开任务|", -- A_Classic_Fairytale:journey
+["If you help us you can keep the device if you find it but we'll keep everything else."] = "如果你帮助我们,找到设备后可以带走,但我要其他东西", -- A_Space_Adventure:fruit02
+["If you hurt an enemy, you'll get one third of the damage dealt."] = "如果你伤害了一个敌人,你会得到造成伤害的三分之一", -- A_Space_Adventure:death02
+["If you injure a hedgehog you'll get 35% of the damage dealt."] = "如果你伤害了一个刺猬,你会得到造成伤害的35%", -- A_Space_Adventure:death02
+["If you just don’t care …"] = "如果你不在乎……", -- Continental_supplies
+["If you kill a hedgehog with the respective weapon your health points will be set to 100."] = "如果你用各自的武器杀死一个刺猬,你的血量会设为100", -- A_Space_Adventure:death02
+["If you kill an enemy, your health will be set to 100."] = "如果你杀死一个敌人,你的血量会设为100", -- A_Space_Adventure:death02
+["If you know what I mean..."] = "如果你明白我的意思……", -- A_Classic_Fairytale:shadow
+["If you miss a shot while trying to|re-attach, your rope is gone, too!"] = "如果你再次发射绳索失败,绳索就没了", -- Basic_Training_-_Rope
+["If you say so..."] = "如果你这么说……", -- A_Classic_Fairytale:shadow
+["If you skip a turn then the turn time left will be added to your next turn."] = "如果你跳过一个回合,剩余回合时间会加到下一回合", -- A_Space_Adventure:fruit03
+["If you wish to replay, there are other possible endings, too!"] = "如果你想再玩一次,还有其他可能的结局", -- A_Classic_Fairytale:epil
+["Igmund"] = "Igmund", -- User_Mission_-_Nobody_Laugh
+["I grew sick of the oppression! I broke free!"] = "我受够了压迫,我挣脱了!", -- A_Classic_Fairytale:queen
+["I guess I can't go far without fuel!"] = "我猜没有燃料不能走多远", -- A_Space_Adventure:cosmos
+["I guess we lost him!"] = "我猜我们跟丢他了", -- A_Space_Adventure:cosmos
+["I guess you'll have to kill them."] = "我猜你必须杀了他们", -- A_Classic_Fairytale:dragon
+["I have come to make you an offering..."] = "我来给你提供一个机会……", -- A_Classic_Fairytale:shadow
+["I have heard that the local tribes say that many years ago some PAotH scientists were dumping their waste here."] = "我听本地部落说,很多年前一些星球协会科学家在这里倒垃圾", -- A_Space_Adventure:desert01
+["I have more important things to do!"] = "我还有很多重要的事要做", -- A_Classic_Fairytale:queen
+["I have no idea where that mole disappeared...Can you see it?"] = "我不知道那鼹鼠消失到哪里……你能看到它吗?", -- A_Classic_Fairytale:shadow
+["I have only 3 hogs available and they are all cadets."] = "我只有三个刺猬可用,他们都受过训练", -- A_Space_Adventure:fruit01
+["I have to follow that alien."] = "我必须跟着那个外星人", -- A_Classic_Fairytale:backstab
+["I have to get back to the village!"] = "我必须回到村子", -- A_Classic_Fairytale:shadow
+["I have to reach the surface as quickly as I can."] = "我必须尽快回到地面", -- A_Space_Adventure:desert02
+["I hope you are prepared for a small challenge, young one."] = "我希望你准备好应对一个小挑战,年轻人", -- A_Classic_Fairytale:first_blood
+["I just don't want to sink to your level."] = "我只是不想陷入你的麻烦事", -- A_Classic_Fairytale:backstab
+["I just forgot all checkpoints of incomplete missions."] = "我忘了没完成的任务的所有检查点", -- A_Space_Adventure:cosmos
+["I just found out that they have captured your princess!"] = "我刚发现他们抓了你的公主", -- A_Classic_Fairytale:family
+["I just want the strange device you found!"] = "我只想要你找到的奇怪设备", -- A_Space_Adventure:ice01
+["I just wonder where Ramon and Spiky disappeared..."] = "我只是好奇Ramon和Spiky消失去哪里……", -- A_Classic_Fairytale:journey
+["I know and I'm terribly sorry!"] = "我知道,并且很抱歉", -- A_Classic_Fairytale:epil
+["I know, my hero!"] = "我知道,我的英雄", -- A_Classic_Fairytale:epil
+["I know that your resources are low due to the battle but I'll send two of my best hogs to assist you."] = "我知道因为战斗你的资源很少,但我会派出两个最好的刺猬帮助你", -- A_Space_Adventure:fruit02
+["I … like being with you, too."] = "我……也喜欢和你在一起", -- A_Classic_Fairytale:epil
+["I'll get him!"] = "我会抓到他", -- A_Space_Adventure:cosmos
+["I'll hold them off while you return to the village!"] = "我会在你回到村子时拖延他们", -- A_Classic_Fairytale:shadow
+["I'll let you know whatever I know about him if you manage to catch me 3 times."] = "如果你能抓到我三次,我就告诉你关于他的事情", -- A_Space_Adventure:moon02
+["I'll make good use of it."] = "我会好好使用它", -- A_Space_Adventure:cosmos
+["I'll protect you!"] = "我会保护你", -- A_Classic_Fairytale:epil
+["I love Dense Cloud now!"] = "我现在喜欢Dense Cloud", -- A_Classic_Fairytale:epil
+["I love you."] = "我爱你", -- A_Classic_Fairytale:epil
+["I'm afraid I can't let you proceed!"] = "我恐怕不能让你继续下去", -- A_Classic_Fairytale:queen
+["I'm afraid we cannot afford that."] = "我担心我们不能承担", -- A_Classic_Fairytale:queen
+["Imagine those targets are the wolves that killed your parents! Take your anger out on them!"] = "想象那些目标是你的仇人,对他们发泄怒火", -- A_Classic_Fairytale:first_blood
+["I'm...alive? How? Why?"] = "我……还活着?怎么?为什么?", -- A_Classic_Fairytale:backstab
+["I'm a ninja."] = "我是一个忍者", -- A_Classic_Fairytale:dragon
+["I marked the place of their arrival. You're welcome!"] = "我标记了他们到达的位置,不客气", -- A_Classic_Fairytale:backstab
+["I may lost this battle, but I haven't lost the war yet!"] = "我输了这次战斗,但我还没输了这个战争", -- A_Space_Adventure:moon01
+["I'm certain that this is a misunderstanding, fellow hedgehogs!"] = "我确定这是误会,刺猬同志", -- A_Classic_Fairytale:first_blood
+["I mean, none of you ceased to live."] = "我是说,你们都不会死", -- A_Classic_Fairytale:enemy
+["I'm getting old for this!"] = "I'm getting old for this!", -- A_Classic_Fairytale:family
+["I'm getting thirsty..."] = "我渴了……", -- A_Classic_Fairytale:family
+["I'm glad this is over!"] = "我很高兴这一切结束了", -- A_Classic_Fairytale:epil
+["I'm here to help you rescue her."] = "我来帮你救她", -- A_Classic_Fairytale:family
+["I'm living a dream!"] = "我活在梦里", -- A_Classic_Fairytale:queen
+["I'm not sure about that!"] = "我不确定", -- A_Classic_Fairytale:united
+["IMPORTANT: To see the mission panel again, hold the mission panel key."] = "重要: 要再次看到任务面板,按任务面板键", -- Basic_Training_-_Movement
+["IMPORTANT: To see the mission panel again, pause the game."] = "重要: 要再次看到任务面板,暂停游戏", -- Basic_Training_-_Movement
+["Impressive...you are still dry as the corpse of a hawk after a week in the desert..."] = "令人印象深刻……", -- A_Classic_Fairytale:first_blood
+["%i ms"] = "%i毫秒", -- Gravity
+["I'm so glad this is finally over!"] = "我很高兴这一切终于结束了", -- A_Space_Adventure:final
+["I'm so scared!"] = "我很害怕", -- A_Classic_Fairytale:united
+["I'm still low on hogs. If you are not afraid I could use a set of extra hands."] = "我的刺猬还是很少,如果你不担心,我可以用一套额外的手", -- A_Space_Adventure:fruit02
+["I'm still with the aliens."] = "我还跟外星人在一起", -- A_Classic_Fairytale:queen
+["I'm terribly sorry!"] = "我非常抱歉", -- A_Classic_Fairytale:queen
+["I'm the spy! I've been giving you out!"] = "我是间谍,我一直在出卖你", -- A_Classic_Fairytale:queen
+["In am also entrusting you with some rope."] = "我给你一些绳子", -- A_Space_Adventure:cosmos
+["In case you haven't noticed, I'm a woman, too!"] = "如果你还没注意到,我也是一个女人", -- A_Classic_Fairytale:queen
+["Increase the dust storm damage by sacrificing|your invulnerable ammo."] = "牺牲你的无敌的弹药来增加沙尘暴的伤害", -- Continental_supplies
+["Incredible..."] = "不可思议的……", -- A_Classic_Fairytale:shadow
+["Indestructible Girder: [2]"] = "不可破坏的大梁: [2]", -- HedgeEditor
+["Indestructible Land: [2]"] = "不可破坏的地面: [2]", -- HedgeEditor
+["Indestructible Land"] = "不可破坏的地面", -- HedgeEditor
+["In each round, the worst hedgehog of the round is eliminated."] = "每个回合最差的刺猬会淘汰", -- TrophyRace
+["I need to find the others!"] = "我需要找到其他人", -- A_Classic_Fairytale:backstab
+["I need to get to the other side of this island, fast!"] = "我需要到达岛屿的一边,快", -- A_Classic_Fairytale:journey
+["I need to move the tribe!"] = "我需要转移部落", -- A_Classic_Fairytale:united
+["I need to prevent their arrival!"] = "我需要阻止他们到达", -- A_Classic_Fairytale:backstab
+["I need to warn the others."] = "我需要警告其他人", -- A_Classic_Fairytale:backstab
+["In fact, you are the only one that's been acting strangely."] = "事实上,你是唯一行为怪异的那个", -- A_Classic_Fairytale:backstab
+["Initial health: %d"] = "初始血量: %d", -- Continental_supplies
+["Initiate escape wish!"] = "发起逃跑愿望", -- A_Classic_Fairytale:queen
+["In order to get to the other side, you need to get rid of the crates first."] = "为了到达另一边,你需要先得到箱子", -- A_Classic_Fairytale:dragon
+["Insanity!"] = "神经病!", -- Mutant
+["Inside %d"] = "%d里面", -- WxW
+["Inside"] = "里面", -- WxW
+["Instructions"] = "指令", -- Basic_Training_-_Flying_Saucer
+["Instructor"] = "指导员", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings
+["Insufficient Power"] = "能量不足", -- Construction_Mode
+["Interesting idea, haha!"] = "有趣的主意,哈哈", -- A_Classic_Fairytale:enemy
+["Interesting! Last time you said you killed a cannibal!"] = "有趣,上次你说你杀了一个食人族", -- A_Classic_Fairytale:backstab
+["In the Ice Planet Flying Saucer Stadium ..."] = "在冰雪星球飞碟体育场", -- A_Space_Adventure:ice02
+["In the meantime, take these and return to your \"friend\"!"] = "同时,拿着这些回到你的“朋友”身边", -- A_Classic_Fairytale:shadow
+["In the stadium, where the best pilots compete ..."] = "在体育场,最好的飞行员比赛的地方", -- A_Space_Adventure:ice02
+["In this accident, Professor Hogevil lost all his spines on his head!"] = "在这个事故,Hogevil教授失去了头上所有的刺", -- A_Space_Adventure:moon02
+["In this mission you get %d%% fuel."] = "在这个任务你得到了%d%%燃料", -- User_Mission_-_Diver
+["In this mission you have infinite time."] = "在这个任务你有无限时间", -- portal
+["Invalid Placement"] = "无效的放置", -- Construction_Mode
+["Invasion"] = "入侵", -- A_Classic_Fairytale:united
+["In your best (and only) flight you took out %d crates with one RC plane!"] = "在你最好的(并且唯一)的飞行中,一个遥控飞机得到了%d箱子", -- User_Mission_-_RCPlane_Challenge
+["In your best flight you took out %d crates with one RC plane."] = "在你最好的飞行中,一个遥控飞机得到了%d箱子", -- User_Mission_-_RCPlane_Challenge
+["I regret to end your little odyssey."] = "我后悔结束你的小奥德赛", -- A_Classic_Fairytale:queen
+["I saw it with my own eyes!"] = "我亲眼看到了", -- A_Classic_Fairytale:shadow
+["I see..."] = "我看看……", -- A_Classic_Fairytale:shadow
+["I see you already took care of your enemies."] = "我看到你已经照顾了你的敌人", -- A_Classic_Fairytale:dragon
+["I see you have already taken the leap of faith."] = "我看到你已经做了信仰之跃", -- A_Classic_Fairytale:first_blood
+["I see you would like his punishment to be more...personal..."] = "我看你会希望他受到的处罚更……个人的……", -- A_Classic_Fairytale:first_blood
+["I sense another wave of cannibals heading my way!"] = "我感觉到另一波食人族正在前来", -- A_Classic_Fairytale:backstab
+["I sense another wave of cannibals heading our way!"] = "我感觉到另一波食人族正在前来", -- A_Classic_Fairytale:backstab
+["%i s"] = "%i秒", -- Gravity
+["I should get myself a portal device, maybe this crate has one."] = "我应该弄一个传送设备,这个箱子可能有一个", -- portal
+["I should go now, goodbye!"] = "我现在该走了,再见", -- A_Space_Adventure:moon02
+["I shouldn't have drunk that last pint."] = "我不应该喝那么多", -- A_Classic_Fairytale:dragon
+["Is this place in my head?"] = "这个地方在我的头里面?", -- A_Classic_Fairytale:dragon
+["I still can't believe he sold us out like that."] = "我还是不能相信他就这样出卖我们", -- A_Classic_Fairytale:epil
+["I still can't believe you forgave her!"] = "我还是不能相信你原谅她", -- A_Classic_Fairytale:epil
+["I still have to get rid of the crates."] = "我还是必须拿到箱子", -- A_Classic_Fairytale:dragon
+["Itami"] = "Itami", -- 
+["It doesn't matter. I won't let that alien hurt my daughter!"] = "没关系,我不会让那个外星人伤害我的女儿", -- A_Classic_Fairytale:dragon
+["I think I love you!"] = "我想我喜欢你", -- A_Classic_Fairytale:epil
+["I think we are safe here."] = "我想我们在这里是安全的", -- A_Classic_Fairytale:backstab
+["I thought their shaman died when he tried our medicine!"] = "我想他们的萨满在吃我们的药时死了", -- A_Classic_Fairytale:shadow
+["It is called 'Hogs of Steel'."] = "叫做“铁之刺猬”", -- A_Classic_Fairytale:enemy
+["It is time to practice your fighting skills."] = "是时候练习你的战斗技能", -- A_Classic_Fairytale:first_blood
+["It must be a childhood trauma..."] = "这一定是童年创伤", -- A_Classic_Fairytale:family
+["It must be the aliens!"] = "这一定是外星人", -- A_Classic_Fairytale:backstab
+["It must be the aliens' deed."] = "这一定是外星人的行为", -- A_Classic_Fairytale:backstab
+["It must be the cyborgs again!"] = "这一定又是机器人", -- A_Classic_Fairytale:enemy
+["It needs some practice, but you have infinite lives."] = "这需要一些训练,但你有无限的生命", -- Basic_Training_-_Rope
+["I told you, I just found them."] = "我告诉过你,这是捡到的", -- A_Classic_Fairytale:backstab
+["It only works in teleportation nodes of your own clan."] = "这只有在你的战队的传送节点生效", -- Construction_Mode
+["It's a good thing SUDDEN DEATH is 99 turns away..."] = "我们很快就要淹没了",
+["It's all about the right carrots, you know."] = "一切都是关于正确的胡萝卜,你知道", -- A_Classic_Fairytale:epil
+["It's always up to women to clear up the mess men created!"] = "一直是女人在清理男人造成的脏乱", -- A_Classic_Fairytale:dragon
+["It's amazing how quickly our lives can change."] = "我们的生活这么快就改变了", -- A_Classic_Fairytale:epil
+["It's an ancient ritual of theirs."] = "这是他们的古代仪式", -- A_Classic_Fairytale:queen
+["IT'S A SERIOUS MEDICAL CONDITION!"] = "这是一个严重的身体状况", -- A_Classic_Fairytale:queen
+["It's a shame, I forgot how to do that!"] = "很丢脸,我忘了怎么做", -- A_Classic_Fairytale:family
+["It's a shame, really!"] = "丢脸,真的", -- A_Classic_Fairytale:queen
+["It seems that Professor Hogevil has prepared for your arrival!"] = "看来Hogevil教授已经准备好迎接你的到来", -- A_Space_Adventure:moon01
+["It's empty!"] = "这是空的", -- Battalion
+["It's impossible to communicate with the spirits without a shaman."] = "有可能不需要萨满,和灵魂交流", -- A_Classic_Fairytale:shadow
+["It's not that easy, so listen carefully:"] = "不是那么简单,所以认真听:", -- Basic_Training_-_Flying_Saucer
+["It's over..."] = "结束了", -- A_Classic_Fairytale:shadow
+["It's precious to me!"] = "这对我来说很珍贵", -- A_Classic_Fairytale:queen
+["It's time you learned that your actions have consequences!"] = "是时候你该知道你的行动的后果", -- A_Classic_Fairytale:journey
+["It's worth more than wood!"] = "这比木头值钱", -- A_Classic_Fairytale:enemy
+["It's your fault you're there!"] = "你在那,是你的错", -- A_Classic_Fairytale:epil
+["It wants our brains!"] = "它想要我们的脑子", -- A_Classic_Fairytale:shadow
+["It was all a trick?!"] = "这是一个恶作剧?", -- A_Classic_Fairytale:queen
+["It was all just bad luck!"] = "只是运气不好", -- ClimbHome
+["It was completely useless!"] = "设备完全没用", -- A_Space_Adventure:final
+["It was fun to watch."] = "看着很有趣", -- A_Classic_Fairytale:queen
+["It was fun to watch, though."] = "看着很有趣", -- A_Classic_Fairytale:queen
+["It was not a dream, unwise one!"] = "这不是梦,愚蠢的人", -- A_Classic_Fairytale:backstab
+["It wasn't her fault!"] = "这不是她的错", -- A_Classic_Fairytale:epil
+["It would be wiser to steal the space ship while the PAotH guards are taking a brake!"] = "最好是在星球协会卫兵休息时偷走太空船", -- A_Space_Adventure:cosmos
+["Ivan"] = "Ivan", -- 
+["I've made it! Yeah!"] = "我做到了,耶!", -- A_Space_Adventure:moon01
+["I've seen this before. They just appear out of thin air."] = "我之前见过,他们就这样在空中出现", -- A_Classic_Fairytale:united
+["I've thought that the best way to get the device is to let you collect most of the parts for me!"] = "我想得到设备的最好方法是你为我收集大部分部件", -- A_Space_Adventure:death01
+["I want to play a game..."] = "我想玩一个游戏", -- A_Classic_Fairytale:journey
+["I want to see how it handles this!"] = "我想看它怎么处理这个", -- A_Classic_Fairytale:backstab
+["I was heading home, you see!"] = "我在回家,你看!", -- A_Classic_Fairytale:queen
+["I was so scared."] = "我很害怕", -- A_Classic_Fairytale:epil
+["I was told that as the leader of the king's guard, no one knows this world better than you!"] = "有人告诉我,作为国王卫兵的首领,没人比你更懂这个世界", -- A_Space_Adventure:fruit01
+["I will never hand you the parts!"] = "我绝不会把部件交给你", -- A_Space_Adventure:death01
+["I wish to help you, %s!"] = "我希望帮助你,%s", -- A_Classic_Fairytale:dragon
+["I wonder where Dense Cloud is..."] = "我想知道Dense Cloud在哪……", -- A_Classic_Fairytale:journey, A_Classic_Fairytale:shadow
+["I wonder why I'm so angry all the time..."] = "我想知道为什么我总是那么生气", -- A_Classic_Fairytale:family
+["I won't let you kill her!"] = "我不会让你杀了她", -- A_Classic_Fairytale:journey
+["I won't let you kill the tribe!"] = "我不会让你杀了部落", -- A_Classic_Fairytale:queen
+["I would gladly help you if we won this battle but under these circumstances I'll only help you if you fight for our side."] = "如果我们赢了这场战斗,我很高兴帮助你,但这种情况下,你站在我们这边才会得到帮助", -- A_Space_Adventure:fruit01
+["Jack"] = "Jack", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
+["Jason"] = "Jason", -- 
+["Jeremiah"] = "Jeremiah", -- A_Classic_Fairytale:dragon
+["Jetpack"] = "Jetpack", -- Big_Armory
+["Jigglypuff"] = "Jigglypuff", -- 
+["Jim Morgan"] = "Jim Morgan", -- 
+["Jimmy"] = "Jimmy", -- 
+["Jingo"] = "Jingo", -- 
+["Joe"] = "Joe", -- A_Space_Adventure:moon01
+["John"] = "John", -- A_Classic_Fairytale:journey
+["John Snow"] = "John Snow", -- A_Space_Adventure:ice01
+["Jolly Roger"] = "Jolly Roger", -- 
+["Jones"] = "Jones", -- 
+["Judas"] = "Judas", -- A_Classic_Fairytale:backstab
+["Juicy"] = "Juicy", -- 
+["Jumping"] = "跳跃", -- Basic_Training_-_Movement
+["Jumping is disabled"] = "跳跃已禁用",
+["Just kidding, none of you have died!"] = "开玩笑的,你们不会死", -- A_Classic_Fairytale:enemy
+["Just look at Leaks, may he rest in peace!"] = "看看Leaks,愿他安息", -- A_Classic_Fairytale:queen
+["Just on a walk."] = "只是散步", -- A_Classic_Fairytale:united
+["Just wait till I get my hands on that trauma! ARGH!"] = "只要等到我把手放在那外伤,啊", -- A_Classic_Fairytale:family
+["Kaboom!"] = "Kaboom", -- Basic_Training_-_Flying_Saucer
+["Kaboom! Hahahaha! Take this, stupid meteorite!"] = "Kaboom, 哈哈哈,笨陨石", -- A_Space_Adventure:final
+["Kamikaze"] = "神风特攻队", -- Construction_Mode
+["Kamikaze Expert! +15 points!"] = "神风特攻队专家,+15分", -- Space_Invasion
+["Keep it up!"] = "保持下去",
+["Ken"] = "Ken", -- 
+["Kenshi"] = "Kenshi", -- 
+["Kerguelen"] = "Kerguelen", -- Continental_supplies
+["key."] = "key.", -- Continental_supplies
+["Kill all enemy hedgehogs in a single turn."] = "在一个回合杀死所有敌人", -- Big_Armory
+["Kill him or skip your turn."] = "杀死他,或者跳过", -- A_Classic_Fairytale:backstab
+["Killing spree!"] = "杀戮狂欢",
+["Killing the specialists"] = "杀死专家", -- A_Space_Adventure:death02
+["KILL IT!"] = "杀了它", -- A_Classic_Fairytale:first_blood
+["Kills: %d"] = "杀死: %d", -- Space_Invasion
+["Kill the aliens!"] = "杀死外星人", -- A_Classic_Fairytale:dragon
+["Kill the cannibal!"] = "杀死食人族", -- A_Classic_Fairytale:first_blood
+["Kill The Leader"] = "杀死领先者", -- WxW
+["Kill The Leader: You must also hit the team with the most health."] = "杀死领先者: 你必须攻击最多血量的队伍", -- WxW
+["Kill the traitor, %s, or spare his life!"] = "杀死叛徒,%s,或饶他一命", -- A_Classic_Fairytale:backstab
+["--- King ---"] = "---国王---", -- Battalion
+["King"] = "国王", -- Battalion
+["--- King Mode ---"] = "---国王模式", -- Battalion
+["Knight"] = "骑士", -- Battalion
+["Knives"] = "Knives", -- 
+["Knockball"] = "Knockball", -- Knockball
+["Knockball weapon"] = "Knockball武器", -- Knockball
+["Knock off the enemies from the left-most place of the map!"] = "在地图的最左边击退敌人", -- A_Space_Adventure:fruit01
+["koda"] = "Koda", -- 
+["Kostya"] = "Kostya", -- 
+["Lady Mango"] = "Lady Mango", -- A_Space_Adventure:fruit01, A_Space_Adventure:fruit02
+["LandFlag Modification Mode"] = "LandFlag修改模式", -- HedgeEditor
+["Land mines explode instantly."] = "地雷立即爆炸", -- User_Mission_-_Teamwork_2
+["Lassard"] = "Lassard", -- 
+["Last Resort: Having less than 25% base health gives kamikaze"] = "最后的手段: 少于25%基础血量给神风特攻队", -- Battalion
+["Last Target!"] = "最后的目标",
+["Launch a bouncy ball which explodes into a crate."] = "发射一个弹性球,爆炸后变成箱子", -- Continental_supplies
+["Launch some bazookas to destroy the targets!"] = "发射一些火箭炮破坏目标", -- Basic_Training_-_Bazooka
+["Leader"] = "Leader", -- A_Classic_Fairytale:enemy
+["Leaderbot"] = "Leaderbot", -- A_Classic_Fairytale:queen
+["Lead your allies to battle and eliminate all the enemies!"] = "带领你的盟友战斗,消灭所有敌人", -- A_Space_Adventure:fruit01
+["Leaks A Lot"] = "Leaks A Lot", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:first_blood, A_Classic_Fairytale:journey, A_Classic_Fairytale:queen, A_Classic_Fairytale:shadow, A_Classic_Fairytale:united
+["Leaks A Lot, depressed for killing his loved one, failed to save the village..."] = "Leaks A Lot很沮丧,他喜欢的人死了,没能拯救村子,", -- A_Classic_Fairytale:journey
+["Leaks A Lot gave his life for his tribe! He should have survived!"] = "Leaks A Lot 为部落付出生命,他应该活下来的", -- A_Classic_Fairytale:first_blood
+["Leaks A Lot must survive!"] = "Leaks A Lot 一定还活着", -- A_Classic_Fairytale:journey
+["Leap of Faith"] = "信仰之跃", -- Basic_Training_-_Movement
+["Led Heart"] = "Led Heart", -- A_Classic_Fairytale:queen
+["Lee"] = "Lee", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
+["Left and right"] = "左和右", -- WxW
+["Left, right and roof"] = "左,右和顶部", -- WxW
+["[Left], [Right]: Change between identities."] = "[左]/[右]: 改变身份", -- HedgeEditor
+["[Left], [Right]: Change health value."] = "[左]/[右]: 改变血量", -- HedgeEditor
+["Left/right: Choose crate contents"] = "[左]/[右]: 选择箱子内容", -- Construction_Mode
+["Left/right: Choose structure type"] = "[左]/[右]: 选择结构类型", -- Construction_Mode
+["Left/right: Choose structure type|Cursor: Build structure"] = "[左]/[右]: 选择结构类型|光标: 建造结构", -- Construction_Mode
+["Legs"] = "Legs", -- 
+["Less tools, more fun"] = "更少工具,更多乐趣", -- Battalion
+["Lestat"] = "Lestat", -- portal
+["Let a continent provide your weapons!"] = "让一个大陆提供你的武器", -- Continental_supplies
+["Let me test your skills a little, will you?"] = "让我测试你的技能,你愿意?", -- A_Classic_Fairytale:journey
+["Let's get started!"] = "让我们开始", -- Basic_Training_-_Bazooka
+["Let's go!"] = "Let's go!", -- A_Space_Adventure:moon02
+["Let's go home!"] = "让我们回家", -- A_Classic_Fairytale:journey
+["Let's go, %s!"] = "Let's go,%s!", -- WxW
+["Let's head back to the village!"] = "让我们回到村子", -- A_Classic_Fairytale:shadow
+["Let's see what your comrade does now!"] = "让我们看看你的同志现在做什么", -- A_Classic_Fairytale:journey
+["Let's show those cannibals what we're made of!"] = "让我们向那些食人族展示我们是什么做成的", -- A_Classic_Fairytale:backstab
+["Let them have a taste of my fury!"] = "让他们尝尝我的狂怒", -- A_Classic_Fairytale:backstab
+["Let us help, too!"] = "让我们帮忙", -- A_Classic_Fairytale:backstab
+["Level 1 clear!"] = "关卡1完成", -- A_Space_Adventure:desert03
+["Level 2 clear!"] = "关卡2完成", -- A_Space_Adventure:desert03
+["Level Data Saved!"] = "关卡数据已保存", -- HedgeEditor
+["Lightbender"] = "Lightbender", -- 
+["Light Cannfantry"] = "Light Cannfantry", -- A_Classic_Fairytale:united
+["Limited Ammo"] = "有限弹药", -- Basic_Training_-_Bazooka
+["Listen carefully! The bandit leader, Thanta, has recently found a very strange device."] = "认真听,强盗首领Thanta刚找到了一个非常奇怪的设备", -- A_Space_Adventure:ice01
+["Listen up, maggot!"] = "听好,小子!", -- User_Mission_-_Dangerous_Ducklings
+["Listen up, maggot!!"] = "听好,小子!!",
+["Little did they know that this hunt will mark them forever..."] = "他们不知道会永远记住这次打猎……", -- A_Classic_Fairytale:shadow
+["Little Obstacle Course"] = "小障碍课程", -- Basic_Training_-_Rope
+["Lively Lifeguard"] = "精力充沛的救生员",
+["Lonely Cries"] = "孤独的哭泣", -- Continental_supplies
+["Lonely Cries: [Rise the water if no hog is in the circle and deal 6 damage to all enemy hogs.]"] = "孤独的哭泣: [提升水面,如果圈中没有刺猬,并对所有敌人造成6伤害]", -- Continental_supplies
+["Long Jump: [Enter]"] = "远跳: [Enter]", -- Basic_Training_-_Movement
+["Long Jump: Tap the [Curvy Arrow] button for long"] = "远跳: [Curvy Arrow]", -- Basic_Training_-_Movement, A_Classic_Fairytale:first_blood
+["Long Live The Queen"] = "女王万岁", -- A_Classic_Fairytale:queen
+["Look around: [Mouse movement]"] = "到处看: [移动鼠标]", -- Basic_Training_-_Movement
+["Look around: [Tap or swipe on the screen]"] = "到处看: [点或滑动屏幕]", -- Basic_Training_-_Movement
+["Look, boss! There is the target!"] = "看,首领,那里有个目标", -- A_Space_Adventure:moon01
+["Look, I had no choice!"] = "看,我没得选", -- A_Classic_Fairytale:backstab
+["Look out! There's more of them!"] = "注意,那里还有更多", -- A_Classic_Fairytale:backstab
+["Look out! We're surrounded by cannibals!"] = "注意,我们被食人族包围了", -- A_Classic_Fairytale:enemy
+["Looks like the whole world is falling apart!"] = "看起来整个世界崩溃了", -- A_Classic_Fairytale:enemy
+["Look to the left and do a backwards jump towards the mushroom."] = "看向左边,用“后跳”跳上蘑菇", -- A_Classic_Fairytale:first_blood
+["Loon"] = "Loon", -- The_Specialists
+["Loopy"] = "Loopy", -- 
+["Losing Condition: Destroy"] = "失败条件: 破坏", -- HedgeEditor
+["Low Gravity: Gravity is %i%%"] = "低重力: 重力是%i%%", -- Gravity
+["Loyal Highlander: Eliminate enemy hogs to take their weapons"] = "忠诚的高地人: 消灭敌人并拿走他们的武器", -- Highlander
+["Lt. Luke"] = "Lt. Luke", -- 
+["Lucifer"] = "Lucifer", -- portal
+["Luck: %d%% (modifier for crates)"] = "幸运: %d%%(箱子的修改器)", -- Battalion
+["Luckily, I've managed to snatch some of them."] = "很幸运,我们设法抢到一些", -- A_Classic_Fairytale:united
+["Ludicrous kill!"] = "Ludicrous Kill", -- Mutant
+["Lugia"] = "Lugia", -- 
+["Luigi"] = "Luigi", -- 
+["Made it!"] = "做到了", -- ClimbHome
+["Mahoney"] = "Mahoney", -- 
+["Make fun of me when I fart …"] = "我放屁时取笑我", -- A_Classic_Fairytale:queen
+["Manual: https://hedgewars.org/hedgeeditor"] = "手册: https://hedgewars.org/hedgeeditor", -- HedgeEditor
+["Many long forgotten things can be found in the same tunnels that we are about to explore!"] = "在我们将要探索的同一条隧道中,可以找到许多久违的事物", -- A_Space_Adventure:fruit02
+["Many meters below the surface ..."] = "表面以下很多米……", -- A_Space_Adventure:desert02
+["Mario"] = "Mario", -- 
+["Mark gears for win/lose conditions"] = "标记物体-输赢条件", -- HedgeEditor
+["Mark/unmark gear: [Left Click]"] = "标记/取消标记物体: [左键]", -- HedgeEditor
+["- Massive weapon bonus on first turn"] = "- 第一回合大量武器奖励", -- Continental_supplies
+["Max Citrus"] = "Max Citrus", -- A_Space_Adventure:fruit01
+["Maybe you should try an easier map next time."] = "你应该试一下简单的地图", -- Racer
+["Maybe you should try an easier TechRacer map."] = "你应该试一下简单的TechRacer地图", -- TechRacer
+["Maybe you should try easier waypoints next time."] = "你应该试一下简单的路径点", -- Racer
+["May the spirits aid you in all your quests!"] = "愿祖先的灵魂在你所有的任务里帮助你", -- A_Classic_Fairytale:backstab
+["Meals"] = "Meals", -- 
+["Medic"] = "Medic", -- Battalion
+["Medicine"] = "药", -- Continental_supplies
+["Medicine: [Fire some exploding medicine that will heal all hogs effected by the explosion]"] = "药: [引爆药物会治疗所有受到爆炸影响的刺猬]", -- Continental_supplies
+["MEDIUM"] = "中等", -- Continental_supplies
+["Mega kill!"] = "Mega kill!", -- Mutant
+["Meiwes"] = "Meiwes", -- A_Classic_Fairytale:backstab
+["mikade"] = "mikade", -- 
+["Mindy"] = "Mindy", -- A_Classic_Fairytale:united
+["Mine Deployer"] = "地雷部署器",
+["Mine Placement Mode"] = "地雷放置模式", -- Construction_Mode
+["MINE PLACEMENT MODE"] = "地雷放置模式", -- HedgeEditor
+["Mines explode after %d s."] = "地雷%d秒后爆炸", -- Mutant
+["Mines time: 0s-5s"] = "地雷时间: 0-5秒", -- SimpleMission
+["Mines time: 0 seconds"] = "地雷时间: 0秒", -- portal, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, User_Mission_-_The_Great_Escape, A_Space_Adventure:desert01, A_Space_Adventure:final, A_Space_Adventure:fruit02, A_Space_Adventure:ice01
+["Mines time: 1.5 seconds"] = "地雷时间: 1.5秒", -- A_Space_Adventure:death01
+["Mines time: %.1fs"] = "地雷时间: %.1f秒", -- SimpleMission
+["Mines time: 1 second"] = "地雷时间: 1秒", -- User_Mission_-_Diver, User_Mission_-_Newton_and_the_Hammock, A_Space_Adventure:desert02
+["Mines time: %.2fs"] = "地雷时间: %.2f秒", -- SimpleMission
+["Mines time: 3 seconds"] = "地雷时间: 3秒", -- A_Classic_Fairytale:journey
+["Mines time: 5 seconds"] = "地雷时间: 5秒", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:journey
+["Mines time: %ds"] = "地雷时间: %d秒", -- SimpleMission
+["Mine Strike"] = "地雷空袭", -- Construction_Mode
+["Minion"] = "Minion", -- A_Space_Adventure:moon01
+["Minions"] = "Minions", -- A_Space_Adventure:moon01
+["Mission failed!"] = "任务失败", -- Big_Armory
+["Mission failure in %d s"] = "任务失败在%d秒", -- Big_Armory
+["Mission"] = "任务", -- HedgeEditor
+["Mission lost!"] = "任务失败", -- Basic_Training_-_Grenade
+["Mission Panel"] = "任务面板", -- Basic_Training_-_Movement
+["Mission panel: [M]"] = "任务面板: [M]", -- Basic_Training_-_Movement
+["Mission succeeded!"] = "任务成功", -- portal, User_Mission_-_Bamboo_Thicket, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork_2, User_Mission_-_Teamwork, SimpleMission, HedgeEditor
+["Mission won!"] = "任务胜利", -- Basic_Training_-_Grenade
+["Mister Pear"] = "Mister Pear", -- A_Space_Adventure:fruit01, A_Space_Adventure:fruit02
+["Mixed %d"] = "混合%d", -- WxW
+["Mixed"] = "混合", -- WxW
+["Modes: Activate “highland”, “king” or “points” mode by putting mode=<name>|into the script parameter"] = "模式: 把mode=***放入脚本参数|激活“highland”, “king” 或 “points”模式", -- Battalion
+["Modifiers: Unlimited ammo, per-hog ammo"] = "修改器: 无限弹药,每个刺猬弹药", -- Battalion
+["Modifiers: Unlimited ammo, shared clan ammo"] = "修改器: 无限弹药,战队共享弹药", -- Battalion
+["Modifiers: Unlimited attacks, per-hog ammo"] = "修改器: 无限攻击,每个刺猬弹药", -- Battalion
+["Modifiers: Unlimited attacks, shared clan ammo"] = "修改器: 无限攻击,战队共享弹药", -- Battalion
+["Modify Sprite under Cursor: [Left Click]"] = "修改光标下的Sprite: [左键]", -- HedgeEditor
+["Molly"] = "Molly", -- 
+["Molotov"] = "燃烧瓶", -- Continental_supplies
+["Monster kill!"] = "Monster kill!", -- Mutant
+["Monsters"] = "Monsters", -- 
+["Mooney"] = "Mooney", -- 
+["Morris"] = "Morris", -- 
+["Most mines are not active."] = "大多数地雷没有激活", -- A_Space_Adventure:desert02
+["Most of the destructible terrain in marked with blue color"] = "大多数可破坏的地形用蓝色标记", -- A_Space_Adventure:desert01
+["Most of the destructible terrain is marked with dashed lines."] = "大多数可破坏的地形用虚线标记", -- A_Space_Adventure:desert01
+["Most of the time you'll be able to use the freezer only."] = "大多数时间你只能用冰冻枪", -- A_Space_Adventure:ice01
+["Movement: [Up], [Down], [Left], [Right]"] = "移动: [上下左右]",
+["Mr Mango"] = "Mr Mango", -- A_Space_Adventure:fruit01
+["Mudkip"] = "Mudkip", -- 
+["Multi-shot! +15 points!"] = "多次射击,+15分", -- Space_Invasion
+["Multi-Use: You can take and use the same ammo type multiple times in a turn"] = "多次使用: 你可以在一个回合多次使用相同类型的武器", -- Highlander
+["Muriel"] = "Muriel", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
+["Muscle Dissolver"] = "Muscle Dissolver", -- A_Classic_Fairytale:shadow
+["Mushroom Kingdom"] = "蘑菇王国", -- 
+["Mutant"] = "变种人", -- Mutant
+["My First Bazooka"] = "我的第一个火箭炮", -- Basic_Training_-_Bazooka
+["My flying saucer stopped working!"] = "我的飞碟停止工作了", -- A_Space_Adventure:ice01
+["Nade Boy"] = "Nade Boy", -- Basic_Training_-_Grenade
+["Nah, probably everyone was just stupid."] = "呐,可能每个人都是笨蛋", -- A_Space_Adventure:final
+["Name"] = "名字", -- A_Classic_Fairytale:queen
+["Nancy Screw"] = "Nancy Screw", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:queen
+["Napalm"] = "凝固汽油弹", -- Construction_Mode
+["Napalm Rocket"] = "凝固汽油弹火箭", -- Continental_supplies
+["Napalm rocket: [Fire a bomb with napalm!]"] = "凝固汽油弹火箭: [用凝固汽油弹点燃炸弹]", -- Continental_supplies
+["Naranja Jed"] = "Naranja Jed", -- A_Space_Adventure:fruit01
+["Naughty Ninja"] = "Naughty Ninja", -- User_Mission_-_Dangerous_Ducklings
+["Near a PAotH base on the moon ..."] = "在月球的星球协会基地附近……", -- A_Space_Adventure:moon01
+["Near Secret Base 17 of PAotH in the rural Hogland ..."] = "在rural Hogland的星球协会的秘密基地17附近……", -- A_Space_Adventure:cosmos
+["nemo"] = "nemo", -- 
+["Neutralize your enemies and be careful!"] = "消灭你的敌人", -- A_Space_Adventure:moon01
+["New barrels per turn: %d"] = "每个回合新的油桶: %d", -- Tumbler
+["New clan record: %.1fs"] = "新的战队记录: %.1f秒", -- Racer, TechRacer
+["NEW fastest lap: "] = "新的最快一圈: ",
+["New mines per turn: %d"] = "每个回合新的地雷: %d", -- Tumbler
+["New race record: %.1fs"] = "新的竞赛记录: %.1f秒", -- Racer, TechRacer
+["Newton and the Hammock"] = "牛顿和吊床", -- User_Mission_-_Newton_and_the_Hammock
+["Next target is ready!"] = "下一个目标已准备好", -- Basic_Training_-_Flying_Saucer
+["Next time you play \"Searching in the dust\" you'll have an RC plane available."] = "下一次你玩“尘中搜索”会得到一个可用的遥控飞机", -- A_Space_Adventure:desert03
+["Nice!"] = "Nice!", -- A_Space_Adventure:cosmos
+["Nicely done, meatbags!"] = "做得好,肉包!", -- A_Classic_Fairytale:enemy
+["Nice! Now hurry and get down! You have to rescue my friends!"] = "很好,现在赶快下来,你必须救出我的朋友", -- A_Space_Adventure:moon01
+["Nice, then I should get the part as soon as possible!"] = "很好,然后我应该尽快得到部件", -- A_Space_Adventure:ice01
+["Nice work!"] = "做得好", -- A_Classic_Fairytale:enemy
+["Nice work, meatbags!"] = "做得好,肉包!", -- A_Classic_Fairytale:queen
+["Nice work, %s!"] = "做得好,%s", -- A_Classic_Fairytale:dragon
+["Nilarian"] = "Nilarian", -- A_Classic_Fairytale:queen
+["Ninja"] = "忍者", -- Battalion, HedgeEditor, The_Specialists
+["Ninpo"] = "Ninpo", -- 
+["Nobody Laugh"] = "没人笑", -- User_Mission_-_Nobody_Laugh
+["Nobody managed to finish the race. What a shame!"] = "没人能够完成竞赛", -- Racer, TechRacer
+["Nobody takes walks every day!"] = "没有人每天都散步", -- A_Classic_Fairytale:epil
+["No continent selected"] = "没选择大陆", -- Continental_supplies
+["No, I am afraid I had to travel light."] = "不,恐怕我不得不轻装旅行", -- A_Space_Adventure:moon01
+["No, I came back to help you out..."] = "不,我回来帮你出去……", -- A_Classic_Fairytale:shadow
+["No...I wonder where they disappeared?!"] = "不……我想知道他们消失去哪了?!", -- A_Classic_Fairytale:journey
+["Nom-Nom"] = "Nom-Nom", -- A_Classic_Fairytale:journey
+["NomNom"] = "NomNom", -- A_Classic_Fairytale:united
+["No Multi-Use: Once you used an ammo, you can’t take it again in this turn"] = "不能多次使用: 使用武器后本回合不能再用", -- Highlander
+["Noo, Thanta has to stay alive!"] = "不,Thanta还活着", -- A_Space_Adventure:ice01
+["Nope. It was one fast mole, that's for sure."] = "不,这是一个很快的鼹鼠,可以肯定", -- A_Classic_Fairytale:shadow
+["No! Please, help me!"] = "不,请帮助我", -- A_Classic_Fairytale:journey
+["No problem, Captain!"] = "没问题,船长", -- A_Space_Adventure:fruit01
+["No problem, I would do anything for H!"] = "没问题,我会为H做任何事", -- A_Space_Adventure:desert01
+["No radar pings left!"] = "雷达探测没有了", -- Space_Invasion
+["NORMAL"] = "普通", -- Continental_supplies
+["Normal Girder: [1]"] = "普通大梁: [1]", -- HedgeEditor
+["Normal Land: [1]"] = "普通地面: [1]", -- HedgeEditor
+["Normal Land"] = "普通地面", -- HedgeEditor
+["Normally, the mission panel disappears after a few seconds."] = "任务面板通常几秒后消失", -- Basic_Training_-_Movement
+["Normal Rubber: [1]"] = "普通橡皮筋: [1]", -- HedgeEditor
+["North America"] = "北美", -- Continental_supplies
+["Not being able to fight or hunt."] = "不能够战斗或打猎", -- A_Classic_Fairytale:queen
+["Note: Some weapons have a second option (See continent information). Find and use them with the \""] = "注意: 一些武器有第二个选项(看大陆信息),找到并使用它们with the \"", -- Continental_supplies
+["Note: Some weapons have a second option (See continent information). Find and use them with the \"%s\" key."] = "注意: 一些武器有第二个选项(看大陆信息),找到并使用它们%s键", -- Continental_supplies
+["Note: This basic training assumes default controls."] = "注意: 这个基础训练使用默认控制", -- Basic_Training_-_Movement
+["Note: Walking is disabled in this mission."] = "注意: 在这个任务不能走动", -- Basic_Training_-_Grenade
+["Note: We only give you grenades if you stay in your flying saucer."] = "注意: 我们只在你停留在飞碟的时候给你手榴弹", -- Basic_Training_-_Flying_Saucer
+["Nothing of interest has happened."] = "没发生有趣的事情", -- Space_Invasion
+["Not now, Fiery Water!"] = "不是现在,Fiery Water", -- A_Classic_Fairytale:backstab
+["Not So Friendly Match"] = "不是那么友善的比赛", -- Basketball, Knockball
+["Not you again! My head still hurts from last time!"] = "又是你,自从上次,我的头现在还痛", -- A_Classic_Fairytale:shadow
+["No waypoint to be removed!"] = "没有能移除的路径点", -- Racer
+["Now collect the 2 crates to the far left and right."] = "现在收集两个箱子,到达左边和右边的远处", -- Basic_Training_-_Flying_Saucer
+["Now collect the next crate!"] = "现在收集下一个箱子", -- Basic_Training_-_Flying_Saucer
+["Now dive just one more time and collect the next crate."] = "现在再潜水一次,收集下一个箱子", -- Basic_Training_-_Flying_Saucer
+["No, we made sure of that!"] = "不,我们保证过", -- A_Classic_Fairytale:united
+["Now find the next target! |Tip: Normally you lose health by falling down, so be careful!"] = "现在找到下一个目标|提示: 掉下去通常会掉血,小心点", -- Basic_Training_-_Rope
+["Now for the supreme discipline of saucer flying, the underwater attack."] = "现在是飞碟的最高训练,水下攻击", -- Basic_Training_-_Flying_Saucer
+["Now go and don't waste more of my time, you coward!"] = "现在走,不要浪费我的时间,你这个胆小鬼", -- A_Space_Adventure:fruit01
+["Now go and play the menu mission to complete the campaign."] = "现在回到菜单做任务完成战役", -- A_Space_Adventure:death01
+["Now go to the next crate."] = "现在去拿下一个箱子", -- Basic_Training_-_Movement
+["No! What have I done?! What have YOU done?!"] = "不,我做了什么,你做了什么?!", -- A_Classic_Fairytale:journey
+["No. Where did he come from?"] = "不,他们从哪来的?", -- A_Classic_Fairytale:shadow
+["Now how do I get on the other side?!"] = "现在我怎么到达另一边?", -- A_Classic_Fairytale:dragon
+["Now I have to climb these trees"] = "现在我要爬上这些树", -- A_Space_Adventure:cosmos
+["No Wind Influcence"] = "没有风力影响", -- Basic_Training_-_Grenade
+["No Wind Influence"] = "没有风力影响", -- Basic_Training_-_Grenade
+["Now let's try to drop weapons while flying!"] = "现在让我们试着在飞行时丢下武器", -- Basic_Training_-_Flying_Saucer
+["Now listen carefully! Below us there are tunnels that have been created naturally over the years"] = "现在认真听,我们下面是经过很多年自然创造的隧道", -- A_Space_Adventure:desert01
+["Now try to get out of this bounce house|and take the next crate."] = "现在试着离开这个弹跳的房子|并拿到下一个箱子", -- Basic_Training_-_Movement
+["Now use it and go to the moon PAotH station to get more fuel!"] = "现在使用它,并到达月球星球协会站,得到更多燃料", -- A_Space_Adventure:cosmos
+["Now you have the chance to try and claim the place that you deserve among the best."] = "现在你有机会去争取你应得的最好的位置", -- A_Space_Adventure:ice02
+["No. You and the rest of the tribe are safer there!"] = "不,你和部落的人在那里更安全", -- A_Classic_Fairytale:backstab
+["Objective completed! Now land safely."] = "目标完成,现在安全着陆", -- Basic_Training_-_Flying_Saucer
+["Objectives"] = "目标", -- A_Space_Adventure:ice01
+["Object Placer"] = "物体放置器", -- Construction_Mode
+["Obliterate them!|Hint: You might want to take cover..."] = "消灭他们|提示: 你可能需要找掩护……", -- A_Classic_Fairytale:shadow
+["Obstacle"] = "障碍", -- Basic_Training_-_Rope
+["Obstacle course"] = "障碍课程", -- A_Classic_Fairytale:dragon
+["Of course, but you're … special."] = "当然,但你是……特别的", -- A_Classic_Fairytale:epil
+["Of course I am!"] = "我当然是", -- A_Classic_Fairytale:queen
+["Of course I have to save her. What did I expect?!"] = "当然,我必须救她,我期望什么?!", -- A_Classic_Fairytale:family
+["Of course! It's all obvious now!"] = "当然,现在都显而易见了", -- A_Classic_Fairytale:epil
+["Of course, I will observe the battle and intervene if necessary."] = "当然,我会观察战斗,如果有必要就干扰", -- A_Space_Adventure:fruit01
+["OH, COME ON!"] = "OH, COME ON!", -- A_Classic_Fairytale:journey
+["Oh man! Learn how to fly!"] = "Oh,学学怎么飞", -- A_Space_Adventure:ice02
+["Oh, my!"] = "Oh, my!", -- A_Classic_Fairytale:first_blood
+["Oh, my! I forgot something!"] = "Oh, my! 我忘了某件事", -- A_Classic_Fairytale:queen
+["Oh, my! This is even more entertaining than I've expected!"] = "Oh, my! 这比我想象的还要有趣", -- A_Classic_Fairytale:backstab
+["Oh no, not %s!"] = "Oh no, 不要是%s", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:united
+["Oh no, the companions have betrayed %s and stole the anti-gravity device part!"] = "Oh no, 同伴已经背叛%s,偷走了反重力设备部件", -- A_Space_Adventure:fruit02
+["Oh no! You have died. Try again!"] = "Oh no, 你死了,再试一次", -- Basic_Training_-_Flying_Saucer
+["Oh! Please spare me. You can take all my treasures!"] = "Oh, 请饶了我,你可以拿走我所有的财宝", -- A_Space_Adventure:ice01
+["Oh, silly me! I forgot that I'm the shaman."] = "Oh, 我傻了,我忘了我是萨满", -- A_Classic_Fairytale:backstab
+["Oh, that. We were just having fun!"] = "Oh, 那个,我们只是在玩", -- A_Classic_Fairytale:queen
+["Oh yeah! You sure know how to rope!"] = "Oh yeah! 你当然知道怎么用绳索", -- Basic_Training_-_Rope
+["Oh yes! I got the device part! Now it belongs to me alone."] = "Oh yes! 我得到了设备部件,现在它只属于我", -- A_Space_Adventure:fruit02
+["Okay, I'll be extra careful!"] = "好的,我会额外小心", -- A_Space_Adventure:desert01
+["Okay, now destroy the target|using the baseball bat."] = "好的,现在破坏目标|使用棒球棒", -- Basic_Training_-_Rope
+["Okay then!"] = "好吧", -- A_Space_Adventure:fruit02
+["Okay, then you have to go and take some of the weapons we have hidden in case of an emergency!"] = "好的,然后你必须走,并拿到我们防止意外藏起来的一些武器", -- A_Space_Adventure:moon01
+["Old One Eye"] = "Old One Eye", -- 
+["Oleg"] = "Oleg", -- 
+["Olive"] = "Olive", -- A_Classic_Fairytale:united
+["Omnivore"] = "杂食性动物", -- A_Classic_Fairytale:first_blood
+["Once upon a time, on an island with great natural resources, lived two tribes in heated conflict..."] = "从前,在一个岛屿上有很多自然资源,岛上两个部落激烈冲突……", -- A_Classic_Fairytale:first_blood
+["Once you set off the proximity trigger, Mr. Mine is not your friend"] = "一旦触发近距离触发器,地雷先生就不是你的朋友了", -- ClimbHome
+["One does not simply rope to the moon!"] = "一个人不应该简单地用绳索去月球", -- A_Space_Adventure:cosmos
+["One flower: Incomplete side missions"] = "一朵花: 未完成支线任务", -- A_Space_Adventure:cosmos
+["One shall not judge one by one's appearance!"] = "一个人不应该评判另一个人的外表", -- A_Classic_Fairytale:epil
+["One tribe was peaceful, spending their time hunting and training, enjoying the small pleasures of life..."] = "一个部落很和平,花时间打猎和训练,享受平静的生活", -- A_Classic_Fairytale:first_blood
+["Oneye"] = "Oneye", -- portal
+["Only one hog per team allowed! Excess hogs will be removed"] = "只允许每个队伍一个刺猬,过量的刺猬会被移除", -- Mutant
+["Only one hog per team allowed! Excess hogs will be removed."] = "只允许每个队伍一个刺猬,过量的刺猬会被移除", -- Mutant
+["Only one team per clan allowed! Excess teams will be removed."] = "只允许每个战队一个队伍,过量的队伍会被移除", -- Mutant
+["Only %s can be trusted with the crate."] = "%s只能信任箱子", -- A_Space_Adventure:fruit02
+["Only the best pilots can master the following stunts."] = "只有最好的飞行员能掌握下面的绝技", -- Basic_Training_-_Flying_Saucer
+["Only two clans allowed! Excess hedgehogs will be removed."] = "只允许两个战队,过量的刺猬会被移除", -- CTF_Blizzard
+["On the Ice Planet, where ice rules ..."] = "在冰雪统治的冰雪星球……", -- A_Space_Adventure:ice01
+["On the other side of the moon ..."] = "在月球的另一边", -- A_Space_Adventure:moon02
+["On the Planet of Sand, you have to double check your moves ..."] = "在沙的星球,你必须双倍检查你的行动……", -- A_Space_Adventure:desert01
+["On this map you get %d%% fuel."] = "在这个地图你得到%d%%燃料", -- TechRacer
+["On this map you get infinite fuel."] = "在这个地图你得到无限燃料", -- TechRacer
+["Oops...I dropped them."] = "噢……我放下它们", -- A_Classic_Fairytale:united
+["Oops, I've been spotted and I have no weapons! I am doomed!"] = "噢,我被发现了,而且没有武器,我完蛋了", -- A_Space_Adventure:moon01
+["Oops! You have selected the wrong hedgehog! Just try again."] = "噢,你选择了错误的刺猬,再试一次", -- Basic_Training_-_Movement
+["Open ammo menu: [Right click]"] = "打开弹药菜单: [右键]", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope
+["Open ammo menu: Tap the [Suitcase]"] = "打开弹药菜单: [Suitcase]", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope
+["Open that crate and we will continue!"] = "打开那个箱子并继续", -- A_Classic_Fairytale:first_blood
+["Opposing Team: "] = "对方队伍: ",
+["Orange"] = "Orange", -- 
+["Orlando Boom!"] = "Orlando Boom!", -- A_Classic_Fairytale:queen
+["Or let the next player place waypoints|if less than 2 waypoints have been placed."] = "或者让下一个玩家放置路径点|如果已经放置的路径点少于两个", -- Racer
+["Or maybe this was all part of an evil plan, so evil that even Prof. Hogevil can't think of it!"] = "或者这个是一个邪恶计划的全部,即使Hogevil教授也没想到", -- A_Space_Adventure:final
+["Oscillating Gravity: Gravity periodically changes within a range from %i%% to %i%% with a period of %s"] = "摆动的重力: 重力周期地改变,一段时间%s,从%i%%到%i%%", -- Gravity
+["Other kills don't give you points."] = "其他杀死不会给你分数", -- Mutant
+["Ouch! That must have hurt. %s (%s) hit the ground with %d damage points."] = "那一定很疼,%s(%s)砸到地面造成%d伤害", -- ClimbHome
+["Ouch! That must have hurt. You mutilated your poor hedgehog hog with %d damage."] = "那一定很疼,你让可怜的刺猬残疾,%d伤害", -- ClimbHome
+["Ouch! You just took fall damage."] = "你掉下来受伤了", -- Basic_Training_-_Movement
+["Our tribe, our beautiful island!"] = "我们的部落,我们漂亮的岛屿", -- A_Classic_Fairytale:enemy
+["Out of ammo!"] = "弹药没了", -- A_Space_Adventure:desert03, Tumbler
+["Out of ammo! Try again!"] = "弹药没了,再试一次", -- Basic_Training_-_Bazooka
+["Over the Water"] = "穿过水面", -- Basic_Training_-_Rope
+["PAotH"] = "PAotH", -- A_Space_Adventure:cosmos, A_Space_Adventure:death01, A_Space_Adventure:desert01, A_Space_Adventure:moon01
+["PAotH has sent explosives but unfortunately the trigger mechanism seems to be faulty!"] = "星球协会已经发送了爆炸物,但不幸的是触发装置故障了", -- A_Space_Adventure:cosmos
+["Parachute"] = "降落伞", -- Continental_supplies
+["Patches"] = "Patches", -- 
+["Pathetic Hog #1"] = "可怜刺猬一号",
+["Pathetic Hog #2"] = "可怜刺猬二号",
+["Paul McHoggy"] = "Paul McHoggy", -- A_Space_Adventure:ice01, A_Space_Adventure:ice02
+["Pause: [P]"] = "暂停: [P]", -- Basic_Training_-_Movement
+["Pause: Tap the [Pause] button"] = "暂停: 按[暂停]键", -- Basic_Training_-_Movement
+["Penalty: If you violate above rule, you have to skip in the next turn."] = "惩罚: 如果你违反了上面的规则,下一回合必须跳过", -- WxW
+["Penguin Roar"] = "企鹅吼叫", -- Continental_supplies
+["Penguin roar: [Deal 15 damage + 10% of your hog’s health to all hogs around you and get 2/3 back]"] = "企鹅吼叫: [对周围刺猬造成15伤害+10%你的血量,得到2/3回血]", -- Continental_supplies
+["Penguin roar: [Deal 15 damage + 10% of your hogs health to all hogs around you and get 2/3 back]"] = "企鹅吼叫: [对周围刺猬造成15伤害+10%你的血量,得到2/3回血]", -- Continental_supplies
+["Perfect! Now try to get the next crate without hurting yourself!"] = "完美,接下来拿到下一个箱子,不要伤到自己", -- A_Classic_Fairytale:first_blood
+["Per-hog Ammo: Weapons are not shared between hogs"] = "每个刺猬弹药: 刺猬之间不共享武器", -- User_Mission_-_Nobody_Laugh
+["Personal best: %.3f seconds"] = "个人最好成绩: %.3f秒", -- A_Space_Adventure:ice02
+["Per team weapons"] = "每个队伍武器", -- Continental_supplies
+["Pfew! That was close!"] = "呼,好险", -- A_Classic_Fairytale:shadow
+["Phosphat"] = "Phosphat", -- portal
+["Physicist"] = "物理学家", -- HedgeEditor
+["Piano Strike"] = "钢琴空袭", -- Construction_Mode
+["Pikachu"] = "Pikachu", -- 
+["Pings left: %d"] = "雷达探测剩余: %d", -- Space_Invasion
+["Pink"] = "Pink", -- 
+["Pirates"] = "Pirates", -- 
+["Place 2-%d waypoints using the waypoint placement tool."] = "使用路径点放置工具放置2-%d路径点", -- Racer
+["Place 2 waypoints using the waypoint placement tool."] = "使用路径点放置工具放置2路径点", -- Racer
+["Place air mines"] = "放置浮空雷", -- HedgeEditor
+["Place barrels"] = "放置油桶", -- HedgeEditor
+["Place cleavers"] = "放置菜刀", -- HedgeEditor
+["Place/Delete Waypoint: [Left Click]"] = "放置/删除路径点: [左键]", -- HedgeEditor
+["Place dud mines"] = "放置哑弹地雷", -- HedgeEditor
+["Place Gears (and more): Gear Placement Tool"] = "放置物体(和更多): 物体放置工具", -- HedgeEditor
+["Place Girder: Girder"] = "放置大梁: 大梁", -- HedgeEditor
+["Place Girder: [Left Click]"] = "放置大梁: [左键]", -- HedgeEditor
+["Place girders"] = "放置大梁", -- HedgeEditor
+["Place health crates"] = "放置医疗箱", -- HedgeEditor
+["Place hedgehogs: Place your hedgehogs at the start of the game."] = "放置刺猬: 在游戏开始时放置你的刺猬", -- WxW
+["Placement Mode"] = "放置模式", -- HedgeEditor
+["Place mines"] = "放置地雷", -- HedgeEditor
+["Place, modify and delete gears (e.g. objects)|and waypoints, edit hedgehog settings, values,|victory conditions, and more."] = "放置,修改和删除物体和路径点|编辑刺猬设置,数值,胜利条件和更多", -- HedgeEditor
+["Place Object: [Left Click]"] = "放置物体: [左键]", -- HedgeEditor
+["Place or delete waypoints"] = "放置或删除路径点", -- HedgeEditor
+["Place rubber"] = "放置橡皮筋", -- HedgeEditor
+["Place Rubber: Rubber"] = "放置橡皮筋: 橡皮筋", -- HedgeEditor
+["Place Sprite: [Left Click]"] = "放置Sprite: [左键]", -- HedgeEditor
+["Place sprites to build land"] = "放置sprites以建造地面", -- HedgeEditor
+["Place sticky mines"] = "放置黏性地雷", -- HedgeEditor
+["Place targets"] = "放置目标", -- HedgeEditor
+["Place utility crates"] = "放置工具箱", -- HedgeEditor
+["Place Waypoint"] = "放置路径点", -- HedgeEditor
+["Place waypoint"] = "放置路径点", -- Racer
+["Place weapon crates"] = "放置武器箱", -- HedgeEditor
+["- Place your clan flag at the end of your first turn"] = "- 第一个刺猬选好光环出现的位置|- 双方第一回合结束后出现光环", -- Capture_the_Flag
+["- Place your team flag at the end of your first turn"] = "- 第一个刺猬选好光环出现的位置|- 双方第一回合结束后出现光环", -- Capture_the_Flag
+["Planes used: %d"] = "已使用飞机: %d", -- User_Mission_-_RCPlane_Challenge
+["Planes Used"] = "已使用飞机", -- User_Mission_-_RCPlane_Challenge
+["Planes Used:"] = "已使用飞机:", -- User_Mission_-_RCPlane_Challenge
+["Planets with all missions completed will be marked with two flowers."] = "完成所有任务的星球会标记两朵花", -- A_Space_Adventure:cosmos
+["Planets with completed main missions will be marked with a flower."] = "完成主线任务的星球会标记一朵花", -- A_Space_Adventure:cosmos
+["Play with me!"] = "和我玩", -- A_Classic_Fairytale:shadow
+["Please click on a crate."] = "请点击一个箱子", -- HedgeEditor
+["Please click on a gear."] = "请点击一个物体", -- HedgeEditor
+["Please click on a hedgehog, barrel, health crate or dud mine."] = "请点击一个刺猬、油桶、医疗箱或哑弹地雷", -- HedgeEditor
+["Please click on a hedgehog."] = "请点击一个刺猬", -- HedgeEditor
+["Please place the waypoint further away from the waterline"] = "请远离水面放置路径点", -- Racer, TechRacer
+["Please place the waypoint in the air and within the map boundaries"] = "请在空中放置路径点,不能超出边界", -- TechRacer
+["Please place the waypoint in the air, within the map boundaries"] = "请在空中放置路径点,不能超出边界", -- Racer
+["Please place your hedgehog first!"] = "请先放置你的刺猬", -- WxW
+["Please, stop releasing your \"smoke signals\"!"] = "请停止释放你的“烟雾信号”", -- A_Classic_Fairytale:shadow
+["Please wait …"] = "请等待……", -- WxW
+["Point Blank Combo! +5 points!"] = "Point Blank Combo! +5分", -- Space_Invasion
+["--- Points ---"] = "---分数---", -- Battalion
+["--- Points Mode ---"] = "---分数模式---", -- Battalion
+["Poison"] = "Poison", 
+["Poisonous Apple"] = "Poisonous Apple", -- A_Space_Adventure:fruit02
+["Poisonous, deals no damage."] = "有毒,无伤害", -- Continental_supplies
+["Pokémon"] = "Pokémon", -- 
+["Poor %s (%s) died %d times."] = "可怜的%s(%s)死了%d次", -- Mutant
+["Population"] = "人口", -- Continental_supplies
+["Porkey"] = "Porkey", -- 
+["Portal hint: one goes to the destination, and one is the entrance.|"] = "传送门提示: 一个是终点,一个是入口|", -- A_Classic_Fairytale:dragon
+["Portal hint: One goes to the destination, the other one is the entrance.|"] = "传送门提示: 一个是终点,其他是入口|", -- A_Classic_Fairytale:dragon
+["Portal Mind Challenge"] = "传送门思维挑战", -- portal
+["Precise Aim: [Left Shift]"] = "精确瞄准: [左Shift]", -- Basic_Training_-_Movement
+["Precise Aim: [Left Shift] + [Up]/[Down]"] = "精确瞄准: [左Shift]+[上]/[下]", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
+["Precise flying"] = "精确飞行", -- A_Space_Adventure:desert03
+["Precise: Remove previous waypoint"] = "精确: 移除上一个路径点", -- Racer
+["Precise shooting"] = "精确射击", -- A_Space_Adventure:fruit03
+["Predator"] = "Predator", -- portal
+["Prepare for battle!"] = "准备战斗", -- A_Space_Adventure:moon01
+["Prepare to fight"] = "准备战斗", -- A_Space_Adventure:moon01
+["Prepare to flee!"] = "准备逃跑", -- A_Space_Adventure:cosmos
+["Prepare yourself, %s!"] = "准备好,%s", -- The_Specialists
+["Press [Attack] (space bar by default) to start,|repeadedly tap the up, left and right movement keys to accelerate."] = "按[攻击](默认是空格)开始|重复按上左右加速", -- Basic_Training_-_Flying_Saucer
+["Press [Attack] (space bar by default) to start,|repeatedly tap the up, left and right movement keys to accelerate."] = "按[攻击](默认是空格)开始|重复按上左右加速", -- Basic_Training_-_Flying_Saucer
+["Press [Attack] to begin."] = "按[攻击]开始", -- A_Classic_Fairytale:first_blood
+["Press [Attack] to confirm."] = "按[攻击]确认", -- Continental_supplies
+["Press [Attack] to select this continent!"] = "按[攻击]选择这个大陆", -- Continental_supplies
+["Press [Left] and [Right] to change the difficulty."] = "按[左]和[右]改变难度", -- A_Classic_Fairytale:first_blood
+["Press [Left] or [Right] to move around, [Long Jump] to jump forwards."] = "按[左]或[右]移动,[远跳]向前跳", -- A_Classic_Fairytale:first_blood
+["Press [Long jump] to accept this configuration and begin placing hedgehogs."] = "按[远跳]接受这个配置并开始放置刺猬", -- WxW
+["Press [Long jump] to accept this configuration and start the game."] = "按[远跳]接受这个配置并开始游戏", -- WxW
+["Press [M] to see the mission texts"] = "按[M]看任务信息", -- Basic_Training_-_Movement
+["Press [Precise] to skip intro"] = "按[精确]跳过开头动画",
+["Press [Up] and [Down] to move between menu items.|Press [Attack], [Left], or [Right] to toggle."] = "按[上]和[下]在菜单项目中移动|按[攻击][左][右]切换", -- WxW
+["Prestigious Pilot"] = "有声望的飞行员", -- User_Mission_-_RCPlane_Challenge
+["Princess"] = "公主", -- A_Classic_Fairytale:family, A_Classic_Fairytale:journey
+["Princess Peach"] = "Princess Peach", -- 
+["Problems, dude? Chillax!"] = "老兄,有问题?Chillax!", -- A_Classic_Fairytale:epil
+["Professional pilot"] = "专业飞行员", -- User_Mission_-_RCPlane_Challenge
+["Professional stunt pilot"] = "专业绝技飞行员", -- User_Mission_-_RCPlane_Challenge
+["Professor"] = "教授", -- A_Space_Adventure:death01, A_Space_Adventure:moon01
+["Professor Hogevil, then known as James Hogus, worked for PAotH back in my time."] = "Hogevil教授,当时称为James Hogus,为星球协会工作", -- A_Space_Adventure:moon02
+["Professor's Team"] = "教授的队伍", -- A_Space_Adventure:death01
+["Prof. Hogevil"] = "Hogevil教授", -- A_Space_Adventure:death01, A_Space_Adventure:moon01
+["Protect the King: When the king dies, so does the team"] = "保护国王: 国王死了,队伍也死", -- Battalion
+["Protect yourselves!|Grenade hint: set the timer with [1-5], aim with [Up]/[Down] and hold [Space] to set power"] = "保护你自己!|手榴弹提示: [1-5]设置定时器,[上]/[下]瞄准,长按[空格]投掷", -- A_Classic_Fairytale:shadow
+["Purple"] = "Purple", -- 
+["Pyro"] = "Pyro", -- HedgeEditor, The_Specialists
+["Pyromancer"] = "Pyromancer", -- Battalion
+["Quit: [Esc]"] = "退出: [Esc]", -- Basic_Training_-_Movement
+["Race complexity limit reached"] = "到达竞赛复杂度限制", -- Racer, TechRacer
+["Race failed!"] = "竞赛失败", -- A_Space_Adventure:moon02
+["Racer"] = "Racer", -- Racer
+["Racer tool"] = "Racer 工具", -- Racer
+["Race"] = "竞赛", -- TrophyRace
+["Rachel"] = "Rachel", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
+["Radar: Off"] = "雷达: 关", -- WxW
+["Radar: On"] = "雷达: 开", -- WxW
+["Radar Ping: [High jump]"] = "雷达探测: [高跳]", -- Space_Invasion
+["Radar: Show after crate drop"] = "雷达: 箱子掉落后显示", -- WxW
+["Raging Buffalo"] = "Raging Buffalo", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen, A_Classic_Fairytale:united
+["Ramesses"] = "Ramesses", -- 
+["Ramon"] = "Ramon", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen, A_Classic_Fairytale:shadow
+["Random continent"] = "随机大陆", -- Continental_supplies
+["Rank: %s"] = "等级: %s", -- User_Mission_-_RCPlane_Challenge
+["Razac"] = "Razac", -- portal
+["RC Plane Challenge"] = "遥控飞机挑战", -- User_Mission_-_RCPlane_Challenge
+["RC Plane"] = "遥控飞机", -- Construction_Mode
+["Reach and destroy the final target to win."] = "到达并破坏最后的目标获胜", -- Basic_Training_-_Rope
+["Read the challenge objectives from within the mission for more details."] = "在任务里阅读挑战目标获得更多细节", -- A_Space_Adventure:death02, A_Space_Adventure:desert03, A_Space_Adventure:fruit03
+["Ready for Battle?"] = "准备战斗?", -- A_Space_Adventure:fruit01
+["Really?! You thought you could harm me with your little toys?"] = "真的吗?你认为能用你的小玩具伤害我?", -- A_Classic_Fairytale:shadow
+["Red"] = "Red", -- 
+["Reflector Shield"] = "反射盾", -- Construction_Mode
+["Reflector Shield: Reflects enemy projectiles."] = "反射盾: 反射敌人的炮弹", -- Construction_Mode
+["Regurgitator"] = "Regurgitator", -- A_Classic_Fairytale:backstab
+["Reinforcements! +2 of each weapon!"] = "援军,每个武器+2", -- A_Space_Adventure:death02
+["Reinforcements"] = "援军", -- A_Classic_Fairytale:backstab
+["Release rope: [Attack]"] = "释放绳索: [攻击]", -- Basic_Training_-_Rope
+["Remember: Hold down [Left Shift] to prevent slipping"] = "记住: 一直按[左Shift]防滑", -- Basic_Training_-_Movement
+["Remember! Many will seek the anti-gravity device! Now go, hurry up!"] = "记住,很多人在找反重力设备,快点去", -- A_Space_Adventure:cosmos
+["Remember: The rope only bend around objects, |if it doesn't hit anything it's always stright!"] = "记住: 绳索只在碰到物体时弯曲|没碰到东西,一直是直的", -- Basic_Training_-_Rope
+["Remember this, pathetic animal: when the day comes, you will regret your blind loyalty!"] = "记住这个,可怜的动物: 当那天来到,你会为盲目的忠诚后悔", -- A_Classic_Fairytale:shadow
+["Remember this, pathetic animal: When the day comes, you will regret your blind loyalty!"] = "记住这个,可怜的动物: 当那天来到,你会为盲目的忠诚后悔", -- A_Classic_Fairytale:shadow
+["Replenishment: Weapons are restocked on turn start of a new hog"] = "补充: 在回合开始补充刺猬的武器", -- Highlander
+["Repositioning Mode"] = "调整位置模式", -- HedgeEditor
+["REPOSITIONING MODE"] = "调整位置模式", -- HedgeEditor
+["Rescue the imprisoned PAotH team and get the fuel!"] = "解救被监禁的星球协会队伍并得到燃料", -- A_Space_Adventure:moon01
+["Respawner"] = "重生器", -- Construction_Mode
+["Respawner: Resurrects dead hogs."] = "重生器: 复活死亡的刺猬", -- Construction_Mode
+["Resurrector"] = "复活器", -- Construction_Mode
+["Retract/Extend rope: [Up]/[Down]"] = "伸缩绳索:[上]/[下]", -- Basic_Training_-_Rope
+["- Return the enemy flag to your base to score"] = "- 把敌人的光环带到你的基地得分", -- Capture_the_Flag
+["Return to Leaks A Lot!"] = "回去找Leaks A Lot", -- A_Classic_Fairytale:shadow
+["Return to the mission menu by pressing the \"Go back\" button."] = "按“返回”回到任务菜单", -- A_Space_Adventure:cosmos
+["Return to the Surface"] = "回到表面", -- A_Space_Adventure:fruit02
+["Return to the training menu by pressing the “Go back” button."] = "按“返回”回到训练菜单", -- Basic_Training_-_Movement
+["Rider"] = "Rider", -- portal
+["Rifleman"] = "Rifleman", -- Battalion
+["Righteous Beard"] = "Righteous Beard", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:first_blood, A_Classic_Fairytale:queen, A_Classic_Fairytale:united
+["Ripe"] = "Ripe", -- 
+["Rise the water if nobody else is in the circle and deal 6 damage to all enemy hogs."] = "如果圈中没人,提升水面,并对所有敌人造成6伤害", -- Continental_supplies
+["Robert Yellow Apple"] = "Robert Yellow Apple", -- A_Space_Adventure:fruit01
+["Rocket"] = "Rocket", -- Big_Armory
+["Ronald"] = "Ronald", -- portal
+["Roof"] = "顶部", -- WxW
+["Rope-knocking Challenge"] = "绳索撞击挑战", -- User_Mission_-_Rope_Knock_Challenge
+["Rope Master"] = "绳索大师", -- Basic_Training_-_Rope
+["Ropes and Crates"] = "绳索和箱子", -- Challenge_-_Speed_Shoppa_-_Ropes
+["Ropes can be fired again in the air!"] = "绳索可以在空中再次发射", -- A_Classic_Fairytale:first_blood
+["Rope Team"] = "绳索队伍", -- Basic_Training_-_Rope
+["Rope Training"] = "绳索训练", -- Basic_Training_-_Rope
+["Rope Weapons"] = "绳索武器", -- Basic_Training_-_Rope
+["Roshi"] = "Roshi", -- 
+["Rot Molester"] = "Rot Molester", -- A_Classic_Fairytale:shadow
+["Rotten"] = "Rotten", -- 
+["Round draw"] = "平局", -- Racer, TechRacer
+["Round %d (Sudden Death in round %d)"] = "%d局(突然死亡在%d局)", -- Battalion
+["Round limit: %d"] = "回合限制: %d", -- Racer
+["Round Limit: %d"] = "回合限制: %d", -- Space_Invasion
+["Round limit:"] = "回合限制:", -- TechRacer
+["Rounds complete: %d/%d"] = "回合完成: %d/%d", -- Racer, Space_Invasion, TechRacer
+["Round's slowest lap: %.3fs by %s"] = "回合最慢的一圈: %s的%.3f秒", -- TrophyRace
+["RS1"] = "红色草莓1", -- A_Space_Adventure:fruit03
+["RS2"] = "红色草莓2", -- A_Space_Adventure:fruit03
+["Rubber"] = "橡皮筋", -- Construction_Mode, HedgeEditor
+["Rubber Placement Mode"] = "橡皮筋放置模式", -- Construction_Mode
+["RUBBER PLACEMENT MODE"] = "橡皮筋放置模式", -- HedgeEditor
+["Rules:"] = "规则:", -- Capture_the_Flag
+["RULES:"] = "规则:", -- Frenzy
+["Rules: "] = "规则: ", -- Mutant
+["Run away, you coward!"] = "走开,你这个胆小鬼", -- A_Space_Adventure:desert01
+["Running displacement algorithm …"] = "正在运行取代算法", -- A_Classic_Fairytale:queen
+["Running for survival"] = "快逃命", -- A_Space_Adventure:desert02
+["Rusted Diego"] = "Rusted Diego", -- 
+["Rusty Joe"] = "Rusty Joe", -- A_Classic_Fairytale:queen
+["Ryu"] = "Ryu", -- 
+["%s (+1)"] = "%s (+1)", -- A_Space_Adventure:fruit03
+["%s: %.1fs"] = "%s: %.1f秒", -- Racer, TechRacer
+["Sabotage all hogs in the circle and fire a cluster above you.|Sabotaged hogs lose health and have to deal with a very high gravity during their turn."] = "妨害圈中所有的刺猬,并在你头上发射一粒炸弹|受到妨害的刺猬掉血,并在他们的回合必须对付高重力", -- Continental_supplies
+["Sabotage/Flare: [Sabotage all hogs in the circle and deal ~1 dmg OR Fire a cluster up into the air]"] = "妨害/Flare: [妨害圈中所有刺猬造成~1伤害,或发射一粒炸弹到空中]", -- Continental_supplies
+["Saint"] = "Saint", -- HedgeEditor, The_Specialists
+["Salivaslurper"] = "Salivaslurper", -- A_Classic_Fairytale:united
+["Salty Dog"] = "Salty Dog", -- 
+["Salvation"] = "拯救", -- A_Classic_Fairytale:family
+["Salvation was one step closer now..."] = "现在拯救更近一步……", -- A_Classic_Fairytale:dragon
+["Sam"] = "Sam", -- A_Space_Adventure:cosmos
+["Sandals?! I thought you left your ring!"] = "拖鞋?! 我以为你弄丢了你的戒指", -- A_Classic_Fairytale:queen
+["%s and GB"] = "%s 和绿色香蕉", -- A_Space_Adventure:fruit02
+["%s and %s enter the battlefield"] = "%s和%s进入战场", -- A_Space_Adventure:fruit01
+["Sandstorm"] = "沙暴", -- A_Space_Adventure:desert01
+["Sandy"] = "Sandy", -- A_Space_Adventure:desert01
+["%s arrived at the Desert Planet!"] = "%s到达了沙漠星球", -- A_Space_Adventure:cosmos
+["%s arrived at the Fruit Planet!"] = "%s到达了水果星球", -- A_Space_Adventure:cosmos
+["%s arrived at the Ice Planet!"] = "%s到达了冰雪星球", -- A_Space_Adventure:cosmos
+["%s arrived at the meteorite!"] = "%s到达了陨石", -- A_Space_Adventure:cosmos
+["%s arrived at the moon!"] = "%s到达了月球", -- A_Space_Adventure:cosmos
+["%s arrived at the Planet of Death!"] = "%s到达了死亡星球", -- A_Space_Adventure:cosmos
+["Save as many hogs as possible!"] = "尽可能拯救刺猬", -- User_Mission_-_That_Sinking_Feeling
+["Save Fell From Heaven!"] = "救Fell From Heaven", -- A_Classic_Fairytale:journey
+["Save Leaks A Lot!|Hint: The switch hedgehog utility might be of help to you."] = "拯救Leaks A Lot!|提示: 切换刺猬工具可能对你很有帮助", -- A_Classic_Fairytale:shadow
+["Save Level: [Precise]+[4]"] = "保存关卡: [精确]+[4]", -- HedgeEditor
+["Save the princess! All your hogs must survive!|Hint: Kill the cyborgs first! Use the ammo very carefully!|Hint: You might want to spare a girder for cover!"] = "拯救公主,你的所有刺猬必须活着|提示: 先杀死机器人,小心使用弹药|提示: 你可能要节省大梁用来掩护", -- A_Classic_Fairytale:family
+["Save the princess by collecting the crate in under 12 turns!"] = "在12回合内收集箱子救公主", -- A_Classic_Fairytale:journey
+["Saving Hogera"] = "拯救Hogera", -- A_Space_Adventure:cosmos
+["%s barely made it past the hogosphere."] = "%s勉强通过了hogosphere", -- ClimbHome
+["%s bravely climbed up to a dizzy height of %d to reach home."] = "%s勇敢地爬上让人眩晕的%d高度,回到家", -- ClimbHome
+["Scallywag"] = "Scallywag", -- 
+["Scalp Muncher"] = "Scalp Muncher", -- A_Classic_Fairytale:backstab
+["Scenario"] = "场景", -- Big_Armory, portal, User_Mission_-_Bamboo_Thicket, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Newton_and_the_Hammock, User_Mission_-_Nobody_Laugh, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork_2, User_Mission_-_Teamwork, User_Mission_-_The_Great_Escape
+["Scientist"] = "科学家", -- Battalion
+["%s climbed home in %d seconds!"] = "%s用了%d秒爬回家", -- ClimbHome
+["%s (contd.)"] = "%s (contd.)", -- A_Classic_Fairytale:epil
+["Score: %d"] = "分数: %d", -- Space_Invasion
+["Score goal: %d"] = "分数目标: %d", -- Control
+["Score graph"] = "分数图表", -- Mutant, Space_Invasion
+["Score points by killing other hedgehogs."] = "杀死其他刺猬得分", -- Mutant
+["Score points by killing other hedgehogs (see below)."] = "杀死其他刺猬得分(看下面)", -- Mutant
+["Scores: "] = "分数: ", -- Capture_the_Flag
+["Scores"] = "分数", -- Mutant
+["Scores:"] = "分数:", -- Mutant
+["Scoring: "] = "分数: ", -- Mutant
+["%s couldn't escape, try again!"] = "%d没能逃离,再试一次", -- A_Space_Adventure:fruit01
+["Script parameter examples:"] = "脚本参数示例:", -- Gravity
+["%s (+%d)"] = "%s (+%d)", -- Battalion
+["%s: %d"] = "%s: %d", -- Capture_the_Flag, Control
+["%s (%d)"] = "%s (%d)", -- Continental_supplies
+["%s: %d (deaths: %d)"] = "%s: %d (死亡: %d)", -- Mutant
+["%s (%d), %d sec"] = "%s (%d), %d秒", -- Continental_supplies
+["%s: Did not finish"] = "%s: 没有完成", -- Racer, TechRacer
+["%s did not finish the race."] = "%s没有完成竞赛", -- Racer, TechRacer
+["%s didn't expect that."] = "%s没想到", -- User_Mission_-_Rope_Knock_Challenge
+["%s died … and lives again!"] = "%s死了……又活了", -- Construction_Mode
+["%s doesn’t really know how to handle a rope properly."] = "%s真不知道怎么正确地操作绳索", -- ClimbHome
+["%s, %d sec"] = "%s,%d秒", -- Continental_supplies
+["Search for the device with the help of the other hedgehogs."] = "在其他刺猬的帮助下搜索设备", -- A_Space_Adventure:fruit02
+["Searching in the dust"] = "在尘土中搜索", -- A_Space_Adventure:desert01
+["Searching the stars!"] = "搜索星星", -- A_Space_Adventure:cosmos
+["Seduction"] = "诱惑", -- Continental_supplies
+["Seems like every time you take a \"walk\", the enemy finds us!"] = "似乎每次你去“散步”,敌人都找到我们", -- A_Classic_Fairytale:backstab
+["See that crate farther on the right?"] = "看看右边远处的箱子?", -- A_Classic_Fairytale:first_blood
+["See ya!"] = "再见!",
+["Segmentation Paul"] = "Segmentation Paul", -- A_Classic_Fairytale:dragon
+["Select a placement mode and read the infos|in the mission panel to learn how to use it."] = "选择一个放置模式|阅读任务面板的信息,学会怎么使用它", -- HedgeEditor
+["Select continent!"] = "选择大陆", -- Continental_supplies
+["Select continent"] = "选择大陆", -- Continental_supplies
+["Selection Mode"] = "选择模式", -- HedgeEditor
+["Select, modify, or delete girders, rubbers and sprites"] = "选择,修改,删除大梁,橡皮筋和sprites", -- HedgeEditor
+["Select/Place/Delete Gear: [Left Click]"] = "选择/放置/删除物体: [左键]", -- HedgeEditor
+["Select, reposition and delete gears"] = "选择,调整位置和删除物体", -- HedgeEditor
+["Select Rope"] = "选择绳索", -- Basic_Training_-_Rope
+["Select “Switch Hedgehog” from the ammo menu and|hit the “Attack” key."] = "从弹药菜单选择“切换刺猬”|并按“攻击”键", -- Basic_Training_-_Movement
+["Select “Switch Hedgehog” from the ammo menu and|hit the “Attack” key to proceed."] = "从弹药菜单选择“切换刺猬”|并按“攻击”键继续", -- Basic_Training_-_Movement
+["Select the current continent."] = "选择当前的大陆", -- Continental_supplies
+["Select the rope to begin!"] = "选择绳索开始", -- Basic_Training_-_Rope
+["Select this item for a random continent."] = "选择这个项目,随机一个大陆", -- Continental_supplies
+["Select Weapon"] = "选择武器", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
+["Select weapon: [Left click]"] = "选择武器: [左键]", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade
+["Select win/lose condition: [Left], [Right]"] = "选择输/赢条件: [左]/[右]", -- HedgeEditor
+["Select your continent/weaponset: with the \"Up\" or \"Down\" keys. You can also select one with the weapons menu."] = "选择你的大陆/武器集: [上]/[下],你也可以在武器菜单选择一个", -- Continental_supplies
+["Select your continent/weaponset: With the \"Up\" or \"Down\" keys. You can also select one with the weapons menu."] = "选择你的大陆/武器集: [上]/[下],你也可以在武器菜单选择一个", -- Continental_supplies
+["Select your continent with [Up]/[Down] or by selecting a representative weapon."] = "[上]/[下]或者选择代表性的武器选择你的大陆", -- Continental_supplies
+["%s enters the battlefield"] = "%s进入战场", -- A_Space_Adventure:fruit01
+["Sergey"] = "Sergey", -- 
+["%s escaped successfully!"] = "%s成功逃离", -- A_Space_Adventure:fruit01
+["Set bounciness: [Left Shift] + [1]-[5]"] = "设置弹力: [左Shift]+[1-5]", -- Basic_Training_-_Grenade
+["Set detonation timer: [1]-[5]"] = "设置引爆定时器: [1-5]", -- Basic_Training_-_Grenade
+["Set Health: [Left Click]"] = "设置血量: [左键]", -- HedgeEditor
+["Set Identity: [Left Click]"] = "设置身份: [左键]", -- HedgeEditor
+["Set period to negative value for random gravity."] = "设置时间为负数以随机重力", -- Gravity
+["Set the health of hogs, health crates, barrels and duds"] = "设置刺猬,医疗箱,油桶和哑弹地雷的血量", -- HedgeEditor
+["Set to %d"] = "设为%d", -- HedgeEditor
+["%s exploded."] = "%s爆炸了", -- User_Mission_-_Rope_Knock_Challenge
+["%s fell from a high cliff."] = "%s从悬崖掉下", -- User_Mission_-_Rope_Knock_Challenge
+["%s fell too fast."] = "%s掉得太快", -- User_Mission_-_Rope_Knock_Challenge
+["%s fell victim to a weapon filter"] = "%s成为一个武器过滤器的受害者", -- Construction_Mode
+["%s felt unstable."] = "%s感觉不稳定", -- User_Mission_-_Rope_Knock_Challenge
+["%s felt victim to rope-knocking."] = "%s成为绳索撞击的受害者", -- User_Mission_-_Rope_Knock_Challenge
+["%s flew like a rock."] = "%s像石头一样飞", -- User_Mission_-_Rope_Knock_Challenge
+["%s gets an extra life"] = "%s得到额外的生命", -- Construction_Mode
+["%s goes the way of the lemming."] = "%s走向旅鼠的道路", -- User_Mission_-_Rope_Knock_Challenge
+["Sgt. Smith"] = "Sgt. Smith", -- 
+["%s had it coming."] = "%s即将来到", -- User_Mission_-_Rope_Knock_Challenge
+["%s had no chance."] = "%s没有机会", -- User_Mission_-_Rope_Knock_Challenge
+["... share your beauty with the world every morning, my princess!"] = "……每个早晨和世界分享你的美丽,我的公主", -- A_Classic_Fairytale:journey
+["%s has been killed before taking enough damage first."] = "%s在先造成足够伤害前被杀了", -- SimpleMission
+["%s has been knocked out."] = "%s被撞出去了", -- User_Mission_-_Rope_Knock_Challenge
+["%s has been rescued from death"] = "%s被从死亡中解救", -- Construction_Mode
+["%s has dropped the flag!"] = "%s掉下了光环", -- CTF_Blizzard
+["%s has fallen victim to gravity."] = "%s成为重力的受害者", -- User_Mission_-_Rope_Knock_Challenge
+["%s has mutated! +2 points"] = "%s变异了,+2分", -- Mutant
+["%s has passed the best height of %s!"] = "%s超过了%s的最高记录", -- ClimbHome
+["%s has scored!"] = "%s得分", -- Capture_the_Flag
+["%s has to refuel the saucer."] = "%s必须给飞碟加油", -- A_Space_Adventure:moon01
+["%s hates Newton."] = "%s恨牛顿", -- User_Mission_-_Rope_Knock_Challenge
+["She endangered the whole tribe!"] = "她快把整个部落灭绝", -- A_Classic_Fairytale:epil
+["sheepluva"] = "sheepluva", -- 
+["Sheepy"] = "Sheepy", -- 
+["She's behind that tall thingy."] = "她在那个高的东西后面", -- A_Classic_Fairytale:family
+["Shield boosted! +%d power"] = "护盾增加,+%d能量", -- Space_Invasion
+["Shield depleted"] = "护盾耗尽", -- Space_Invasion
+["Shield is fully recharged!"] = "护盾完全充能",
+["Shield Master! +10 points!"] = "护盾大师,+10分", -- Space_Invasion
+["Shield Miser! +%d points!"] = "护盾小气鬼,+%d分", -- Space_Invasion
+["Shield OFF: %d power remaining"] = "护盾关: 还有%d能量", -- Space_Invasion
+["Shield ON: %d power remaining"] = "护盾开: 还有%d能量", -- Space_Invasion
+["Shield Seeker! +10 points!"] = "护盾寻找者,+10分", -- Space_Invasion
+["Shinobi"] = "Shinobi", -- 
+["%s hit the ground."] = "%s砸到地面", -- User_Mission_-_Rope_Knock_Challenge
+["Shoppa Love"] = "Shoppa Love", -- Challenge_-_Speed_Shoppa_-_Hedgelove
+["Shotgun"] = "霰弹枪", -- Continental_supplies
+["Sigh."] = "叹气", -- A_Classic_Fairytale:epil
+["Silly"] = "Silly",
+["Silver"] = "Silver", -- 
+["Sine Gun"] = "正弦枪", -- Construction_Mode
+["Sinky"] = "Sinky",
+["Sirius Lee"] = "Sirius Lee", -- A_Classic_Fairytale:enemy
+["%s is dead, who was critical to this mission!"] = "%s死了,谁是这个任务的重要人物", -- SimpleMission
+["%s is eliminated!"] = "%s淘汰了", -- User_Mission_-_Rope_Knock_Challenge
+["%s is now as poor as a church mouse"] = "%s现在像一个可怜的教堂老鼠", -- Construction_Mode
+["%s is now a zombie hedgehog"] = "%s现在是一个刺猬丧尸", -- Construction_Mode
+["%s is suddenly low on ammo"] = "%s突然缺少弹药", -- Construction_Mode
+["Skulls"] = "Skulls", -- Bazooka_Battlefield
+["Slimer"] = "Slimer", -- 
+["Slippery"] = "Slippery", -- A_Classic_Fairytale:journey
+["%s lost all the weapons"] = "%s失去所有武器", -- Construction_Mode
+["%s lost, try again!"] = "%s输了,再试一次", -- A_Space_Adventure:death01, A_Space_Adventure:death02, A_Space_Adventure:desert01, A_Space_Adventure:desert02, A_Space_Adventure:desert03, A_Space_Adventure:final, A_Space_Adventure:fruit01, A_Space_Adventure:fruit02, A_Space_Adventure:fruit03, A_Space_Adventure:ice01, A_Space_Adventure:moon01
+["Slot %d: %s"] = "槽位%d: %s", -- Frenzy
+["Slot keys save time! (F1-F10 by default)"] = "槽位按键(默认F1-F10)", -- Frenzy
+["Slowpoke"] = "Slowpoke", -- 
+["%s made it past the hogosphere."] = "%s通过了hogosphere", -- ClimbHome
+["%s managed to pass half of the distance towards home."] = "%s设法通过了回家的一半路程", -- ClimbHome
+["%s may choose the rules."] = "%s可以选择规则", -- WxW
+["Smith 0.97"] = "Smith 0.97", -- A_Classic_Fairytale:enemy
+["Smith 0.98"] = "Smith 0.98", -- A_Classic_Fairytale:enemy
+["Smith 0.99a"] = "Smith 0.99a", -- A_Classic_Fairytale:enemy
+["Smith 0.99b"] = "Smith 0.99b", -- A_Classic_Fairytale:enemy
+["Smith 0.99f"] = "Smith 0.99f", -- A_Classic_Fairytale:enemy
+["Smith 1.0"] = "Smith 1.0", -- A_Classic_Fairytale:enemy
+["Smugglers"] = "走私者", -- A_Space_Adventure:desert01
+["%s must collect the final crates."] = "%s必须收集最后的箱子", -- A_Space_Adventure:fruit02
+["%s must skip this turn for rule violation."] = "%s违反规则必须跳过这个回合", -- WxW
+["Sneaks"] = "Sneaks", -- Bazooka_Battlefield
+["%s never got the ninja diploma."] = "%s从没得到忍者文凭", -- ClimbHome
+["%s never wanted to reach for the sky in the first place."] = "%s从没想一步登天", -- ClimbHome
+["Sniper! +8 points!"] = "狙击手,+8分", -- Space_Invasion
+["Sniper"] = "狙击手", -- HedgeEditor, The_Specialists
+["Sniper Rifle"] = "狙击枪", -- Continental_supplies
+["Sniper Training"] = "狙击训练",
+["So, as promised I have brought you where I think that the device you are looking for is hidden."] = "所以,按照承诺,我带你去你寻找的设备所隐藏的地方", -- A_Space_Adventure:fruit02
+["So far, you had infinite ropes, but in the|real world, ropes are usually limited."] = "你有无限的绳索|但真实世界的绳索通常是有限的", -- Basic_Training_-_Rope
+["So humiliating..."] = "好丢脸……", -- A_Classic_Fairytale:first_blood
+["So, I believe that it's a good place to start."] = "所以,我相信这里是开始的好地方", -- A_Space_Adventure:desert01
+["So, I kindly ask for your help."] = "所以我请你帮忙", -- A_Space_Adventure:fruit01
+["So I shook my fist in the air!"] = "所以我在空气中打了一拳", -- A_Classic_Fairytale:epil
+["Soldier"] = "战士", -- HedgeEditor, The_Specialists
+["So, let me tell you what I know about Professor Hogevil."] = "所以,让我告诉你关于Hogevil教授的事情", -- A_Space_Adventure:moon02
+["Some parts of the land are indestructible."] = "地面的某些部分是不可破坏的", -- A_Space_Adventure:fruit03
+["Some sick game of yours?!"] = "你的某种恶心游戏?!", -- A_Classic_Fairytale:queen
+["Some weapons can be dropped from the rope."] = "某些武器可以从绳索丢下", -- Basic_Training_-_Rope
+["Somewhere else on the planet of fruits, Captain Lime helps %s"] = "水果星球的某个地方,Captain Lime帮助%s", -- A_Space_Adventure:fruit02
+["Somewhere else on the planet of fruits, %s gets closer to the device"] = "水果星球的某个地方,%s接近了设备", -- A_Space_Adventure:fruit02
+["Somewhere on the Planet of Fruits a terrible war is about to begin ..."] = "水果星球的某个地方,一个可怕的战争就要开始……", -- A_Space_Adventure:fruit01
+["Somewhere on the uninhabitable Death Planet ..."] = "不适合居住的死亡星球的某个地方……", -- A_Space_Adventure:death01
+["So, now I got the last part and I have your friends captured."] = "所以,现在我得到了最后的部件,并抓住了你的朋友", -- A_Space_Adventure:death01
+["So, %s, here we are ..."] = "所以,%s,我们到了……", -- A_Space_Adventure:cosmos
+["So the princess was never heard of again ..."] = "所以再没有听说过公主……", -- A_Classic_Fairytale:family
+["So, uhmm, how did you manage to teleport them so far?"] = "所以,呃,你怎么做到把他们传送得那么远?", -- A_Classic_Fairytale:epil
+["Sour"] = "Sour", -- 
+["South America"] = "南美", -- Continental_supplies
+["So? What will it be?"] = "所以,你的选择是什么?", -- A_Classic_Fairytale:shadow
+["So you are able to launch projectiles into your aiming direction, always at full power."] = "所以你要瞄准目标发射炮弹(飞行中总是全力发射)", -- Basic_Training_-_Flying_Saucer
+["So you are interested in Professor Hogevil, huh?"] = "所以你对Hogevil教授感兴趣?", -- A_Space_Adventure:moon02
+["So you basically did the dirty work for us."] = "所以你基本上为我们做脏活", -- A_Classic_Fairytale:dragon
+["Space Invasion"] = "太空入侵", -- Space_Invasion
+["SPACE INVASION"] = "太空入侵", -- Space_Invasion
+["Spacetrip"] = "太空旅行", -- A_Space_Adventure:cosmos
+["Spawn the crate and attack!"] = "创造箱子并攻击", -- WxW
+["Specials: Kings and air generals drop helpers, not weapons"] = "特别: 国王和空军将军掉下工具,不是武器", -- Battalion
+["Special weapons:"] = "特别模式武器:", -- Continental_supplies
+["Special Weapons:"] = "特别模式武器:", -- Continental_supplies
+["Speckles"] = "Speckles", -- 
+["Specs"] = "Specs", -- 
+["Specs Appeal"] = "Specs Appeal", -- 
+["Spectator"] = "Spectator", -- 
+["Speed Roping"] = "Speed Roping", -- Basic_Training_-_Rope
+["Speed Shoppa"] = "Speed Shoppa", -- SpeedShoppa
+["Spike"] = "Spike", -- A_Space_Adventure:desert01
+["Spikes"] = "Spikes", -- 
+["Spiky Cheese"] = "Spiky Cheese", -- A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen, A_Classic_Fairytale:shadow
+["%s, place the first hedgehog!"] = "%s,放置第一个刺猬", -- WxW
+["Spleenlover"] = "Spleenlover", -- A_Classic_Fairytale:united
+["Sponge"] = "Sponge",
+["Spooky Tree"] = "怪树",
+["Sprite Erasure Mode"] = "Sprite删除模式", -- HedgeEditor
+["Sprite Modification Mode"] = "Sprite修改模式", -- HedgeEditor
+["SPRITE MODIFICATION MODE"] = "Sprite修改模式", -- HedgeEditor
+["Sprite Placement Mode"] = "Sprite放置模式", -- Construction_Mode
+["SPRITE PLACEMENT MODE"] = "Sprite放置模式", -- HedgeEditor
+["Sprite Testing Mode"] = "Sprite测试模式", -- Construction_Mode
+["Squirtle"] = "Squirtle", -- 
+["Squishy"] = "Squishy", -- 
+["%s reached home in %.3f seconds. Congratulations!"] = "%s用时%.3f秒回到家,恭喜", -- ClimbHome
+["%s: %s"] = "%s: %s", -- Continental_supplies
+["%s (%s) destroyed %d invaders in one round."] = "%s (%s) 一个回合消灭了%d入侵者", -- Space_Invasion
+["%s (%s) does not have to feel ashamed for their best height of %d."] = "%s (%s) 不必对他们最高记录%d感到惭愧", -- ClimbHome
+["%s, select your continent!"] = "%s,选择你的大陆", -- Continental_supplies
+["%s (%s) gave short shrift to the invaders: Longest combo of %d!"] = "%s (%s) 给了入侵者短暂的忏悔: 最长的连击%d", -- Space_Invasion
+["%s (%s) has been invited to join the Planetary Association of the Hedgehogs, it destroyed a staggering %d invaders in just one round!"] = "%s (%s) 被邀请加入刺猬星球协会,它一回合消灭了%d入侵者", -- Space_Invasion
+["%s (%s) has captured the flag %d times."] = "%s (%s) 夺走光环%d次", -- Capture_the_Flag
+["%s (%s) hate life and suicided %d times."] = "%s (%s) 讨厌生活并自杀%d次", -- Mutant
+["%s should try the rope training mission first."] = "%s应该先试试绳索训练", -- ClimbHome
+["%s (%s) is addicted to killing: %d invaders destroyed in one round."] = "%s (%s) 沉迷杀戮: 一回合消灭了%d入侵者", -- Space_Invasion
+["%s (%s) is a hardened hunter: No misses and %d hits in its best round!"] = "%s (%s) 是一个老练的猎人: 它最好的一回合没有失手打了%d次", -- Space_Invasion
+["%s (%s) is a tumbleweed: %d points in one round."] = "%s (%s) 是一个风滚草: 一回合%d分", -- Space_Invasion
+["%s (%s) is good at this: %d points in only one round!"] = "%s (%s) 擅长这个: 一回合%d分", -- Space_Invasion
+["%s (%s) is Rambo in a hedgehog costume! He destroyed %d invaders in one round."] = "%s (%s) 是穿着刺猬衣服的Rambo,他一回合消灭了%d入侵者", -- Space_Invasion
+["%s skipped ninja classes."] = "%d跳过了忍者课", -- ClimbHome
+["%s spawned at a really bad position."] = "%s 出现在一个很糟糕的位置", -- User_Mission_-_Rope_Knock_Challenge
+["%s splatted."] = "%s 扑通一声", -- User_Mission_-_Rope_Knock_Challenge
+["%s (%s) reached a decent peak height of %d."] = "%s (%s) 到达一个相当好的高度%d", -- ClimbHome
+["%s (%s) reached a peak height of %d."] = "%s (%s) 到达高度%d", -- ClimbHome
+["%s (%s) reached for the sky and beyond with a height of %d!"] = "%s (%s) 为了到达天空和更远,高度%d", -- ClimbHome
+["%s (%s) reached home in %.3f seconds."] = "%s (%s) 在%.3f秒回到家", -- ClimbHome
+["%s (%s) shot %d invaders and never missed in the best round!"] = "%s (%s) 在最好的回合射击了%d入侵者并且没有失手", -- Space_Invasion
+["%s (%s) struck like a meteor: %d points in only one round!"] = "%s (%s) 像陨石一样袭击: 一个回合%d分", -- Space_Invasion
+["%s still had a long way to go."] = "%s还有很长的路要走", -- ClimbHome
+["%s stumbled."] = "%s绊倒了", -- User_Mission_-_Rope_Knock_Challenge
+["%s (%s) tumbles like no other: %d points in one round."] = "%s (%s) 像其他人一样翻滚: 一个回合%d分", -- Space_Invasion
+["%s stumpled."] = "%s绊倒了", -- User_Mission_-_Rope_Knock_Challenge
+["%s (%s) was certainly not afraid of heights: Peak height of %d!"] = "%s (%s) 真的不怕高: 高度%d", -- ClimbHome
+["%s (%s) was lightning-fast! Longest combo of %d, absolutely insane!"] = "%s (%s) 快如闪电,最长的连击%d", -- Space_Invasion
+["%s (%s) was on fire: Longest combo of %d."] = "%s (%s) 着火了: 最长的连击%d", -- Space_Invasion
+["%s (%s) was panicly afraid of the water and decided to get in a safe distance of %d from it."] = "%s (%s) 怕水并爬到安全距离%d", -- ClimbHome
+["%s (%s) was the best baby tumbler: %d points in one round."] = "%s (%s) 是最好的baby tumbler: 一个回合%d分", -- Space_Invasion
+["%s (%s) was the greediest hedgehog and collected %d crates."] = "%s (%s) 是最贪婪的刺猬,收集了%d箱子", -- Mutant
+["%s (%s) was undoubtedly the very best professional tumbler in this game: %d points in one round!"] = "%s (%s) 无疑是最棒的tumbler: 一个回合%d分", -- Space_Invasion
+["Star"] = "Star", -- Big_Armory
+["Status update"] = "状态更新", -- Racer, TechRacer
+["Status Update"] = "状态更新", -- Space_Invasion
+["Stay away from our weapons!"] = "远离我们的武器", -- A_Classic_Fairytale:queen
+["Stay there, comrades!"] = "停在那里,同志们", -- A_Classic_Fairytale:queen
+["Stay there to flee!"] = "停在那里以逃跑", -- A_Space_Adventure:fruit01
+["Steel Eye"] = "Steel Eye", -- A_Classic_Fairytale:queen
+["Step 1: Activate your flying saucer but do NOT move yet!"] = "第一步: 激活你的飞碟但不要移动", -- Basic_Training_-_Flying_Saucer
+["Step 1: Start roping"] = "第一步: 吊在空中", -- Basic_Training_-_Rope
+["Step 2: Select grenade"] = "第二步: 选择手榴弹", -- Basic_Training_-_Rope
+["Step 2: Select your grenade."] = "第二步: 选择你的手榴弹", -- Basic_Training_-_Flying_Saucer
+["Step 3: Drop the grenade"] = "第三步: 丢下手榴弹", -- Basic_Training_-_Rope
+["Step 3: Start flying and get yourself right above the target."] = "第三步: 飞到目标上面", -- Basic_Training_-_Flying_Saucer
+["Step 4: Drop your grenade by pressing the [Long jump] key."] = "第四步: 按[远跳]丢手榴弹", -- Basic_Training_-_Flying_Saucer
+["Step 5: Get away quickly and land safely anywhere."] = "第五步: 快速离开,安全地着陆", -- Basic_Training_-_Flying_Saucer
+["Step By Step"] = "一步一步", -- A_Classic_Fairytale:first_blood
+["Steve"] = "Steve", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
+["Sticky Mine"] = "黏性地雷", -- Continental_supplies
+["Sticky Mine Placement Mode"] = "黏性地雷放置模式", -- Construction_Mode
+["STICKY MINE PLACEMENT MODE"] = "黏性地雷放置模式", -- HedgeEditor
+["Stop, comrades!"] = "停下,同志们", -- A_Classic_Fairytale:queen
+["Stop right there, puny worms!"] = "就停在那,小虫子", -- A_Classic_Fairytale:queen
+["Street Fighters"] = "Street Fighters", -- 
+["Strength: %d (multiplier for ammo)"] = "强度: %d(弹药的乘数)", -- Battalion
+["Strong knockback, but no poison."] = "强力击退,无毒", -- Continental_supplies
+["Stronglings"] = "Stronglings", -- A_Classic_Fairytale:shadow
+["Structure Placement Mode"] = "结构放置模式", -- Construction_Mode
+["Structure Placer"] = "结构放置器", -- Construction_Mode
+["Stupid, stupid Hogerians!"] = "愚蠢的刺猬", -- A_Space_Adventure:final
+["Subtract %d"] = "减去%d", -- HedgeEditor
+["--- Sudden Death ---"] = "---突然死亡---", -- Battalion
+["Summer Squash"] = "Summer Squash", -- A_Space_Adventure:fruit01
+["Sundaland"] = "Sundaland", -- Continental_supplies
+["Sunflame"] = "Sunflame", -- Big_Armory
+["Super weapons: A few crates contain very powerful weapons."] = "超级武器: 少量箱子包含非常强大的武器", -- WxW
+["Super weapons: %s"] = "超级武器: %s", -- WxW
+["Supplies: Each continent gives you unique weapons, specials and health."] = "补给: 每个大陆给你唯一的武器,特别模式和血量", -- Continental_supplies
+["Support Station: Allows placement of crates."] = "支援站: 允许放置箱子", -- Construction_Mode
+["Support Station"] = "支援站", -- Construction_Mode
+["Sure!"] = "当然!", -- A_Classic_Fairytale:epil
+["Surf Before Crate: %s"] = "箱子之前冲浪: %s", -- WxW
+["Surf Before Crate: You must bounce off the water once before you can get crates."] = "箱子之前冲浪: 你必须在能够拿到箱子之前在水面弹跳一次", -- WxW
+["Surfer! +15 points!"] = "冲浪者,+15分", -- Space_Invasion
+["Surfer!"] = "冲浪者", -- WxW
+["Surprise supplies: Get 1-3 random weapons each turn."] = "惊喜补给: 每个回合得到1-3随机武器", -- Continental_supplies
+["Survive!"] = "幸存", -- A_Classic_Fairytale:shadow
+["%s violated the “All But Last” rule and will be penalized."] = "%s 违反了“All But Last”规则,会受到惩罚", -- WxW
+["%s violated the “Kill The Leader” rule and will be penalized."] = "%s 违反了“Kill The Leader”规则,会受到惩罚", -- WxW
+["Swap place with a random enemy in the circle."] = "和圈中一个随机敌人交换位置", -- Continental_supplies
+["%s was a good target."] = "%s是一个好目标", -- User_Mission_-_Rope_Knock_Challenge
+["%s was close to home."] = "%s离家很近", -- ClimbHome
+["%s was damn close to home."] = "%s离家非常近", -- ClimbHome
+["%s was doomed from the beginning."] = "%s一开始就毁灭了", -- User_Mission_-_Rope_Knock_Challenge
+["%s was extracted from the scheme"] = "%s是从方案中提取的", -- Continental_supplies
+["%s was good, but not good enough."] = "%s很好,但不够好", -- ClimbHome
+["%s was knocked away."] = "%s撞走了", -- User_Mission_-_Rope_Knock_Challenge
+["%s was really unlucky."] = "%s真的很不幸", -- User_Mission_-_Rope_Knock_Challenge
+["%s was shoved away."] = "%s推走了", -- User_Mission_-_Rope_Knock_Challenge
+["%s was smashed."] = "%s粉碎了", -- User_Mission_-_Rope_Knock_Challenge
+["Sweet"] = "Sweet", -- 
+["%s went over a quarter of the way towards home."] = "%s走过了四分之一回家的路", -- ClimbHome
+["%s! Why?!"] = "%s!为什么?!", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:united
+["Swing, Leaks A Lot, on the wings of the wind!"] = "摇晃,Leaks A Lot,在风的翅膀", -- A_Classic_Fairytale:first_blood
+["Swing: [Left]/[Right]"] = "摇晃: [左]/[右]", -- Basic_Training_-_Rope
+["%s wins, congratulations!"] = "%s赢了,恭喜", -- A_Space_Adventure:moon01
+["%s wins!"] = "%s赢了", -- Racer, Space_Invasion, TechRacer, ClimbHome
+["%s wins with a best time of %.1fs."] = "%s以最好时间%.1f秒赢了", -- Racer, TechRacer
+["switch"] = "切换", -- Continental_supplies
+["Switch: Drop ball of dirt from parachute (once)"] = "切换: 从降落伞丢下泥球(一次)", -- Continental_supplies
+["Switched to "] = "切换到",
+["Switch Hedgehog (1/3)"] = "切换刺猬(1/3)", -- Basic_Training_-_Movement
+["Switch Hedgehog (2/3)"] = "切换刺猬(2/3)", -- Basic_Training_-_Movement
+["Switch Hedgehog (3/3)"] = "切换刺猬(3/3)", -- Basic_Training_-_Movement
+["Switch Hedgehog (Failed!)"] = "切换刺猬(失败)", -- Basic_Training_-_Movement
+["Switch hedgehog: [Tabulator]"] = "切换刺猬: [Tabulator]", -- Basic_Training_-_Movement
+["Switch Hog"] = "切换刺猬", -- Construction_Mode
+["Switch: Select weapon special"] = "切换: 选择武器特别模式", -- Continental_supplies
+["Switch: Toggle crate radar"] = "切换: 切换箱子雷达", -- WxW
+["%s won!"] = "%s赢了", -- A_Space_Adventure:fruit01
+["Swords"] = "Swords", -- Bazooka_Battlefield
+["Syntax Errol"] = "Syntax Errol", -- A_Classic_Fairytale:dragon
+["%s, you may choose the rules."] = "%s,你可以选择规则", -- WxW
+["szczur"] = "szczur", -- 
+["Tackleberry"] = "Tackleberry", -- 
+["Tails"] = "Tails", -- 
+["Talk about mixed signals..."] = "讨论关于混合信号……", -- A_Classic_Fairytale:dragon
+["Tall Potato"] = "Tall Potato", -- A_Space_Adventure:fruit01
+["Tap [Pause] to see the mission texts"] = "按[Pause]看任务信息", -- Basic_Training_-_Movement
+["Tap the “rotating arrow” button on the left|until you have selected Cappy, the hedgehog with the cap!"] = "按左边的“旋转箭头”按钮|直到你选中Cappy,有帽子的刺猬", -- Basic_Training_-_Movement
+["Target"] = "目标", -- HedgeEditor
+["Target Placement Mode"] = "目标放置模式", -- Construction_Mode
+["TARGET PLACEMENT MODE"] = "目标放置模式", -- HedgeEditor
+["Target Practice: Bazooka (easy)"] = "目标练习: 火箭炮(简单)", -- Target_Practice_-_Bazooka_easy
+["Target Practice: Bazooka (hard)"] = "目标练习: 火箭炮(困难)", -- Target_Practice_-_Bazooka_hard
+["Target Practice: Grenade (easy)"] = "目标练习: 手榴弹(简单)", -- Target_Practice_-_Grenade_easy
+["Target Practice: Grenade (hard)"] = "目标练习: 手榴弹(困难)", -- Target_Practice_-_Grenade_hard
+["Target Practice: Homing Bee"] = "目标练习: 蜜蜂枪", -- Target_Practice_-_Homing_Bee
+["Target Practice: Shotgun"] = "目标练习: 霰弹枪", -- Target_Practice_-_Shotgun
+["Target Puncher"] = "目标捶打者", -- Basic_Training_-_Rope
+["Targets left: %d"] = "目标剩余: %d", -- TargetPractice
+["Tatsujin"] = "Tatsujin", -- 
+["Tatters"] = "Tatters", -- 
+["Team %d"] = "队伍%d", -- SimpleMission
+["Team %d: "] = "队伍%d: ",
+["Team highscore: %d"] = "队伍高分: %d", -- Utils
+["Team Identity Mode"] = "队伍身份模式", -- HedgeEditor
+["TEAM IDENTITY MODE"] = "队伍身份模式", -- HedgeEditor
+["Team lowscore: %d"] = "队伍低分: %d", -- Utils
+["Teams are tied! Continue playing rounds until we have a winner!"] = "队伍平手,继续玩直到出现胜者", -- Space_Invasion
+["Team's best time: %.3fs"] = "队伍最佳时间: %.3f秒", -- Utils
+["Team Scores:"] = "队伍分数:", -- Control
+["Team scores:"] = "队伍分数:", -- Space_Invasion
+["Team's longest time: %.3fs"] = "队伍最长时间: %.3f秒", -- Utils
+["Team's top accuracy: %d%"] = "队伍最高准确度: %d%", -- Utils
+["Teamwork 2"] = "团队工作2", -- User_Mission_-_Teamwork_2
+["Teamwork"] = "团队工作", -- User_Mission_-_Teamwork
+["TechRacer"] = "TechRacer", -- TechRacer
+["Teleporation Node"] = "传送节点", -- Construction_Mode
+["Teleportation Mode"] = "传送模式", -- Construction_Mode
+["Teleportation Node: Allows teleportation|    between other nodes."] = "传送节点: 允许在节点之间传送", -- Construction_Mode
+["Teleportation Node"] = "传送节点", -- Construction_Mode
+["Teleport"] = "传送", -- Construction_Mode, Frenzy
+["Teleport hint: just use the mouse to select the destination!"] = "传送提示: 只要用鼠标选择目的地", -- A_Classic_Fairytale:dragon
+["Teleport hint: Just use the mouse to select the destination!"] = "传送提示: 只要用鼠标选择目的地", -- A_Classic_Fairytale:dragon
+["Teleport to the impact location."] = "传送到子弹打中的位置", -- Continental_supplies
+["Teleport to the top of the map, expect fall damage!"] = "传送到地图顶部,预计掉落伤害", -- Continental_supplies
+["Teleport unsuccessful. Please teleport within a clan teleporter's sphere of influence."] = "传送未成功,请传送到一个战队的传送器影响范围内", -- Construction_Mode
+["Teleport Unsuccessful. Please teleport within a clan teleporter's sphere of influence."] = "传送未成功,请传送到一个战队的传送器影响范围内", -- Construction_Mode
+["Tentacle Terror"] = "恐怖触手", -- Tentacle_Terror
+["Textile industry: Will give you a parachute every second turn."] = "纺织工业: 每两个回合给你一个降落伞", -- Continental_supplies
+["Thanks!"] = "谢谢", -- A_Classic_Fairytale:family
+["Thanks, dude! It really means a lot to me."] = "谢谢老兄,这对我意义重大", -- A_Classic_Fairytale:epil
+["Thanks, man! It really means a lot to me."] = "谢谢老兄,这对我意义重大", -- A_Classic_Fairytale:epil
+["Thank you, Dr. Cornelius."] = "谢谢你,Dr. Cornelius", -- A_Space_Adventure:cosmos
+["Thank you for meeting me on such a short notice!"] = "谢谢你在通知后立刻和我见面", -- A_Space_Adventure:desert01
+["Thank you, my hero!"] = "谢谢你,我的英雄", -- A_Classic_Fairytale:family
+["Thank you, oh, thank you, Leaks A Lot!"] = "谢谢你,Leaks A Lot", -- A_Classic_Fairytale:journey
+["Thank you, oh, thank you, my heroes!"] = "谢谢你,我的英雄", -- A_Classic_Fairytale:journey
+["Thanta"] = "Thanta", -- A_Space_Adventure:ice01
+["That is, indeed, very weird..."] = "那是,确实,非常古怪", -- A_Classic_Fairytale:united
+["That makes it almost invaluable!"] = "那让它几乎无敌", -- A_Classic_Fairytale:enemy
+["That ought to show them!"] = "他们应该尝到苦头了", -- A_Classic_Fairytale:backstab
+["That's all, folks!"] = "那就是全部,大伙", -- A_Classic_Fairytale:epil
+["That's for my father!"] = "那是给我父亲的", -- A_Classic_Fairytale:backstab
+["That shaman sure knows what he's doing!"] = "那个萨满肯定知道他在做什么", -- A_Classic_Fairytale:shadow
+["That Sinking Feeling"] = "淹没的感觉",
+["That's just the way it works, you know."] = "那就是它的工作方式", -- A_Classic_Fairytale:queen
+["That's not our problem!"] = "那不是我们的问题", -- A_Classic_Fairytale:enemy
+["That's typical of you!"] = "那是你的典型", -- A_Classic_Fairytale:family
+["That's why he always wears a hat since then."] = "那就是为什么他从那时起一直戴帽子", -- A_Space_Adventure:moon02
+["That traitor won't be killing us anymore!"] = "那个叛徒不会再杀我们了", -- A_Classic_Fairytale:queen
+["That was just mean!"] = "那真是卑鄙", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:united
+["That was pointless. The flag will respawn next round."] = "那是没意义的,光环会在下一个回合重生", -- CTF_Blizzard
+["The adventure begins!"] = "冒险开始了", -- A_Space_Adventure:cosmos
+["The air bombs are weaker than usual."] = "空袭炸弹比通常的要弱", -- Battalion
+["The aliens respect me, even worship me!"] = "外星人尊重我,甚至崇拜我", -- A_Classic_Fairytale:queen
+["The ally units share their ammo."] = "盟友单位共享他们的弹药", -- A_Space_Adventure:fruit01
+["The ammo of %s has been vaporized"] = "%s的弹药被蒸发", -- Construction_Mode
+["The answer is ... entertainment. You'll see what I mean."] = "答案是……娱乐,你会明白我的意思", -- A_Classic_Fairytale:backstab
+["The answer is...entertaintment. You'll see what I mean."] = "答案是……娱乐,你会明白我的意思", -- A_Classic_Fairytale:backstab
+["The anti-portal surface is all over the floor, and I have nothing to kill him. Dropping something could hurt him enough to kill him."] = "地上全是反传送表层,我没有东西能杀了他。丢下某些能伤害他的东西来杀了他", -- portal
+["The big bang"] = "大爆炸", -- A_Space_Adventure:final
+["The Boss"] = "首领", -- 
+["The boss has fallen! Retreat!"] = "首领倒下了,撤退", -- A_Space_Adventure:moon01
+["The Bull's Eye"] = "靶心", -- A_Classic_Fairytale:first_blood
+["The caves are well hidden, they won't find us there!"] = "洞穴隐藏得很好,他们不会发现我们在那里", -- A_Classic_Fairytale:united
+["The clan of the Red Strawberry wants to take over the dominion and overthrow King Pineapple."] = "红色草莓的氏族想要推翻Pineapple国王接管统治", -- A_Space_Adventure:fruit01
+["The continent of cowards"] = "懦夫的大陆", -- Continental_supplies
+["The continent of dust"] = "尘土的大陆", -- Continental_supplies
+["The continent of firearms"] = "火枪的大陆", -- Continental_supplies
+["The continent of greed"] = "贪婪的大陆", -- Continental_supplies
+["The continent of guerilla tactics"] = "游击战术的大陆", -- Continental_supplies
+["The continent of ice and science"] = "冰和科学的大陆", -- Continental_supplies
+["The continent of medicine"] = "医学的大陆", -- Continental_supplies
+["The continent of ninjas"] = "忍者的大陆", -- Continental_supplies
+["The continent of sports"] = "运动的大陆", -- Continental_supplies
+["The Crate Frenzy"] = "The Crate Frenzy", -- A_Classic_Fairytale:first_blood
+["The Customer is King"] = "The Customer is King", -- Challenge_-_Speed_Shoppa_-_ShoppaKing
+["The device part has been stolen!"] = "设备部件被偷了", -- A_Space_Adventure:fruit02
+["The device part is hidden in one of the crates! Go and get it!"] = "设备部件隐藏在其中一个箱子,去拿到它", -- A_Space_Adventure:desert01
+["The Devs"] = "The Devs", -- 
+["The Dilemma"] = "The Dilemma", -- A_Classic_Fairytale:shadow
+["The editor weapons and tools have been added!"] = "武器和工具编辑器已添加", -- HedgeEditor
+["The editor weapons and tools have been removed!"] = "武器和工具编辑器已移除", -- HedgeEditor
+["The enemies aren't many anyway, it is going to be easy!"] = "敌人不是很多,应该很简单", -- A_Space_Adventure:fruit01
+["The enemy can't move but it might be a good idea to stay out of sight!"] = "敌人不能移动,但呆在视线外是个好主意", -- A_Classic_Fairytale:dragon
+["The enemy has taken a crate which we really needed!"] = "敌人拿走了我们真正需要的箱子", -- SimpleMission
+["The enemy hogs play in a random order."] = "敌人刺猬随机顺序游玩", -- A_Space_Adventure:death02
+["The enemy is hiding out on yonder ducky!"] = "敌人藏在那边的鸭子!",
+["The Enemy Of My Enemy"] = "我的敌人的敌人", -- A_Classic_Fairytale:enemy
+["The explosion is weaker than usual."] = "爆炸比通常要弱", -- Battalion
+["The fastest hedgehog was %s from %s with a time of %.3fs."] = "最快的刺猬是%s从%s,时间%.3f秒", -- TrophyRace
+["The fight begins!"] = "战斗开始", -- A_Space_Adventure:moon01
+["The final part"] = "最后的部件", -- A_Space_Adventure:death01
+["The final targets are quite tricky. You need to aim well."] = "最后的目标很难打中,你需要好好瞄准", -- Basic_Training_-_Bazooka
+["The First Blood"] = "第一滴血", -- A_Classic_Fairytale:first_blood
+["The First Encounter"] = "第一次遭遇", -- A_Classic_Fairytale:shadow
+["The first hedgehog to kill someone becomes the Mutant."] = "第一个杀人的刺猬会成为变种人", -- Mutant
+["The first hedgehog which scores %d or more wins the game."] = "第一个得分%d或更多的刺猬获胜", -- Mutant
+["The first stop"] = "第一站", -- A_Space_Adventure:moon01
+["The first turn will last 25 sec and every other turn 15 sec."] = "第一回合25秒,其他回合15秒", -- A_Space_Adventure:fruit03
+["The flag will respawn next round."] = "光环会在下一回合重生", 
+["The flood has stopped! Challenge over."] = "洪水停止了,挑战结束", -- User_Mission_-_That_Sinking_Feeling
+["The food bites back"] = "食物反咬一口", -- A_Classic_Fairytale:backstab
+["The forgotten continent"] = "遗忘的大陆", -- Continental_supplies
+["The giant umbrella from the last crate should help break the fall."] = "最后一个箱子的大伞应该能帮助你降落", -- A_Classic_Fairytale:first_blood
+["The Great Escape"] = "大逃离", -- User_Mission_-_The_Great_Escape
+["- The green target must survive"] = "- 绿色的目标必须幸存", -- HedgeEditor
+["- The green targets must survive"] = "- 绿色的目标必须幸存", -- HedgeEditor
+["The guardian"] = "守护者", -- A_Classic_Fairytale:shadow
+["The hardships of the war turned %s (%s) into a killing machine: %d invaders destroyed in one round!"] = "战争的艰难把%s(%s)变成杀戮机器: 一个回合消灭了%d入侵者", -- Space_Invasion
+["The health of your current hedgehog|is shown at the top right corner."] = "你当前刺猬的血量显示在右上角", -- Basic_Training_-_Movement
+["The hedgehog with least points (or most deaths) becomes the Bottom Feeder."] = "分数最少(或者死最多次)的刺猬变成喂鱼人", -- Mutant
+["The Hospital"] = "The Hospital", -- 
+["The Individualist"] = "The Individualist", -- A_Classic_Fairytale:shadow
+["Their buildings were very primitive back then, even for an uncivilised island."] = "他们的建筑当时很原始, 即使是一个没有文明的岛屿", -- A_Classic_Fairytale:united
+["The Iron Curtain"] = "The Iron Curtain", -- 
+["The Journey Back"] = "归途", -- A_Classic_Fairytale:journey
+["The king of %s has died!"] = "%s的国王死了", -- Battalion
+["The last encounter"] = "最后的遭遇", -- A_Space_Adventure:death01
+["The last surviving clan wins."] = "最后活着的战队赢", -- TrophyRace
+["The leader escaped. Defeat the rest of the aliens!"] = "首领逃走了,打败剩下的外星人", -- A_Classic_Fairytale:queen
+["The leader seems scared, he will probably flee."] = "首领似乎很害怕,他可能会逃走", -- A_Classic_Fairytale:queen
+["The Leap of Faith"] = "信仰之跃", -- A_Classic_Fairytale:first_blood
+["The meteorite has come too close and the anti-gravity device isn't powerful enough to stop it now."] = "陨石靠得太近,反重力设备不够强大以停止它", -- A_Space_Adventure:cosmos
+["The Moonwalk"] = "The Moonwalk", -- A_Classic_Fairytale:journey
+["The Mutant has super weapons and a lot of health."] = "变种人有超级武器和很多血量", -- Mutant
+["The Mutant has super-weapons and a lot of health."] = "变种人有超级武器和很多血量", -- Mutant
+["The Mutant loses health quickly, but gains health by killing."] = "变种人掉血很快,但杀人会加血", -- Mutant
+["The Mutant loses health quickly if he doesn't keep scoring kills."] = "变种人掉血很快,如果他不保持杀人得分", -- Mutant
+["The Navy greets %s for managing to get in a distance of %d away from the mainland!"] = "海军问候%s,因为他设法远离大陆%d距离", -- ClimbHome
+["The next 4 times you play the \"The last encounter\" mission you'll get 20 more hit points and a laser sight."] = "接下来四次你玩“最后的遭遇”任务,会得到额外20血量和一个激光瞄准", -- A_Space_Adventure:death02
+["The next crate is an utility crate."] = "下一个箱子是工具箱", -- Basic_Training_-_Movement
+["The next one is pretty hard! |Tip: You have to do multiple swings!"] = "下一个很难|提示: 你必须多次摇晃", -- Basic_Training_-_Rope
+["The next target can only be reached by something called “bouncing bomb”."] = "下一个目标只能由“弹跳炸弹”碰到", -- Basic_Training_-_Bazooka
+["The next target is high in the sky."] = "下一个目标在天上", -- Basic_Training_-_Bazooka
+["Then how do they keep appearing?"] = "那他们怎么继续出现?", -- A_Classic_Fairytale:shadow
+["The Ninja-Samurai Alliance"] = "忍者武士联盟", -- 
+["Then prepare for battle!"] = "那就准备战斗", -- A_Space_Adventure:death01
+["Then what am I?"] = "那我是什么?", -- A_Classic_Fairytale:epil
+["The only woman, huh?"] = "唯一的女人,唔?", -- A_Classic_Fairytale:epil
+["The oppression of the elders, of course!"] = "长辈的压迫,当然", -- A_Classic_Fairytale:queen
+["The opression of the elders, of course!"] = "长辈的压迫,当然", -- A_Classic_Fairytale:queen
+["The other hog has died, he should have survived!"] = "其他刺猬都死了,他应该还活着", -- A_Space_Adventure:moon02
+["The other one were all cannibals, spending their time eating the organs of fellow hedgehogs..."] = "其他全是食人族,花时间吃刺猬的器官……", -- A_Classic_Fairytale:first_blood
+["The Police"] = "The Police", -- 
+["The power of love! No, wait, the power of the aliens!"] = "爱的力量,不,等一下,外星人的力量", -- A_Classic_Fairytale:queen
+["The RC plane only carries 2 weak bombs."] = "遥控飞机只携带两个弱炸弹", -- Battalion
+["There are a variety of structures available to aid you."] = "有不同的结构可以帮助你", -- Construction_Mode
+["There are no snarky comments this time."] = "这次没有刻薄的评论", -- Space_Invasion
+["There is one below us!"] = "我们下面有一个", -- A_Space_Adventure:ice01
+["There must be a spy among us!"] = "那一定是我们中间的间谍", -- A_Classic_Fairytale:backstab
+["There's more of them? When did they become so hungry?"] = "那里有更多食人族?他们什么时候变得这么饥饿?", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:united
+["There's nothing more satisfying for me than seeing you share your beauty with the world every morning, my princess!"] = "没有什么比看到你每个早晨和世界分享你的美丽更让我满足,我的公主", -- A_Classic_Fairytale:journey
+["There's nothing more satisfying to us than seeing you share your beauty..."] = "没有什么比看到你分享你的美丽更让我们满足……", -- A_Classic_Fairytale:journey
+["There's nothing more satisfying to us than seeing you share your beauty with the world every morning, my princess!"] = "没有什么比看到你每个早晨和世界分享你的美丽更让我们满足,我的公主", -- A_Classic_Fairytale:journey
+["The respawner respawns %s"] = "重生器重生了%s", -- Construction_Mode
+["The Rising"] = "The Rising", -- A_Classic_Fairytale:first_blood
+["The rope won't get reset."] = "绳索不会被重置", -- A_Space_Adventure:death02
+["The Savior"] = "The Savior", -- A_Classic_Fairytale:journey
+["The score and deaths are shown next to the team bar."] = "分数和死亡在队伍栏旁边显示", -- Mutant
+["These girders are slippery, like ice."] = "这些大梁像冰一样滑", -- Basic_Training_-_Movement
+["These primitive people are so funny!"] = "这些原始人真搞笑", -- A_Classic_Fairytale:backstab
+["These weapon specials cannot be used close to other hogs."] = "这些武器特别不能靠近其他刺猬使用", -- Continental_supplies
+["The Shadow Falls"] = "暗影降临", -- A_Classic_Fairytale:shadow
+["The Showdown"] = "The Showdown", -- A_Classic_Fairytale:shadow
+["The Slaughter"] = "The Slaughter", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:first_blood
+["The Society of Perfectionists greets %s (%s): No misses and %d hits in its best round."] = "完美主义者协会问候%s(%s): 在他最好的回合攻击%d次没有失手", -- Space_Invasion
+["The Specialists: Each hedgehog starts with its own weapon set"] = "专家: 每个刺猬有自己的武器集", -- The_Specialists
+["The spinning arrows above your hedgehog show|which hedgehog is selected right now."] = "你的刺猬的上面显示的旋转箭头表示正在选择他", -- Basic_Training_-_Movement
+["The spirits of the ancerstors are surely pleased, Leaks A Lot."] = "祖先的灵魂一定很高兴,Leaks A Lot", -- A_Classic_Fairytale:first_blood
+["The spirits of the ancestors are surely pleased, Leaks A Lot."] = "祖先的灵魂一定很高兴,Leaks A Lot", -- A_Classic_Fairytale:first_blood
+["The targets will guide you through the training."] = "目标会指引你通过训练", -- Basic_Training_-_Rope
+["The team continued their quest of finding the rest of the tribe."] = "队伍继续他们寻找剩余部落的任务", -- A_Classic_Fairytale:queen
+["The teams are tied for the fastest time."] = "队伍的最快时间平手", -- Racer, TechRacer
+["The teams were tied, so an additional round has been played to determine the winner."] = "队伍平手,所以要再玩一个回合决定胜者", -- Space_Invasion
+["The teams were tied, so %d additional rounds have been played to determine the winner."] = "队伍平手,所以要再玩%d回合决定胜者", -- Space_Invasion
+["The time that you have left when you reach the blue hedgehog will be added to the next turn."] = "你碰到蓝色刺猬的剩余时间会添加到下一回合", -- A_Space_Adventure:moon02
+["The Torment"] = "The Torment", -- A_Classic_Fairytale:first_blood
+["The truth about Professor Hogevil"] = "关于Hogevil教授的真相", -- A_Space_Adventure:moon02
+["The tunnel entrance is over there."] = "隧道的入口在那里", -- A_Space_Adventure:desert01
+["The tunnel is about to get flooded!"] = "隧道就要淹没了", -- A_Space_Adventure:desert02
+["The Tunnel Maker"] = "The Tunnel Maker", -- A_Classic_Fairytale:journey
+["The Ultimate Weapon"] = "终极武器", -- A_Classic_Fairytale:first_blood
+["The Union"] = "联盟", -- A_Classic_Fairytale:enemy
+["The Union: You can select a hedgehog at the start of your turns."] = "联盟: 你可以在回合开始选择一个刺猬", -- Continental_supplies
+["The village, unprepared, was destroyed by the cyborgs..."] = "村子,没有准备好,被机器人摧毁了", -- A_Classic_Fairytale:journey
+["The walk of Fame"] = "The walk of Fame", -- A_Classic_Fairytale:shadow
+["The wasted youth"] = "The wasted youth", -- A_Classic_Fairytale:first_blood
+["The way you handled your little internal conflicts …"] = "你处理你的小内部冲突的方式……", -- A_Classic_Fairytale:queen
+["The weapon in that last crate was bestowed upon us by the ancients!"] = "最后的箱子里的武器是祖先赋予我们的", -- A_Classic_Fairytale:first_blood
+["The what?!"] = "The what?!", -- A_Classic_Fairytale:dragon
+["The wind whispers that you are ready to become familiar with tools, now..."] = "风声低语你准备好变得熟悉工具,现在……", -- A_Classic_Fairytale:first_blood
+["The wrong hedgehog has taken the crate."] = "错误的刺猬拿到了箱子", -- SimpleMission
+["They are all waiting back in the village, haha."] = "他们都在村子里等着,哈哈", -- A_Classic_Fairytale:enemy
+["They are up there! Take this rope and hurry!"] = "他们在那里,拿着这个绳索并赶快", -- A_Space_Adventure:moon01
+["They Call Me Bullseye! +16 points!"] = "他们叫我靶心,+16分", -- Space_Invasion
+["They have weapons we've never seen before!"] = "他们有我们从没见过的武器", -- A_Classic_Fairytale:united
+["They keep appearing like this. It's weird!"] = "他们一直这样出现,有点奇怪", -- A_Classic_Fairytale:united
+["They killed %s! You bastards!"] = "他们杀了%s,你这个混蛋", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:united
+["They must be trying to weaken us!"] = "他们一定是在试图削弱我们", -- A_Classic_Fairytale:enemy
+["They never learn"] = "They never learn", -- A_Classic_Fairytale:journey
+["They stumbled upon a pile of weapons, they seemed to be getting closer."] = "他们绊倒在一堆武器,他们似乎更接近了", -- A_Classic_Fairytale:queen
+["They told us to wear these clothes. They said that this is the newest trend."] = "他们叫我们穿上这些衣服,他们说这是新潮流", -- A_Classic_Fairytale:enemy
+["They've been manipulating us all this time!"] = "他们一直在操控我们", -- A_Classic_Fairytale:enemy
+["They won't hesitate to attack you in order to rob you!"] = "他们不会犹豫攻击并抢劫你", -- A_Space_Adventure:desert01
+["The Zoo"] = "The Zoo", -- 
+["Thighlicker"] = "Thighlicker", -- A_Classic_Fairytale:united
+["Things are going to get messy around here."] = "这里的事情越来越乱", -- A_Space_Adventure:fruit01
+["This allows to select any hedgehog in your team!"] = "这个允许你选择队伍中任意刺猬", -- Basic_Training_-_Movement
+["This allows you to create a crate anywhere|within your clan's area of influence,|at the cost of energy."] = "这个允许你在战队的影响范围内|任何地方创造一个箱子", -- Construction_Mode
+["This allows you to create and place mines,|sticky mines and barrels anywhere within your|clan's area of influence at the cost of energy."] = "这个允许你在战队的影响范围内|任何地方创造和放置一个地雷、黏性地雷和油桶", -- Construction_Mode
+["This allows you to create and place mines,|sticky mines and barrels anywhere within your|clan's area of influence at the cost of energy.|Up/down: Choose object type|Left/right: Choose timer (for mines)|Cursor: Place object"] = "这个允许你在战队的影响范围内|任何地方创造和放置一个地雷、黏性地雷和油桶|上/下: 选择物体|左/右: 选择定时器(地雷)|光标: 放置物体", -- Construction_Mode
+["This almost concludes our tutorial."] = "我们的教程就要结束了", -- Basic_Training_-_Flying_Saucer
+["This also increases the effectiveness of Medicine."] = "这个能增加药效", -- Continental_supplies
+["This game wasn’t really exciting."] = "这个游戏不是真的刺激", -- Space_Invasion
+["This is a new personal best, congratulations!"] = "这是新的个人最佳记录,恭喜", -- A_Space_Adventure:death02, A_Space_Adventure:desert02, A_Space_Adventure:fruit03
+["This is a new personal best time, congratulations!"] = "这是新的个人最佳时间,恭喜", -- A_Space_Adventure:ice02, A_Space_Adventure:moon02
+["This is Cappy."] = "这个是Cappy", -- Basic_Training_-_Movement
+["This is it! It's time to make Fell From Heaven fall for me..."] = "就是这个,是时候让Fell From Heaven爱上我……", -- A_Classic_Fairytale:first_blood
+["This island is the only place left on Earth with grass on it!"] = "这个岛屿是地球上唯一有草的地方", -- A_Classic_Fairytale:enemy
+["This is seems like a wealthy hedgehog, nice ..."] = "好像是个有钱的刺猬,很好……", -- A_Space_Adventure:desert01
+["This is the mission panel."] = "这是任务面板", -- Basic_Training_-_Movement
+["This is the Olympic stadium of saucer flying."] = "这是飞碟的奥林匹克体育场", -- A_Space_Adventure:ice02
+["This is the Olympic Stadium of Saucer Flying."] = "这是飞碟的奥林匹克体育场", -- A_Space_Adventure:ice02
+["This is typical!"] = "这是典型的", -- A_Classic_Fairytale:dragon
+["This must be some kind of sorcery!"] = "这一定是某种巫术", -- A_Classic_Fairytale:shadow
+["This must be the caves!"] = "这一定是洞穴", -- A_Classic_Fairytale:backstab
+["This one's tricky."] = "这个有点难,打个洞",
+["This planet seems dangerous!"] = "这个星球似乎很危险", -- A_Space_Adventure:cosmos
+["This rain is really something..."] = "下大雨了",
+["This round’s award for ultimate disappointment goes to: Everyone!"] = "这个回合的终极失望奖给: 每个人", -- ClimbHome
+["This seems like a wealthy hedgehog, nice ..."] = "好像是个有钱的刺猬,很好……", -- A_Space_Adventure:desert01
+["This %s is so naive! I'm going to shoot this fool so I can keep that device for myself!"] = "这个%s真幼稚,我打算射击这个傻子,自己留着设备", -- A_Space_Adventure:fruit02
+["This was an awesome performance! But this challenge can be finished with even just one RC plane. Can you figure out how?"] = "真是精彩的表演,但这个挑战可以只用一个遥控飞机完成,你能做到吗", -- User_Mission_-_RCPlane_Challenge
+["This will be fun!"] = "这会很有趣", -- A_Classic_Fairytale:enemy
+["This will be useful when I need a new platform or if I want to rise."] = "这会很有用,当我需要一个新的平台,或者我想要上升", -- portal
+["This will certainly come in handy."] = "这肯定会派上用场", -- User_Mission_-_Teamwork_2
+["This will certianly come in handy."] = "这肯定会派上用场", -- User_Mission_-_Teamwork_2
+["Thompson"] = "Thompson", -- 
+["Those aliens are destroying the island!"] = "这些外星人正在破坏岛屿", -- A_Classic_Fairytale:family
+["Those were scheduled for disposal anyway."] = "不管怎样,这些都是预定要处理的", -- A_Classic_Fairytale:dragon
+["Throw a 1 second mine!"] = "投掷一个1秒的地雷", -- Continental_supplies
+["Throw a baseball at your foes|and send them flying!"] = "向你的敌人投掷一个棒球|让他们起飞", -- Knockball
+["Throw a grenade to destroy the target!"] = "投掷一个手榴破坏毁目标", -- Basic_Training_-_Grenade
+["Throw some grenades to destroy the targets!"] = "投掷一些手榴破坏毁目标", -- Basic_Training_-_Grenade
+["Thug #%d"] = "暴徒#%d", -- A_Space_Adventure:death01
+["Tie-breaking round %d"] = "打破平局的回合%d", -- Space_Invasion
+["Timbers"] = "Timbers", -- 
+["Time: %.1fs"] = "时间: %.1f秒", -- Racer, TechRacer
+["Time: %.3fs by %s"] = "时间: %s的%.3f秒", -- TrophyRace
+["Time: %.3fs"] = "时间: %.3f秒", -- TrophyRace
+["Time Box"] = "时光箱", -- Construction_Mode
+["Timed Kamikaze! +10 points!"] = "Timed神风特攻队,+10分", -- Space_Invasion
+["Time extended! +%dsec"] = "时间延长,+%d秒", -- Space_Invasion
+["Time extension: %ds"] = "时间延长: %d秒", -- Tumbler
+["Time for a more interesting stunt, but first just collect the next crate!"] = "更有趣的绝技时间,但先收集下一个箱子", -- Basic_Training_-_Flying_Saucer
+["Timer"] = "定时器", -- Basic_Training_-_Grenade
+["Time's up!"] = "时间到", -- Basic_Training_-_Sniper_Rifle, SpeedShoppa, Space_Invasion
+["Time’s up!"] = "时间到", -- TargetPractice
+["Time to run!"] = "逃跑时间", -- A_Space_Adventure:fruit01
+["Tip: Changing your aim while flying is very difficult, so adjust it before you take off."] = "提示: 在飞行时改变瞄准是很难的,所以在起飞前调整好", -- Basic_Training_-_Flying_Saucer
+["Tip: Don't remain for too long in the water, or you won't make it."] = "提示: 不要在水里停留太长时间", -- Basic_Training_-_Flying_Saucer
+["Tip: If you get stuck in this training, use \"Skip turn\" to restart the current objective."] = "提示: 如果你在这个训练卡住,使用“跳过回合”来重新开始当前目标", -- Basic_Training_-_Flying_Saucer
+["Tip: See the \"esc\" key (this menu) if you want to see the currently playing teams continent, or that continents specials."] = "提示: 按“Esc”如果你想看当前游玩的队伍的大陆,或者大陆的特别模式", -- Continental_supplies
+["Tip: See the \"Esc\" key (this menu) if you want to see the currently playing teams continent, or that continents specials."] = "提示: 按“Esc”如果你想看当前游玩的队伍的大陆,或者大陆的特别模式", -- Continental_supplies
+["Tip: The rope physics are different than in the real world, |use it to your advantage!"] = "提示: 绳索的物理效果不同于真实世界|利用它为你带来好处", -- Basic_Training_-_Rope
+["Tip: You can change your flying saucer|in mid-flight by hitting the [Attack] key twice."] = "提示: 你可以在空中按两次[攻击]改变你的飞碟", -- Basic_Training_-_Flying_Saucer
+["Tiyuri"] = "Tiyuri", -- 
+["Toad"] = "Toad", -- 
+["To begin, walk to the crate to the right."] = "走到右边的箱子", -- Basic_Training_-_Movement
+["To begin with the training, hit the attack key!"] = "按攻击键开始训练", -- Basic_Training_-_Movement
+["To begin with the training, select the bazooka from the ammo menu!"] = "从弹药菜单选择火箭炮开始训练", -- Basic_Training_-_Bazooka
+["To begin with the training, select the grenade from the ammo menu!"] = "从弹药菜单选择手榴弹开始训练", -- Basic_Training_-_Grenade
+["To begin with the training, tap the attack button!"] = "按攻击键开始训练", -- Basic_Training_-_Movement
+["To finish hedgehog selection, just do anything|with him, like walking."] = "要完成刺猬选择,随便做点什么,比如走动", -- Basic_Training_-_Movement
+["To get over the next obstacles, keep some distance from the wall before you back jump."] = "克服下一个障碍,后跳前和墙壁保持一点距离", -- Basic_Training_-_Movement
+["To get over the water, you have to do multiple|rope shots and swings."] = "要越过水面,你必须多次发射绳索和摇晃", -- Basic_Training_-_Rope
+["Toggle Editing Weapons and Tools: [Precise]+[2]"] = "切换编辑武器和工具: [精确]+[2]", -- HedgeEditor
+["Toggle Help: [Precise]+[1]"] = "切换帮助: [精确]+[1]", -- HedgeEditor
+["Toggle Placement/Deletion: [Left], [Right]"] = "切换放置/删除: [左]/[右]", -- HedgeEditor
+["Toggle Shield: [Long jump]"] = "切换护盾: [远跳]", -- Space_Invasion
+["To help you, of course!"] = "当然是来帮你", -- A_Classic_Fairytale:journey
+["To launch a projectile in mid-flight, hold [Precise] and press [Long jump]."] = "要在飞行中发射炮弹,长按[精确]和按[远跳]", -- Basic_Training_-_Flying_Saucer
+["Tony"] = "Tony", -- 
+["Too bad! Then you should really leave!"] = "太糟糕了,然后你真的该离开", -- A_Space_Adventure:fruit01
+["Too slow! Try again ..."] = "太慢了,再试一次", -- A_Space_Adventure:moon02
+["Top-class elite pilot"] = "顶级精英飞行员", -- User_Mission_-_RCPlane_Challenge
+["To reach higher ground, walk to a ledge, look to the left, then do a back jump."] = "要到达更高的地面,走到墙边,看向左边,后跳", -- Basic_Training_-_Movement
+["Torn Muscle"] = "Torn Muscle", -- A_Classic_Fairytale:journey
+["To the caves..."] = "去洞穴……", -- A_Classic_Fairytale:united
+["Touch all waypoints as fast as you can!"] = "尽快触碰所有路径点", -- Racer
+["- Touch the sparkles near your base to teleport"] = "- 触碰你的基地附近的火花来传送", -- CTF_Blizzard
+["To win the game, %s has to get the bottom crates and come back to the surface."] = "要在游戏中获胜,%s必须得到底部的箱子并回到表面", -- A_Space_Adventure:fruit02
+["To win the game you had to collect the 2 crates with no specific order."] = "要在游戏中获胜,你必须收集两个箱子(无指定顺序)", -- A_Space_Adventure:desert01
+["To win the game you have to eliminate Professor Hogevil."] = "要在游戏中获胜,你必须干掉Hogevil教授", -- A_Space_Adventure:death01
+["To win the game you have to find the right crate."] = "要在游戏中获胜,你必须找到正确的箱子", -- A_Space_Adventure:desert01
+["To win the game you have to go next to Thanta."] = "要在游戏中获胜,你必须靠近Thanta", -- A_Space_Adventure:ice01
+["To win the game you have to go to the surface."] = "要在游戏中获胜,你必须去到表面", -- A_Space_Adventure:desert02
+["To win the game you have to pass into the rings in time."] = "要在游戏中获胜,你必须在时间内进入环", -- A_Space_Adventure:ice02
+["To win the game you have to stand next to Thanta."] = "要在游戏中获胜,你必须站在Thanta旁边", -- A_Space_Adventure:ice01
+["Toxic Team"] = "Toxic Team", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork
+["Track completed!"] = "赛道完成", -- Racer, TechRacer
+["Training"] = "训练", -- Basic_Training_-_Flying_Saucer, Basic_Training_-_Rope
+["Training complete!"] = "训练完成", -- Basic_Training_-_Flying_Saucer
+["Traitors"] = "叛徒", -- A_Classic_Fairytale:epil
+["Traitors don't get to shout around here!"] = "叛徒别在这里大叫", -- A_Classic_Fairytale:epil
+["Trapper"] = "Trapper", -- HedgeEditor
+["Travel carefully as your fuel is limited"] = "旅行小心因为你的燃料是有限的", -- A_Space_Adventure:cosmos
+["Travel to all the neighbor planets and collect all the pieces"] = "旅行到所有邻近行星收集所有部件", -- A_Space_Adventure:cosmos
+["Treasure: Massive weapon bonus in first turn."] = "宝藏: 第一回合大量武器奖励", -- Continental_supplies
+["Tribe"] = "部落", -- A_Classic_Fairytale:backstab
+["TrophyRace"] = "TrophyRace",
+["Trunks"] = "Trunks", -- 
+["Try again!"] = "再试一次", -- Basic_Training_-_Flying_Saucer
+["Try it now and dive here to collect the crate on the right girder."] = "现在在这里试着潜水来收集右边大梁的箱子", -- Basic_Training_-_Flying_Saucer
+["Try not to get spotted by the guards!"] = "试着不被卫兵发现", -- A_Space_Adventure:cosmos
+["Try out different bounciness levels to reach difficult targets."] = "试着用不同的弹力炸到困难的目标", -- Basic_Training_-_Grenade
+["Try to be smart and eliminate them quickly. This way you might scare off the rest!"] = "试着尽快消灭他们,这样你可能吓跑剩下的", -- A_Space_Adventure:fruit01
+["Try to keep as many allies alive as possible."] = "试着尽可能让盟友活下来", -- A_Space_Adventure:fruit01
+["Try to land softly, as you can still take fall damage!"] = "缓慢着陆,不然你会受到坠落伤害", -- Basic_Training_-_Flying_Saucer
+["Try to protect the chief! You won't lose if he dies, but it is advised that he survives."] = "试着保护首领,如果他死了你不会输,但是建议让他活着", -- A_Classic_Fairytale:united
+["Try to reach and destroy the next target quickly."] = "试着快速接近并破坏下一个目标", -- Basic_Training_-_Rope
+["Tumbler"] = "Tumbler", -- Tumbler
+["Turn around: [Left Shift] + [Left]/[Right]"] = "转身: [左Shift]+[左]/[右]", -- Basic_Training_-_Movement
+["Turning Around"] = "转身", -- Basic_Training_-_Movement
+["Turns: Hogs get %d random weapon(s) from their pool"] = "回合: 刺猬从他们职业得到%d随机武器", -- Battalion
+["Turns: King's health is set to %d%% of the team health"] = "回合: 国王的血量设为队伍血量的%d%%", -- Battalion
+["Turns left: %d"] = "剩余回合: %d", -- A_Classic_Fairytale:journey
+["Turns: Refill %d weapon and %d helper points|and randomize weapons and helpers based on team points"] = "回合: 基于队伍分数重新装满%d武器和%d工具分数|和随机武器和工具", -- Battalion
+["Turns until arrival: %d"] = "回合直到到达: %d", -- A_Classic_Fairytale:backstab
+["Turn Time: %dsec"] = "回合时间: %d秒", -- Space_Invasion
+["Twenty-Twenty"] = "Twenty-Twenty", -- 
+["Two flowers: All missions complete"] = "两朵花: 所有任务完成", -- A_Space_Adventure:cosmos
+["Two little hogs cooperating, getting past obstacles..."] = "两个小刺猬合作通过障碍", -- A_Classic_Fairytale:journey
+["Ugly Mug"] = "Ugly Mug", -- 
+["Uhm...I met one of them and took his weapons."] = "呃……我遇到他们其中一个并拿走他的武器", -- A_Classic_Fairytale:shadow
+["Uhmm, it's … uhm … my ring!"] = "呃……这是……我的戒指", -- A_Classic_Fairytale:queen
+["Uhmm...ok no."] = "呃……好吧,不是", -- A_Classic_Fairytale:enemy
+["Ukemi"] = "Ukemi", -- 
+["Ultra kill!"] = "Ultra kill", -- Mutant
+["unC0Rr"] = "unC0Rr", -- 
+["Under Construction"] = "建造", -- A_Classic_Fairytale:shadow
+["Under normal circumstances we could easily defeat them but we have kindly sent most of our men to the Kingdom of Sand to help with the annual dusting of the king's palace."] = "在正常情况我们可以轻松打败他们,但我们好心地派出大部分人去沙之王国,帮助国王宫殿的每年打扫", -- A_Space_Adventure:fruit01
+["Under the meteorite’s shadow ..."] = "陨石的阴影之下", -- A_Space_Adventure:cosmos
+["Under the meteorites shadow ..."] = "陨石的阴影之下", -- A_Space_Adventure:cosmos
+["Unexpected Igor"] = "Unexpected Igor", -- A_Classic_Fairytale:dragon
+["Unique new weapons"] = "新的唯一武器", -- Continental_supplies
+["Unit"] = "单位",
+["Unit 0x0007"] = "单位 0x0007", -- A_Classic_Fairytale:family
+["Unit 189"] = "单位 189", -- 
+["Unit 234"] = "单位 234", -- 
+["Unit 333"] = "单位 333", -- 
+["Unit 334a$7%;.*"] = "单位 334a$7%;.*", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:family, A_Classic_Fairytale:queen, A_Classic_Fairytale:united
+["Unit 3378"] = "单位 3378",
+["Unit 485"] = "单位 485", -- 
+["Unit 527"] = "单位 527", -- 
+["Unit 638"] = "单位 638", -- 
+["Unit 709"] = "单位 709", -- 
+["Unit 835"] = "单位 835",
+["Unit 881"] = "单位 881", -- User_Mission_-_Newton_and_the_Hammock
+["Unit 883"] = "单位 883", -- 
+["United We Stand"] = "团结则存", -- A_Classic_Fairytale:united
+["Unlike bazookas, grenades are not influenced by wind."] = "不像火箭炮,手榴弹不受风力影响", -- Basic_Training_-_Grenade
+["Unlimited Attacks: Attacks don't end your turn"] = "无限攻击: 攻击不会结束你的回合", -- User_Mission_-_Diver, User_Mission_-_Nobody_Laugh, User_Mission_-_Spooky_Tree
+["Unlucky Sods"] = "Unlucky Sods", -- User_Mission_-_Rope_Knock_Challenge
+["Unstoppable!"] = "无人能挡!",
+["Unsuspecting Louts"] = "Unsuspecting Louts", -- User_Mission_-_Rope_Knock_Challenge
+["Up/Down: Adjust dust storm damage"] = "上/下: 调整沙尘暴伤害", -- Continental_supplies
+["Up/Down: Browse through continents"] = "上/下: 浏览大陆", -- Continental_supplies
+["Up/Down: Change placement mode"] = "上/下: 改变放置模式", -- HedgeEditor
+["Up/down: Choose crate type"] = "上/下: 选择箱子类型", -- Construction_Mode
+["Up/down: Choose object type|1-5/Switch/Left/Right: Choose mine timer|Cursor: Place object"] = "上/下: 选择物体类型|1-5/切换/上/下: 选择地雷定时器", -- Construction_Mode
+["Upper-class elite pilot"] = "上等精英飞行员", -- User_Mission_-_RCPlane_Challenge
+["Upside-Down World"] = "颠倒的世界", -- Continental_supplies
+["Use it wisely!"] = "明智地使用它", -- A_Classic_Fairytale:dragon
+["Use it with precaution!"] = "小心使用", -- A_Classic_Fairytale:first_blood
+["User Challenge"] = "玩家挑战",
+["!"] = "!", -- User_Mission_-_Dangerous_Ducklings
+["User Mission"] = "玩家任务", -- HedgeEditor
+["Use the attack key twice to change the flying saucer while being in air."] = "升空时按两次攻击键改变飞碟", -- A_Space_Adventure:ice02
+["Use the attack key twice to change the flying saucer while floating in mid-air."] = "飞行时按两次攻击键改变飞碟", -- A_Space_Adventure:ice02
+["Use the bazooka and the flying saucer to get the freezer."] = "使用火箭炮和飞碟得到冰冻枪", -- A_Space_Adventure:ice01
+["Use the flying saucer from the crate to fly to the moon."] = "使用从箱子里得到的飞碟飞到月球", -- A_Space_Adventure:cosmos
+["Use the flying saucer to fly the other planets."] = "使用飞碟飞到其他星球", -- A_Space_Adventure:cosmos
+["Use the flying saucer to fly to the other planets."] = "使用飞碟飞到其他星球", -- A_Space_Adventure:cosmos
+["Use the parachute to get the next crate."] = "使用降落伞得到下一个箱子", -- A_Classic_Fairytale:first_blood
+["Use the portal gun to get to the next crate, then use the new gun to get to the final destination!|"] = "使用传送门枪得到下一个箱子,然后使用新的武器到达终点|", -- A_Classic_Fairytale:dragon
+["Use the RC plane and destroy the all the targets."] = "使用遥控飞机破坏所有目标", -- A_Space_Adventure:desert03
+["Use the rope in order to catch the blue hedgehog"] = "使用绳索追上蓝色刺猬", -- A_Space_Adventure:moon02
+["Use the rope to complete the obstacle course!"] = "使用绳索完成障碍课程", -- Basic_Training_-_Rope
+["Use the rope to get on the head of the mole, young one!"] = "使用绳索登上鼹鼠的头,年轻人", -- A_Classic_Fairytale:first_blood
+["Use the rope to get to the crate"] = "使用绳索接近箱子", -- A_Space_Adventure:cosmos
+["Use the rope to get to the target!"] = "使用绳索接近目标", -- Basic_Training_-_Rope
+["Use the rope to knock your enemies to their doom."] = "使用绳索把你的敌人撞下去", -- User_Mission_-_Rope_Knock_Challenge
+["Use the rope to quickly get to the surface!"] = "使用绳索快速到达表面", -- A_Space_Adventure:desert02
+["Use the saucer and fly away"] = "使用飞碟飞走", -- A_Space_Adventure:cosmos
+["Use the saucer and fly to the moon"] = "使用飞碟飞到月球", -- A_Space_Adventure:cosmos
+["Use the shield to protect yourself from bazookas."] = "使用护盾保护自己不受火箭炮伤害", -- Space_Invasion
+["Use the structure placer to place structures."] = "使用结构放置器放置结构", -- Construction_Mode
+["Use your ammo wisely."] = "明智地使用你的弹药", -- A_Space_Adventure:desert01
+["Use your available weapons in order to eliminate the enemies."] = "使用可用的武器消灭敌人", -- A_Space_Adventure:death02, A_Space_Adventure:fruit03
+["Use your ready time to think."] = "使用你的准备时间来思考", -- Frenzy
+["Use your rope to collect all crates as fast as possible."] = "使用绳索尽快收集所有箱子", -- SpeedShoppa
+["Use your rope to get from start to finish as fast as you can!"] = "使用绳索尽快从起点到达终点",
+["Use your rope to get to the next target, then destroy it!"] = "使用绳索接近下一个目标,然后破坏它", -- Basic_Training_-_Rope
+["Utility Crate Placement Mode"] = "工具箱放置模式", -- Construction_Mode
+["UTILITY CRATE PLACEMENT MODE"] = "工具箱放置模式", -- HedgeEditor
+["Utility crates extend your time."] = "工具箱延长你的时间", -- Tumbler
+["Variants: Hogs will be randomized from 12 different variants"] = "职业: 刺猬会随机变成12个不同的职业之一", -- Battalion
+["Variants: Kings and air generals are disabled"] = "职业: 国王和空军将军被禁用", -- Battalion
+["Variants: The last hog of each team will be a king"] = "职业: 每个队伍最后一个的刺猬变成国王", -- Battalion
+["Vedgies"] = "Vedgies", -- A_Classic_Fairytale:journey
+["Vega"] = "Vega", -- 
+["Vegan Jack"] = "Vegan Jack", -- A_Classic_Fairytale:enemy
+["Very valuable, haha!"] = "非常值钱,哈哈", -- A_Classic_Fairytale:queen
+["Victory!"] = "胜利", -- Basic_Training_-_Rope
+["Victory Condition: Collect"] = "胜利条件: 收集", -- HedgeEditor
+["Victory Condition: Destroy"] = "胜利条件: 破坏", -- HedgeEditor
+["Victory for %s!"] = "%s胜利", -- Capture_the_Flag
+["Violence is not the answer to your problems!"] = "暴力不是你的问题的答案", -- A_Classic_Fairytale:first_blood
+["Visit the planets of Ice, Desert and Fruit before you proceed to the Death Planet"] = "在你继续死亡星球之前,参观冰冻、沙漠和水果星球", -- A_Space_Adventure:cosmos
+["Vladimir"] = "Vladimir", -- 
+["Void"] = "Void", -- Big_Armory
+["Voldemort"] = "Voldemort", -- portal
+["Voltorb"] = "Voltorb", -- 
+["Wait a moment …"] = "等一下……", -- A_Space_Adventure:final
+["Walking on Ice"] = "冰上行走", -- Basic_Training_-_Movement
+["Walk: [Left] and [Right]"] = "行走: [左]/[右]", -- Basic_Training_-_Movement
+["Walk: [Left]/[Right]"] = "行走: [左]/[右]", -- Basic_Training_-_Bazooka
+["Wall Before Crate: You must touch the marked wall before you can get crates."] = "箱子之前的墙壁: 在你能得到箱子之前,你必须触碰标记的墙壁", -- WxW
+["Walls Before Crate: You must touch the %d marked walls before you can get crates."] = "箱子之前的墙壁: 在你能得到箱子之前,你必须触碰%d标记的墙壁", -- WxW
+["Wall set: No walls"] = "墙壁设置: 无", -- WxW
+["Wall set: %s (%d walls)"] = "墙壁设置: %s(%d墙壁)", -- WxW
+["Wall set: %s"] = "墙壁设置: %s", -- WxW
+["Walls left: %d"] = "墙壁剩余: %d", -- WxW
+["Wall to wall"] = "墙到墙", -- WxW
+["Waluigi"] = "Waluigi", -- 
+["Wario"] = "Wario", -- 
+["Warming Up"] = "热身", -- Basic_Training_-_Grenade
+["Warning: Fire cake detected"] = "警告: 检测到火蛋糕", -- ClimbHome
+["Warning: Never ever leave the flying saucer while in water!"] = "警告: 在水里千万不要离开飞碟", -- Basic_Training_-_Flying_Saucer
+["WARNING: Sabotage detected!"] = "警告: 检测到妨害", -- Continental_supplies
+["Warrior"] = "战士", -- Battalion
+[" was extracted from the scheme|- This continent will be able to use the specials from the other continents!"] = "- 是从方案中提取|- 这个大陆可以从其他大陆使用特别模式", -- Continental_supplies
+["WatchBot 4000"] = "WatchBot 4000", -- User_Mission_-_Teamwork_2
+["Watch your steps, young one!"] = "小心脚下,年轻人", -- A_Classic_Fairytale:first_blood
+["Watermelon Heart"] = "Watermelon Heart", -- A_Space_Adventure:fruit02
+["Water: Rises by 37 per turn"] = "水面: 每个回合上升37", -- Battalion
+["Waypoint Editing Mode"] = "路径点编辑模式", -- HedgeEditor
+["WAYPOINT EDITING MODE"] = "路径点编辑模式", -- HedgeEditor
+["Waypoint placed. Available points remaining: %d"] = "路径点已放置,可用路径点还有: %d", -- Racer
+["Waypoint placement phase"] = "路径点放置阶段", -- Racer
+["Waypoint removed. Available points: %d"] = "路径点已移除,可用的路径点: %d", -- Racer
+["Waypoints remaining: %d"] = "路径点还有: %d", -- Racer, TechRacer
+["Weaklings"] = "Weaklings", -- A_Classic_Fairytale:shadow
+["We all know what happens when you get frightened..."] = "我们都知道当你害怕时发生了什么", -- A_Classic_Fairytale:first_blood
+["Weapon Crate Placement Mode"] = "武器箱放置模式", -- Construction_Mode
+["WEAPON CRATE PLACEMENT MODE"] = "武器箱放置模式", -- HedgeEditor
+["Weapon Filter"] = "武器过滤器", -- Construction_Mode
+["Weapon Filter: Dematerializes all ammo|    carried by enemies entering it."] = "武器过滤器: 进入的敌人的所有弹药消失", -- Construction_Mode
+["weaponschemes"] = "武器方案", -- Continental_supplies
+["Weapons: Each team starts with %d weapon points"] = "武器: 每个队伍有%d武器分数", -- Battalion
+["Weapons: Hogs will get 1 out of 3 weapons randomly each turn"] = "武器: 每个回合刺猬会随机得到本职业三种之一的武器", -- Battalion
+["Weapons: Nearly every hog variant gets 1 kamikaze"] = "武器: 几乎每个刺猬职业得到一个神风特攻队", -- Battalion
+["Weapon specials: Some weapons have special modes (see weapon description)."] = "武器特别模式: 某些武器有特别模式(看武器描述)", -- Continental_supplies
+["Weapons reset: The weapons are reset after each turn."] = "武器重置: 每个回合之后武器重置", -- WxW
+["We are indeed."] = "我们确实是", -- A_Classic_Fairytale:backstab
+["We can't defeat them!"] = "我们没办法打败他们", -- A_Classic_Fairytale:shadow
+["We can't hold them up much longer!"] = "我不能拖住他们更久", -- A_Classic_Fairytale:united
+["We can't let them take over our little island!"] = "我们不能让他们接管我们的小岛", -- A_Classic_Fairytale:enemy
+["We come in peace! Just let our friends go!"] = "我们为和平而来,让我们的朋友走", -- A_Classic_Fairytale:queen
+["We could just have blown up the meteorite from the the beginning!"] = "我们可以在开头直接炸了陨石!", -- A_Space_Adventure:final
+["We don't have time for that now!"] = "我们现在没有时间找戒指", -- A_Classic_Fairytale:queen
+["We have lost an object which was critical to this mission."] = "我们失去了这个任务中的一个重要物品", -- SimpleMission
+["We have no time to waste..."] = "我们没有时间可以浪费……", -- A_Classic_Fairytale:journey
+["We have nowhere else to live!"] = "我们没有其它地方可以生活", -- A_Classic_Fairytale:enemy
+["We have spotted the enemy! We'll attack when the enemies start gathering!"] = "我们发现了敌人,我们会在敌人开始聚集的时候攻击", -- A_Space_Adventure:fruit02
+["We have to find our folk!"] = "我们必须找到我们的人", -- A_Classic_Fairytale:queen
+["We have to hurry! Are you armed?"] = "我们必须赶快,你武装了吗?", -- A_Space_Adventure:moon01
+["We have to protect the village!"] = "我们必须保护村子", -- A_Classic_Fairytale:united
+["We have to unite and defeat those cylergs!"] = "我们必须联合打败那些cylergs", -- A_Classic_Fairytale:enemy
+["Welcome home! Please take a seat"] = "欢迎回家,请坐", -- ClimbHome
+["Welcome, Leaks A Lot!"] = "欢迎,Leaks A Lot", -- A_Classic_Fairytale:journey
+["Welcome, %s, surprised to see me?"] = "欢迎,%s,看到我很惊讶?", -- A_Space_Adventure:death01
+["Welcome to the Death Planet!"] = "欢迎来到死亡星球", -- A_Space_Adventure:cosmos
+["Welcome to the Desert Planet!"] = "欢迎来到沙漠星球", -- A_Space_Adventure:cosmos
+["Welcome to the Fruit Planet!"] = "欢迎来到水果星球", -- A_Space_Adventure:cosmos
+["Welcome to the meteorite!"] = "欢迎来到陨石", -- A_Space_Adventure:cosmos
+["Welcome to the moon!"] = "欢迎来到月球", -- A_Space_Adventure:cosmos
+["Welcome to the Planet of Ice!"] = "欢迎来到冰雪星球", -- A_Space_Adventure:cosmos
+["Well done."] = "做得好",
+["Well done! Let's destroy the next target!"] = "做得好,让我们破坏下一个目标", -- Basic_Training_-_Rope
+["Well done! The next target awaits."] = "做得好,下一个目标在等着", -- Basic_Training_-_Rope
+["We'll give you a problem then!"] = "我们给你一个问题", -- A_Classic_Fairytale:enemy
+["We'll play a game first."] = "我们先来玩一个游戏", -- A_Space_Adventure:moon02
+["We'll spare your life for now!"] = "我们现在饶你一命", -- A_Classic_Fairytale:backstab
+["Well, that escalated quickly!"] = "好吧,越来越快了", -- ClimbHome
+["Well that was an unnecessary act of violence."] = "好吧,那是一个没有必要的暴力行为", -- A_Classic_Fairytale:epil
+["Well, that was an unnecessary act of violence."] = "好吧,那是一个没有必要的暴力行为", -- A_Classic_Fairytale:epil
+["Well, that was a waste of time."] = "浪费时间", -- A_Classic_Fairytale:dragon
+["We'll use our communicators to contact you."] = "我们会用我们的通讯器联系你", -- A_Space_Adventure:cosmos
+["Well, well! Isn't that the cutest thing you've ever seen?"] = "这是不是你见过的最可爱的事情?", -- A_Classic_Fairytale:journey
+["Well, yes. This was a cyborg television show."] = "是的,这是一个机器人电视节目", -- A_Classic_Fairytale:enemy
+["Well, you're about to wake up!"] = "好,你就要醒了", -- A_Classic_Fairytale:queen
+["We made sure noone followed us!"] = "我们确保没人跟着我们", -- A_Classic_Fairytale:backstab
+["We need it to get split into at least two parts."] = "我们需要它分成至少两个部分", -- A_Space_Adventure:cosmos
+["We need to go back!"] = "我们需要回去", -- A_Classic_Fairytale:queen
+["We need to hurry!"] = "我们需要赶快", -- A_Classic_Fairytale:queen
+["We need to move!"] = "我们需要转移", -- A_Classic_Fairytale:united
+["We need to prevent their arrival!"] = "我们需要阻止他们到达", -- A_Classic_Fairytale:backstab
+["We need to warn the village."] = "我们需要警告村子", -- A_Classic_Fairytale:shadow
+["We need you to go there and detonate them yourself! Good luck!"] = "我们需要你去那里引爆它们,祝你好运", -- A_Space_Adventure:cosmos
+["We oppressed her, the only woman in the tribe!"] = "我们压迫了她,部落里唯一的女人", -- A_Classic_Fairytale:epil
+["We're terribly sorry!"] = "我们很抱歉", -- A_Classic_Fairytale:epil
+["We risk our lives going through challenges."] = "我们冒着生命危险经历挑战", -- A_Classic_Fairytale:queen
+["We should better report this and continue our watch!"] = "我们最好报告这个并继续监视", -- A_Space_Adventure:cosmos
+["We should head back to the village now."] = "我们应该现在回去村子", -- A_Classic_Fairytale:shadow
+["We, the youth, have to constantly prove our value."] = "我们,年轻人,必须不断地证明我们的价值", -- A_Classic_Fairytale:queen
+["We trusted you, you fool!"] = "我们信任你,你个傻子", -- A_Classic_Fairytale:queen
+["We were trying to save her and we got lost."] = "我们试着救她,失败了", -- A_Classic_Fairytale:family
+["We were your home! Your family!"] = "我们是你的家庭,你的家人", -- A_Classic_Fairytale:queen
+["We won't accept you destroying our village!"] = "我们不会接受你破坏我们的村子", -- A_Classic_Fairytale:queen
+["We won't let you hurt any more of us!"] = "我们不会再让你伤害我们", -- A_Classic_Fairytale:queen
+["We won't let you hurt her!"] = "我们不会让你伤害她", -- A_Classic_Fairytale:journey
+["We work and work until we sweat blood."] = "我们工作和工作,直到我们流血", -- A_Classic_Fairytale:queen
+["What?! A cannibal? Here? There is no time to waste! Come, you are prepared."] = "什么?!一个食人族?这里?没有时间可浪费,来,你准备好了", -- A_Classic_Fairytale:first_blood
+["What?!"] = "什么?!", -- A_Classic_Fairytale:queen
+["What a douche!"] = "真是个傻瓜", -- A_Classic_Fairytale:enemy
+["What am I gonna...eat, yo?"] = "那我吃什么……", -- A_Classic_Fairytale:family
+["What are you doing at a distance so great, young one?"] = "你在这么远的地方做什么,年轻人?", -- A_Classic_Fairytale:first_blood
+["What are you doing? Let her go!"] = "你在做什么?让她走", -- A_Classic_Fairytale:journey
+["What a ride!"] = "What a ride", -- A_Classic_Fairytale:shadow
+["What a strange cave!"] = "多么奇怪的洞穴", -- A_Classic_Fairytale:dragon
+["What a strange feeling!"] = "多么奇怪的感觉", -- A_Classic_Fairytale:backstab
+["What could you possibly forget in that cage?"] = "你可能会忘记那个笼子里的什么?", -- A_Classic_Fairytale:queen
+["What does it look like?"] = "它看起来像什么?", -- A_Classic_Fairytale:queen
+["What do my faulty eyes observe? A spy!"] = "我的眼睛看到了什么?一个间谍!", -- A_Classic_Fairytale:first_blood
+["What do you say? Are you in?"] = "如何?你在听吗?", -- A_Space_Adventure:fruit02
+["What do you say? Will you fight for us?"] = "如何?你会和我们战斗?", -- A_Space_Adventure:fruit01
+["What do you want to do?"] = "你想做什么?", -- A_Space_Adventure:fruit01
+["Whatever floats your boat..."] = "你爱做什么做什么……", -- A_Classic_Fairytale:shadow
+["What?! For all this struggle I just win some ... time? Oh dear!"] = "什么?!我所有的奋斗只赢得一点……时间?", -- portal
+["What has %s ever done to you?"] = "%s对你做了什么?", -- A_Classic_Fairytale:backstab
+["What? Here? How did they find us?!"] = "什么?这里?他们怎么找到我们的?!", -- A_Classic_Fairytale:backstab
+["What? Is it over already?"] = "什么?已经结束了?", -- ClimbHome
+["What is it that you forgot?"] = "你忘记的是什么?", -- A_Classic_Fairytale:queen
+["What is this place?"] = "这个地方是哪里?", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy
+["What oppression? You were the most unoppressed member of the tribe!"] = "什么压迫?你是部落里最不受到压迫的人", -- A_Classic_Fairytale:queen
+["What shall we do with the traitor?"] = "我们要对叛徒做什么?", -- A_Classic_Fairytale:backstab
+["What's in the box, you ask? Let's find out!"] = "你问箱子里有什么?让我们看看", -- Basic_Training_-_Movement
+["What the?"] = "What the?", -- A_Classic_Fairytale:queen
+["WHAT?! You're the ones attacking us!"] = "什么?!你就是攻击我们的那个!", -- A_Classic_Fairytale:enemy
+["When?"] = "什么时候?", -- A_Classic_Fairytale:enemy
+["When I find it..."] = "当我找到它……", -- A_Classic_Fairytale:dragon
+["When you're in mid-air, you can continue to aim|and fire another rope if you're not attached."] = "你在空中的时候,可以继续瞄准和发射绳索", -- Basic_Training_-_Rope
+["Where are all these crates coming from?!"] = "这些箱子都是从哪来的?!", -- A_Classic_Fairytale:shadow
+["Where are they?!"] = "他们在哪里?!", -- A_Classic_Fairytale:backstab
+["Where did that alien run?"] = "外星人跑去哪里?", -- A_Classic_Fairytale:dragon
+["Where did you get the exploding apples?"] = "你在哪里得到爆炸苹果?", -- A_Classic_Fairytale:shadow
+["Where did you get the exploding apples and the magic bow that shoots many arrows?"] = "你在哪里得到爆炸苹果和发射许多箭的魔法弓?", -- A_Classic_Fairytale:shadow
+["Where did you get the magic bow that shoots many arrows?"] = "你在哪里得到发射许多箭的魔法弓?", -- A_Classic_Fairytale:shadow
+["Where did you get the weapons in the forest, Dense Cloud?"] = "你在森林的哪里得到武器,Dense Cloud?", -- A_Classic_Fairytale:backstab
+["Where do you get that?!"] = "你在哪里得到那个?!", -- A_Classic_Fairytale:enemy
+["Where have you been?!"] = "你去了哪里?!", -- A_Classic_Fairytale:backstab
+["Where have you been?"] = "你去了哪里?", -- A_Classic_Fairytale:united
+["While in modification mode, you can change|the LandFlag by clicking on an object."] = "在修改模式,你可以点击一个对象改变LandFlag", -- HedgeEditor
+["White Tee"] = "White Tee", -- A_Space_Adventure:ice01
+["Who's there?! I'll get you!"] = "谁在那里?!我会抓到你", -- A_Space_Adventure:desert01
+["Why?"] = "为什么?", -- A_Classic_Fairytale:queen
+["Why are you doing this?"] = "为什么你这么做?", -- A_Classic_Fairytale:journey
+["Why are you helping us, uhm...?"] = "为什么你帮助我们,呃……", -- A_Classic_Fairytale:family
+["Why can't he just let her go?!"] = "为什么他就不能让她走?!", -- A_Classic_Fairytale:family
+["… why did I risk my life to collect all the parts of the anti-gravity device?"] = "……为什么我要冒着生命危险收集反重力设备的所有部件?", -- A_Space_Adventure:final
+["Why did you do this?"] = "你为什么要这么做?", -- A_Classic_Fairytale:queen
+["Why did you kill your father?"] = "为什么你杀了你的父亲?", -- A_Classic_Fairytale:queen
+["Why do men keep hurting me?"] = "为什么男人一直伤害我?", -- A_Classic_Fairytale:first_blood
+["Why do you always have to call me names?"] = "为什么你一直必须叫我名字?", -- A_Classic_Fairytale:queen
+["Why do you keep betraying us?"] = "为什么你一直背叛我们?", -- A_Classic_Fairytale:queen
+["Why do you not like me?"] = "为什么你不喜欢我?", -- A_Classic_Fairytale:shadow
+["Why do you want to take over our island?"] = "为什么你想要接管我们的岛屿?", -- A_Classic_Fairytale:enemy
+["Why me?!"] = "为什么是我?", -- A_Classic_Fairytale:backstab
+["Why %s? Why?"] = "为什么,%s,为什么?", -- A_Classic_Fairytale:backstab
+["Why, why, why, why!"] = "为什么,为什么!", -- A_Classic_Fairytale:queen
+["Why would they do this?"] = "他们为什么这样做?", -- A_Classic_Fairytale:backstab
+["- Will get 1-3 random weapons"] = "- 会得到1-3随机武器", -- Continental_supplies
+["- Will Get 1-3 random weapons"] = "- 会得到1-3随机武器", -- Continental_supplies
+["- Will give you a parachute every second turn."] = "- 每两个回合会给你一个降落伞", -- Continental_supplies
+["Will this ever end?"] = "这一切会结束吗?",
+["Will you give me the other parts?"] = "你会给我其它部件吗?", -- A_Space_Adventure:death01
+["Win"] = "赢", -- A_Space_Adventure:ice01
+["Wind"] = "风", -- Basic_Training_-_Bazooka
+["Winner: %s"] = "胜者: %s", -- Mutant
+["Winning time: %s"] = "获胜时间: %s", -- Racer, TechRacer
+["Wise Oak"] = "Wise Oak", -- A_Classic_Fairytale:backstab, A_Classic_Fairytale:dragon, A_Classic_Fairytale:enemy, A_Classic_Fairytale:epil, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
+["With Dense Cloud on the land of shadows, I'm the village's only hope..."] = "Dense Cloud在阴影之地,我是村子的唯一希望……", -- A_Classic_Fairytale:journey
+["With low bounciness, it barely bounces at all, but it is much more predictable."] = "低弹力几乎不跳,但更容易预测", -- Basic_Training_-_Grenade
+["With the rest of the tribe gone, it was up to %s to save the village."] = "部落剩下的人走了,到%s上场拯救村子", -- A_Classic_Fairytale:dragon
+["Worry not, for it is a peaceful animal! There is no reason to be afraid..."] = "别担心,这是一个和平的动物,没有理由害怕……", -- A_Classic_Fairytale:first_blood
+["Wow, what a dream!"] = "哇,一个梦!", -- A_Classic_Fairytale:backstab
+["Xeli"] = "Xeli", -- 
+["Xerxes"] = "Xerxes", -- 
+["Y3K1337"] = "Y3K1337", -- A_Classic_Fairytale:journey, A_Classic_Fairytale:shadow
+["Yay, we won!"] = "耶,我们赢了", -- A_Classic_Fairytale:enemy
+["Y Chwiliad"] = "Y Chwiliad", -- A_Classic_Fairytale:dragon
+["Yeah...I think it's a 'he', lol."] = "耶……我想这是一个“他”,笑", -- A_Classic_Fairytale:shadow
+["Yeah, sure! I died. Hilarious!"] = "耶,当然,我死了,非常有趣", -- A_Classic_Fairytale:backstab
+["Yeah, sure! I died. Hillarious!"] = "耶,当然,我死了,非常有趣", -- A_Classic_Fairytale:backstab
+["Yeah, take that!"] = "耶,拿着那个", -- A_Classic_Fairytale:dragon
+["Yeah? Watcha gonna do? Cry?"] = "你要做什么?哭吗?", -- A_Classic_Fairytale:journey
+["Yeah, well, for some dude to be happy, some other dude has to suffer."] = "很好,一些人开心,一些人受苦", -- A_Classic_Fairytale:queen
+["Yellow"] = "Yellow", -- 
+["Yellow Pepper"] = "Yellow Pepper", -- A_Space_Adventure:fruit01
+["Yellow Watermelons"] = "Yellow Watermelons", -- A_Space_Adventure:fruit01
+["Yes!"] = "是的!", -- A_Classic_Fairytale:enemy
+["Yes, but you're … different!"] = "是的,但你是……不同的!", -- A_Classic_Fairytale:queen
+["Yes, yeees! You are now ready to enter the real world!"] = "Yes,你现在准备好进入真实世界了", -- A_Classic_Fairytale:first_blood
+["Yeti"] = "Yeti", -- 
+["Yikes!"] = "Yikes", -- A_Space_Adventure:desert01
+["Yo, dude! Get away from our weapons!"] = "老兄,离开我们的武器", -- A_Classic_Fairytale:queen
+["Yo, dude, we're here, too!"] = "老兄,我们也在这里", -- A_Classic_Fairytale:family
+["Yo, escort my buttocks!"] = "Yo,护送我的臀部", -- A_Classic_Fairytale:queen
+["Yoshi"] = "Yoshi", -- 
+["Yo, the aliens gave me plants. Medicinal plants. Lots of it."] = "外星人给了我植物,药草,很多", -- A_Classic_Fairytale:queen
+["You are far from home, and the water is rising, climb up as high as you can!|Your score will be based on your height."] = "你离家很远,水面在上升,尽可能爬到高处|你的分数基于你的高度", -- ClimbHome
+["You are given the chance to turn your life around..."] = "你有机会改变自己的生活……", -- A_Classic_Fairytale:shadow
+["You are in control of all the active ally units."] = "你能控制所有激活的盟友单位", -- A_Space_Adventure:fruit01
+["You are indeed the best PAotH pilot."] = "你是最好的星球协会飞行员", -- A_Space_Adventure:desert03
+["You are out of danger, time to go to the moon!"] = "你安全了,是时候去月球", -- A_Space_Adventure:cosmos
+["You are playing with our lives here!"] = "你在玩弄我们的生命", -- A_Classic_Fairytale:enemy
+["You are sabotaged, RUN!"] = "你被妨害了,快跑", -- Continental_supplies
+["You are the one who fled! So, you are alive."] = "你是逃跑的那个,所以,你活着", -- A_Space_Adventure:fruit02
+["You bear impressive skills, %s!"] = "你拥有令人印象深刻的技能,%s", -- A_Classic_Fairytale:dragon
+["You can also hold down the key for “Precise Aim” to prevent slipping."] = "你可以一直按着“精确瞄准”来阻止滑动", -- Basic_Training_-_Movement
+["You can always trust me!"] = "你可以一直信任我", -- A_Classic_Fairytale:epil
+["You can always trust me! I love you!"] = "你可以一直信任我,我爱你", -- A_Classic_Fairytale:epil
+["You can avoid some battles."] = "你可以避开一些战斗", -- A_Space_Adventure:desert01
+["You can change the detonation timer of grenades."] = "你可以改变手榴弹的引爆定时器", -- Basic_Training_-_Grenade
+["You can choose another planet by replaying this mission."] = "你可以重新游玩这个任务,选择另一个星球", -- A_Space_Adventure:cosmos
+["You can dive with your flying saucer!"] = "你可以用飞碟潜水", -- Basic_Training_-_Flying_Saucer
+["You can even change your aiming direction in mid-flight if you first hold [Precice] and then press [Up] or [Down]."] = "你甚至可以在飞行中改变瞄准方向,长按[精确]再按[上]或[下]", -- Basic_Training_-_Flying_Saucer
+["You can even change your aiming direction in mid-flight if you first hold [Precise] and then press [Up] or [Down]."] = "你甚至可以在飞行中改变瞄准方向,长按[精确]再按[上]或[下]", -- Basic_Training_-_Flying_Saucer
+["You can further customize the race by changing the scheme script paramater."] = "你可以改变方案脚本参数,进一步自定义竞赛", -- TechRacer
+["You can further customize the race by changing the scheme script parameter."] = "你可以改变方案脚本参数,进一步自定义竞赛", -- TechRacer
+["You can only use the sniper rifle or the watermelon bomb."] = "你只能用狙击枪或西瓜炸弹", -- A_Space_Adventure:fruit03
+["You can practice moving around and using utilities in this mission.|However, it will never end!"] = "你可以练习到处移动,使用这个任务的工具|无论如何,它永远不会结束", -- A_Classic_Fairytale:epil
+["You can set the bounciness of grenades (and grenade-like weapons)."] = "你可以设置手榴弹的弹性(和类似手榴弹的武器)", -- Basic_Training_-_Grenade
+["- You can switch between hogs at the start of your turns. (Not first one)"] = " 你可以在你的回合开始切换刺猬(不是第一个)", -- Continental_supplies
+["You can’t open a portal on the blue surface."] = "你不能在蓝色表层打开传送门", -- portal
+["You can use the other 2 hogs to assist you."] = "你可以使用其他两个刺猬帮助你", -- A_Space_Adventure:fruit02
+["You can use the rope to reach new places."] = "你可以使用绳索到达新位置", -- Basic_Training_-_Rope
+["You choose well, %s!"] = "你选得好,%s", -- A_Space_Adventure:fruit01
+["You completed the mission in %.3f seconds."] = "你用%.3f秒完成任务", -- A_Space_Adventure:ice02
+["You completed the mission in %d rounds."] = "你用%d回合完成任务", -- A_Space_Adventure:death02, A_Space_Adventure:fruit03
+["You couldn't have come to a worse time, %s!"] = "你不可能来过更糟糕的时刻,%s", -- A_Space_Adventure:fruit01
+["You couldn't possibly believe that after refusing my offer I'd just let you go!"] = "你不可能相信拒绝我的提议之后我会让你走", -- A_Classic_Fairytale:journey
+["You'd almost swear the water was rising!"] = "我不会游泳,你呢……",
+["You'd better watch your steps..."] = "你最好小心脚下……", -- A_Classic_Fairytale:journey
+["You defended yourself against Captain Lime."] = "你保卫自己对抗Captain Lime", -- A_Space_Adventure:fruit02
+["You defended yourself against %s."] = "你保卫自己对抗%s", -- A_Space_Adventure:fruit02
+["You did great, %s! However, we aren't out of danger yet!"] = "你做得很好,%s,然而,我们还没有脱离危险", -- A_Space_Adventure:cosmos
+["You did not make it in time, try again!"] = "你没有在时间内完成,再试一次", -- Basic_Training_-_Rope
+["You don't deserve my sacrifice!"] = "你不值得我牺牲", -- A_Classic_Fairytale:queen
+["You drove Professor Hogevil away."] = "你赶走了Hogevil教授", -- A_Space_Adventure:moon01
+["You drove the minions away."] = "你赶走了手下", -- A_Space_Adventure:moon01
+["You earned the \"Rope Master\" achievement for finishing in under 50 seconds."] = "在50秒内完成,你获得“绳索大师”成就", -- Basic_Training_-_Rope
+["You endangered your whole tribe, you bastard!"] = "你让整个部落快要灭绝,你这个混蛋", -- A_Classic_Fairytale:queen
+["You failed!"] = "你失败了", -- Basic_Training_-_Rope
+["You failed to kill all enemies in a single turn."] = "你没能在一个回合杀死所有敌人", -- Big_Armory
+["You failed to kill all enemies in this turn."] = "你没能在这个回合杀死所有敌人", -- Big_Armory
+["You fought bravely and you helped us win this battle!"] = "你勇敢地帮助我们赢得战斗", -- A_Space_Adventure:fruit02
+["You give me no choice!"] = "你让我没的选择", -- A_Classic_Fairytale:queen
+["You got a killer mask there, amigo!"] = "你在那里得到一个杀手面具,amigo!", -- A_Classic_Fairytale:epil
+["You got me!"] = "你抓到我了", -- A_Space_Adventure:moon02
+["You had %.1fs remaining on the clock (+%d points)."] = "你剩下%.1f秒(+%d分)", -- TargetPractice
+["You had %.2fs remaining on the clock (+%d points)."] = "你剩下%.2f秒(+%d分)", -- Basic_Training_-_Sniper_Rifle
+["You have 7 turns until the next wave arrives.|Make sure the arriving cannibals are greeted appropriately!|If the hog dies, the cause is lost.|Hint: you might want to use some mines..."] = "你有7回合直到下一波到达|确保到达的食人族受到适当的迎接|提示: 你可能要用一些地雷……", -- A_Classic_Fairytale:backstab
+["You have 7 turns until the next wave arrives.|Make sure the arriving cannibals are greeted appropriately!|If the hog dies, the cause is lost.|Hint: You might want to use some mines ..."] = "你有7回合直到下一波到达|确保到达的食人族受到适当的迎接|提示: 你可能要用一些地雷……", -- A_Classic_Fairytale:backstab
+["You have acquired the last device part."] = "你得到了最后的设备部件", -- A_Space_Adventure:death01
+["You have activated Switch Hedgehog!"] = "你激活了切换刺猬", -- Basic_Training_-_Movement
+["You have beaten the challenge!"] = "你打败了挑战", -- ClimbHome
+["You have beaten the team record, congratulations!"] = "你打破了队伍记录,恭喜", -- Utils
+["You have been giving us out to the enemy, haven't you!"] = "你把我们送给敌人,你没有吗?", -- A_Classic_Fairytale:backstab
+["You have chosen the perfect moment to leave."] = "你选择了完美时刻离开", -- A_Classic_Fairytale:united
+["You have chosen to fight!"] = "你选择战斗", -- A_Space_Adventure:fruit01
+["You have chosen to flee."] = "你选择逃跑", -- A_Space_Adventure:fruit01
+["You have collected %d out of %d crate(s)."] = "你收集了%d箱子(总数%d)", -- SpeedShoppa
+["You have collected the “Switch Hedgehog” utility!"] = "你选择了“切换刺猬”工具", -- Basic_Training_-_Movement
+["You have completed the Basic Bazooka Training!"] = "你完成了基础火箭炮训练", -- Basic_Training_-_Bazooka
+["You have completed the Basic Grenade Training!"] = "你完成了基础手榴弹训练", -- Basic_Training_-_Grenade
+["You have completed the Basic Movement Training!"] = "你完成了基础移动训练", -- Basic_Training_-_Movement
+["You have completed this challenge in %.2f s (+%d points)."] = "你用%.2f秒完成了这个挑战(+%d分)", -- User_Mission_-_Rope_Knock_Challenge
+["You have destroyed all targets!"] = "你破坏了所有目标", -- TargetPractice
+["You have destroyed all the targets."] = "你破坏了所有目标", -- A_Space_Adventure:desert03
+["You have destroyed %d of %d targets."] = "你破坏了%d目标(总数%d)", -- Basic_Training_-_Bazooka
+["You have destroyed %d of %d targets (+%d points)."] = "你破坏了%d目标(总数%d)(+%d分)", -- Basic_Training_-_Sniper_Rifle, TargetPractice
+["You have dropped %d missiles."] = "你丢下了%d导弹", -- User_Mission_-_RCPlane_Challenge
+["You have eliminated all visible enemy hedgehogs!"] = "你消灭了所有看得见的敌人", -- A_Space_Adventure:fruit01
+["You have eliminated Professor Hogevil."] = "你消灭了Hogevil教授", -- A_Space_Adventure:moon01
+["You have eliminated the evil minions."] = "你消灭了邪恶的手下", -- A_Space_Adventure:moon01
+["You have escaped successfully."] = "你成功地逃离", -- A_Space_Adventure:desert02
+["You have failed to complete your task, young one!"] = "你没能完成你的任务,年轻人", -- A_Classic_Fairytale:journey
+["You have failed to save the tribe!"] = "你没能拯救部落", -- A_Classic_Fairytale:backstab
+["You have finally figured it out!"] = "你终于弄清楚了", -- A_Classic_Fairytale:enemy
+["You have finished the Basic Rope Training!"] = "你完成了基础绳索训练", -- Basic_Training_-_Rope
+["You have finished the bazooka training!"] = "你完成了火箭炮训练", -- Basic_Training_-_Bazooka
+["You have finished the challenge in %.3f s."] = "你用%.3f秒完成挑战", -- SpeedShoppa
+["You have finished the challenge!"] = "你完成挑战", -- User_Mission_-_RCPlane_Challenge
+["You have finished the Flying Saucer Training!"] = "你完成了飞碟训练", -- Basic_Training_-_Flying_Saucer
+["You have finished the target practice!"] = "你完成了目标训练", -- TargetPractice
+["You have kidnapped our whole tribe!"] = "你绑架了我们的整个部落", -- A_Classic_Fairytale:enemy
+["You have killed all enemies."] = "你杀了所有敌人", -- Big_Armory
+["You have killed an innocent hedgehog!"] = "你杀死了一个无辜的刺猬", -- A_Classic_Fairytale:backstab
+["You have killed %d of 16 hedgehogs (+%d points)."] = "你杀死了%d刺猬(总数16)(+%d分)", -- User_Mission_-_Rope_Knock_Challenge
+["You have killed %d of %d hedgehogs (+%d points)."] = "你杀死了%d刺猬(总数%d)(+%d分)", -- RopeKnocking
+["You have launched %d bazookas."] = "你发射了%d火箭炮", -- Target_Practice_-_Bazooka_easy, Target_Practice_-_Bazooka_hard, Basic_Training_-_Bazooka
+["You have launched %d homing bees."] = "你发射了%d蜜蜂", -- Target_Practice_-_Homing_Bee
+["You have made %d shots."] = "你射击了%d次", -- Basic_Training_-_Sniper_Rifle
+["You have managed to catch the blue hedgehog in %.3f seconds."] = "你用%.3f秒抓住了蓝色刺猬", -- A_Space_Adventure:moon02
+["You have never worked a bit in your life!"] = "在你的生命里从来没有做过一点工作", -- A_Classic_Fairytale:queen
+["You have nothing to be afraid of now."] = "你现在不用担心了", -- A_Classic_Fairytale:epil
+["You haven't rescued anyone."] = "你还没有解救任何人", -- User_Mission_-_That_Sinking_Feeling
+["You have perfectly beaten the challenge!"] = "你完美地打败了挑战", -- User_Mission_-_RCPlane_Challenge
+["You have proven yourself worthy to see our most ancient secret!"] = "你证明了自己值得看我们最古老的秘密", -- A_Classic_Fairytale:first_blood
+["You have proven yourselves worthy!"] = "你证明了自己有价值", -- A_Classic_Fairytale:enemy
+["You have reached the take-off area successfully!"] = "你成功地到达起飞区域", -- A_Space_Adventure:fruit01
+["You have rescued H and Dr. Cornelius."] = "你解救了H和Dr. Cornelius", -- A_Space_Adventure:death01
+["You have SCORED!!"] = "你得分了",
+["You have shot %d times."] = "你射击了%d次", -- TargetPractice
+["You have successfully eliminated Professor Hogevil."] = "你成功地消灭了Hogevil教授", -- A_Space_Adventure:death01
+["You have successfully finished the campaign!"] = "你成功地完成了战役", -- A_Classic_Fairytale:epil
+["You have successfully finished the sniper rifle training!"] = "你成功地完成了狙击枪训练", -- Basic_Training_-_Sniper_Rifle
+["You have thrown %d cluster bombs."] = "你投掷了%d集束炸弹", -- Target_Practice_-_Cluster_Bomb
+["You have thrown %d grenades."] = "你投掷了%d手榴弹", -- Target_Practice_-_Grenade_easy, Target_Practice_-_Grenade_hard
+["You have to be careful and must not die!"] = "你必须小心而且不能死", -- A_Space_Adventure:cosmos
+["You have to catch the other hog 3 times."] = "你必须抓到其他刺猬三次", -- A_Space_Adventure:moon02
+["You have to complete the main mission on moon in order to travel to other planets."] = "你必须完成月球上的主要任务才能旅行到其他星球", -- A_Space_Adventure:cosmos
+["You have to continue alone from now on."] = "你现在必须一个人继续", -- A_Space_Adventure:cosmos
+["You have to destroy all the explosives without dying!"] = "你必须破坏所有爆炸物,不能死掉", -- A_Space_Adventure:final
+["You have to destroy all the targets."] = "你必须破坏所有目标", -- A_Space_Adventure:desert03
+["You have to destroy the target above by dropping a grenade on it from your flying saucer."] = "你必须从你的飞碟丢手榴弹破坏上面的目标", -- Basic_Training_-_Flying_Saucer
+["You have to destroy two targets, but the previous technique would be very difficult or dangerous to use."] = "你必须破坏两个目标,但手榴弹炸不到上面", -- Basic_Training_-_Flying_Saucer
+["You have to drop the grenade from rope!"] = "你必须从绳索丢手榴弹", -- Basic_Training_-_Rope
+["You have to eliminate all the enemies."] = "你必须消灭所有敌人", -- A_Space_Adventure:death02, A_Space_Adventure:fruit03
+["You have to eliminate all the visible enemies."] = "你必须消灭所有看得见的敌人", -- A_Space_Adventure:fruit01
+["You have to get the weapons and rescue the PAotH researchers."] = "你必须得到武器并解救星球协会研究员", -- A_Space_Adventure:moon01
+["You have to get to the left-most land and remove any enemy hog from there."] = "你必须到达最左边的地面,干掉那里的敌人", -- A_Space_Adventure:fruit01
+["You have to go back to the moon!"] = "你必须回到月球", -- A_Space_Adventure:cosmos
+["You have to move upwards, not downwards, %s!"] = "你必须上去,不是下去,%s", -- ClimbHome
+["You have to reach the left-most place on the map."] = "你必须到达地图上最左边的位置", -- A_Space_Adventure:fruit01
+["You have to stand very close to him"] = "你必须站在他旁边", -- A_Space_Adventure:moon02
+["You have to travel again"] = "你必须再次旅行", -- A_Space_Adventure:cosmos
+["You have to try again!"] = "你必须再试一次", -- A_Space_Adventure:cosmos
+["You have triggered the secret Do-Not-Rope-to-the-Moon Defense System."] = "你触发了秘密的“不要用绳索去月球”防御系统", -- A_Space_Adventure:cosmos
+["You have unlocked the target radar!"] = "你解锁了目标雷达", -- TargetPractice
+["You have used %d flying saucers."] = "你使用了%d飞碟", -- A_Space_Adventure:ice02
+["You have used %d RC planes."] = "你使用了%d遥控飞机", -- User_Mission_-_RCPlane_Challenge
+["You have used only 1 RC plane. Outstanding!"] = "你只用了一个遥控飞机,优秀!", -- User_Mission_-_RCPlane_Challenge
+["You have violated PAotH regulations!"] = "你违反了星球协会条例", -- A_Space_Adventure:cosmos
+["You have won the game by proving true cooperative skills!"] = "你证明真正的合作技巧,赢了游戏", -- A_Classic_Fairytale:enemy
+["You just appeared out of thin air!"] = "你在空中出现", -- A_Classic_Fairytale:backstab
+["You just can't let it go, can you!"] = "你就不能让它走吗", -- A_Classic_Fairytale:queen
+["You just committed suicide..."] = "你自杀了", -- A_Classic_Fairytale:shadow
+["You just got yourself some extra health.|The more health your hedgehogs have, the better!"] = "你得到了一点额外血量|你的刺猬的血量越多越好", -- Basic_Training_-_Movement
+["You killed my father, you monster!"] = "你杀了我的父亲,你这个怪物", -- A_Classic_Fairytale:backstab
+["You know...taking a stroll."] = "你知道……散一下步", -- A_Classic_Fairytale:backstab
+["You know what? I don't even regret anything!"] = "你知道什么?我什么都不后悔", -- A_Classic_Fairytale:backstab
+["You'll get an extra sniper rifle every time you kill an enemy hog with a limit of max 4 rifles."] = "你以最多4狙击枪的限制杀死敌人会得到一个额外的狙击枪", -- A_Space_Adventure:fruit03
+["You'll get an extra teleport every time you kill an enemy hog with a limit of max 2 teleports."] = "你以最多2传送的限制杀死敌人会得到一个额外的传送", -- A_Space_Adventure:fruit03
+["You'll get extra time in case you need it when you pass a ring."] = "当你通过一个环的时候会得到额外的时间", -- A_Space_Adventure:ice02
+["You'll have only 2 watermelon bombs during the game."] = "你在游戏中只有两个西瓜炸弹", -- A_Space_Adventure:fruit03
+["You'll have only one RC plane at the start of the mission."] = "你在任务开始只有一个遥控飞机", -- A_Space_Adventure:desert03
+["You'll have to eliminate Captain Lime at the end."] = "你必须在最后消灭Captain Lime", -- A_Space_Adventure:fruit02
+["You'll have to eliminate %s at the end."] = "你必须在最后消灭%s", -- A_Space_Adventure:fruit02
+["You'll lose if you die or if your time is up."] = "你死了或时间到就会输", -- A_Space_Adventure:moon02
+["You'll see what I mean!"] = "你会明白我的意思", -- A_Classic_Fairytale:enemy
+["You lost your target, try again!"] = "你失去了你的目标,再试一次", -- TargetPractice
+["You may find it handy."] = "你会发现它很好用", -- A_Space_Adventure:cosmos
+["You may only attack from a rope!"] = "你只能从绳索攻击", -- WxW
+["You may only place 1 Extra Time crate per turn."] = "你每个回合只能放置一个额外时间箱子", -- Construction_Mode
+["You may only place %d crates per round."] = "你每个回合只能放置%d箱子", -- Construction_Mode
+["- You may only score when your flag is in your base"] = "- 只有当你的光环在你的基地时得分", -- Capture_the_Flag
+["You meatbags are pretty slow, you know!"] = "你这个肉包太慢了,你知道吗!", -- A_Classic_Fairytale:enemy
+["You might want to find a way to instantly kill arriving cannibals!"] = "你可能需要找一个办法立即杀死到达的食人族", -- A_Classic_Fairytale:backstab
+["You must attack from a rope, after you collected a crate!"] = "你必须在收集一个箱子之后从绳索攻击", -- WxW
+["You must first collect a crate before you attack!"] = "你必须在你攻击前收集一个箱子", -- WxW
+["You must survive the flood in order to score."] = "你必须在洪水中活下来才能得分", -- User_Mission_-_That_Sinking_Feeling
+["You never give me plants!"] = "你从来没有给我植物", -- A_Classic_Fairytale:queen
+["Young one, you are telling us that they can instantly change location without a shaman?"] = "年轻人,你告诉我们,他们不需要萨满就能立即改变位置?", -- A_Classic_Fairytale:united
+["You now have infinite fuel, grenades and bazookas for fun."] = "你现在有无限的燃料、手榴弹、火箭炮来玩", -- Basic_Training_-_Flying_Saucer
+["You only get 1 rope this time, don't waste it!"] = "你这次只有一个绳索,不要浪费", -- Basic_Training_-_Rope
+["You only have 2 flying saucers this time."] = "你这次只有两个飞碟", -- Basic_Training_-_Flying_Saucer
+["You only have one flying saucer this time."] = "你这次只有一个飞碟", -- Basic_Training_-_Flying_Saucer
+["You probably know what to do next..."] = "你可能知道接下来要做什么……", -- A_Classic_Fairytale:first_blood
+["Your accuracy was %.1f%%."] = "你的准确度是%.1f%%", -- Basic_Training_-_Bazooka, TargetPractice
+["Your accuracy was %.1f%% (+%d points)."] = "你的准确度是%.1f%%(+%d分)", -- TargetPractice
+["Your ammo is limited this time."] = "这次你的弹药有限", -- Basic_Training_-_Bazooka
+["Your deaths will be avenged, %s!"] = "你的死会被复仇,%s", -- A_Classic_Fairytale:enemy
+["Your death will not be in vain, Dense Cloud!"] = "你的死不会是徒劳的,Dense Cloud", -- A_Classic_Fairytale:shadow
+["You're a coward!"] = "你是个懦夫", -- A_Classic_Fairytale:queen
+["You're...alive!? But we saw you die!"] = "你……还活着?!可是我看到你死了", -- A_Classic_Fairytale:backstab
+["You're a pathetic liar!"] = "你是个可怜的骗子", -- A_Classic_Fairytale:backstab
+["You're funny!"] = "你好有趣", -- A_Classic_Fairytale:journey
+["You're getting pretty good! |Tip: When you shorten you rope, you move faster!|And when you lengthen it, you move slower."] = "你做得很好|提示: 绳索短,移动快,绳索长,移动慢", -- Basic_Training_-_Rope
+["You're on your way to freeing your tribe!"] = "你在用你的方式解放你的部落", -- A_Classic_Fairytale:queen
+["You're pathetic! You are not worthy of my attention..."] = "你真可怜,你不值得我注意", -- A_Classic_Fairytale:shadow
+["You're probably wondering why I bought you back..."] = "你可能想知道为什么我带你回来……", -- A_Classic_Fairytale:backstab
+["You're probably wondering why I brought you back ..."] = "你可能想知道为什么我带你回来……", -- A_Classic_Fairytale:backstab
+["Your escape took you %d turns."] = "你的逃离用了你%d回合", -- A_Space_Adventure:desert02
+["You're so brave! I feel safe with you."] = "你真勇敢,我感觉和你一起很安全", -- A_Classic_Fairytale:epil
+["You're some piece of hypocrite junkie!"] = "你是某些伪君子垃圾的碎片", -- A_Classic_Fairytale:queen
+["You're terrorizing the forest...We won't catch anything like this!"] = "你在威胁森林……我们不会抓到像这样的东西", -- A_Classic_Fairytale:shadow
+["You retrieved the lost part."] = "你找回了遗失的部件", -- A_Space_Adventure:fruit02
+["Your fastest escape so far: %d turns"] = "你至今最快的逃离: %d回合", -- A_Space_Adventure:desert02
+["Your fastest victory so far: %d rounds"] = "你至今最快的胜利: %d回合", -- A_Space_Adventure:death02, A_Space_Adventure:fruit03
+["Your first destination is the moon in order to get more fuel."] = "你在月球的第一个目标是得到更多燃料", -- A_Space_Adventure:cosmos
+["Your hedgehog died!"] = "你的刺猬死了", -- User_Mission_-_That_Sinking_Feeling
+["Your hedgehog has been revived!"] = "你的刺猬被复活了", -- Basic_Training_-_Bazooka, Basic_Training_-_Grenade, Basic_Training_-_Movement, Basic_Training_-_Rope
+["Your hedgehog was panicly afraid of the water and decided to go in a safe distance of %d from it."] = "你的刺猬怕水并爬到安全距离%d", -- ClimbHome
+["Your height over time"] = "高度图表", -- ClimbHome
+["Your hogs must survive!"] = "你的刺猬必须活下来", -- A_Classic_Fairytale:journey
+["Your movement skills will be evaluated now."] = "现在要评价你的移动技能", -- A_Classic_Fairytale:first_blood
+["Your next task is to collect some crates by using the rope!"] = "你的下一个任务是用绳索收集一些箱子", -- A_Classic_Fairytale:first_blood
+["Your personal best time so far: %.3f seconds"] = "你至今最佳时间: %.3f秒", -- A_Space_Adventure:ice02, A_Space_Adventure:moon02
+["Your rank: %s"] = "你的等级: %s", -- User_Mission_-_RCPlane_Challenge
+["Your rope is gone! Try again!"] = "你的绳索没了,再试一次", -- Basic_Training_-_Rope
+["You saved %d of 8 hegehogs."] = "你救了%d/8刺猬", -- User_Mission_-_That_Sinking_Feeling
+["You see, hedgehog spikes are very, very valuable."] = "你看,刺猬spikes非常有价值", -- A_Classic_Fairytale:queen
+["You see the wind strength at the bottom right corner."] = "你可以在右下角看到风力", -- Basic_Training_-_Bazooka
+["You see the wind strength at the top."] = "你可以在顶部看到风力", -- Basic_Training_-_Bazooka
+["You should have known that we don't rely on meatbags!"] = "你应该知道我们不会依赖肉包", -- A_Classic_Fairytale:queen
+["You should know this more than anyone, Leaks!"] = "你应该比任何人都了解,Leaks", -- A_Classic_Fairytale:queen
+["You speak great truth, Hannibal. Here, take a sip!"] = "你说了大实话,Hannibal,来,尝一口", -- A_Classic_Fairytale:epil
+["You've been assaulting us, we have been just defending ourselves!"] = "你袭击我们,我们只是保护自己", -- A_Classic_Fairytale:enemy
+["You've reached the goal!| |Time: "] = "你已经达到目标| |时间: ",
+["You will be avenged!"] = "你会被复仇的", -- A_Classic_Fairytale:shadow
+["You will fail if you run out of ammo and there are still targets available."] = "如果这里还有目标,而你没有弹药,你会失败", -- A_Space_Adventure:desert03
+["You will gain some extra ammo from the crates the next time you play the \"Getting to the device\" mission."] = "下一次你玩“取得设备”任务会从箱子得到一些额外弹药", -- A_Space_Adventure:fruit03
+["You will play every 3 turns."] = "你会游玩每3回合", -- A_Space_Adventure:fruit01
+["- You will recieve 2-4 weapons on each kill! (Even on own hogs)"] = "- 你每次杀死会收到2-4武器(即使是自己的刺猬)", -- Continental_supplies
+["You won't believe what happened to me!"] = "你不会相信在我身上发生了什么事", -- A_Classic_Fairytale:backstab
+["Yuck! I bet they'll keep worshipping her even after I save the village!"] = "啊,我打赌即使我拯救了村子,他们会一直崇拜她", -- A_Classic_Fairytale:family
+["Yumme Gunpowder"] = "Yumme Gunpowder", -- 
+["Zealandia"] = "Zealandia", -- Continental_supplies
+["Zombie"] = "Zombie", -- 
+["Zombi"] = "Zombi", -- portal
+["'Zooka Team"] = "'Zooka Team",
+["Zoom: [Pinch] with 2 fingers"] = "缩放: 两个手指捏", -- Basic_Training_-_Movement
+["Zoom: [Rotate mouse wheel]"] = "缩放: 鼠标滚轮", -- Basic_Training_-_Movement
+["Zork"] = "Zork", -- A_Classic_Fairytale:dragon, A_Classic_Fairytale:family, A_Classic_Fairytale:queen
 }
--- a/share/hedgewars/Data/Locale/zh_CN.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/zh_CN.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -1,71 +1,464 @@
-; Simplified Chinese locale
+; Chinese locale
 
+; Weapon names
 00:00=手榴弹
-00:01=子母炸弹
+00:01=集束炸弹
 00:02=火箭炮
 00:03=蜜蜂枪
-00:04=散弹枪
-00:05=气锤
-00:06=掠过
+00:04=霰弹枪
+00:05=电锤
+00:06=跳过
 00:07=绳索
 00:08=地雷
 00:09=沙漠之鹰
 00:10=炸药
-00:11=球棒
+00:11=棒球棒
 00:12=升龙拳
+; Short for “second” (unit of time)
 00:13=秒
 00:14=降落伞
 00:15=空袭
-00:16=地雷袭击
-00:17=喷灯
-00:18=钢板
+00:16=地雷空袭
+00:17=焊枪
+00:18=建造
 00:19=传送
 00:20=切换
 00:21=迫击炮
 00:22=鞭子
-00:23=神风特工队
+00:23=神风特攻队
 00:24=蛋糕
-00:25=吸引
+00:25=诱惑
 00:26=西瓜炸弹
-00:27=地狱礼花
+00:27=地狱手雷
 00:28=钻地火箭
-00:29=弹珠枪
-00:30=燃烧弹
+00:29=滚珠枪
+00:30=凝固汽油弹
 00:31=遥控飞机
 00:32=低重力
-00:33=附加伤害
-00:34=刀枪不入
-00:35=加时
+00:33=额外伤害
+00:34=无敌
+00:35=额外时间
 00:36=激光瞄准
 00:37=吸血
 00:38=狙击枪
 00:39=飞碟
 00:40=燃烧瓶
-00:41=鸟人
-00:42=传送门枪
+00:41=鸟儿
+00:42=便携传送设备
 00:43=钢琴空袭
-00:44=老芝士
+00:44=旧林堡干酪
 00:45=正弦枪
 00:46=火焰喷射器
 00:47=黏性地雷
 00:48=锤子
-00:49=复活
-00:50=钻地火箭空袭
+00:49=复活器
+00:50=钻地空袭
 00:51=泥球
-00:52=没有选择武器
+00:52=未选择武器
 00:53=时光箱
-00:54=土地喷雾
-00:55=急冻枪
+00:54=地面喷雾
+00:55=冷冻枪
 00:56=菜刀
 00:57=橡皮筋
 00:58=浮空雷
 00:59=爬行者
 00:60=机枪
+00:61=哨兵机器人
 
-01:00=载入中 …
-01:01=平手
-01:02= %1 胜!
+; Game messages and HUD texts
+01:00=加载中 …
+01:01=平局
+01:02=%1 胜利!
 01:03=音量 %1%
-01:04=暂停
-01:05=退出 (%1/%2)?
-01:06=出现紧急情况!
+01:04=已暂停
+01:05=退出吗? (%1/%2)
+01:06=突然死亡!
+01:07=%1 剩余
+01:08=燃料: %1%
+01:09=同步中 ...
+01:10=这不会结束你的回合!
+01:11=这个武器或工具还不可用!
+01:12=最后回合,即将进入突然死亡!
+01:13=还有 %1 回合进入突然死亡!
+01:14=准备好, %1!
+; Bounciness adjectives
+01:15=轻微
+01:16=较低
+01:17=正常
+01:18=较高
+01:19=极端
+01:20=%1 弹力
+01:21=已静音
+01:22=已启用自动跳过
+01:23=自动镜头 关
+01:24=自动镜头 开
+01:25=按下目标按钮以标记目标
+01:26=工具在突然死亡中不可用
+; E.g. “+25” when gaining health from crate or vampirism
+01:27=+%1
+01:28=空的!
+01:29=未知按键
+01:30=%1 和 %2 胜利!
+01:31=%1, %2 和 %3 胜利!
+01:32=%1, %2, %3 和 %4 胜利!
+01:33=%1, %2, %3, %4 和 %5 胜利!
+01:34=%1, %2, %3, %4, %5 和 %6 胜利!
+01:35=%1, %2, %3, %4, %5, %6 和 %7 胜利!
+01:36=所有人胜利!
+01:37=%1 走了.
+01:38=%1 回来了.
+01:39=%1 自动跳过回合.
+01:40=%1 fps
+01:41=Lua 解析: 关
+01:42=Lua 解析: 开
+01:43=在线游戏不允许 Lua 解析!
+; Ammo count in ammo menu
+01:44=%1×
+; Chat. %1 = player, %2 = message
+01:45=%1: %2
+; Clan chat. %1 = player, %2 = message
+01:46=[战队] %1: %2
+; Hedgehog chat. %1 = hog name, %2 = message
+01:47=[%1]: %2
+; Symbol for unknown mine timer
+01:48=?
+01:49=使用/lua 命令后不能录制视频.
+
+; 根据翻译页面的描述,02开头的消息不需要全部翻译
+; Event messages
+; Normal hog (%1) died (0 health)
+02:00=%1 离开了这个世界
+02:00=%1 去玩其它游戏了
+02:00=可怜的 %1
+02:00=%1 死了
+02:00=%1 牺牲了
+02:00=%1 失败了
+02:00=%1 在装死
+02:00=%1 在等待复活
+02:00=再见, %1!
+02:00=%1 不再感觉到痛
+
+; Normal hog (%1) drowned
+02:01=%1 模仿泰坦尼克号
+02:01=%1 溺水了
+02:01=%1 咕噜咕噜
+02:01=%1 溅起水花
+02:01=%1 忘了带救生衣
+02:01=%1 忘了带泳圈
+02:01=%1 看起来很渴
+02:01=%1 湿透了
+02:01=%1 不会游泳
+02:01=%1 让水面上升了一点点
+
+; Round starts
+02:02=游戏开始
+02:02=我们开始吧
+02:02=欢迎来到刺猬战争
+02:02=赢或死
+02:02=祝你好运并玩得开心
+
+; Round ends and a team (%1) wins
+02:03=%1 赢了!
+02:03=%1 是冠军!
+02:03=%1 是胜者!
+02:03=%1 获胜
+02:03=恭喜 %1!
+
+; Round ends in a draw
+02:04=平局
+02:04=平局! 我们要再来一次…
+02:04=平局. 大家勇敢地战斗到最后
+02:04=喂! 谁是胜利者?!
+02:04=大家都死了. 很好!
+
+; New health crate
+02:05=救援物资来了!
+02:05=这会让你感觉好点
+02:05=一个治疗药水! 哦,搞错游戏了
+02:05=紧急快递
+02:05=治疗疾病!
+02:05=这会很有帮助
+02:05=用这个箱子治疗自己!
+02:05=治疗你的伤口
+02:05=活得更久一点
+02:05=拿着这个药
+
+; New ammo crate
+02:06=更多武器!
+02:06=里面有什么?
+02:06=一个礼物!
+02:06=特别快递!
+02:06=别让敌人拿到它
+02:06=新的玩具
+02:06=谁会第一个拿到它?
+02:06=进攻是最好的防御
+02:06=谁捡到就是谁的!
+02:06=收集或炸了它?
+
+; New utility crate
+02:07=工具时间!
+02:07=实用工具!
+02:07=这个看起来很有用
+02:07=工程师的礼物
+02:07=有人订购了工具箱?
+
+; Hog (%1) skips their turn
+02:08=%1 很无聊...
+02:08=%1 休息一下
+02:08=%1 在发呆
+02:08=%1 在思考人生
+02:08=%1 享受安静
+
+; Hog (%1) hurts themselves only
+02:09=%1 应该练习瞄准!
+02:09=%1 离自杀还差一步
+02:09=%1 完全是故意的
+02:09=%1 的武器显然故障了
+02:09=%1 是他最大的敌人
+
+; Home run: Hog (%1) uses baseball bat to throw other hog far out of the left/right map bounds
+02:10=本垒打!
+02:10=谁说刺猬不能飞?
+02:10=噢! 那一定很疼
+02:10=漂亮的一击!
+02:10=那可能打破记录!
+
+; Hog (%1) has to leave (team is gone)
+02:11=%1 要去睡觉了!
+02:11=%1 太忙不能玩
+02:11=%1 要做作业
+02:11=%1 接到了重要的电话
+02:11=%1 去拿外卖了
+
+; Hog (%1) was poisoned
+02:12=%1 感觉不舒服
+02:12=%1 应该买一个防毒面具
+02:12=%1 需要去医院
+02:12=%1 要呆在家不能上学
+02:12=%1 应该捡一个医疗箱
+
+; Hog (%1) was resurrected by the Resurrector utility
+02:13=%1 复活了
+02:13=%1 又活过来了
+02:13=%1 和亡灵法师做了交易
+02:13=%1 准备好再死一次
+02:13=%1 投了一个币
+
+; Hog (%1) explodes after an kamikaze attack
+02:14=永远记住 %1
+02:14=%1 执行战术自我毁灭
+02:14=%1 使用了一次性武器
+02:14=%1 无所畏惧
+02:14=%1 没有什么可失去的
+
+; Hog (%1) returned from time-travel with the time box
+; These texts are intentionally kept simple and clear to not confuse the player
+02:15=%1 从时间旅行返回
+02:15=时间旅行者 %1 回来了
+02:15=%1 走出了时光箱子
+02:15=%1 回到了我们的时间线
+02:15=欢迎回到我们的时间, %1!
+
+; Hog (%1) runs out of turn time (not shown in infinite attack mode)
+02:16=%1 太慢了
+02:16=%1 忘了看时间
+02:16=%1 在浪费时间
+02:16=%1 需要更多时间
+02:16=%1 不知道有时间限制
+
+; King (%1) has died
+02:17=%1 的王冠被夺走
+02:17=%1 像真正的国王一样死去
+02:17=%1 死了,王国也死了
+02:17=%1 有太多敌人
+02:17=%1 被将军了
+
+; 重新分类
+; Weapon categories/subcaptions
+03:00=投掷武器
+03:01=投掷武器
+03:02=弹道武器
+03:03=制导武器
+03:04=枪
+03:05=挖掘工具
+03:06=行动
+03:07=运输工具
+03:08=近距离炸弹
+03:09=枪
+03:10=近距离炸弹
+03:11=近战
+03:12=武术
+03:13=未使用
+03:14=运输工具
+03:15=空袭
+03:16=空袭
+03:17=挖掘工具
+03:18=工具
+03:19=运输工具
+03:20=行动
+03:21=弹道武器
+03:22=近战
+03:23=(真正的) 武术
+03:24=远程控制炸弹
+03:25=行动
+03:26=投掷武器
+03:27=投掷武器
+03:28=弹道武器
+03:29=弹道武器
+03:30=空袭
+03:31=远程控制炸弹
+03:32=短暂的效果
+03:33=短暂的效果
+03:34=短暂的效果
+03:35=短暂的效果
+03:36=短暂的效果
+03:37=短暂的效果
+03:38=枪
+03:39=运输工具
+03:40=投掷武器
+03:41=运输工具
+03:42=运输工具
+; the misspelled "Beethoven" is intentional (-> to beat)
+03:43=空袭
+03:44=投掷武器
+03:45=枪
+03:46=枪
+03:47=投掷武器
+03:48=近战
+03:49=工具
+03:50=空袭
+03:51=投掷武器
+03:52=UNUSED
+03:53=工具
+03:54=工具
+03:55=枪
+03:56=投掷武器
+03:57=工具
+03:58=飘浮近距离炸弹
+03:59=未完成的武器
+03:60=枪
+03:61=未完成的武器
+
+; 简短描述
+; Weapon descriptions (use | as line breaks)
+04:00=定时器归零就会爆炸|1-5: 设置定时器|精确 + 1-5: 设置弹力|攻击: 长按蓄力攻击
+04:01=爆裂成更小的炸弹|1-5: 设置定时器|精确 + 1-5: 设置弹力|攻击: 长按蓄力攻击
+04:02=受风力影响|攻击: 长按蓄力攻击
+04:03=蜜蜂会飞向目标|不全力射击可提高精度|光标: 选择目标|攻击: 长按蓄力攻击
+04:04=两发子弹|攻击: 射击
+04:05=钻入地下|攻击: 开始或停止|左/右: 钻地时移动
+04:06=跳过这个回合|攻击: 跳过回合
+04:07=使用绳索快速行动|丢下炸弹或撞向刺猬|可在空中多次使用绳索|攻击: 发射或放开绳索|上/下/左/右: 伸长缩短和摇晃|远跳: 丢下炸弹
+04:08=放下并撤退|攻击: 放下地雷|精确 + 1-5: 设置弹力
+04:09=四发子弹|攻击: 射击
+04:10=放下并撤退|攻击: 放下炸药
+04:11=把刺猬打下水|或打飞地雷|攻击: 挥动球棒
+04:12=靠近刺猬给他一拳|跳起来打到高处|攻击: 动手
+04:13=未使用
+04:14=安全着陆|自动打开一次|刮风时请注意风向|攻击: 下降时收起降落伞|上/下/左/右: 调整方向|远跳: 丢下炸弹
+04:15=呼叫飞机轰炸敌人|左/右: 调整方向|光标: 选择目标位置
+04:16=呼叫飞机丢下地雷|左/右: 调整方向|光标: 选择目标位置
+04:17=用焊枪挖洞|或攻击刺猬|攻击: 点火|上/下: 调整方向
+04:18=用大梁造一条路或掩体|左/右: 调整方向|光标: 放置在有效位置
+04:19=传送到有效的指定位置|左/右: 调整方向|光标: 选择目标位置
+04:20=允许你在当前回合换人|攻击: 确认切换|切换: 选择下一个|精确 + 切换: 选择上一个
+04:21=撞击时会向后方投掷集束炸弹|攻击: 全力发射
+04:22=鞭打刺猬或物体|攻击: 挥动鞭子
+04:23=牺牲自己,冲向指定方向|攻击: 冲锋
+04:24=生日快乐! |蛋糕会走向刺猬给他们惊喜|攻击: 放下蛋糕,控制爆炸
+04:25=吸引刺猬跳向自己|可以解冻刺猬|攻击: 不分敌友的诱惑
+04:26=爆裂成更多炸弹|1-5: 设置定时器|攻击: 长按蓄力攻击
+04:27=爆炸并燃烧|攻击: 长按蓄力攻击
+04:28=钻到表面或一段时间后爆炸|攻击: 长按蓄力攻击
+04:29=发射大量会爆炸的滚珠|攻击: 全力发射|上/下: 调整方向
+04:30=呼叫飞机焚烧敌人|左/右: 调整方向|光标: 选择目标位置
+04:31=收集箱子,丢下炸弹,冲向刺猬|攻击: 启动飞机,丢炸弹|远跳: 音乐|左/右: 调整方向
+04:32=跳得更远,或让刺猬飞得更远|攻击: 激活
+04:33=造成更多伤害|攻击: 激活
+04:34=不受伤害|攻击: 激活
+04:35=加30秒|攻击: 激活
+04:36=打得更准|攻击: 激活
+04:37=造成伤害的80%|攻击: 激活
+04:38=两发子弹|距离越远,伤害越高|激活后停在原地|攻击: 激活,射击|左/右: 调整方向(发射后)
+04:39=起飞前带好武器|攻击: 激活/取消激活|上/左/右: 飞一下|远跳: 丢下炸弹|精确 + 远跳: 向准星方向开火|精确 + 上/下: 调整瞄准
+04:40=瓶子装着会燃烧的液体|攻击: 长按蓄力攻击
+04:41=鸟儿会带你飞|丢下有毒的蛋|攻击: 激活,丢蛋|上/左/右: 飞一下
+04:42=传送自己、刺猬、武器|对橡皮筋不起作用|攻击: 发射一个传送门|切换: 改变传送门颜色
+04:43=使用者会牺牲|光标: 选择目标位置|F1-F9: 弹钢琴
+04:44=这个奶酪很臭,会让刺猬中毒|1-5: 设置定时器|精确 + 1-5: 设置弹力|攻击: 长按蓄力攻击
+04:45=后座力很强|攻击: 射击
+04:46=喷射火焰|攻击: 激活|上/下: 调整方向|左/右: 调整力度
+04:47=两个黏性地雷|攻击: 长按蓄力攻击
+04:48=把刺猬锤进地下|攻击: 挥动锤子
+04:49=用你的血量救活朋友|注意不要复活敌人|攻击: 长按攻击缓慢复活|上: 加速复活
+04:50=把地下的刺猬炸出来|左/右: 调整方向|1-5: 设置定时器|光标: 选择目标位置
+04:51=没有伤害,但会击退刺猬和物品|攻击: 长按蓄力攻击
+04:52=未使用
+04:53=时空旅行,随时会回来|突然死亡、仅剩一人、国王不可用|攻击: 激活
+04:54=掩埋刺猬,堵住隧道|攻击: 激活/取消激活|上/下: 调整方向|左/右: 调整力度
+04:55=冰冻刺猬|让地面变滑或水面结冰|攻击: 激活/取消激活|上/下: 调整方向
+04:56=速度越快,伤害越高|攻击: 长按蓄力攻击
+04:57=弹走大部分东西|取消坠落伤害|左/右: 调整方向|光标: 放置在有效位置
+04:58=跟随靠近的刺猬并爆炸|比地雷弱|攻击: 长按蓄力攻击
+04:59=这个武器还没完成|攻击: 部署
+04:60=发射大量子弹|攻击: 全力发射|上/下: 调整方向
+04:61=这个武器还没完成|攻击: 部署机器人
+
+; Game goal strings
+05:00=游戏模式
+05:01=以下规则适用:
+05:02=放置国王: 为你的国王选一个受保护的开始位置
+05:03=低重力: 小心脚下!
+05:04=无敌: 刺猬 (几乎) 无敌
+05:05=吸血: 刺猬获得造成伤害的 80% 治疗效果
+05:06=报应: 刺猬会受到造成的伤害
+05:07=保护国王: 别让你的国王死!
+05:08=放置刺猬: 游戏开始前放置你的刺猬
+05:09=炮兵: 刺猬不能走路
+05:10=坚不可摧的地形: 多数武器不能破坏地形
+05:11=共享武器: 相同颜色的队伍共享武器
+05:12=地雷定时器: 地雷 %1 秒引爆
+05:13=地雷定时器: 地雷立即引爆
+05:14=地雷定时器: 地雷 0 - 5 秒引爆
+05:15=伤害修改器: (几乎) 所有武器造成 %1% 伤害
+05:16=救护人员: 刺猬在回合结束时恢复初始血量
+05:17=AI 重生: AI 刺猬死后重生
+05:18=无限攻击: 攻击不会结束回合
+05:19=固定的武器: 武器在回合结束时重置
+05:20=每个刺猬的武器: 刺猬间不共享武器
+05:21=标签队伍: 战队中的队伍连续行动|共享时间: 战队中的队伍共享回合时间
+05:22=大风: 风力影响几乎所有东西
+
+; Chat command help
+06:00=客户端聊天命令列表
+06:01=/togglechat: 切换聊天显示
+06:02=/clan <message>: 发送消息给战队成员
+06:03=/me <message>: 聊天动作,如 “/me eats pizza” 变成 “* Player eats pizza”
+06:04=/pause: 切换暂停
+06:05=/pause: 切换自动跳过
+06:06=/fullscreen: 切换全屏
+06:07=/quit: 退出游戏
+06:08=/help: 客户端聊天命令列表
+06:09=/help taunts: 嘲讽聊天命令列表
+06:10=/history: 切换更长的聊天记录显示
+06:11=/lua: 切换 Lua 解析 (for developers)
+06:12=嘲讽聊天命令列表
+06:13="text": 文本放在说话气泡
+06:14='text': 文本放在显示文本
+06:15=-text-: 文本放在显示文本
+06:16=上面的命令,可以加数字在开头以选择刺猬,如-2我在这里-
+06:17=/hsa <text>: 下次攻击时文本放在说话气泡
+06:18=/hta <text>: 下次攻击时文本放在思考气泡
+06:19=/hya <text>: 下次攻击时文本放在叫喊气泡
+06:20=/hurrah: 使刺猬笑
+06:21=/ilovelotsoflemonade: 使刺猬尿尿
+06:22=/juggle: 抛球杂技
+06:23=/rollup: 使刺猬卷起
+06:24=/shrug: 使刺猬耸肩
+06:25=/wave: 使刺猬挥手
+06:26=未知命令或无效参数,在聊天中说“/help”获得命令列表
+06:27=/help room: 房间聊天命令列表
+06:28=你不在线!
+06:29=/bubble: 使刺猬屏住呼吸
+06:30=/happy: 使刺猬看起来开心
+06:31=/sad: 使刺猬看起来伤心
--- a/share/hedgewars/Data/Locale/zh_TW.txt	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Locale/zh_TW.txt	Sun Mar 24 14:34:27 2024 -0400
@@ -341,7 +341,7 @@
 02:07=好重...好重...
 02:07=會有用的
 
-; Hog (%1) skips his turn
+; Hog (%1) skips their turn
 02:08=%1 太無聊了...
 02:08=%1 不想被打擾!
 02:08=%1 太懶了
@@ -379,7 +379,7 @@
 02:08=%1 怕刺激
 02:08=%1 睡著了
 
-; Hog (%1) hurts himself only
+; Hog (%1) hurts themselves only
 02:09=%1 該練練瞄準了!
 02:09=%1 似乎看自己很不爽。
 02:09=%1 在表演烏龍!
@@ -544,7 +544,7 @@
 04:50=有人躲在地下嗎?|用鑽地火箭空襲將它挖出來!|定時器控制挖掘的深度.|左/右方向鍵: 決定攻擊方向|1-5: 設定定時器|游標: 選定目標
 04:51=使用泥球攻擊不會結束回合.|沒有攻擊力,但可以擊退刺蝟與物體.|攻擊鍵: 按住蓄力
 04:52=UNUSED
-04:53=離開隊友,進行一趟時空之旅.|準備隨時回歸,或強制回歸由於進入意外死亡模式,或只剩下一隻刺蝟.|注意,不能在以下狀況使用: 意外死亡模式,剩下一隻刺蝟時,與國王身上.|攻擊鍵: 激活
+04:53=離開隊友,進行一趟時空之旅.|準備隨時回歸,或強制回歸由於進入意外死亡模式,或只剩下一隻刺蝟.|注意,不能在以下狀況使用\: 意外死亡模式,剩下一隻刺蝟時,與國王身上.|攻擊鍵: 激活
 04:54=噴灑一串神奇薄片來產生地形.|可用來: 搭建橋樑,埋葬敵人,封鎖隧道.|攻擊鍵: 激活|上/下方向鍵: 發射中移動準心|左/右方向鍵: 更改發射力道
 04:55=回到冰河時期!|可冷凍刺蝟,使地面變滑|或凍結水面避免淹死.|攻擊鍵: 激活/停止冷凍射線|上/下方向鍵: 發射中移動準心
 04:56=你可以丟兩把菜刀用來攻擊/擋住敵人|也可以用來擋住隧道或利用它來攀爬!|請小心!玩刀是很危險的.|攻擊鍵: 按住蓄力(兩次)
--- a/share/hedgewars/Data/Maps/ClimbHome/map.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Maps/ClimbHome/map.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -11,7 +11,6 @@
 local RecordHeight = 33000
 local RecordHeightHogName = nil
 local Fire = {}
---local BoomFire = nil
 local HH = {}
 local totalHedgehogs = 0
 local deadHedgehogs = 0
@@ -91,10 +90,9 @@
     MineDudPercent = 0
     EnableGameFlags(gfOneClanMode)
     DisableGameFlags(gfBottomBorder+gfBorder)
-    --This reduced startup time by only about 15% and looked ugly
-    --EnableGameFlags(gfDisableLandObjects) 
-    -- force seed instead.  Some themes will still be easier, but at least you won't luck out on the same theme
-    Seed = ClimbHome
+    -- gfDisableLandObjects is not used. This reduced startup time by only about 15% and looked ugly
+    -- Force seed so the land objects are the same. Some themes will still be easier, but at least you won't luck out on the same theme
+    Seed = ""
     -- Disable Sudden Death
     WaterRise = 0
     HealthDecrease = 0
@@ -125,7 +123,6 @@
 end
 
 function onGameStart()
-    --SetClanColor(ClansCount-1, 0x0000ffff) appears to be broken
     SendHealthStatsOff()
     local recordInfo = ""
     if isSinglePlayer then
@@ -139,7 +136,6 @@
     local x = 1818
     for h,i in pairs(HH) do
         if h ~= nil then
-            -- SetGearPosition(h,x,32549)
             SetGearPosition(h,x,108)
             SetHealth(h,1)
             if x < 1978 then x = x+32 else x = 1818 end
@@ -151,7 +147,7 @@
             SetState(h,bor(GetState(h),gstInvisible))
         end
     end
--- 1925,263 - Mr. Mine position
+    -- 1925,263 - Mr. Mine position
     MrMine = AddGear(1925,263,gtMine,0,0,0,0)
     for i=0, TeamsCount-1 do
         SetTeamLabel(GetTeamName(i), "0")
@@ -225,17 +221,10 @@
     CakeTries = 0
 end
 
---function onGearDelete(gear)
---    if gear == WaterRise and MaxHeight > 500 and CurrentHedgehog ~= nil and band(GetState(CurrentHedgehog),gstHHDriven) ~= 0 then
---        WaterRise = AddGear(0,0,gtWaterUp, 0, 0, 0, 0)
---    end
---end
-
 function FireBoom(x,y,d) -- going to add for rockets too
     PlaySound(sndExplosion)
     AddVisualGear(x,y,vgtExplosion,0,false)
     -- should approximate circle by removing corners
-    --if BoomFire == nil then BoomFire = {} end
     for i = 0,50 do
 	fx = GetRandom(d)-div(d,2)
 	fy = GetRandom(d)-div(d,2)
@@ -253,7 +242,6 @@
         SetTag(flame, 999999+i)
         SetFlightTime(flame, 0)
         Fire[flame]=1
---        BoomFire[flame]=1
     end
 end
 
@@ -267,13 +255,6 @@
         dummySkip = 0
     end
 
-    --if BoomFire ~= nil then
-    --    for f,i in pairs(BoomFire) do
-    --        if band(GetState(f),gstCollision~=0) then DeleteGear(f) end
-    --    end
-    --    BoomFire = nil
-    --end
-
     for s,i in pairs(Stars) do
         local _, Y = GetVisualGearValues(s)
         if Y ~= nil and Y > WaterLine + 500 then
@@ -333,7 +314,7 @@
                         AddCaption(loc("Don't touch the flames!"))
                         CakeFireWarning = true
                     end
-                    FireBoom(cx,cy,200) -- todo animate
+                    FireBoom(cx,cy,200) -- TODO: animate
                     DeleteGear(Cake)
                 end
             end
@@ -372,7 +353,6 @@
                     999999999, -- frameticks
                     sprStar, -- star
                     0, c)
-                    --,  0xFFCC00FF) -- could be fun to make colour shift as you rise...
                 Stars[s] = 1
             end
         end
@@ -693,7 +673,6 @@
     if teamBests[teamName] < actualHeight then teamBests[teamName] = actualHeight end
     if teamScoreStats[teamName] == nil then teamScoreStats[teamName] = {} end
     table.insert(teamScoreStats[teamName], actualHeight)
-    --SendStat(siClanHealth, tostring(teamBests[teamName]), teamName)
 end
 
 function makeMultiPlayerWinnerStat(gear)
--- a/share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/first_blood.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/first_blood.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -487,7 +487,7 @@
   end
   local x = GetX(youngh)
   local y = GetY(youngh)
-  return x < 3005 and y > 1500 and StoppedGear(youngh)
+  return x > 2575 and x < 3016 and y > 1538 and StoppedGear(youngh)
 end
 
 function CheckOnOrPastMoleHead()
Binary file share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/cosmos.hwp has changed
--- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/cosmos.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/cosmos.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -117,11 +117,7 @@
 	HealthDecrease = 0
 	-- completed main missions
 	status = getCompletedStatus()
-	if status.death01 then
-		Map = "cosmos2_map"
-	else
-		Map = "cosmos_map" -- custom map included in file
-	end
+	Map = "cosmos_map" -- custom map included in file
 	Theme = "Nature"
 	-- Hero
 	teamC.name = AddMissionTeam(teamC.color)
@@ -187,6 +183,15 @@
 end
 
 function onGameStart()
+	-- Place meteorite on map
+	if status.final then
+		-- Campaign complete: Blown-up meteorite sprite
+		PlaceSprite(3171, 909, sprCustom2, 0, nil, false, false, false)
+	elseif status.death01 then
+		-- death01 mission complete: Normal meteorite sprite
+		PlaceSprite(3171, 909, sprCustom1, 0, nil, false, false, false)
+	end
+
 	-- wait for the first turn to start
 	AnimWait(hero.gear, 3000)
 
@@ -626,8 +631,8 @@
 		end
 	end
 	if status.final then
-		vgear = AddVisualGear(3070, 810, vgtBeeTrace, 0, false)
-		vgear = AddVisualGear(3070, 790, vgtBeeTrace, 0, false)
+		vgear = AddVisualGear(3080, 810, vgtBeeTrace, 0, false)
+		vgear = AddVisualGear(3080, 790, vgtBeeTrace, 0, false)
 	end
 end
 
--- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/death02.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/death02.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -123,12 +123,14 @@
 
 function onGearDelete(gear)
 	if isHog(gear) then
-		-- Set health to 100 (with heal effect, if health was smaller)
-		local healthDiff = 100 - GetHealth(hero.gear)
-		if healthDiff > 1 then
-			HealHog(hero.gear, healthDiff, true, 0x00FF00FF)
-		else
-			SetHealth(hero.gear, 100)
+		if CurrentHedgehog == hero.gear then
+			-- Set health to 100 (with heal effect, if health was smaller)
+			local healthDiff = 100 - GetHealth(hero.gear)
+			if healthDiff > 1 then
+				HealHog(hero.gear, healthDiff, true, 0x00FF00FF)
+			else
+				SetHealth(hero.gear, 100)
+			end
 		end
 		local deadHog = getHog(gear)
 		if deadHog.weapon == amMortar then
@@ -155,7 +157,7 @@
 end
 
 function onGearDamage(gear, damage)
-	if isHog(gear) and GetHealth(hero.gear) then
+	if isHog(gear) and GetHealth(hero.gear) and CurrentHedgehog == hero.gear then
 		local bonusHealth = div(damage, 3)
 		HealHog(hero.gear, bonusHealth, true, 0xFF0000FF)
 	end
--- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/moon01.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/moon01.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -20,6 +20,7 @@
 local checkPointReached = 1 -- 1 is start of the game
 local afterDialog02 = false
 local gameOver = false
+local minionsDead = false
 -- dialogs
 local dialog01 = {}
 local dialog02 = {}
@@ -262,6 +263,9 @@
 			EndTurn(true)
 		end
 	end
+	if minionsDead and (not (professor.dead or GetHealth(professor.gear) == nil or GetHealth(professor.gear) == 0)) then
+		FollowGear(professor.gear)
+	end
 end
 
 function onPrecise()
@@ -444,9 +448,11 @@
 end
 
 function minionsDeath(gear)
+	minionsDead = true
 	if professor.dead or GetHealth(professor.gear) == nil or GetHealth(professor.gear) == 0 then return end
 	if gameOver then return end
 	if (not IsHogAlive(hero.gear)) or (not StoppedGear(hero.gear)) then return end
+	SetTeamPassive(teamC.name, false)
 	AddAnim(dialog05)
 end
 
--- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/moon02.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/moon02.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -130,6 +130,9 @@
 			runnerTime = runnerTime + runner.places[currentPosition].turnTime
 			SetTeamLabel(teamB.name, string.format(loc("%.1fs"), runnerTime/1000))
 		else
+			if currentPosition > 2 then
+				AddCaption(loc("Go, get him again!"), capcolDefault, capgrpGameState)
+			end
 			SetWeapon(amRope)
 			SetTurnTimeLeft(runner.places[currentPosition].turnTime + previousTimeLeft)
 			previousTimeLeft = 0
@@ -268,9 +271,6 @@
 function moveRunner()
 	if currentPosition == 4 then
 		currentPosition = currentPosition + 1
-		if GetX(hero.gear) > GetX(runner.gear) then
-			HogTurnLeft(runner.gear, false)
-		end
 		AddAnim(dialog02)
 
 		-- Update time record
@@ -295,7 +295,6 @@
 		AddAmmo(hero.gear, amRope, 1)
 		if currentPosition ~= 1 then
 			if currentPosition > 1 and currentPosition < 4 then
-				AnimCaption(hero.gear, loc("Go, get him again!"), 3000)
 				AnimSay(runner.gear, loc("You got me!"), SAY_SAY, 3000)
 			end
 			runnerCaught = true
@@ -306,6 +305,9 @@
 		SetGearPosition(runner.gear, runner.places[currentPosition].x, runner.places[currentPosition].y)
 		EndTurn(true)
 	end
+	if runner.gear and hero.gear then
+		HogTurnLeft(runner.gear, GetX(hero.gear) < GetX(runner.gear))
+	end
 end
 
 function lose()
@@ -341,6 +343,7 @@
 end
 
 function win()
+	AnimSetInputMask(0)
 	SendStat(siGameResult, loc("Congratulations, you are the fastest!"))
 	-- siCustomAchievements were added earlier
 	SendStat(siPointType, "!TIME")
--- a/share/hedgewars/Data/Missions/Challenge/ClimbHome.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Missions/Challenge/ClimbHome.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -4,7 +4,6 @@
 
 -- trying to allow random theme, but fixed theme objects...
 -- Also skip some ugly themes, or ones where the sky is "meh"
---local themes = { "Art","Cake","City","EarthRise","Halloween","Olympics","Underwater","Bamboo","Castle","Compost","Eyes","Hell","Planes","Bath","Cave","CrazyMission","Freeway","Island","Sheep","Blox","Cheese","Deepspace","Fruit","Jungle","Snow","Brick","Christmas","Desert","Golf","Nature","Stage" }
 local themes = {"Christmas","Hell","Bamboo","City","Island","Bath","Compost","Jungle","Desert","Nature","Olympics","Brick","EarthRise","Sheep","Cake","Freeway","Snow","Castle","Fruit","Stage","Cave","Golf","Cheese","Halloween"}
 local totalHedgehogs = 0
 local HH = {}
@@ -13,9 +12,9 @@
 
 
 function onGameInit()
+    Theme = themes[GetRandom(#themes)+1]
     -- Ensure people get same map for same theme
-    Theme = themes[GetRandom(#themes)+1]
-    Seed = ClimbHome
+    Seed = ""
     TurnTime = MAX_TURN_TIME
     EnableGameFlags(gfOneClanMode)
     DisableGameFlags(gfBottomBorder+gfBorder)
--- a/share/hedgewars/Data/Missions/Challenge/User_Mission_-_Rope_Knock_Challenge.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Missions/Challenge/User_Mission_-_Rope_Knock_Challenge.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -1,348 +1,133 @@
-HedgewarsScriptLoad("/Scripts/Utils.lua")
 HedgewarsScriptLoad("/Scripts/Locale.lua")
+HedgewarsScriptLoad("/Scripts/RopeKnocking.lua")
 
-local hhs = {}
-local missionWon = nil
-local missionEndHandled = false
-local endTimer = 1000
-local hogsKilled = 0
-local finishTime
-local ouchies = false
-local valkyriesTimer = -1
+-- In this mission, the names of the enemy hogs are chosen randomly from this list.
+-- As a nod to the community, this list contains names of actual users/players;
+-- Mostly developers, contributors, high-ranking players in a shoppa tournament,
+-- highly active forum users.
 
-local HogData =	{
-					{"amn",			"NinjaFull",false},
-					{"alfadur",		"NoHat",false},
-					{"Anachron",		"war_americanww2helmet",false},
-					{"Bufon", 			"ShaggyYeti",false},
-					{"burp", 			"lambda",false},
-					{"Blue", 			"cap_blue",false},
-					{"bender", 			"NoHat",false},
-					{"Castell",			"NoHat",false},
-					{"cekoto", 			"NoHat",false},
-					{"CheezeMonkey",	"NoHat",false},
-					{"claymore", 		"NoHat",false},
-					{"CIA-144", 		"cyborg1",false},
-					{"cri.the.grinch",	"sf_blanka",false},
-					{"eldiablo",		"Evil",false},
-					{"Displacer",		"fr_lemon",false},
-					{"doomy", 			"NoHat",false},
-					{"Falkenauge", 		"NoHat",false},
-					{"FadeOne", 		"NoHat",false},
-					{"hayaa", 			"NoHat",false},
-					{"Hermes", 			"laurel",false},
-					{"Henek", 		"WizardHat",false},
-					{"HedgeKing",		"NoHat",false},
-					{"Izack1535", 		"NoHat",false},
-					{"Kiofspa", 		"NoHat",false},
-					{"KoBeWi",		"NoHat",false},
-					{"Komplex", 		"NoHat",false},
-					{"koda", 			"poke_mudkip",false},
-					{"Lalo", 			"NoHat",false},
-					{"Logan", 			"NoHat",false},
-					{"lollkiller", 		"NoHat",false},
-					{"Luelle", 			"NoHat",false},
-					{"mikade", 			"Skull",false},
-					{"Mushi", 			"sm_daisy",false},
-					{"Naboo", 			"NoHat",false},
-					{"nemo", 			"bb_bub",false},
-					{"practice", 		"NoHat",false},
-					{"Prof. Panic",  	"NoHat",false},
-					{"Randy",			"zoo_Sheep",false},
-					{"rhino", 			"NinjaTriangle",false},
-					{"Radissthor",  	"NoHat",false},
-					{"Sami",			"sm_peach",false},
-					{"soreau", 			"NoHat",false},
-					{"Solar",		"pinksunhat",false},
-					{"sparkle",		"NoHat",false},
-					{"szczur", 		"mp3",false},
-					{"sdw195", 			"NoHat",false},
-					{"sphrix", 			"TeamTopHat",false},
-					{"sheepluva",		"zoo_Sheep",false},
-					{"Smaxx", 			"NoHat",false},
-					{"shadowzero", 		"NoHat",false},
-					{"Star and Moon",	"SparkleSuperFun",false},
-					{"The 24",			"NoHat",false},
-					{"TLD",				"NoHat",false},
-					{"Tiyuri", 			"sf_ryu",false},
-					{"unC0Rr", 			"cyborg1",false},
-					{"Waldsau", 		"cyborg1",false},
-					{"wolfmarc", 		"knight",false},
-					{"Wuzzy",		"fr_orange",false},
-					{"Xeli", 			"android",false}
+-- NOTE: These names are intentionally not translated.
+local hogData =	{
+	{"amn",			"NinjaFull"},
+	{"alfadur",		"NoHat"},
+	{"Anachron",		"war_americanww2helmet"},
+	{"Bufon", 		"ShaggyYeti"},
+	{"burp", 		"lambda"},
+	{"Blue", 		"cap_blue"},
+	{"bender", 		"NoHat"},
+	{"Castell",		"NoHat"},
+	{"cekoto", 		"NoHat"},
+	{"CheezeMonkey",	"NoHat"},
+	{"claymore", 		"NoHat"},
+	{"CIA-144", 		"cyborg1"},
+	{"cri.the.grinch",	"sf_blanka"},
+	{"eldiablo",		"Evil"},
+	{"Displacer",		"fr_lemon"},
+	{"doomy", 		"NoHat"},
+	{"Falkenauge", 		"NoHat"},
+	{"FadeOne", 		"NoHat"},
+	{"hayaa", 		"NoHat"},
+	{"Hermes", 		"laurel"},
+	{"Henek", 		"WizardHat"},
+	{"HedgeKing",		"NoHat"},
+	{"Izack1535", 		"NoHat"},
+	{"Kiofspa", 		"NoHat"},
+	{"KoBeWi",		"NoHat"},
+	{"Komplex", 		"NoHat"},
+	{"koda", 		"poke_mudkip"},
+	{"Lalo", 		"NoHat"},
+	{"Logan", 		"NoHat"},
+	{"lollkiller", 		"NoHat"},
+	{"Luelle", 		"NoHat"},
+	{"mikade", 		"Skull"},
+	{"Mushi", 		"sm_daisy"},
+	{"Naboo", 		"NoHat"},
+	{"nemo", 		"bb_bub"},
+	{"practice", 		"NoHat"},
+	{"Prof. Panic",  	"NoHat"},
+	{"Randy",		"zoo_Sheep"},
+	{"rhino", 		"NinjaTriangle"},
+	{"Radissthor",  	"NoHat"},
+	{"Sami",		"sm_peach"},
+	{"soreau", 		"NoHat"},
+	{"Solar",		"pinksunhat"},
+	{"sparkle",		"NoHat"},
+	{"szczur", 		"mp3"},
+	{"sdw195", 		"NoHat"},
+	{"sphrix", 		"TeamTopHat"},
+	{"sheepluva",		"zoo_Sheep"},
+	{"Smaxx", 		"NoHat"},
+	{"shadowzero", 		"NoHat"},
+	{"Star and Moon",	"SparkleSuperFun"},
+	{"The 24",		"NoHat"},
+	{"TLD",			"NoHat"},
+	{"Tiyuri", 		"sf_ryu"},
+	{"unC0Rr", 		"cyborg1"},
+	{"Waldsau", 		"cyborg1"},
+	{"wolfmarc", 		"knight"},
+	{"Wuzzy",		"fr_orange"},
+	{"Xeli", 		"android"}
+}
 
-				}
-
-local playerTeamName
-
-function GetKillScore()
-	return math.ceil((hogsKilled / 16)*6000)
-end
-
-function ProtectEnemies()
-	for i=1, 16 do
-		if hhs[i] and GetHealth(hhs[i]) then
-			SetEffect(hhs[i], heInvulnerable, 1)
-		end
+local function assignNamesAndHats(team)
+	for t=1, #team do
+		local d = 1 + GetRandom(#hogData)
+		team[t].name = hogData[d][1]
+		team[t].hat = hogData[d][2]
+		table.remove(hogData, d)
 	end
 end
 
-function GameOverMan()
-	StopMusicSound(sndRideOfTheValkyries)
-	valkyriesTimer = -1
-	missionWon = false
-	ProtectEnemies()
-	SendStat(siGameResult, loc("Challenge over!"))
-	local score = GetKillScore()
-	SendStat(siCustomAchievement, string.format(loc("You have killed %d of 16 hedgehogs (+%d points)."), hogsKilled, score))
-	SendStat(siPointType, "!POINTS")
-	SendStat(siPlayerKills, tostring(score), playerTeamName)
-
-	-- Update highscore
-	updateChallengeRecord("Highscore", score)
-
-	EndGame()
-end
-
-function GG()
-	missionWon = true
-	local completeTime = (TurnTime - finishTime) / 1000
-	ShowMission(loc("Rope-knocking Challenge"), loc("Challenge completed!"), loc("Congratulations!") .. "|" .. string.format(loc("Completion time: %.2fs"), completeTime), 0, 0)
-	PlaySound(sndHomerun)
-	SendStat(siGameResult, loc("Challenge completed!"))
-	local hogScore = GetKillScore()
-	local timeScore = math.ceil((finishTime/TurnTime)*6000)
-	local score = hogScore + timeScore
-
-	SendStat(siCustomAchievement, string.format(loc("You have killed %d of 16 hedgehogs (+%d points)."), hogsKilled, hogScore))
-	SendStat(siCustomAchievement, string.format(loc("You have completed this challenge in %.2f s (+%d points)."), completeTime, timeScore))
-	SendStat(siPointType, "!POINTS")
-	SendStat(siPlayerKills, tostring(score), playerTeamName)
-	SetTeamLabel(playerTeamName, tostring(score))
-
-	-- Update highscore
-	updateChallengeRecord("Highscore", score)
-
-	if hhs[0] and GetHealth(hhs[0]) then
-		SetEffect(hhs[0], heInvulnerable, 1)
-	end
-	SetTurnTimeLeft(MAX_TURN_TIME)
-end
-
-function AssignCharacter(p)
-
-	done = false
-	sanityCheck = 0
-
-	while(done == false) do
 
-		i = 1+ GetRandom(#HogData)
-		if HogData[i][3] == false then
-			HogData[i][3] = true
-			done = true
-			SetHogName(hhs[p], HogData[i][1])
-			SetHogHat(hhs[p], HogData[i][2])
-		elseif HogData[i][3] == true then
-			sanityCheck = sanityCheck +1
-			if sanityCheck == 100 then
-				done = true
-				SetHogName(hhs[p], "Newbie")
-				SetHogHat(hhs[p], "NoHat")
-			end
-		end
-
-	end
-
-end
-
-function onGameInit()
-
-	--Seed = 1
-	GameFlags = gfBorder + gfSolidLand
-
-	TurnTime = 180 * 1000
-	Map = "Ropes"
-	Theme = "Eyes"
-
-	-- Disable Sudden Death
-	WaterRise = 0
-	HealthDecrease = 0
-
-	CaseFreq = 0
-	MinesNum = 0
-	Explosives = 0
+local enemyTeam1 = {
+	{ x = 3350, y = 570 },
+	{ x = 3039, y = 1300 },
+	{ x = 2909, y = 430 },
+	{ x = 2150, y = 879 },
+	{ x = 1735, y = 1136 },
+	{ x = 1563, y = 553 },
+	{ x = 679, y = 859 },
+	{ x = 1034, y = 251 },
+}
+local enemyTeam2 = {
+	{ x = 255, y = 91 },
+	{ x = 2671, y = 7 },
+	{ x = 2929, y = 244 },
+	{ x = 1946, y = 221 },
+	{ x = 3849, y = 1067 },
+	{ x = 3360, y = 659 },
+	{ x = 3885, y = 285 },
+	{ x = 935, y = 1160 },
+}
 
-	playerTeamName = AddMissionTeam(-1)
-	hhs[0] = AddMissionHog(1)
-
-	AddTeam(loc("Unsuspecting Louts"), -2, "Simple", "Island", "Default", "cm_face")
-	for i = 1, 8 do
-		-- The name "generic" is a placeholder and will be replaced in AssignCharacter
-		hhs[i] = AddHog("generic", 0, 1, "NoHat")
-	end
-
-	AddTeam(loc("Unlucky Sods"), -2, "Simple", "Island", "Default", "cm_balrog")
-	for i = 9, 16 do
-		hhs[i] = AddHog("generic", 0, 1, "NoHat")
-	end
-
-end
-
-
-
-function onGameStart()
-	SendHealthStatsOff()
-
-	local recordInfo = getReadableChallengeRecord("Highscore")
-	if recordInfo == nil then
-		recordInfo = ""
-	else
-		recordInfo = "|" .. recordInfo
-	end
-	ShowMission     (
-                        loc("Rope-knocking Challenge"),
-                        loc("Challenge"),
-                        loc("Use the rope to knock your enemies to their doom.") .. "|" ..
-                        loc("Finish this challenge as fast as possible to earn bonus points.").. recordInfo,
-                        -amRope, 4000)
-	SetTeamLabel(playerTeamName, "0")
-
-	PlaceGirder(46,1783, 0)
+assignNamesAndHats(enemyTeam1)
+assignNamesAndHats(enemyTeam2)
 
-	SetGearPosition(hhs[0], 2419, 1769)
-	SetGearPosition(hhs[1], 3350, 570)
-	SetGearPosition(hhs[2], 3039, 1300)
-	SetGearPosition(hhs[3], 2909, 430)
-	SetGearPosition(hhs[4], 2150, 879)
-	SetGearPosition(hhs[5], 1735, 1136)
-	SetGearPosition(hhs[6], 1563, 553)
-	SetGearPosition(hhs[7], 679, 859)
-	SetGearPosition(hhs[8], 1034, 251)
-	SetGearPosition(hhs[9], 255, 67)
-	SetGearPosition(hhs[10], 2671, 7)
-	SetGearPosition(hhs[11], 2929, 244)
-	SetGearPosition(hhs[12], 1946, 221)
-	SetGearPosition(hhs[13], 3849, 1067)
-	SetGearPosition(hhs[14], 3360, 659)
-	SetGearPosition(hhs[15], 3885, 285)
-	SetGearPosition(hhs[16], 935, 1160)
-	HogTurnLeft(hhs[0], true)
-
-	for i = 1, 16 do
-		AssignCharacter(i)
-	end
-
-end
-
-function onGameTick()
-
-	if (TurnTimeLeft == 1) and (missionWon == nil) then
-		GameOverMan()
-	end
-
-	if missionWon ~= nil then
-
-		endTimer = endTimer - 1
-		if endTimer == 1 then
-			EndGame()
-		end
-
-		if not missionEndHandled then
-			if missionWon == true then
-				SaveMissionVar("Won", "true")
-				AddCaption(loc("Victory!"), capcolDefault, capgrpGameState)
-			end
-			missionEndHandled = true
-		end
-
-	end
-
-end
-
-function onGameTick20()
-	if (valkyriesTimer > 0) then
-		valkyriesTimer = valkyriesTimer - 20
-		if valkyriesTimer <= 0 then
-			StopMusicSound(sndRideOfTheValkyries)
-		end
-	end
-end
-
-function onGearDamage(gear, damage)
-
-	if gear == hhs[0] then
-		ouchies = true
-		StopMusicSound(sndRideOfTheValkyries)
-		valkyriesTimer = -1
-		ProtectEnemies()
-	end
+RopeKnocking({
+	missionName = loc("Rope-knocking Challenge"),
+	map = "Ropes",
+	theme = "Eyes",
+	turnTime = 180000,
+	valkyries = true,
+	playerTeam = {
+		x = 2419,
+		y = 1769,
+		faceLeft = true,
+	},
+	enemyTeams = {
+		{
+			name = loc("Unsuspecting Louts"),
+			flag = "cm_face",
+			hogs = enemyTeam1,
+		},
+		{
+			name = loc("Unlucky Sods"),
+			flag = "cm_balrog",
+			hogs = enemyTeam2,
+		},
+	},
+	onGameStart = function()
+		PlaceGirder(46,1783, 0)
+	end,
+})
 
-	if gear ~= hhs[0] and GetGearType(gear) == gtHedgehog and missionWon == nil and ouchies == false then
-
-		AddVisualGear(GetX(gear), GetY(gear), vgtBigExplosion, 0, false)
-		DeleteGear(gear)
-		PlaySound(sndExplosion)
-		AddCaption(string.format(knockTaunt(), GetHogName(gear)), capcolDefault, capgrpMessage)
-
-		hogsKilled = hogsKilled +1
-		SetTeamLabel(playerTeamName, tostring(GetKillScore()))
-
-		if hogsKilled == 15 then
-			PlayMusicSound(sndRideOfTheValkyries)
-			-- Time in ms after which to return to normal music
-			valkyriesTimer = 20000
-		elseif hogsKilled == 16 then
-			finishTime = TurnTimeLeft
-			GG()
-		end
-
-	end
-
-end
-
-function knockTaunt()
-	local r = math.random(0,23)
-	local taunt
-	if r == 0 then taunt =		loc("%s has been knocked out.")
-	elseif r == 1 then taunt =	loc("%s hit the ground.")
-	elseif r == 2 then taunt =	loc("%s splatted.")
-	elseif r == 3 then taunt =	loc("%s was smashed.")
-	elseif r == 4 then taunt =	loc("%s felt unstable.")
-	elseif r == 5 then taunt =	loc("%s exploded.")
-	elseif r == 6 then taunt =	loc("%s fell from a high cliff.")
-	elseif r == 7 then taunt =	loc("%s goes the way of the lemming.")
-	elseif r == 8 then taunt =	loc("%s was knocked away.")
-	elseif r == 9 then taunt =	loc("%s was really unlucky.")
-	elseif r == 10 then taunt =	loc("%s felt victim to rope-knocking.")
-	elseif r == 11 then taunt =	loc("%s had no chance.")
-	elseif r == 12 then taunt =	loc("%s was a good target.")
-	elseif r == 13 then taunt =	loc("%s spawned at a really bad position.")
-	elseif r == 14 then taunt =	loc("%s was doomed from the beginning.")
-	elseif r == 15 then taunt =	loc("%s has fallen victim to gravity.")
-	elseif r == 16 then taunt =	loc("%s hates Newton.")		-- Isaac Newton
-	elseif r == 17 then taunt =	loc("%s had it coming.")
-	elseif r == 18 then taunt =	loc("%s is eliminated!")
-	elseif r == 19 then taunt =	loc("%s fell too fast.")
-	elseif r == 20 then taunt =	loc("%s flew like a rock.")
-	elseif r == 21 then taunt =	loc("%s stumbled.")
-	elseif r == 22 then taunt =	loc("%s was shoved away.")
-	elseif r == 23 then taunt =	loc("%s didn't expect that.")
-	end
-	return taunt
-end
-
-function onGearDelete(gear)
-
-	if (gear == hhs[0]) and (missionWon == nil) then
-		GameOverMan()
-	end
-
-end
-
-function onAmmoStoreInit()
-	SetAmmo(amRope, 9, 0, 0, 0)
-end
-
-function onNewTurn()
- 	SetWeapon(amRope)
-end
--- a/share/hedgewars/Data/Missions/Scenario/Big_Armory.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Missions/Scenario/Big_Armory.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -2,7 +2,7 @@
 HedgewarsScriptLoad("/Scripts/Locale.lua")
 
 local heroAmmo = {}
-for a=0, amCreeper do
+for a=0, amMinigun do
 	if a == amExtraTime then
 		heroAmmo[a] = 2
 	elseif a ~= amNothing and a ~= amCreeper then
--- a/share/hedgewars/Data/Missions/Training/Basic_Training_-_Rope.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Missions/Training/Basic_Training_-_Rope.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -14,6 +14,7 @@
 
 HedgewarsScriptLoad("/Scripts/Locale.lua")
 HedgewarsScriptLoad("/Scripts/Utils.lua")
+HedgewarsScriptLoad("/Scripts/Achievements.lua")
 
 -- Map definition automatically converted from HWMAP file by hwmap2lua.sh
 local map =
@@ -42,6 +43,8 @@
 local gameOver = false		-- game over (only victory possible)
 local currentTarget = 0		-- current target ID. First target = 1
 local flawless = true		-- flawless if no damage taken and no mistake made
+local flowerPower = false	-- random flower visual gears appear all ower the place
+local bonusFlowerPlaced = false -- a hidden flower sprite was placed
 
 local cpX, cpY = 208, 1384	-- hog checkpoint, initialized with start coords
 
@@ -118,6 +121,7 @@
 	SetHealth(hog, initHogHealthFinal)
 	AddAmmo(hog, amRope, 1)
 	SetGearVelocity(hog, 0, 0)
+	flowerPower = false
 
 	if setPos then
 		PlaySound(sndWarp)
@@ -207,6 +211,13 @@
 end
 
 function onGameTick()
+
+	if flowerPower then
+		for i=1,2 do
+			AddVisualGear(math.random(-1024, LAND_WIDTH+1024), math.random(TopY-1024, LAND_HEIGHT), vgtBeeTrace, 0, false)
+		end
+	end
+
 	if gameOver or (not CurrentHedgehog) then
 		return
 	end
@@ -255,7 +266,13 @@
 	if isInFinalChallenge then
 		local dX, dY = GetGearVelocity(CurrentHedgehog)
 		local x, y = GetGearPosition(CurrentHedgehog)
-		if band(GetState(CurrentHedgehog), gstHHDriven) ~= 0 and GetAmmoCount(CurrentHedgehog, amRope) == 0 and
+		local driven = band(GetState(CurrentHedgehog), gstHHDriven) ~= 0
+		if driven and y > 1310 and x < 338 and not flowerPower then
+			-- Player reached the bonus flower. Enable Flower Power mode!
+			PlaySound(sndKiss)
+			flowerPower = true
+		end
+		if driven and GetAmmoCount(CurrentHedgehog, amRope) == 0 and
 				GetFlightTime(CurrentHedgehog) == 0 and (not ropeGear) and
 				math.abs(dX) < 5 and math.abs(dY) < 5 and
 				(x < 3417 or y > 471) then
@@ -268,6 +285,12 @@
 end
 
 function onGameTick20()
+	if flowerPower then
+		if math.random(1,2) == 1 then
+			local vg = AddVisualGear(GetX(CurrentHedgehog), GetY(CurrentHedgehog), vgtStraightShot, sprTargetBee, false, 1)
+			SetVisualGearValues(vg, nil, nil, nil, nil, math.random(0, 360), nil, nil, nil, nil, 0xFFFFFFC0)
+		end
+	end
 	if not gameOver and not target1Reached and CurrentHedgehog and gearIsInCircle(CurrentHedgehog, targetData[1][1], targetData[1][2], 48, false) then
 		ShowMission(loc("Basic Rope Training"), loc("Target Puncher"),
 		loc("Okay, now destroy the target|using the baseball bat.").."|"..
@@ -362,6 +385,12 @@
 			2, 25000)
 			eraseGirder(4)
 			eraseGirder(5)
+			-- Sneakingly place a flower sprite near spawn when player reached the last section
+			-- When the player reaches it, Flower Power mode is enabled
+			if not bonusFlowerPlaced then
+				PlaceSprite(240, 1360, sprTargetBee, 0)
+				bonusFlowerPlaced = true
+			end
 			AddAmmo(hog, amRope, 1)
 			SetHealth(hog, initHogHealthFinal)
 			isInFinalChallenge = true
@@ -379,6 +408,9 @@
 			AddAmmo(hog, amRope, 0)
 			SendStat(siCustomAchievement, loc("Oh yeah! You sure know how to rope!"))
 			SendStat(siGameResult, loc("You have finished the Basic Rope Training!"))
+			if flowerPower then
+				awardAchievement(loc("Flower Power"))
+			end
 			EndGame()
 			SetState(hog, gstWinner)
 			gameOver = true
--- a/share/hedgewars/Data/Scripts/Multiplayer/Battalion.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Battalion.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -804,7 +804,7 @@
   PlaySound(sndShotgunReload)
 
   if GetRandom(100) < emptyCrateChance then
-    AddCaption(loc("It's empty!"), msgColor, capgrpMessage)
+    AddCaption(GetEngineString("TMsgStrId", sidEmptyCrate), msgColor, capgrpMessage)
     return
   elseif GetRandom(100) < bonusCrateChance then
     factor = 3
@@ -834,7 +834,7 @@
 
   if GetRandom(100) < emptyCrateChance then
     if IsHogLocal(CurHog) then
-      AddCaption(loc("It's empty!"), msgColor, capgrpMessage)
+      AddCaption(GetEngineString("TMsgStrId", sidEmptyCrate), msgColor, capgrpMessage)
     end
     return
   elseif GetRandom(100) < bonusCrateChance then
@@ -880,7 +880,7 @@
 
   if GetRandom(100) < emptyCrateChance then
     if IsHogLocal(CurHog) then
-      AddCaption(loc("It's empty!"), msgColor, capgrpMessage)
+      AddCaption(GetEngineString("TMsgStrId", sidEmptyCrate), msgColor, capgrpMessage)
     end
     return
   elseif GetRandom(100) < bonusCrateChance then
@@ -1532,7 +1532,7 @@
     useVariantHats = params['mutate']
   end
 
-  if params['strength'] ~= nil and tonumber(params['strength']) > 0 then
+  if params['strength'] ~= nil and tonumber(params['strength']) ~= nil and tonumber(params['strength']) > 0 then
     strength = tonumber(params['strength'])
     -- Highland
     if mode == 'highland' then
@@ -1561,7 +1561,7 @@
     end
   end
 
-  if params['luck'] ~= nil and tonumber(params['luck']) > 0 then
+  if params['luck'] ~= nil and tonumber(params['luck']) and tonumber(params['luck']) > 0 then
     luck = tonumber(params['luck'])
 
     healthCrateChance = div(healthCrateChance * luck, 100)
--- a/share/hedgewars/Data/Scripts/Multiplayer/Capture_the_Flag.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Capture_the_Flag.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -49,9 +49,9 @@
 -- 0.3
 ---------
 -- [fufufufu kamikaze fix]
--- added nill checks to make sure the player doesn't generate errors by producing a nil value in hhs[] when he uses kamikaze
+-- added nil checks to make sure the player doesn't generate errors by producing a nil value in hhs[] when using kamikaze
 -- added a check to make sure the player doesn't kamikaze straight down and make the flag's starting point underwater
--- added a check to make sure the player drops the flag if he has it and he uses kamikaze
+-- added a check to make sure the player drops the flag if they have it and they use kamikaze
 
 --------
 -- 0.4
@@ -62,7 +62,7 @@
 -- fix piano strike exploit
 -- changed delay to allow for better portals
 -- changed starting feedback a little
--- increased the radius around the circle indicating the flag thief so that it doesn't obscure his health
+-- increased the radius around the circle indicating the flag thief so that it doesn't obscure their health
 
 --------
 -- 0.5
@@ -597,7 +597,7 @@
 function onGearResurrect(gear)
 
 	if GetGearType(gear) == gtHedgehog then
-		-- mark the flag thief as dead if he needed a respawn
+		-- mark the flag thief as dead if they needed a respawn
 		for i = 0, ClansCount-1 do
 			if gear == fThief[i] then
 				FlagThiefDead(gear)
--- a/share/hedgewars/Data/Scripts/Multiplayer/Continental_supplies.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Continental_supplies.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -236,8 +236,27 @@
 		select_wep = ""
 		quit_hint = ""
 	end
+	local gameFlagPrepend = ""
+	local continentInfoPlace = loc("Continents: Select a continent after placing your hogs.")
+	local continentInfoNormal = loc("Continents: Select a continent at the beginning.")
+	local continentInfo = continentInfoNormal
+	if GetGameFlag(gfKing) then
+		gameFlagPrepend = gameFlagPrepend .. GetEngineString("TGoalStrId", gidKing).."|"
+		if GetGameFlag(gfPlaceHog) then
+			gameFlagPrepend = gameFlagPrepend .. GetEngineString("TGoalStrId", gidPlaceHog).."|"
+		else
+			gameFlagPrepend = gameFlagPrepend .. GetEngineString("TGoalStrId", gidPlaceKing).."|"
+		end
+		continentInfo = continentInfoPlace
+	else
+		if GetGameFlag(gfPlaceHog) then
+			gameFlagPrepend = gameFlagPrepend .. GetEngineString("TGoalStrId", gidPlaceHog).."|"
+			continentInfo = continentInfoPlace
+		end
+	end
 	local general_information =
-		loc("Continents: Select a continent at the beginning.").."|"..
+		gameFlagPrepend..
+		continentInfo.."|"..
 		loc("Supplies: Each continent gives you unique weapons, specials and health.").."|"..
 		loc("Weapon specials: Some weapons have special modes (see weapon description).")..
 		select_wep..
@@ -1144,9 +1163,15 @@
 
 function onGameInit()
 	SuddenDeathTurns= SuddenDeathTurns+1
+	-- Disable GameFlags that are incompatible with this game
+	DisableGameFlags(gfPerHogAmmo, gfSharedAmmo, gfResetWeps)
 end
 
 function onEndTurn()
+	if(TotalRounds == -1) then
+		-- Do nothing if placing hogs
+		return
+	end
 	if(CS.TEAM_CONTINENT[GetHogTeamName(CurrentHedgehog)]==0)
 	then
 		CS.TEAM_CONTINENT[GetHogTeamName(CurrentHedgehog)]=GetRandom(#CS.CONTINENT_INFORMATION)+1
@@ -1188,7 +1213,7 @@
 	SetAttackState(true)
 
 	--when all hogs are "placed"
-	if(GetCurAmmoType()~=amTeleport)
+	if(TotalRounds ~= -1)
 	then
 		--will run once when the game really starts (after placing hogs and so on
 		if(CS.INIT_TEAMS[GetHogTeamName(CurrentHedgehog)] == nil)
@@ -2142,7 +2167,11 @@
 		CS.PARACHUTE_IS_ON=1
 	elseif(GetGearType(gearUid)==gtSwitcher)
 	then
-		CS.SWITCH_HOG_IS_ON=true
+		if not CS.GAME_STARTED then
+			DeleteGear(gearUid)
+		else
+			CS.SWITCH_HOG_IS_ON=true
+		end
 	end
 end
 
--- a/share/hedgewars/Data/Scripts/Multiplayer/HedgeEditor.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Scripts/Multiplayer/HedgeEditor.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -397,91 +397,91 @@
 				loc_noop("Clowns"),
 				{"WhySoSerious","clown-copper","clown-crossed","clown","Joker"},
 				{loc_noop("Baggy"),loc_noop("Bingo"),loc_noop("Bobo"),loc_noop("Bozo"),loc_noop("Buster"),loc_noop("Chester"),loc_noop("Copper"),loc_noop("Heckles"),loc_noop("Giggles"),loc_noop("Jingo"),loc_noop("Molly"),loc_noop("Loopy"),loc_noop("Patches"),loc_noop("Tatters")},
-				"R","cm_balls","Mobster","Rubberduck","Castle"
+				"R","cm_balls","Mobster_qau","Rubberduck","Castle"
 				},
 
 				{
 				loc_noop("Street Fighters"),
 				{"sf_balrog","sf_blanka","sf_chunli","sf_guile","sf_honda","sf_ken","sf_ryu","sf_vega"},
 				{loc_noop("Balrog"),loc_noop("Blanka"),loc_noop("Chunli"),loc_noop("Guile"),loc_noop("Honda"),loc_noop("Ken"),loc_noop("Ryu"),loc_noop("Vega")},
-				"F","cm_balrog","Surfer","dragonball","Castle"
+				"F","cm_balrog","Surfer_qau","dragonball","Castle"
 				},
 
 				{
 				loc_noop("Cybernetic Empire"),
 				{"cyborg1","cyborg2"},
 				{loc_noop("Unit 189"),loc_noop("Unit 234"),loc_noop("Unit 333"),loc_noop("Unit 485"),loc_noop("Unit 527"),loc_noop("Unit 638"),loc_noop("Unit 709"),loc_noop("Unit 883")},
-				"R","cm_binary","Robot","Grave","Castle"
+				"R","cm_binary","Robot_qau","Grave","Castle"
 				},
 
 				{
 				loc_noop("Color Squad"),
 				{"hair_blue","hair_green","hair_red","hair_yellow","hair_purple","hair_grey","hair_orange","hair_pink"},
 				{loc_noop("Blue"),loc_noop("Green"),loc_noop("Red"),loc_noop("Yellow"),loc_noop("Purple"),loc_noop("Grey"),loc_noop("Orange"),loc_noop("Pink")},
-				"F","mauritius","Singer","Grave","Castle"
+				"F","mauritius","Singer_qau","Grave","Castle"
 				},
 
 				{
 				loc_noop("Fruit"),
 				{"fr_apple","fr_banana","fr_lemon","fr_orange","fr_pumpkin","fr_tomato"},
 				{loc_noop("Juicy"),loc_noop("Squishy"),loc_noop("Sweet"),loc_noop("Sour"),loc_noop("Bitter"),loc_noop("Ripe"),loc_noop("Rotten"),loc_noop("Fruity")},
-				"R","cm_mog","Default","Cherry","Castle"
+				"R","cm_mog","Default_qau","Cherry","Castle"
 				},
 
 				{
 				loc_noop("The Police"),
 				{"bobby","bobby2v","policecap","policegirl","royalguard"},
 				{loc_noop("Hightower"),loc_noop("Lassard"),loc_noop("Callahan"),loc_noop("Jones"),loc_noop("Harris"),loc_noop("Thompson"),loc_noop("Mahoney"),loc_noop("Hooks"),loc_noop("Tackleberry")},
-				"R","cm_star","British","Statue","Castle"
+				"R","cm_star","British_qau","Statue","Castle"
 				},
 
 				{
 				loc_noop("The Ninja-Samurai Alliance"),
 				{"NinjaFull","NinjaStraight","NinjaTriangle","Samurai","StrawHat","StrawHatEyes","StrawHatFacial","naruto"},
 				{loc_noop("Bushi"),loc_noop("Tatsujin"),loc_noop("Itami"),loc_noop("Arashi"),loc_noop("Shinobi"),loc_noop("Ukemi"),loc_noop("Godai"),loc_noop("Kenshi"),loc_noop("Ninpo")},
-				"R","japan","Default","octopus","Castle"
+				"R","japan","Default_qau","octopus","Castle"
 				},
 
 				{
 				loc_noop("Pokémon"),
 				{"poke_ash","poke_charmander","poke_chikorita","poke_jigglypuff","poke_lugia","poke_mudkip","poke_pikachu","poke_slowpoke","poke_squirtle","poke_voltorb"},
 				{loc_noop("Ash"),loc_noop("Charmander"),loc_noop("Chikorita"),loc_noop("Jigglypuff"),loc_noop("Lugia"),loc_noop("Mudkip"),loc_noop("Pikachu"),loc_noop("Slowpoke"),loc_noop("Squirtle"),loc_noop("Voltorb")},
-				"FR","cm_pokemon","Default","pokeball","Castle"
+				"FR","cm_pokemon","Default_qau","pokeball","Castle"
 				},
 
 				{
 				loc_noop("The Zoo"),
 				{"zoo_Bat","zoo_Beaver","zoo_Bunny","zoo_Deer","zoo_Hedgehog","zoo_Moose","zoo_Pig","zoo_Porkey","zoo_Sheep","zoo_chicken","zoo_elephant","zoo_fish","zoo_frog","zoo_snail","zoo_turtle"},
 				{loc_noop("Batty"),loc_noop("Tails"),loc_noop("Bunny"),loc_noop("Deer"),loc_noop("Spikes"),loc_noop("Horns"),loc_noop("Bacon"),loc_noop("Porkey"),loc_noop("Sheepy"),loc_noop("Chicken"),loc_noop("Trunks"),loc_noop("Fishy"),loc_noop("Legs"),loc_noop("Slimer"),loc_noop("Roshi")},
-				"FR","cm_birdy","Default","Bone","Castle"
+				"FR","cm_birdy","Default_qau","Bone","Castle"
 				},
 
 				{
 				loc_noop("The Devs"),
 				{"ushanka","zoo_Sheep","bb_bob","Skull","poke_mudkip","lambda","WizardHat","sf_ryu","android","fr_lemon","mp3"},
 				{loc_noop("unC0Rr"), loc_noop("sheepluva"), loc_noop("nemo"), loc_noop("mikade"), loc_noop("koda"), loc_noop("burp"),loc_noop("HeneK"),loc_noop("Tiyuri"),loc_noop("Xeli"),loc_noop("Displacer"),loc_noop("szczur")},
-				"FR","cm_hw","Classic","Statue","Castle"
+				"FR","cm_hw","Classic_qau","Statue","Castle"
 				},
 
 				{
 				loc_noop("Mushroom Kingdom"),
 				{"sm_daisy","sm_luigi","sm_mario","sm_peach","sm_toad","sm_wario","NoHat","NoHat"},
 				{loc_noop("Daisy"),loc_noop("Luigi"),loc_noop("Mario"),loc_noop("Princess Peach"),loc_noop("Toad"),loc_noop("Wario"),loc_noop("Yoshi"),loc_noop("Waluigi")},
-				"FR","comoros","Default","Badger","Castle"
+				"FR","comoros","Default_qau","Badger","Castle"
 				},
 
 				{
 				loc_noop("Pirates"),
 				{"pirate_jack","pirate_jack_bandana"},
 				{loc_noop("Rusted Diego"),loc_noop("Fuzzy Beard"),loc_noop("Al.Kaholic"),loc_noop("Morris"),loc_noop("Yumme Gunpowder"),loc_noop("Cutlass Cain"),loc_noop("Jim Morgan"),loc_noop("Silver"),loc_noop("Dubloon Devil"),loc_noop("Ugly Mug"),loc_noop("Fair Wind"),loc_noop("Scallywag"),loc_noop("Salty Dog"),loc_noop("Bearded Beast"),loc_noop("Timbers"),loc_noop("Both Barrels"),loc_noop("Jolly Roger")},
-				"R","cm_pirate","Pirate","chest","Castle"
+				"R","cm_pirate","Pirate_qau","chest","Castle"
 				},
 
 				{
 				loc_noop("Gangsters"),
 				{"Moustache","Cowboy","anzac","Bandit","thug","Jason","NinjaFull","chef"},
 				{loc_noop("The Boss"),loc_noop("Jimmy"),loc_noop("Frankie"),loc_noop("Morris"),loc_noop("Mooney"),loc_noop("Knives"),loc_noop("Tony"),loc_noop("Meals")},
-				"F","cm_anarchy","Mobster","deadhog","Castle"
+				"F","cm_anarchy","Mobster_qau","deadhog","Castle"
 				},
 
 
@@ -489,7 +489,7 @@
 				loc_noop("Twenty-Twenty"),
 				{"Glasses","lambda","SunGlasses","Sniper","Terminator_Glasses","Moustache_glasses","doctor","punkman","rasta"},
 				{loc_noop("Specs"),loc_noop("Speckles"),loc_noop("Spectator"),loc_noop("Glasses"),loc_noop("Glassy"),loc_noop("Harry Potter"),loc_noop("Goggles"),loc_noop("Clark Kent"),loc_noop("Goggs"),loc_noop("Lightbender"),loc_noop("Specs Appeal"),loc_noop("Four Eyes")},
-				"R","cm_face","Default","eyecross","Castle"
+				"R","cm_face","Default_qau","eyecross","Castle"
 				},
 
 
@@ -497,28 +497,28 @@
 				loc_noop("Monsters"),
 				{"Skull","Jason","ShaggyYeti","Zombi","cyclops","Mummy","hogpharoah","vampirichog"},
 				{loc_noop("Bones"),loc_noop("Jason"),loc_noop("Yeti"),loc_noop("Zombie"),loc_noop("Old One Eye"),loc_noop("Ramesses"),loc_noop("Xerxes"),loc_noop("Count Hogula")},
-				"FR","cm_vampire","Default","octopus","Castle"
+				"FR","cm_vampire","Default_qau","octopus","Castle"
 				},
 
 				{
 				loc_noop("The Iron Curtain"),
 				{"ushanka","war_sovietcomrade1","war_sovietcomrade1","ushanka"},
 				{loc_noop("Alex"),loc_noop("Sergey"),loc_noop("Vladimir"),loc_noop("Andrey"),loc_noop("Dimitry"),loc_noop("Ivan"),loc_noop("Oleg"),loc_noop("Kostya"),loc_noop("Anton"),loc_noop("Eugene")},
-				"R","cm_soviet","Russian","skull","Castle"
+				"R","cm_soviet","Russian_qau","skull","Castle"
 				},
 
 				{
 				loc_noop("Desert Storm"),
 				{"war_desertofficer","war_desertgrenadier1","war_desertmedic","war_desertsapper1","war_desertgrenadier2","war_desertgrenadier4","war_desertsapper2","war_desertgrenadier5"},
 				{loc_noop("Brigadier Briggs"),loc_noop("Lt. Luke"),loc_noop("Sgt. Smith"),loc_noop("Corporal Calvin"),loc_noop("Frank"),loc_noop("Joe"),loc_noop("Sam"),loc_noop("Donald")},
-				"F","bhutan","Default","Grave","Castle"
+				"F","bhutan","Default_qau","Grave","Castle"
 				},
 
 				{
 				loc_noop("The Hospital"),
 				{"doctor","nurse","war_britmedic","war_desertmedic","war_germanww2medic"},
 				{loc_noop("Dr. Blackwell"),loc_noop("Dr. Drew"),loc_noop("Dr. Harvey"),loc_noop("Dr. Crushing"),loc_noop("Dr. Jenner"),loc_noop("Dr. Barnard"),loc_noop("Dr. Parkinson"),loc_noop("Dr. Banting"),loc_noop("Dr. Horace"),loc_noop("Dr. Hollows"),loc_noop("Dr. Jung")},
-				"R","cm_firstaid","Default","heart","Castle"
+				"R","cm_firstaid","Default_qau","heart","Castle"
 				}
 
 				}
@@ -1503,7 +1503,7 @@
 		if not tFort then tFort = "Castle" end
 		if not tGrave then tGrave = "Statue" end
 		if not tFlag then tFlag= "hedgewars" end
-		if not tVoice then tVoice = "Default" end
+		if not tVoice then tVoice = "Default_qau" end
 
 		lastRecordedTeam = GetHogTeamName(gear)
 
@@ -3117,9 +3117,9 @@
 	elseif (preciseOn == true) and (s == 1) then
 		helpDisabled = not(helpDisabled)
 		if helpDisabled then
-			AddCaption(loc("Help Disabled"), colorInfoMessage, capgrpVolume)
+			AddCaption(loc("Help Disabled"), capcolSetting, capgrpVolume)
 		else
-			AddCaption(loc("Help Enabled"), colorInfoMessage, capgrpVolume)
+			AddCaption(loc("Help Enabled"), capcolSetting, capgrpVolume)
 		end
 		updateHelp()
 	elseif (cat[cIndex] == loc("Sprite Placement Mode")) or (cat[cIndex] == loc("Girder Placement Mode")) or (cat[cIndex] == loc("Rubber Placement Mode")) or (cat[cIndex] == loc("Sprite Modification Mode")) then
@@ -3342,7 +3342,7 @@
 
 	reducedSpriteIDArrayFrames = {
 		1, 8, 4, 1, 1,
-		AmmoTypeMax, AmmoTypeMax, 3, 4, 8, 1,
+		AmmoTypeMax, AmmoTypeMax, 3, 4, 9, 1,
 		1, 1, 1, 1, 1, 1,
 		1, 1, 1, 1, 1,
 	}
--- a/share/hedgewars/Data/Scripts/Multiplayer/Highlander.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Highlander.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -323,13 +323,13 @@
 
 		if currHog ~= lastHog then
 
-			-- re-assign ammo to this guy, so that his entire ammo set will
+			-- re-assign ammo to this fellow, so that their entire ammo set will
 			-- be visible during another player's turn
 			if lastHog ~= nil and GetHealth(lastHog) then
 				ConvertValues(lastHog)
 			end
 
-			-- give the new hog what he is supposed to have, too
+			-- give the new hog what they are supposed to have, too
 			ConvertValues(CurrentHedgehog)
 
 		end
--- a/share/hedgewars/Data/Scripts/Multiplayer/Mutant.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Mutant.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -21,6 +21,7 @@
 HedgewarsScriptLoad("/Scripts/Locale.lua")
 HedgewarsScriptLoad("/Scripts/Tracker.lua")
 HedgewarsScriptLoad("/Scripts/Params.lua")
+HedgewarsScriptLoad("/Scripts/Utils.lua")
 
 --[[
     MUTANT SCRIPT
@@ -59,6 +60,7 @@
 local teamsDead = {}
 local teamsDeleted = {}
 local hogLimitHit = false
+local teamLimitHit = false
 local cnthhs
 
 local circles = {}
@@ -157,7 +159,7 @@
 end
 
 function limitHogsClan(gear)
-    hogLimitHit = true
+    teamLimitHit = true
     SetEffect(gear, heResurrectable, 0)
     setGearValue(gear, "excess", true)
     DeleteGear(gear)
@@ -197,8 +199,10 @@
         cnthhs = 0
         runOnHogsInTeam(limitHogsTeam, GetTeamName(i))
     end
+    if teamLimitHit then
+        WriteLnToChat(loc("Only one team per clan allowed! Excess teams will be removed."))
+    end
     if hogLimitHit then
-        -- TODO: Update warning message to include excess teams as well
         WriteLnToChat(loc("Only one hog per team allowed! Excess hogs will be removed."))
     end
     trackTeams()
@@ -789,8 +793,9 @@
         if not gameOver then
             local winner = createEndGameStats()
             if winner then
-                SendStat(siGameResult, string.format(loc("%s wins!"), winner))
-                AddCaption(string.format(loc("%s wins!"), winner), capcolDefault, capgrpGameState)
+                local winText = formatEngineString(GetEngineString("TMsgStrId", sidWinner), winner)
+                SendStat(siGameResult, winText)
+                AddCaption(winText, capcolDefault, capgrpGameState)
             end
             gameOver = true
         end
@@ -813,6 +818,11 @@
     if GetGearType(gear) == gtHedgehog then
         numhhs = numhhs - 1
 
+        if (not gameOver) and (gear == mutant) then
+            mutant = nil
+            mt_hurt = false
+        end
+
         local found
         for i=0, #hhs do
             if hhs[i] == gear then
--- a/share/hedgewars/Data/Scripts/Multiplayer/Racer.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Racer.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -32,6 +32,7 @@
 HedgewarsScriptLoad("/Scripts/Locale.lua")
 HedgewarsScriptLoad("/Scripts/OfficialChallenges.lua")
 HedgewarsScriptLoad("/Scripts/Params.lua")
+HedgewarsScriptLoad("/Scripts/Utils.lua")
 
 ------------------
 -- Got Variables?
@@ -55,6 +56,9 @@
 local specialPointsY = {}
 local specialPointsCount = 0
 
+local landObjectPoints = {}
+local landObjects = {}
+
 local TeamRope = false
 
 local waypointCursor = false
@@ -101,6 +105,7 @@
 local wpCol = {}
 local wpActive = {}
 local wpRad = 450
+local WAYPOINT_RADIUS_MIN = 40
 local wpCount = 0
 local wpLimit = 8
 
@@ -187,22 +192,25 @@
         TeamRope = true
     end
     if params["rounds"] ~= nil then
-        roundLimit = math.max(1, math.floor(tonumber(params["rounds"])))
+        roundLimit = tonumber(params["rounds"])
         if type(roundLimit) ~= "number" then
              roundLimit = 3
         end
+        roundLimit = math.max(1, math.floor(roundLimit))
     end
     if params["waypointradius"] ~= nil then
-        wpRad = math.max(40, math.floor(tonumber(params["waypointradius"])))
+        wpRad = tonumber(params["waypointradius"])
         if type(wpRad) ~= "number" then
              wpRad = 450
         end
+        wpRad = math.max(WAYPOINT_RADIUS_MIN, math.floor(wpRad))
     end
     if params["maxwaypoints"] ~= nil then
-        wpLimit = math.max(2, math.floor(tonumber(params["maxwaypoints"])))
+        wpLimit = tonumber(params["maxwaypoints"])
         if type(wpLimit) ~= "number" then
              wpLimit = 8
         end
+        wpLimit = math.max(2, math.floor(wpLimit))
     end
 end
 
@@ -501,17 +509,17 @@
 		local roundDraw = false
 		if #clanScores >= 2 and clanScores[1].score == clanScores[2].score and clanScores[1].score ~= MAX_TURN_TIME then
 			roundDraw = true
-                        SendStat(siGameResult, loc("Round draw"))
+                        SendStat(siGameResult, GetEngineString("TMsgStrId", sidDraw))
                         SendStat(siCustomAchievement, loc("The teams are tied for the fastest time."))
                 elseif #sortedTeams >= 1 then
-                        SendStat(siGameResult, string.format(loc("%s wins!"), sortedTeams[1].name))
+                        SendStat(siGameResult, formatEngineString(GetEngineString("TMsgStrId", sidWinner), sortedTeams[1].name))
                         SendStat(siCustomAchievement, string.format(loc("%s wins with a best time of %.1fs."), sortedTeams[1].name, (sortedTeams[1].score/1000)))
                         for i=1,#unfinishedArray do
                                  SendStat(siCustomAchievement, unfinishedArray[i])
                         end
                 else
 			roundDraw = true
-                        SendStat(siGameResult, loc("Round draw"))
+                        SendStat(siGameResult, GetEngineString("TMsgStrId", sidDraw))
                         SendStat(siCustomAchievement, loc("Nobody managed to finish the race. What a shame!"))
                         if specialPointsCount > 0 then
                                 SendStat(siCustomAchievement, loc("Maybe you should try an easier map next time."))
@@ -609,11 +617,10 @@
 ----------------------------------
 
 function onGameInit()
-        EnableGameFlags(gfInfAttack)
+        EnableGameFlags(gfInfAttack, gfSolidLand)
         -- Force-disable various game flags that would break the script
         DisableGameFlags(gfKing, gfSwitchHog, gfAISurvival, gfPlaceHog, gfTagTeam)
         CaseFreq = 0
-        TurnTime = 90000
         WaterRise = 0
         HealthDecrease = 0
 end
@@ -635,6 +642,20 @@
 end
 
 function onGameStart()
+
+	-- Adjust pre-defined waypoints in scaled drawn maps
+	if MapGen == mgDrawn and MapFeatureSize ~= 12 and specialPointsCount > 0 then
+		local landW = RightX - LeftX + 1
+		local landH = LAND_HEIGHT - TopY
+		-- Reposition pre-defined waypoints
+        	for i = 0, (specialPointsCount-1) do
+        		specialPointsX[i] = LeftX + div(specialPointsX[i] * landW, 4096)
+        		specialPointsY[i] = TopY + div(specialPointsY[i] * landH, 2048)
+		end
+		-- Scale waypoint size
+		wpRad = math.max(WAYPOINT_RADIUS_MIN, div(wpRad * landW, 4096))
+	end
+
 	if ClansCount >= 2 then
 		SendGameResultOff()
 		SendRankingStatsOff()
@@ -642,6 +663,11 @@
 		SendAchievementsStatsOff()
 	end
 
+        -- Keep track of land objects that got placed by the scheme (mines, air mines, barrels)
+        for id, _ in pairs(landObjects) do
+                table.insert(landObjectPoints, { type = GetGearType(id), x = GetX(id), y = GetY(id) })
+        end
+
         SetSoundMask(sndIncoming, true)
         SetSoundMask(sndMissed, true)
 
@@ -833,8 +859,17 @@
                 end
         end
 
-        -- Set the waypoints to unactive on new round
         if gameBegun and not gameOver then
+
+                -- Reset land objects so each player starts with same racing conditions
+                for id,_ in pairs(landObjects) do
+                        DeleteGear(id)
+                end
+                for i=1, #landObjectPoints do
+                        AddGear(landObjectPoints[i].x, landObjectPoints[i].y, landObjectPoints[i].type, 0, 0, 0, 0)
+                end
+
+                -- Set the waypoints to unactive
                 for i = 0,(wpCount-1) do
                         wpActive[i] = false
                         wpCol[i] = waypointColour
@@ -946,7 +981,7 @@
 		waypointCursor = false
 	end
 
-        -- has the player started his tumbling spree?
+        -- has the player started?
         if (CurrentHedgehog ~= nil) then
 
                 --airstrike conversion used to be here
@@ -979,7 +1014,7 @@
 
                 end
 
-                -- if the player has expended his tunbling time, stop him tumbling
+                -- if the player has expended their time, stop
                 if TurnTimeLeft <= 20 and not turnSkipped then
                         DisableTumbler()
                 end
@@ -1022,18 +1057,20 @@
 end
 
 function onGearAdd(gear)
-
-        if GetGearType(gear) == gtHedgehog then
+        local gt = GetGearType(gear)
+        if gt == gtHedgehog then
                 hhs[numhhs] = gear
                 numhhs = numhhs + 1
                 SetEffect(gear, heResurrectable, 1)
-        elseif GetGearType(gear) == gtAirAttack then
+        elseif gt == gtAirAttack then
                 cGear = gear
 		local x,y = GetGearPosition(cGear)
         	SetGearPosition(cGear, 10000, y)
-        elseif (not gameBegun) and GetGearType(gear) == gtAirBomb then
+        elseif (gt == gtMine or gt == gtAirMine or gt == gtExplosives) then
+                landObjects[gear] = true
+        elseif (not gameBegun) and gt == gtAirBomb then
 		DeleteGear(gear)
-        elseif GetGearType(gear) == gtRope and TeamRope then
+        elseif gt == gtRope and TeamRope then
             SetTag(gear,1)
             SetGearValues(gear,nil,nil,nil,nil,nil,nil,nil,nil,nil,nil,GetClanColor(GetHogClan(CurrentHedgehog)))
         end
@@ -1043,6 +1080,8 @@
 
         if GetGearType(gear) == gtAirAttack then
                 cGear = nil
+        elseif landObjects[gear] == true then
+                landObjects[gear] = nil
         elseif gear == cameraGear then
                 cameraGear = nil
         end
--- a/share/hedgewars/Data/Scripts/Multiplayer/Space_Invasion.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Space_Invasion.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -2,6 +2,7 @@
 HedgewarsScriptLoad("/Scripts/Locale.lua")
 HedgewarsScriptLoad("/Scripts/Tracker.lua")
 HedgewarsScriptLoad("/Scripts/Params.lua")
+HedgewarsScriptLoad("/Scripts/Utils.lua")
 
 --[[
 Space Invasion
@@ -203,7 +204,7 @@
 -- hog awards
 SI.awardRoundScore = nil	-- hog with most score in 1 round (min. 50)
 SI.awardRoundKills = nil	-- most kills in 1 round (min. 5)
-SI.awardAccuracy = nil	-- awarded to hog who didn’t miss once in his round, with most kills (min. 5)
+SI.awardAccuracy = nil	-- awarded to hog who didn’t miss once in their round, with most kills (min. 5)
 SI.awardCombo = nil	-- hog with longest combo (min. 5)
 
 
@@ -584,8 +585,10 @@
 
 	if lGameOver then
 		local winnerTeam = teamStats[1].name
-		AddCaption(string.format(loc("%s wins!"), winnerTeam), capcolDefault, capgrpGameState)
-		SendStat(siGameResult, string.format(loc("%s wins!"), winnerTeam))
+		local winText = formatEngineString(GetEngineString("TMsgStrId", sidWinner), winnerTeam)
+
+		AddCaption(winText, capcolDefault, capgrpGameState)
+		SendStat(siGameResult, winText)
 
 		for i = 1, TeamsCount do
 			SendStat(siPointType, "!POINTS")
@@ -1040,26 +1043,26 @@
 
 function onParameters()
 	parseParams()
-	if params["rounds"] ~= nil then
+	if params["rounds"] ~= nil and tonumber(params["rounds"]) then
 		SI.roundLimit = math.floor(tonumber(params["rounds"]))
 	end
-	if params["barrels"] ~= nil then
+	if params["barrels"] ~= nil and tonumber(params["barrels"]) then
 		SI.startBarrels = math.floor(tonumber(params["barrels"]))
 	end
-	if params["pings"] ~= nil then
+	if params["pings"] ~= nil and tonumber(params["pings"]) then
 		SI.startRadShots = math.floor(tonumber(params["pings"]))
 	end
-	if params["shield"] ~= nil then
+	if params["shield"] ~= nil and tonumber(params["shield"]) then
 		SI.startShield = math.min(250-80, math.floor(tonumber(params["shield"])))
 	end
 
-	if params["barrelbonus"] ~= nil then
+	if params["barrelbonus"] ~= nil and tonumber(params["barrelbonus"]) then
 		SI.barrelBonus = math.floor(tonumber(params["barrelbonus"]))
 	end
-	if params["shieldbonus"] ~= nil then
+	if params["shieldbonus"] ~= nil and tonumber(params["shieldbonus"]) then
 		SI.shieldBonus = math.floor(tonumber(params["shieldbonus"]))
 	end
-	if params["timebonus"] ~= nil then
+	if params["timebonus"] ~= nil and tonumber(params["timebonus"]) then
 		SI.timeBonus = math.floor(tonumber(params["timebonus"]))
 	end
 	if params["forcetheme"] == "false" then
--- a/share/hedgewars/Data/Scripts/Multiplayer/TechRacer.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Scripts/Multiplayer/TechRacer.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -470,17 +470,18 @@
 		local roundDraw = false
 		if #clanScores >= 2 and clanScores[1].score == clanScores[2].score and clanScores[1].score ~= MAX_TURN_TIME then
 			roundDraw = true
-			SendStat(siGameResult, loc("Round draw"))
+			SendStat(siGameResult, GetEngineString("TMsgStrId", sidDraw))
 			SendStat(siCustomAchievement, loc("The teams are tied for the fastest time."))
 		elseif #sortedTeams >= 1 then
-			SendStat(siGameResult, string.format(loc("%s wins!"), sortedTeams[1].name))
+
+			SendStat(siGameResult, formatEngineString(GetEngineString("TMsgStrId", sidWinner), sortedTeams[1].name))
 			SendStat(siCustomAchievement, string.format(loc("%s wins with a best time of %.1fs."), sortedTeams[1].name, (sortedTeams[1].score/1000)))
 			for i=1,#unfinishedArray do
 				 SendStat(siCustomAchievement, unfinishedArray[i])
 			end
 		else
 			roundDraw = true
-			SendStat(siGameResult, loc("Round draw"))
+			SendStat(siGameResult, GetEngineString("TMsgStrId", sidDraw))
 			SendStat(siCustomAchievement, loc("Nobody managed to finish the race. What a shame!"))
 			SendStat(siCustomAchievement, loc("Maybe you should try an easier TechRacer map."))
 		end
@@ -682,9 +683,10 @@
 
 	roundLimit = tonumber(params["rounds"])
 
-	if (roundLimit == 0) or (roundLimit == nil) then
+	if roundLimit == nil then
 		roundLimit = 3
 	end
+	roundLimit = math.max(1, math.floor(roundLimit))
 
 	if mapID == nil then
 		mapID = 2 + GetRandom(7)
@@ -1047,7 +1049,7 @@
 	end
 
 
-	-- start the player tumbling with a boom once their turn has actually begun
+	-- start the player with a boom once their turn has actually begun
 	if racerActive == false then
 
 		if (TurnTimeLeft > 0) and (TurnTimeLeft ~= TurnTime) then
@@ -1076,7 +1078,7 @@
 		activationStage = 202
 	end
 
-	-- has the player started his tumbling spree?
+	-- has the player started?
 	if (CurrentHedgehog ~= nil) then
 
 		-- if the RACE has started, show tracktimes and keep tabs on waypoints
--- a/share/hedgewars/Data/Scripts/Multiplayer/WxW.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Scripts/Multiplayer/WxW.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -118,7 +118,7 @@
 			ABL: All But Last: Players must not only attack the team with the lowest total health
 			KTL: Kill The Leader: If players hit some enemy hedgehog, at least one of them must be a hog from
 			the team with the highest total health.
-			The ABL and KTL rules exclude each other. If a player breaks the rule (if enabled), he must
+			The ABL and KTL rules exclude each other. If a player breaks the rule (if enabled), they must
 			skip in the next round.
 SW		false	Super Weapons: A few crates may contain very powerful weapons (melon, hellish grenade, RC plane, ballgun)
 maxcrates	12	Number of crates which can be at maximum in the game (limited to up to 100 to avoid lag)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/hedgewars/Data/Scripts/RopeKnocking.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,441 @@
+HedgewarsScriptLoad("/Scripts/Locale.lua")
+HedgewarsScriptLoad("/Scripts/Utils.lua")
+
+local hhs = {}
+local deadHogs = {}
+local missionWon = nil
+local endTimer = 1000
+local hogsKilled = 0
+local totalEnemies = 0
+local finishTime
+local playerFail = false
+local ropeGear = nil
+local endGameCalled = false
+local missionEndHandled = false
+local valkyriesTimer = -1
+
+local valkyriesDuration = 20000
+local timeBonus = 6000
+local killBonus = 6000
+local playValkyries = false
+
+local extraTime
+
+local playerTeamName
+local missionName = loc("Rope-knocking Challenge")
+-- Mission type:
+-- 0 = none (no special handling)
+-- 1 = challenge (saves mission vars)
+local missionType = 1
+
+local function getKillScore()
+	return div(hogsKilled * killBonus, totalEnemies)
+end
+
+local function protectEnemies()
+	-- Protect enemy hogs
+	for i=1, totalEnemies do
+		if hhs[i] and GetHealth(hhs[i]) then
+			SetEffect(hhs[i], heInvulnerable, 1)
+			SetEffect(hhs[i], heResurrectable, 1)
+		end
+	end
+end
+
+local function killStr(killed, total, score)
+	if total == 16 then
+		return string.format(loc("You have killed %d of 16 hedgehogs (+%d points)."), killed, score)
+	else
+		return string.format(loc("You have killed %d of %d hedgehogs (+%d points)."), killed, total, score)
+	end
+end
+
+local function gameOver()
+	StopMusicSound(sndRideOfTheValkyries)
+	valkyriesTimer = -1
+	missionWon = false
+	SendStat(siGameResult, loc("Challenge over!"))
+	local score = getKillScore()
+	SendStat(siCustomAchievement, killStr(hogsKilled, totalEnemies, score))
+	SendStat(siPointType, "!POINTS")
+	SendStat(siPlayerKills, tostring(score), playerTeamName)
+	protectEnemies()
+	if not endGameCalled then
+		EndGame()
+		endGameCalled = true
+	end
+	if missionType == 1 then
+		-- Update highscore
+		updateChallengeRecord("Highscore", score)
+	end
+end
+
+local function victory(onVictory)
+	missionWon = true
+	local e = 0
+	if extraTime then
+		e = extraTime
+	end
+	local totalTime = TurnTime + e * totalEnemies
+	local completeTime = (totalTime - finishTime) / 1000
+	ShowMission(missionName, loc("Challenge completed!"), loc("Congratulations!") .. "|" .. string.format(loc("Completion time: %.2fs"), completeTime), 0, 0)
+	PlaySound(sndHomerun)
+	-- Protect player hog
+	if hhs[0] and GetHealth(hhs[0]) then
+		SetEffect(hhs[0], heInvulnerable, 1)
+		SetEffect(hhs[0], heResurrectable, 1)
+	end
+	SendStat(siGameResult, loc("Challenge completed!"))
+	local hogScore = getKillScore()
+	local timeScore = div(finishTime * timeBonus, totalTime)
+	local score = hogScore + timeScore
+	SendStat(siCustomAchievement, killStr(hogsKilled, totalEnemies, hogScore))
+	SendStat(siCustomAchievement, string.format(loc("You have completed this challenge in %.2f s (+%d points)."), completeTime, timeScore))
+	SendStat(siPointType, "!POINTS")
+	SendStat(siPlayerKills, tostring(score), playerTeamName)
+	SetTeamLabel(playerTeamName, tostring(score))
+	SetTurnTimeLeft(MAX_TURN_TIME)
+
+	if missionType == 1 then
+		-- Update highscore
+		updateChallengeRecord("Highscore", score)
+	end
+	if onVictory then
+		onVictory()
+	end
+end
+
+local function knockTaunt()
+	local r = math.random(0,23)
+	local taunt
+	if r == 0 then taunt =		loc("%s has been knocked out.")
+	elseif r == 1 then taunt =	loc("%s hit the ground.")
+	elseif r == 2 then taunt =	loc("%s splatted.")
+	elseif r == 3 then taunt =	loc("%s was smashed.")
+	elseif r == 4 then taunt =	loc("%s felt unstable.")
+	elseif r == 5 then taunt =	loc("%s exploded.")
+	elseif r == 6 then taunt =	loc("%s fell from a high cliff.")
+	elseif r == 7 then taunt =	loc("%s goes the way of the lemming.")
+	elseif r == 8 then taunt =	loc("%s was knocked away.")
+	elseif r == 9 then taunt =	loc("%s was really unlucky.")
+	elseif r == 10 then taunt =	loc("%s felt victim to rope-knocking.")
+	elseif r == 11 then taunt =	loc("%s had no chance.")
+	elseif r == 12 then taunt =	loc("%s was a good target.")
+	elseif r == 13 then taunt =	loc("%s spawned at a really bad position.")
+	elseif r == 14 then taunt =	loc("%s was doomed from the beginning.")
+	elseif r == 15 then taunt =	loc("%s has fallen victim to gravity.")
+	elseif r == 16 then taunt =	loc("%s hates Newton.")		-- Isaac Newton
+	elseif r == 17 then taunt =	loc("%s had it coming.")
+	elseif r == 18 then taunt =	loc("%s is eliminated!")
+	elseif r == 19 then taunt =	loc("%s fell too fast.")
+	elseif r == 20 then taunt =	loc("%s flew like a rock.")
+	elseif r == 21 then taunt =	loc("%s stumbled.")
+	elseif r == 22 then taunt =	loc("%s was shoved away.")
+	elseif r == 23 then taunt =	loc("%s didn't expect that.")
+	end
+	return taunt
+end
+
+local function declareEnemyKilled(gear, onVictory)
+	if deadHogs[gear] or playerFail then
+		return
+	end
+	deadHogs[gear] = true
+	hogsKilled = hogsKilled + 1
+
+	-- Award extra time, if available
+	if extraTime and extraTime ~= 0 then
+		SetTurnTimeLeft(TurnTimeLeft + extraTime)
+		AddCaption(string.format(loc("+%d seconds!"), div(extraTime, 1000)), 0xFFFFFFFF, capgrpMessage2)
+	end
+
+	SetTeamLabel(playerTeamName, tostring(getKillScore()))
+
+	if hogsKilled == totalEnemies - 1 then
+		if playValkyries then
+			PlayMusicSound(sndRideOfTheValkyries)
+			valkyriesTimer = valkyriesDuration
+		end
+	elseif hogsKilled == totalEnemies then
+		finishTime = TurnTimeLeft
+		victory(onVictory)
+	end
+end
+
+--[[
+RopeKnocking function!
+
+This creates a rope-knocking challenge.
+The player spawns with one hog and a rope and must kill all other hogs
+by rope-knocking before the time runs out.
+The player wins points for each kill and gets a time bonus for killing
+all enemies.
+
+params is a table with all the required parameters.
+Fields of the params table:
+
+	MANDATORY:
+	- map: Map name
+	- theme: Theme name
+	- turnTime: Turn time
+	- playerTeam: Player team info:
+		{
+			x, y: Start position
+			faceLeft: If true, hog faces left
+		}
+	- enemyTeams: Table of enemy team tables. each enemy team table has this format:
+		{
+			name: Team name
+			flag: Flag
+			hogs: Hogs table:
+			{
+				x, y: Position
+				faceLeft: If true, hog faces left
+				hat: Hat name
+				name: Hog name
+			}
+		}
+
+	OPTIONAL:
+	- missionName: Mission name
+	- missionType:
+		0: None/other: No special handling
+		1: Challenge: Will save mission variables at end (default)
+	- killBonus: Score for killing all hogs (one hog scores ca. (killBonus/<number of enemies)) (default: 6000)
+	- timeBonus: Maximum theoretically possible time bonus (default: 6000)
+	- gameFlags: List of game flags, if you want to set your own
+	- extraTime: Extra time awarded for each kill, in milliseconds (default: 0)
+	- valkyries: If true, play "Ride of the Valkyries" at final enemy (default: false)
+	- onGameInit: Custom onGameInit callback
+	- onGameStart: Custom onGameStart callback
+	- onVictory: Function that is called when the mission is won.
+
+	Hint: Use onGameInit and onGameStart to place custom gears and girders
+	Hint: Use onVictory to save campaign variables if using this in a campaign
+
+]]
+function RopeKnocking(params)
+	if params.missionName then
+		missionName = params.missionName
+	end
+	if params.extraTime then
+		extraTime = params.extraTime
+	end
+	if params.valkyries then
+		playValkyries = params.valkyries
+	end
+	if params.missionType then
+		missionType = params.missionType
+	end
+	if params.killBonus then
+		killBonus = params.killBonus
+	end
+	if params.timeBonus then
+		timeBonus = params.timeBonus
+	end
+
+	_G.onGameInit = function()
+
+		if params.gameFlags then
+			for g=1, #params.gameFlags do
+				EnableGameFlags(params.gameFlags[g])
+			end
+		end
+
+		EnableGameFlags(gfBorder, gfSolidLand)
+
+		TurnTime = params.turnTime
+		Delay = 500
+		Map = params.map
+		Theme = params.theme
+
+		-- Disable Sudden Death
+		WaterRise = 0
+		HealthDecrease = 0
+
+		CaseFreq = 0
+		MinesNum = 0
+		Explosives = 0
+
+		-- Player team
+		playerTeamName = AddMissionTeam(-1)
+		hhs[0] = AddMissionHog(1)
+		SetGearPosition(hhs[0], params.playerTeam.x, params.playerTeam.y)
+		if params.playerTeam.faceLeft == true then
+			HogTurnLeft(hhs[0], true)
+		end
+
+		-- Enemy teams
+		for t=1, #params.enemyTeams do
+			local team = params.enemyTeams[t]
+			params.enemyTeams[t].name = AddTeam(team.name, -2, "Simple", "Tank", "Default_qau", team.flag)
+			for h=1, #team.hogs do
+				local hogData = team.hogs[h]
+				local name = hogData.name
+				local hat = hogData.hat
+				if not hat then
+					hat = "NoHat"
+				end
+				local hog = AddHog(name, 0, 1, hat)
+				SetGearPosition(hog, hogData.x, hogData.y)
+				if hogData.faceLeft == true then
+					HogTurnLeft(hog, true)
+				end
+				table.insert(hhs, hog)
+
+				totalEnemies = totalEnemies + 1
+			end
+		end
+
+		if params.onGameInit then
+			params.onGameInit()
+		end
+	end
+
+	_G.onGameStart = function()
+		SendHealthStatsOff()
+
+		local timeTxt = ""
+		local displayTime = 4000
+		if extraTime and extraTime ~= 0 then
+			timeTxt = string.format(loc("For each kill you win %d seconds."), div(extraTime, 1000))
+			displayTime = 5000
+		end
+		local recordInfo = getReadableChallengeRecord("Highscore")
+		if recordInfo == nil then
+			recordInfo = ""
+		else
+			recordInfo = "|" .. recordInfo
+		end
+		ShowMission(
+			missionName,
+			loc("Challenge"),
+			loc("Use the rope to knock your enemies to their doom.") .. "|" ..
+			loc("Finish this challenge as fast as possible to earn bonus points.") .. "|" ..
+			timeTxt .. recordInfo, -amRope, displayTime)
+
+		SetTeamLabel(playerTeamName, "0")
+
+		if params.onGameStart then
+			params.onGameStart()
+		end
+	end
+
+	_G.onGameTick = function()
+
+		if (TurnTimeLeft == 1) and (missionWon == nil) then
+			PlaySound(sndBoring, CurrentHedgehog)
+			gameOver()
+		end
+
+		if missionWon ~= nil then
+
+			endTimer = endTimer - 1
+			if endTimer == 1 then
+				if not endGameCalled then
+					EndGame()
+					endGameCalled = true
+				end
+			end
+
+			if not missionEndHandled then
+				if missionWon == true then
+					AddCaption(loc("Victory!"), 0xFFFFFFFF, capgrpGameState)
+					if missionType == 1 then
+						SaveMissionVar("Won", "true")
+					end
+				else
+					AddCaption(loc("Challenge over!"), 0xFFFFFFFF, capgrpGameState)
+				end
+				missionEndHandled = true
+			end
+
+		end
+
+	end
+
+	_G.onGameTick20 = function()
+		if (valkyriesTimer > 0) then
+			valkyriesTimer = valkyriesTimer - 20
+			if valkyriesTimer <= 0 then
+				StopMusicSound(sndRideOfTheValkyries)
+			end
+		end
+		local drown = (hhs[0]) and (band(GetState(hhs[0]), gstDrowning) ~= 0)
+		if drown and missionWon == nil then
+			-- Player hog drowns
+			playerFail = true
+			return
+		end
+		for i=1, totalEnemies do
+			local hog = hhs[i]
+			drown = (hog) and (not deadHogs[hog]) and (band(GetState(hhs[i]), gstDrowning) ~= 0)
+			if drown then
+				declareEnemyKilled(hog, params.onVictory)
+			end
+		end
+
+		if ropeGear and not missionWon and band(GetState(ropeGear), gstCollision) ~= 0 then
+			-- Hide mission on first rope attach
+			HideMission()
+		end
+	end
+
+	_G.onGearDamage = function(gear, damage)
+
+		if gear == hhs[0] then
+			-- Player hog hurts itself
+			playerFail = true
+			StopMusicSound(sndRideOfTheValkyries)
+			valkyriesTimer = -1
+			protectEnemies()
+		end
+
+		if gear ~= hhs[0] and GetGearType(gear) == gtHedgehog and not deadHogs[gear] and missionWon == nil and playerFail == false then
+			-- Enemy hog took damage
+			AddVisualGear(GetX(gear), GetY(gear), vgtBigExplosion, 0, false)
+			DeleteGear(gear)
+			PlaySound(sndExplosion)
+			AddCaption(string.format(knockTaunt(), GetHogName(gear)), 0xFFFFFFFF, capgrpMessage)
+
+			declareEnemyKilled(gear, params.onVictory)
+		end
+
+	end
+
+	_G.onGearAdd = function(gear)
+		if GetGearType(gear) == gtRope then
+			ropeGear = gear
+		end
+	end
+
+	_G.onGearDelete = function(gear)
+
+		if (gear == hhs[0]) and (missionWon == nil) then
+			playerFail = true
+			gameOver()
+		end
+
+		if GetGearType(gear) == gtHedgehog and gear ~= hhs[0] and not deadHogs[gear] then
+			declareEnemyKilled(gear, params.onVictory)
+		end
+
+		if GetGearType(gear) == gtRope then
+			ropeGear = nil
+		end
+
+	end
+
+	if params.onAmmoStoreInit then
+		_G.onAmmoStoreInit = params.onAmmoStoreInit
+	else
+		_G.onAmmoStoreInit = function()
+			SetAmmo(amRope, 9, 0, 0, 0)
+		end
+
+		_G.onNewTurn = function()
+			SetWeapon(amRope)
+		end
+	end
+
+end
--- a/share/hedgewars/Data/Scripts/Utils.lua	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Scripts/Utils.lua	Sun Mar 24 14:34:27 2024 -0400
@@ -127,6 +127,22 @@
 	end
 end
 
+-- Insert parameters %1 to %9 into an engine string and returns the result.
+-- * text: engine string with parameters (from GetEngineString)
+-- * ...: Arguments to insert into the string. The number of arguments MUST match
+--        the number of available arguments of the engine string
+--
+-- Example: formatEngineString(GetEngineString("TMsgStrId", sidWinner), "My Team")
+-- to create a string showing the winning team.
+function formatEngineString(text, ...)
+    local input = text
+    for i=1, 9 do
+       text = string.gsub(text, "%%"..i, "%%s")
+    end
+    text = string.format(text, ...)
+    return text
+end
+
 --[[ GLOBAL VARIABLES ]]
 
 -- Shared common land color values for land sprites.
Binary file share/hedgewars/Data/Sounds/dynamitefuse.ogg has changed
Binary file share/hedgewars/Data/Sounds/dynamiteimpact.ogg has changed
--- a/share/hedgewars/Data/Themes/Underwater/theme.cfg	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/Themes/Underwater/theme.cfg	Sun Mar 24 14:34:27 2024 -0400
@@ -15,8 +15,6 @@
 object = coral, 3, 10, 193, 38, 32, 2, 128, 66, 66, 94, 39, 0, 88, 167
 object = coral2, 3, 119, 146, 23, 22, 1, 5, 0, 123, 130
 flakes = 20, 20, 150, 0, 5
-sd-flakes = 40, 20, 150, 0, 5
-; TODO: Use this when rising flakes don't look so strange:
-; sd-flakes = 40, 20, 60, 0, -100
+sd-flakes = 40, 20, 60, 0, -100
 rq-sky = 0, 70, 210
 sd-tint = $a9, $52, $52, $ff
Binary file share/hedgewars/Data/misc/hedgewars.png has changed
--- a/share/hedgewars/Data/misc/hedgewars.xpm	Sun Mar 24 14:19:02 2024 -0400
+++ b/share/hedgewars/Data/misc/hedgewars.xpm	Sun Mar 24 14:34:27 2024 -0400
@@ -1,239 +1,516 @@
 /* XPM */
-static char *Icon___x__x__[] = {
+static char *hedgehog[] = {
 /* columns rows colors chars-per-pixel */
-"32 32 201 2",
-"   c #010101",
-".  c #0A0709",
-"X  c #1A1A1A",
-"o  c #454545",
-"O  c #94005E",
-"+  c #AE005D",
-"@  c #970063",
-"#  c #9B0064",
-"$  c #94066D",
-"%  c #9D036A",
-"&  c #9E086E",
-"*  c #880873",
-"=  c #960E74",
-"-  c #980D73",
-";  c #8C1578",
-":  c #8C1A7D",
-">  c #9D1075",
-",  c #9D177C",
-"<  c #91187D",
-"1  c #9B1C7D",
-"2  c #A20065",
-"3  c #AA0067",
-"4  c #A3046B",
-"5  c #A0096F",
-"6  c #A20C73",
-"7  c #AD0B72",
-"8  c #A41276",
-"9  c #AD1074",
-"0  c #A61479",
-"q  c #A81C7B",
-"w  c #7B2083",
-"e  c #772E8F",
-"r  c #7D2C8E",
-"t  c #732F91",
-"y  c #6B3596",
-"u  c #653B9B",
-"i  c #6D3A9B",
-"p  c #743294",
-"a  c #783092",
-"s  c #713899",
-"d  c #5641A1",
-"f  c #504BA9",
-"g  c #5A4EAD",
-"h  c #4D5AB6",
-"j  c #5652B0",
-"k  c #5058B5",
-"l  c #6444A3",
-"z  c #7C4CA8",
-"x  c #7654B2",
-"c  c #4363BF",
-"v  c #3D67C3",
-"b  c #3A69C5",
-"n  c #3C73CE",
-"m  c #2C77D1",
-"M  c #237CD6",
-"N  c #2C78D2",
-"B  c #2F7ED8",
-"V  c #3E7BD5",
-"C  c #5F71CC",
-"Z  c #6F6ECA",
-"A  c #627FD6",
-"S  c #6C7ED6",
-"D  c #617ED9",
-"F  c #6F7ED9",
-"G  c #881F82",
-"H  c #A11F83",
-"J  c #AC1D82",
-"K  c #872386",
-"L  c #8A2387",
-"P  c #8D2689",
-"I  c #8A2C8F",
-"U  c #952388",
-"Y  c #812F91",
-"T  c #873595",
-"R  c #8D3192",
-"E  c #8A3799",
-"W  c #84399A",
-"Q  c #AE2285",
-"!  c #A32488",
-"~  c #A92D8D",
-"^  c #B1258A",
-"/  c #B32C8C",
-"(  c #BD298E",
-")  c #B5308E",
-"_  c #B72E91",
-"`  c #BE2C91",
-"'  c #BA3495",
-"]  c #BA3895",
-"[  c #BC3C9A",
-"{  c #BF3BA0",
-"}  c #C32E93",
-"|  c #C23391",
-" . c #CF3D9D",
-".. c #C13DA2",
-"X. c #CA3BA0",
-"o. c #BE419C",
-"O. c #8148A4",
-"+. c #8152B0",
-"@. c #C0439E",
-"#. c #C345A3",
-"$. c #C54EA5",
-"%. c #CE4AA3",
-"&. c #C645AA",
-"*. c #C74EA9",
-"=. c #C94AAE",
-"-. c #D045AA",
-";. c #D04BAF",
-":. c #C750A8",
-">. c #CC59AB",
-",. c #CB4DB1",
-"<. c #CC51B4",
-"1. c #CD5AB0",
-"2. c #D45CBF",
-"3. c #D363BA",
-"4. c #D65FC3",
-"5. c #D769C0",
-"6. c #DB6CC3",
-"7. c #DE66C9",
-"8. c #DE6BCE",
-"9. c #DB74C5",
-"0. c #DE76CB",
-"q. c #DF6DD0",
-"w. c #E068CC",
-"e. c #EA7FCF",
-"r. c #E06FD1",
-"t. c #E274D5",
-"y. c #E47BD6",
-"u. c #E376D8",
-"i. c #E479D9",
-"p. c #E87FDE",
-"a. c #1E83DC",
-"s. c #2482DB",
-"d. c #2B80DA",
-"f. c #3682DC",
-"g. c #1B8BE3",
-"h. c #3187E0",
-"j. c #3D8BE4",
-"k. c #2790E8",
-"l. c #3594EC",
-"z. c #3D94EC",
-"x. c #4C90EA",
-"c. c #5494EB",
-"v. c #469CF4",
-"b. c #4C98F1",
-"n. c #5A97F1",
-"m. c #529AF2",
-"M. c #5A9FF8",
-"N. c #6B87E1",
-"B. c #49A1F9",
-"V. c #59A3F6",
-"C. c #52A6FE",
-"Z. c #5DA7FE",
-"A. c #56AFFF",
-"S. c #5CABFF",
-"D. c #56B4FF",
-"F. c #58B5FF",
-"G. c #54BBFF",
-"H. c #898989",
-"J. c #8A918D",
-"K. c #949394",
-"L. c #9C9B9C",
-"P. c #B5B4B5",
-"I. c #E483D2",
-"U. c #E789D6",
-"Y. c #E781DA",
-"T. c #E985DC",
-"R. c #EA89DC",
-"E. c #EC91DE",
-"W. c #EE9BDA",
-"Q. c #EC87E2",
-"!. c #EC8CE2",
-"~. c #EE93E1",
-"^. c #F195E6",
-"/. c #F29BE7",
-"(. c #F49EE9",
-"). c #F4A6E5",
-"_. c #F5A2EB",
-"`. c #F9A6EF",
-"'. c #F6AAED",
-"]. c #F5B2EC",
-"[. c #F6A2F0",
-"{. c #FAA6F1",
-"}. c #FAAAF3",
-"|. c #FBB7F5",
-" X c #FEB1F8",
-".X c #C8C7C8",
-"XX c #CBCBCC",
-"oX c #CDD1CF",
-"OX c #F3D2EB",
-"+X c #F7C6F0",
-"@X c #F8C1F1",
-"#X c #F8CAF2",
-"$X c #FFD1FC",
-"%X c #FDDBFB",
-"&X c #F9E6F7",
-"*X c #FDE5FA",
-"=X c #FDEDFB",
-"-X c #F3FCF5",
-";X c #FCF3FA",
-":X c #FEFEFE",
-">X c None",
+"254 256 254 2 ",
+"   c #002100210021",
+".  c #0B970B970B97",
+"X  c #122212221222",
+"o  c #18FF18FF18FF",
+"O  c #228422842284",
+"+  c #2A582A582A58",
+"@  c #33AD33AD33AD",
+"#  c #3DF33DF33DF3",
+"$  c #433943394339",
+"%  c #4B824B824B82",
+"&  c #54FB54FB54FB",
+"*  c #5BDF5BDF5BDF",
+"=  c #644064406440",
+"-  c #6A5E6A5E6A5E",
+";  c #755B755B755B",
+":  c #7D447D447D44",
+">  c #9F9F080C6E72",
+",  c #98040F827521",
+"<  c #9C450C147214",
+"1  c #8FBC17977C4B",
+"2  c #8DBA197A7E00",
+"3  c #964D111E768C",
+"4  c #9B13111D76AA",
+"5  c #927F14CA79DB",
+"6  c #993215387A6B",
+"7  c #9718198D7E60",
+"8  c #A05909856F8C",
+"9  c #A1BF0C3C71C5",
+"0  c #A45A124875AF",
+"q  c #A5D717F877BB",
+"w  c #A6C114D079B7",
+"e  c #A83C174C7BF3",
+"r  c #A72E1B7B79D8",
+"t  c #A9891B1D7DA0",
+"y  c #A9DC225F7DE4",
+"u  c #7FAF27178A56",
+"i  c #7C112AB08D5F",
+"p  c #775E2F299164",
+"a  c #78282E7390B1",
+"s  c #6FDB366897F0",
+"d  c #6F543714987A",
+"f  c #671B3F0A9F87",
+"g  c #6B4C3B1B9C07",
+"h  c #72FB33769543",
+"j  c #5F3546BAA66A",
+"k  c #5DA64848A7D1",
+"l  c #56F94EB7AD90",
+"z  c #5A5D4B93AABE",
+"x  c #54EC50D0AF6F",
+"c  c #4ECC56BCB4BB",
+"v  c #4C5A592AB6E2",
+"b  c #468F5EB6BBD4",
+"n  c #49EE5C2FB998",
+"m  c #52155390B1DF",
+"M  c #509F5E00BBA6",
+"N  c #62F44321A32F",
+"B  c #750A4345A3C7",
+"V  c #7EB34BA4ABE0",
+"C  c #7A4454C4B42F",
+"Z  c #769558E9B7E9",
+"A  c #76485CEFBB90",
+"S  c #439761A5BE71",
+"D  c #746360BCBF22",
+"F  c #3E5B66B1C2F2",
+"G  c #3AFC6A0BC5F3",
+"H  c #368A6E63C9D7",
+"J  c #38026CF8C88D",
+"K  c #2F62755BD00F",
+"L  c #320272C8CDBD",
+"P  c #2DB176F9D17D",
+"I  c #2C357880D2D9",
+"U  c #30D67D58D777",
+"Y  c #405D64BDC137",
+"T  c #56A0753ED102",
+"R  c #6DC26DC5CAE5",
+"E  c #7237652BC32A",
+"W  c #707668F7C69E",
+"Q  c #6C0871E6CEB6",
+"!  c #6A487553D1CE",
+"~  c #67957B00D6F3",
+"^  c #684D79A6D5B1",
+"/  c #661B7E31D9EE",
+"(  c #87F01F4F831C",
+")  c #89AD1D6D8189",
+"_  c #952C1D7B8204",
+"`  c #AB5D1D1A81A2",
+"'  c #84CE222185C0",
+"]  c #80DD2606892D",
+"[  c #8EDA2A638DAC",
+"{  c #9339218D85A7",
+"}  c #915325608924",
+"|  c #8CDA2E889166",
+" . c #8A83335D95D5",
+".. c #8867378599CA",
+"X. c #86583BEF9DA2",
+"o. c #ADFB227D8466",
+"O. c #AD892BD68377",
+"+. c #AF6324668957",
+"@. c #B09B26548736",
+"#. c #B0AD26AE8AB3",
+"$. c #B2D52A7D8CEE",
+"%. c #AF9D31338698",
+"&. c #B069333E87C9",
+"*. c #B27F34798AA8",
+"=. c #B3C93BE28CDF",
+"-. c #B45D2D5A91D5",
+";. c #B6FC31FC942E",
+":. c #B918357393AE",
+">. c #BB7339A19743",
+",. c #B7F133FA982E",
+"<. c #B93D360C9A28",
+"1. c #BC213B289CB9",
+"2. c #84B23F49A0CC",
+"3. c #BD843DC8A171",
+"4. c #B59C40A58FA0",
+"5. c #B70E445A91D5",
+"6. c #B9C84B5895F4",
+"7. c #B9E54BA6961E",
+"8. c #BF8640E79CEF",
+"9. c #BCD7532D9A88",
+"0. c #BFA95A729ED1",
+"q. c #830542C9A3D2",
+"w. c #809A47B2A845",
+"e. c #803E486EA91A",
+"r. c #BF3940DCA46F",
+"t. c #C11743C49F34",
+"y. c #C0615C629FEA",
+"u. c #C1A044E6A3FC",
+"i. c #C5754B88A59B",
+"p. c #C26546A7A9E1",
+"a. c #C4F04B2AAD15",
+"s. c #C12D5E56A11E",
+"d. c #C8265063A992",
+"f. c #C9FB53A0AC71",
+"g. c #CC6357FBAFB6",
+"h. c #C6C54E93B167",
+"j. c #C7EC509EB34C",
+"k. c #C9D25400B66A",
+"l. c #CE8D5BB4B2D6",
+"z. c #CB4A5698B909",
+"x. c #CD825AA8BCD7",
+"c. c #D05D5F0DB58C",
+"v. c #C3856467A4AA",
+"b. c #C5556936A770",
+"n. c #C7216DBAAA21",
+"m. c #C9CB7487AE1F",
+"M. c #D1346084B6BA",
+"N. c #D3A864D2BA52",
+"B. c #D68B6A04BE86",
+"V. c #CD177D15B327",
+"C. c #CFDB5ED9C0D5",
+"Z. c #D2B56400C5B8",
+"A. c #D7E16C67C08B",
+"S. c #D9216E83C23A",
+"D. c #D48B674BC8E2",
+"F. c #D6D46B68CCC7",
+"G. c #D8C96EDBCEB1",
+"H. c #DBA77316C5F6",
+"J. c #DB51730ACD4B",
+"K. c #DF6B79BBCB64",
+"L. c #DC2574BFD1ED",
+"P. c #DF547A53D4F6",
+"I. c #E1C27DEFCED5",
+"U. c #E1C27E72D681",
+"Y. c #351781DBDBBE",
+"T. c #38B1858ADF4D",
+"R. c #3A9E87A5E146",
+"E. c #3D6B8A80E403",
+"W. c #637E8369DEA6",
+"Q. c #40DE8E2DE77B",
+"!. c #42218F90E8D3",
+"~. c #5F2A8C65E6CA",
+"^. c #5DF68ED2E908",
+"/. c #456392EFEC01",
+"(. c #48B6967BEF58",
+"). c #532494C7EE2D",
+"_. c #5BDB9325ECEB",
+"`. c #49E497AEF09D",
+"'. c #4D009AEEF39F",
+"]. c #59AF978FF0FB",
+"[. c #53FC9E6AF712",
+"{. c #58729A3BF351",
+"}. c #5468A007F88F",
+"|. c #61E086A2E196",
+" X c #605E89F3E48C",
+".X c #5450A297FAF0",
+"XX c #841A841A841A",
+"oX c #8C3C8C3C8C3C",
+"OX c #941294129412",
+"+X c #9A049A049A04",
+"@X c #A3A8A3A8A3A8",
+"#X c #ACA1ACA1ACA1",
+"$X c #B62DB62DB62D",
+"%X c #BD03BD03BD03",
+"&X c #CF28824CB63A",
+"*X c #D06D8591B80A",
+"=X c #D0E086CBB8D2",
+"-X c #D3148C68BC24",
+";X c #D5079183BF22",
+":X c #D6D29611C1D3",
+">X c #D8029900C383",
+",X c #D9CA9DB6C64B",
+"<X c #E4EB83A0D3DF",
+"1X c #E7D988D5D7BD",
+"2X c #E4E58407DA5F",
+"3X c #E7E1893ADC8F",
+"4X c #E9FD8CCEDD2C",
+"5X c #ECE291C7DF11",
+"6X c #DAE5A06EC7FE",
+"7X c #DC67A464CA3A",
+"8X c #DEEDAAE2CE09",
+"9X c #E09BAF24D097",
+"0X c #E25CB3BBD33C",
+"qX c #E4E8BA4ED715",
+"wX c #E671BE50D96F",
+"eX c #EB598F5FE0A3",
+"rX c #EEA39509E309",
+"tX c #F0509821E56E",
+"yX c #F2EF9C98E7E4",
+"uX c #F34F9F58E892",
+"iX c #F3DFA3AEE99E",
+"pX c #F51EACFEEBE2",
+"aX c #F612B486EDB3",
+"sX c #F704BBBAEF70",
+"dX c #F791C01BF08C",
+"fX c #C4D5C4D5C4D5",
+"gX c #CCA1CCA1CCA1",
+"hX c #D474D474D474",
+"jX c #DAAEDAAEDAAE",
+"kX c #E7DCC1F0DB90",
+"lX c #E984C61BDDFD",
+"zX c #EABEC945DFE4",
+"xX c #EC2CCD03E211",
+"cX c #EEF9D433E64B",
+"vX c #F07ED816E895",
+"bX c #F202DC09EAE4",
+"nX c #F819C3EAF16F",
+"mX c #F89AC751F24D",
+"MX c #F91DCBD6F35C",
+"NX c #FA4CD4C8F588",
+"BX c #FB6CDD24F78D",
+"VX c #E3EFE3EFE3EF",
+"CX c #EAF4EAF4EAF4",
+"ZX c #F4ADE2E3EEEB",
+"AX c #F61BE690F114",
+"SX c #FBCFE09FF868",
+"DX c #F7B7EAB0F37C",
+"FX c #F944EEADF5D3",
+"GX c #FC60E464F948",
+"HX c #FD84ED20FB6D",
+"JX c #F48BF48BF48B",
+"KX c #FA8AF1F1F7C0",
+"LX c #FD29F5C4FB82",
+"PX c #FFFCFFF8FFFB",
 /* pixels */
-">X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X",
-">X>X>X>X>X>X>X>X>X>X>X= & >X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X",
-">X>X>X>X>X>X>X>X>X>X>Xp v : >X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X",
-">X>X>X>X>X>X>X>X>X>X>Xr k.f.u 4 >X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X",
-">X>X>X>X>X>X>X>X>X>X>Xt z.Z.l.c : 3 >X>X>X>X>X>X>X>X>X>X>X>X>X>X",
-">X>X>X>X>X>X>X>X>X>X>Xy l.Z.Z.B.h.l > >X>X>X>X>X>X>X>X>X>X>X>X>X",
-">X>X>X>X4 >X>X>X>X>X>Xt j.Z.A.S.n.C f * % >X>X>X>X>X>X>X>X>X>X>X",
-">X>X>X4 l g l i p r K : T P L R ~ ] [ ] ^ 8 O >X>X>X>X>X>X>X>X>X",
-">X>X>X>Xs g.s.s.s.M M s.d 8 %.I.(._.{.`._.E.3.Q # >X>X>X>X>X>X>X",
-">X>X>X>X4 D C.m.m.b.v.p ' E.}._.(././.(./._.`._.1.& >X>X>X>X>X>X",
-">X>X>X>X>XT A.Z.D.D.W  .}._././.(._.(.(././.^./.}.6.6 >X>X>X>X>X",
-">X>X>X>X>X2 A D.N.W ( _._./.(.(.(.(.(./.'.+X@X_.].$X9.# >X>X>X>X",
-">X>X>X>X>X>X1 E ; 7 i._.(.(.(.(.(._./.].:X:X:X;X:X:X:X$.>X>X>X>X",
-">X>X>X>X4 < i b y -.!.(.(.(._.(.(.(./.*X:X:X:X:X:X:X-XOX6 >X>X>X",
-">X>X6 r k m a.m ! 7.!._.(.(.(.(.(./._.:X:X:XL.P.:XH.  XX>.>X>X>X",
-">X* n a.M B z.C ( t.R._.(.(.(.(.(./.'.;X:X.X  X :Xo   J.W.# >X>X",
-">X# a V v.V.G.z X.t.R._./._.(./.(.(.(.=X:X.X  X :XK.. oX).% >X>X",
-">X>X>X0 F G.S 2 ,.t.Y._./.(.(._.(._.^.#X:X:XK.P.:X:X-X=X~.8 >X>X",
-">X>X>X>X4 x I w ,.u.y.(.(._.(.(._.(.(./.&X:X:X:X=X+X%X'.U.) ] >X",
-">X>X>X>X>X+ h f  .t.7.~.(./.(.(./.(.(.(._.#X&X*X|.{.3.U.U.] ^.q ",
-">X>X>X>X>Xp g.h ` i.t.Q.}._./.(.(.(.(.(./.(.~.6.3.@.$.}.3.#. X) ",
-">X>X>X>X: m d.c.! 7.,...3.E.`./.(._.(.(./._./.| @.r._.}.' 3.U.q ",
-">X>X>X4 c M x.F.O.7 [ :.o.Q 3.{./.(.(._.(./._.{. X_._.R.^ r.J >X",
-">X>X4 j g.z.F.V.U 6.}.}.}.E.Q 9.`./.(./.(.(.(././.).[.] 8 6 >X>X",
-">X>X- l g Z N.x } [.(././.}.9._ (.(.(._._.(.(.(.^.^.,.% >X>X>X>X",
-">X>X>X>X>X4 4 2 &.Q.(.(./._.T.Q t.y.R.~.~.~.Q.Q.Y.=.- >X>X>X>X>X",
-">X>X>X>X>X>X>X>X^ u.R./.(.{.*.[ i.q.8.8.q.r.i.q.' & >X>X>X>X>X>X",
-">X>X>X>X>X>X>X>X% _ 4.r.8.#.& ,.q.t.t.t.q.4.| J | 0 >X>X>X>X>X>X",
-">X>X>X>X>X>X>X>X>X>X6 0 6 - &.' Q ^ ^ ^ Q / *.U. X[ >X>X>X>X>X>X",
-">X>X>X>X>X>X>X>X>X>X>X>X>X6 q.!.~.I.U.*.] }.}._.}.@.>X>X>X>X>X>X",
-">X>X>X>X>X>X>X>X>X>X>X>X>X>X' u.Q.^.~.Q &.Q.~.(.r.8 >X>X>X>X>X>X",
-">X>X>X>X>X>X>X>X>X>X>X>X>X>X% ^ ,.&.J % 0 ..,...6 >X>X>X>X>X>X>X"
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXzXs.y > q 5.;XFXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXm.< > > > > > > r >XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXm.> > > > > > > > > > 5.cXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXwX8 > > > > > > > > > > > q ;XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX9.> > > > > > > > > > > > > > =.xXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXFXr > > > > > > > > > > > > > > > 0 &XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXcX> > > > > > > > > > > > > > > > > > =.zXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXwX> > > > > > , s < > > > > > > > > > > q V.KXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXqX> > > > > > 5 L b ( > > > > > > > > > > > &.kXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX8X> > > > > > 2 K P L f < > > > > > > > > > > 0 m.DXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX8X> > > > > > 2 K I I I S ' > > > > > > > > > > > %.qXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX7X> > > > > > 2 P I I I P K N , > > > > > > > > > > 9 n.DXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX,X> > > > > > ( I I I I I I I Y ' > > > > > > > > > > > O.9XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX>X> > > > > > ( I I I I I I I I K k < > > > > > > > > > > 9 v.DXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX:X> > > > > > ' P I I I I I I I I I F u > > > > > > > > > > > y 8XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX;X> > > > > > ' I I I I I I I I I I I K z 3 > > > > > > > > > > 9 0.AXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX*X> > > > > > u I I I I I I I I I I I I I F i 8 > > > > > > > > > > r 8XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX&X> > > > > > i I I I I I I I I I I I I I I P l , > > > > > > > > > > > 9.ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXV.> > > > > > i I I I I I I I I I I I I I I I I J a > > > > > > > > > > > q 6XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXm.> > > > > > p I I I I I I I I I I I I I I I I I I x 5 > > > > > > > > > > > 6.bXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXn.> > > > > > p I I I I I I I Y.Q.U I I I I I I I I I H a < > > > > > > > > > > q >XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXn.> > > > > > s I I I I I I I Q..X.XE.I I I I I I I I I I m 1 > > > > > > > > > > > 6.cXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXv.> > > > > > d I I I I I I I /..X.X.X(.Y.I I I I I I I I I H h > > > > > > > > > > > q ;XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXs.> > > > > > s I I I I I I I /..X.X.X.X.XE.I I I I I I I I I P c 1 > > > > > > > > > > > 4.cXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX0.> > > > > > g I I I I I I I /..X.X.X.X.X.X'.Y.I I I I I I I I I L s < > > > > > > > > > > 0 -XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX9.> > > > > > g I I I I I I I /..X.X.X.X.X.X.X.XQ.I I I I I I I I I K n 2 > > > > > > > > > > > =.lXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX6.> > > > > > f I I I I I I I /..X.X.X.X.X.X.X.X.X'.Y.I I I I I I I I I L g < > > > > > > > > > > 0 &XKXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX6.> > > > > > j I I I I I I I (..X.X.X.X.X.X.X.X.X.X.XQ.I I I I I I I I I I b 2 > > > > > > > > > > > *.kXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX5.> > > > > > j I I I I I I I (..X.X.X.X.X.X.X.X.X.X.X.X'.T.I I I I I I I I I L g < > > > > > > > > > > 0 m.KXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX5.> > > > > > k I I I I I I I (..X.X.X.X.X.X.X.X.X.X.X.X.X.X!.I I I I I I I I I I S ' > > > > > > > > > > > %.kXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX=.> > > > > > z I I I I I I I (..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.T.I I I I I I I I I L f , > > > > > > > > > > 9 n.FXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX%.> > > > > > l I I I I I I I '..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X}.!.U I I I I I I I I I S ' > > > > > > > > > > > O.qXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX%.> > > > > > l I I I I I I I '..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X'.T.I I I I I I I I I K j , > > > > > > > > > > > b.DXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXO.> > > > > > m I I I I I I I .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X/.U I I I I I I I I I S ] > > > > > > > > > > > y 0XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXO.> > > > > > c I I I I I I I '..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.R.I I I I I I I I I I k , > > > > > > > > > > 9 v.AXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXy > > > > > > v I I I I I I U '..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X(.I I I I I I I I I I F u > > > > > > > > > > > y 8XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXr > > > > > > n P I I I I I I .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.R.I I I I I I I I I K z , > > > > > > > > > > > 0.ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKXr > > > > > > b I I I I I I I '..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X(.U I I I I I I I I P H i > > > > > > > > > > > r 7XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX0 > > > > > > b I I I I I I I .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XE.I I I I I I I I I P l 3 > > > > > > > > > > > 9.ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX0 > > > > > > F I I I I I I I .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X(.Y.I I I I I I I I I H p > > > > > > > > > > > q ,XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX> > > > > > > F I I I I I I I .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.E.I I I I I I I I I I m 5 > > > > > > > > > > > 6.bXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXFX> > > > > > > F I I I I I I I .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X(.Y.I I I I I I I I I H h > > > > > > > > > > > q ;XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXDX> > > > > > > G I I I I I I I .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XE.I I I I I I I I I P m 1 > > > > > > > > > > > 6.cXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXAX> > > > > > < G I I I I I I U .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X(.Y.P I I I I I I I I H s < > > > > > > > > > > 0 -XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXbX> > > > > > < H I I I I I I U .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XQ.I I I I I I I I I I c 1 > > > > > > > > > > > =.zXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX7X0.*.%.%.=.9.v.m.&X:X7XqXzXcXbXAXKXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXcX> > > > > > , J I I I I I I U .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X`.T.I I I I I I I I I H g < > > > > > > > > > > q *XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXqXO.> > > > > > > > > > > > > > > 0 q y O.*.6.0.n.V.;X,X9XkXcXcXZXDXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXcX> > > > > > , H P I I I I I Y..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XE.I I I I I I I I I I n 2 > > > > > > > > > > > *.zXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX7X9 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 9 q r y %.=.6.v.n.=X:X8XqXzXcXbXAXKXPXPXPXPXPXPXPXPXPXxX> > > > > > 3 H I I I I I I U .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[._.~./ b m x z z z z z l x l ' > > > > > > > > > > > q V.KXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXbXq > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > < r r O.=.6.0.n.&X-X,X0X:X> > > > > > 5 H I I I I I P Y..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.~.! Z V  .{ 6 4 < > > > > > > > > > > > > > > > > > > > > > > > > > > &.kXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXn.> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > i h g f k l c Y |.^.].]..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[. XR w.| 7 > > > > > > > > 8 > > > > > > > > > > > > > > > > > > > > > > > > > > > 0 m.FXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXy 8 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 4 4 6 _ [ ..q.V V A W Q ~ W.~._.]..X.X.X.X.X.X~.W X._ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > O.8XFXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX8 8 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 > > > > > > > > > > > > 9 4 4 w } | X.q.} < 8 8 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 q 6.:XbXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX> > > > > > > s l j f s a u ' 2 5 < > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 9 =.-XZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXy > > > > > > ' K I I I I I P P P K L G S v x z j g h a ' 2 5 , > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 8 > 9 5.8XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX0.> > > > > > > m P I I I I I I I I I I I I I I I I I I I P P P K J F n m l j f s a u ' 2 3 < > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 8 > 8 0 r o.o.@.@.@.@.o.` w 9 8 > 8 8 > > > 8 > > > > > > > > > > > > > > > > > > > r m.bXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXwX> > > > > > > 2 K I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I P H G b v m j f g h i ' 2 5 < < > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > o.:.i.c.S.I.4XyXyXyXyXyXyXyXyXyXyXyXyXuXrX3XI.B.g.t.-.e > > > > > > > > > > > > > > > > > > 8 8 8 8 9.kXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX5.> > > > > > > z P I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I L G S n m l j g s a ] 2 2 , < < < > > > > > > > > > > > > > > > > > > > > > > > > > > > 9 @.t.N.<X5XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5XH.l.>.r 9 8 8 8 8 > > > > > > > > > > > > > 8 4.0XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXkX> > > > > > > 2 L I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I K H F S n x k s 3 > > > > > > > > > > > > > > > > > 9 @.i.K.rXyXiXuXtXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX4XB.1.r 8 > > > > > > > > > > > > > > 8 8 4.0XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX9.> > > > > > > j I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I K j 5 > > > > > > > > > > > > > > > 0 :.N.4XyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.f.@.9 8 > 8 > > > > > > > > > > 8 8 5.kXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXcX> > > > > > > 3 J I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I K n 2 > > > > > > > > > > > > > > 0 :.N.5XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX<Xg.o.8 > > > > > > > > > > > 8 8 8 y.bXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXs.> > > > > > > g I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I F a > > > > > > > > > > > > > > t g.1XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.t.q 8 > > > > > > > > > > > > 0 =XKXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXbX4 > > > > > > 3 G I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I P I I I I I I I I I I I I I I I I I I I I I I I I I I I I K j , > > > > > > > > > > > > 9 :.H.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX4Xc.o.8 > > > > > > > > > > > > %.wXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXm.> > > > > > > s I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I S ' > > > > > > > > > 8 > > 0 t.<XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrXB.$.8 8 > > > > > > > > > > 9 n.FXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXZXr > > > > > > < Y I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I K f < > > > > > > > > > > < 0 u.<XyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXK.;.8 > > > > > > > > > > > O.qXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX&X> > > > > > > p I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I F ' > > > > > > > > > > > 9 8.1XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXH.$.8 > > > > > > > > > > 8 V.KXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXDXy > > > > > > > T R.T.T.Y.Y.U U I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I P m 3 > > > > > > > > > > 8 :.I.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXB.t > > > > > > > > > > 8 =.bXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX;X> > > > > > > ..}..X.X.X.X.X[.'.'.'.`.(.!.!.E.E.T.T.T.U Y.I I U I I I I I U I I I I I I I I I I I I I I I I I I I I I I I L g > > > > > > > > > > > ` S.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrXf.9 8 8 > > > > > > > > r 9XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX%.> > > > > > > ^ .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X'.[.'.`.(./.!.E.E.T.T.Y.Y.U U I I I I I I I I I I I I I I I I H ] > > > > > > > > > > 9 d.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX1X:.8 > > > > > > > > > 9 &XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX6X> > > > > > > [ .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X'..X.X[.'.'.`././.!.E.R.R.T.Y.U I I S 2 > > > > > > > > > > @.2XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXM.0 8 8 > > > > > > > > 0.FXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX*.> > > > > > > Q .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XQ 3 > > > > > > > > > 9 h.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXyX1X;.8 8 > > > > > > > > =.ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX8X> > > > > > > { .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XD < > > > > > > > > > +.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXl.9 > > > > > > > > > O.xXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX5.> > > > > > > W .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XZ > > > > > > > > > > >.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.t 8 > > > > > > > > r lXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXwX> > > > > > > 7 ]..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.Xe.> > > > > > > > > < g.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5X:.> > > > > > > > > q qXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX9.> > > > > > > A .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X].V > > > > > > > > > q H.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXd.8 > > > > > > > > 0 0XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXzX9 > > > > > > 6 ]..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XV > > > > > > > > > o.<XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXN.9 8 > > > > > > > 0 0XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXs.> > > > > > > C .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X}.e.< > > > > > > > > $.5XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXK.q > > > > > > > > 0 qXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXcXq > > > > > > 4 _..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XZ 8 > > > > > > > > :.rXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX<Xt > > > > > > > > 0 lXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXn.> > > > > > > V .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XD > 8 8 > > > > > > -.5XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX1Xo.> > > > > > > > r cXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXZXq > > > > > 8 < ~..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XQ > > > > > > > > > -.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX4Xo.> > > > > > > > y ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXV.> > > > > > 8 q..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XW.3 > > > > > > > < ,.F.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX4Xo.> > > > > 8 8 8 =.KXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXDXr > > > > > > < W..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[..X^._ > > > > > > > 8 -.D.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX1Xo.8 > > > > > > > y.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX-X> > > > > > > ...X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.[.[ > > > > > > > > -.D.G.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXtX1X` > > > > > > > > =XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKXO.> > > > > > < / .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X2.< > > > > > > > +.D.F.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.e 8 > > > > > > 8 qXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX>X> > > > > 8 8 | .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XW > > > > > > > > ` Z.F.G.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXH.9 > > > > > > > y bXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX%.> > > > > > > Q .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.Q 4 > > > > > > > 0 x.F.F.L.yXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXM.8 8 > > > > > > 5.KXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX8X> > > > > > > } {..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X~.A { 9 > > > > > > > 8 k.F.F.F.3XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXuXyXyXyXuXuXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXtXyXyXyXyXyXyXyXtXf.8 > > > > > > 8 &XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX=.> > > > > > > W .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.! X.4 > > > > > > > > > > p.F.F.F.G.tXiXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXiXsXMXGXHXLXLXLXLXGXNXnXpXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXiXtXyXiXpXpXpXpXiXyXyXyXyXyXyXyXtX:.> > > > > > 8 9 kXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXwX> > > > > > > { ]..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X^.Z _ 8 > > > > > > > > > > > -.F.F.F.F.U.yXtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXsXBXLXPXPXPXPXPXPXPXPXPXPXPXPXHXMXpXyXuXtXyXyXyXyXyXyXyXyXyXyXiXnXGXLXLXPXPXPXLXGXnXpXyXyXyXyXtX5Xt > > > > > 8 8 O.FXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX5.> > > > > > > A .X.X.X.X.X.X.X.X.X.X.X.X.X[.Q ..9 8 > > > > > > > > > > > > ` Z.F.F.F.G.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXuXuXyXaXHXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXGXaXuXyXyXyXyXyXyXtXuXuXMXLXPXPXPXPXPXPXPXPXPXPXLXGXpXyXyXyXyXI.8 8 > > > > > 8 m.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXxX> > > > > > > 7 ]..X.X.X.X.X.X.X.X.X.X^.C _ > > > 8 > > > > > > > > > > 8 8 C.F.F.F.F.L.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXuXiXSXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXBXiXyXyXyXyXuXuXaXHXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXNXiXyXyXyXf.> > > > > > 8 8 kXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXy.> > > > > > > Z .X.X.X.X.X.X.X[.Q  .> > > > > > > > > > > > > > > 8 8 > 3.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXsXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXmXyXyXyXyXdXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXaXyXyXyX-.8 > > > > > > =.KXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXvX8 > > > > > > 6 _..X.X.X.X XC 5 > > > > > > > > > > > > > > > > > > 8 +.D.F.F.F.F.G.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXnXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXBXiXyXsXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXdXyXyX1X9 > > > > > 8 8 ;XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXb.> > > > > > < V .X].R | 8 8 > > > > > > > > > > > > > > > > > > > 9 C.F.F.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXmXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXHXsXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXnXyXyXc.> > > > > > > q ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXZX0 > > > > > > 4 e.6 > > 8 8 > > > > > > > > > > > > > > > > > > > 3.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXdXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXnXyXyX$.> > > > > > > v.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXm.> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ` D.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXaXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXsXuX<X9 8 8 > > > > 0 zXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXDXr > > > > > > > > > > > > > > > > > > > , p l 4 > > > > > > 8 z.F.F.F.F.F.F.F.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXiXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXaXtXi.8 8 > > > > > 6.LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXFX6Xy 8 > > > > > > > > > > > > > > > > 2 k J P s > > > > > > > -.F.F.F.F.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXBXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXHXiX5Xr > > > > > > 9 kXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXzXn.r > > > > > > > > > > > > > > > > , h b P I I G 3 > > > > > > > C.F.F.F.F.F.F.F.2XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXsXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXNXyXM.> > > > > > > 6.LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXDX,X4.8 > > > > > > > > > > > > > > > > ( k H I I I I I s > > > > > > > <.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXuXHXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXaXrX@.> > > > > > 9 wXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXlXb.r > > > > > > > > > > > > > > > > 3 s b P I I I I I I G , > > > > > > w Z.F.F.F.F.F.F.F.G.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXsXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXHXiXB.> > > > > > > 9.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXAX:X*.8 > > > > > > > > > > > > > > > < ' z H I I I I I I I I P f > > > > > > > 3.F.F.F.F.F.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXHXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXmXyX@.8 8 8 > > > > zXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXkXv.r > > > > > > > > > > > > > > > > 3 s b P I I I I I I I I I I L 3 > > > > > > w Z.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXaXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXyXS.8 8 8 > > > > v.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXZX;X&.8 > > > > > > > > > > > > > > > < ' l H I I I I I I I I I I I I I z > > > > > > < 1.F.F.F.F.F.F.F.F.F.3XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXNXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXmXtX@.> 8 > > > > 0 ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXwX0.q > > > > > > > > > > > > > > > > 5 d S I I I I I I I I I I I I I I I P ( > > > > > > 9 C.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXHXuXN.> 8 > > > > > &XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXZX-X%.> > > > > > > > > > > > > > > > > ] l L I I I I I I I I I I I I I I I I I b > > > > > > > -.F.F.F.F.F.F.F.F.F.G.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXaXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXaXrXt 8 > > > > > O.KXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXqX9.0 > > > > > > > > > > > > > > > > 5 g F I I I I I I I I I I I I I I I I I I I I h > > > > > > 8 C.F.F.F.F.F.F.F.F.F.G.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXMXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXSXyXf.> > > > > > > qXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXZX&XO.> > > > > > > > > > > > > > > > > u x L I I I I I I I I I I I I I I I I I I I I I L , > > > > > > +.F.F.F.F.F.F.F.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXuXyXHXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXJX#X& + + $ XXVXPXPXPXPXPXPXPXPXLXiX4X0 > > > > > > 0.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXLX9X9.< > > > > > > > > > > > > > > > > 5 N F K I I I I I I I I I I I I I I I I I I I I I I I l > > > > > > > a.F.F.F.F.F.F.F.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXuXiXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXfX+             X oXPXPXPXPXPXPXPXPXnXyX>.> > > > > > 0 DXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXZX&Xo.> > > > > > > > > > > > > > > > > i m K I I I I I I I I I I I I I I I I I I I I I I I I I P ] > > > > > > w D.F.F.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXpXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX#X.                   = PXPXPXPXPXPXPXBXyXH.> > > > > > > ,XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXLX8X6.> > > > > > > > > > > > > > > > > 1 f G I I I I I I I I I I I I I I I I I I I I I I I I I I I I H < > > > > > > ,.F.F.F.F.F.F.F.F.F.F.F.2XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXsXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXgXOX; : @XCXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXgX.                       ; PXPXPXPXPXPXLXiXrXy > > > > > > 6.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXbXV.y > > > > > > > > > > > > > > > > < i c I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I l > > > > > > > k.F.F.F.F.F.F.F.F.F.F.F.3XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXMXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXfX@           . = VXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXJX@                           %XPXPXPXPXPXPXaXyXi.> > > > > > 0 DXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXwX6.> > > > > > > > > > > > > > > > > 1 f G I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I i > > > > > > ` D.F.F.F.F.F.F.F.F.F.F.F.3XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXNXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXXX                  o %XPXPXPXPXPXPXPXPXPXPXPXPXPXPX+X                            @ PXPXPXPXPXPXnXyXI.8 > > > > > > 7XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXDX0.> > > > > > > > > > > > > > > > < i c K I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I P < > > > > > > <.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXBXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX:                       X %XPXPXPXPXPXPXPXPXPXPXPXPXLX@                               $XPXPXPXPXPXBXyXrX` > > > > > > 0.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXAX%.> > > > > > > > > > > > > > > 1 j J I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I P v 8 > > > > > > k.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXSXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX#X                          o VXPXPXPXPXPXPXPXPXPXPXPXhX                                * PXPXPXPXPXGXyXyXi.> > > > > > r LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PX6.> > > > > > > > > > > > > , a v K I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I T.B > > > > > > w Z.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXGXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXJXO                             & LXPXPXPXPXPXPXPXPXPXPXOX                                o PXPXPXPXPXLXiXyXK.8 > > > > > > zXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"qX> > > > > > > > > > > > 2 k J I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I U R.'..X} > > > > > > -.D.F.F.F.F.F.F.F.F.F.F.F.F.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXGXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXoX                                fXPXPXPXPXPXPXPXPXPXPX=                                   jXPXPXPXPXLXiXyX5Xq > > > > > > &XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"v.> > > > > > > > > 5 p n K I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I U T./.[..X.X].> > > > > > > p.F.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXGXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX+                                 * PXPXPXPXPXPXPXPXPXPX%                                   %XPXPXPXPXPXpXyXyX:.> > > > > > 6.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"&.> > > > > > > 2 k J I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I Y.E.'..X.X.X.X.XQ > > > > > > 9 C.F.F.F.F.F.F.F.F.F.F.F.F.F.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXBXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXgX                                  o CXPXPXPXPXPXPXPXPXPX$                                   #XPXPXPXPXPXaXyXyXl.> > > > > > q LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"O.> > > > > > 2 F P I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I U T./..X.X.X.X.X.X.X.XC > > > > > > ` Z.F.F.F.F.F.F.F.F.F.F.F.F.F.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXNXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXOX                                    $XPXPXPXPXPXPXPXPXPX%                                   #XPXPXPXPXPXaXtXuXI.8 > > > > > > xXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"7.> > > > > > > 2 n I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I Y.E.'..X.X.X.X.X.X.X.X.X.X| > > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXMXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX=                                     XXPXPXPXPXPXPXPXPXPX=                                   %XPXPXPXPXPXsXyXuX5Xw > > > > > > >XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+";X> > > > > > > > < N L I I I I I I I I I I I I I I I I I I I I I I I I I I I I I U T.(..X.X.X.X.X.X.X.X.X.X.X.X.X6 > > > > > > 3.D.F.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXnXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX%                                     = PXPXPXPXPXPXPXPXPXoX                                  jXPXPXPXPXPXsXyXyXyX;.8 8 > > > > b.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"FXr > > > > > > > > > u G I I I I I I I I I I I I I I I I I I I I I I I I I I Y.Q.'..X.X.X.X.X.X.X.X.X.X.X.X.X.X~.> > > > > > 8 C.D.F.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXaXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX@                                     % PXPXPXPXPXPXPXPXPXfX                                o LXPXPXPXPXPXaXyXyXyXi.8 8 > > > > *.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PX8X< 8 > > > > > > > > 5 m I I I I I I I I I I I I I I I I I I I I I I I R.`..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XQ > > > > > > 9 Z.F.F.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXiXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX#                                     % PXPXPXPXPXPXPXPXPXJXO                               * PXPXPXPXPXPXaXyXyXyXB.> > > > > > 0 LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPX;X9 > > > > > > > > > < g L I I I I I I I I I I I I I I I I I I Y.E.[..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XZ > > > > > > t F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.3XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXuXuXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX&                                     & PXPXPXPXPXPXPXPXPXPX:                               %XPXPXPXPXPXLXpXyXyXyX<X8 > > > > > > bXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPX9Xr 8 > > > > > > > > > ' F I I I I I I I I I I I I I I U R.`..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X..8 > > > > > $.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.2XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXBXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX;                                     ; PXPXPXPXPXPXPXPXPXPXVXo                           @ PXPXPXPXPXPXLXiXyXyXyXrX0 > > > > > > 0XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXZX5.> > > > > > > > > > 3 x I I I I I I I I I I I Y.!.[..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XR > 8 > > > > > 1.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.2XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXnXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX@X                                    +XPXPXPXPXPXPXPXPXPXPXPX+X                        . fXPXPXPXPXPXPXLXyXyXyXyXyXo.8 > > > > > ;XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXLX&X8 > > > > > > > > > > h I I I I I I I U R.`..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X^.5 > > > > > > > p.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXpXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXVX.                                   jXPXPXPXPXPXPXPXPXPXPXPXPX=                       oXPXPXPXPXPXPXPXBXyXyXyXyXyX:.> > > > > > n.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXwXy > > > > > > > > > > 2 Y I I I U !.[..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.| > > > > > > > > k.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXtXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX$                                 @ PXPXPXPXPXPXPXPXPXPXPXPXPXLX-                   oXPXPXPXPXPXPXPXPXMXyXyXyXyXtXi.> > > > > > 9.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXDX9.> > > > > > > > > > < z E.'..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X}.}.C > > > > > > > > 9 C.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXNXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX$X                                +XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX#X+           @ fXPXPXPXPXPXPXPXPXPXaXyXyXyXyXyXl.> > > > > > *.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXLX-X0 > > > > > > > > > > X.]..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X}.^ < > > > > > > > > 9 D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXsXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX$                             + JXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXgXOXXX+XhXPXPXPXPXPXPXPXPXPXPXLXiXyXyXyXyXyXA.> > > > > > r PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXlXO.> > > > > > > > > > { W..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X}.]._ < > > > > > > > > 9 F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXHXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXhX.                           $XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXBXyXyXyXyXyXyXK.8 > > > > 8 9 KXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXDXy.> > > > > > > > > > < A }..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.X.> 8 > > > > > > > > ` F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.3XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXMXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX#X.                       XXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXsXyXyXyXyXyXyX<X8 > > > > 8 > 9.zXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPX:Xq > > > > > > > > > > ..^..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X}.E 8 > > > > > > > > > > ` F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXiXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX#X.                   XXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXuXyXyXyXyXyXyX4X9 8 8 > > > > 8 8 v.ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXxX*.> > > > > > > 8 8 > _ ^ .X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X|.9 8 > > > > > > > > > > #.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXNXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXhX% .           @ $XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXmXtXyXyXyXyXyXyX4X0 > > > > > > > > > r 6XLXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKXv.< > > > > > > > > > < Z ]..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X].[ < 8 > > > > > > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXpXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXhXOX- - XXfXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXiXyXyXyXyXyXyXyXrX0 > > > > > > > > > > 8 v.FXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX7Xr > > > > > > > > > > ..~..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X}.e.> > > > > > > > > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXBXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXsXuXyXyXyXyXyXyXyXyX0 > > > > > > > > > > 8 > *.vXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXcX=.> > > > > > > > > > 7 ! .X.X.X.X.X.X.X.X.X.X.X.X.X}.Q < 8 > > > > > > > > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.3XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXiXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXBXuXyXyXyXyXyXyXyXyXyXw > > > > > > > > > > > > 8 y zXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXm.> > > > > > > > > > w w.[.[..X.X.X.X.X.X.X.X.X.X~.6 > 8 > > > > > > > > > > > > ,.F.F.F.F.G.F.F.F.F.F.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXuXmXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXiXyXyXyXyXyXyXyXyXyXyXw > > > > > > > > > > > > > > r kXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX9Xy > > > > > > > > > > | ~..X.X.X.X.X.X.X.X.X}. .8 > > > > > > , ( > > > > > > <.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXHXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXpXyXyXyXyXyXyXyXyXyXyXyXw > > > > > > > > > > > > > > 8 r cXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXbX6.> > > > > > > > > > 6 R .X.X.X.X.X.X.X.XZ 8 8 > > > > > > j h > > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXpXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXpXtXyXyXyXyXyXyXyXyXyXyXyXw > > > > > > :.8 > > > > > > > 8 y AXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXV.9 > > > > > > > > > < q.]..X.X.X.X.X^ , > > > > > > > a K s > > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.2XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXnXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXNXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXGXiXuXyXyXyXyXyXyXyXyXyXyXyXrXe > > > > > 8 H.H.0 8 > > > > > > > 5.KXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXqXy > > > > > > > > 8 > }  X.X}..X]._ > > > > > > > 1 J I g > > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXBXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXMXtXpXNXLXPXPXPXPXPXPXPXPXPXPXHXdXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrX0 > > > > > 8 K.yX<Xt > > > > > > > > &XPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXAX9.> > > > > > > > > 8 4 E }..X2.8 > > > > > > < v I I f > > > > > > #.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXtXyXyXyXyXyXyXyXyXyXyXyXuXGXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXHXuXyXyXyXiXdXBXLXLXPXPXLXHXNXaXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5X0 > > > > > 8 I.yXyX<Xr > > > > > > > 0 zXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX-X9 > > > > > > > > > < q.A > > > > > > > > f I I P j > > > > > > ` F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.2XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXuXyXyXyXyXyXyXuXyXyXyXyXyXyXiXHXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXpXyXyXyXyXyXuXtXuXyXiXiXiXuXtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX1X9 > > > > > 8 <XyXyXyXI.q > > > > > > > =.LXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXlXO.> > > > > > > > > > > > > > > > > > ' K I I I z > > > > > > t F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXiXHXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXnXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX<X8 > > > > 8 8 5XyXyXyXyXB.8 > > > > > > > 7XPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXDX0.8 > > > > > > > > > > > > > > > 5 F P I I I v > > > > > > 0 D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXuXyXyXyXyXyXyXyXyXyXyXyXyXyXuXiXGXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXNXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXK.> > > > 8 8 8 tXyXyXyXyXyXu.> > > > > > > O.LXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX>X9 8 > > > > > > > > > > > > 8 l I I I I I b > > > > > > 9 Z.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXiXBXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXBXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXB.> > > > > 8 e yXyXyXyXyXyX5Xt > > > > > > > 7XPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXcX%.> > > > > > > > > > > > h I I I I I I F < > > > > 8 > x.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXtXuXMXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXNXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXg.> > > > > 8 @.yXyXyXyXyXyXuXN.> > > > > > > =.PXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKXv.8 > > > > > > > > > 2 L I I I I I I P < > > > > > > k.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXaXHXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXmXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXt.e <XyXyXyXyXyXyXyXyXyXyXyXyXu.> > > > > > :.yXyXyXyXyXyXyXyXo.> > > > > > 8 cXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX6X> > > > > > > > < S I I I I I I I I 5 > > > > > > p.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXiXMXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXHXpXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXi.> 8 f.yXyXyXyXyXyXyXyXyXyXyXyX:.> > > > > > i.yXyXyXyXyXyXyXyXM.8 > > > > > > &XPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX;X> > > > > > > > j I I I I I I I I I ' > > > > > > <.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXuXyXiXNXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXnXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXi.8 8 8 N.yXyXyXyXyXyXyXyXyXyXyXyXy > > > > > > g.yXyXyXyXyXyXyXyX5Xe > > > > > > *.PX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXxX0 > > > > > > > i P I I I I I I I I I s > > > > > > +.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXiXnXGXLXPXPXPXPXPXPXPXPXPXPXPXLXGXdXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrXt.8 > 8 q rXyXyXyXyXyXyXyXyXyXyXyX5X0 > > > > > 8 H.yXyXyXyXyXyXyXyXyX8.> > > > > > 8 DX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXFX%.> > > > > > > 5 J I I I I I I I I I I N > > > > > < w F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXiXsXMXGXHXLXLXLXHXGXNXsXiXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5X:.> > > > l.yXyXyXyXyXyXyXyXyXyXyXyXI.8 > > > > > 8 1XyXyXyXyXyXyXyXyXyXB.> > > > > > > wX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXb.> > > > > > > < m I I I I I I I I I I I v > > > > > 8 9 D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXuXyXtXuXuXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.y > > > > @.tXyXyXyXyXyXyXyXyXyXyXyXyXN.8 8 > > > > 9 yXyXyXyXyXyXyXyXyXyX1X9 > > > > > > -X",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX7X> > > > > > > > g I I I I I I I I I I I I G > > > > > > > k.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXc.9 > > > > 0 I.yXyXyXyXyXyXyXyXyXyXyXyXyXi.> > > > > > $.yXyXyXyXyXyXyXyXyXyXrXt 8 > > > > > b.",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXvXr > > > > > > > ' K I I I I I I I I I I I I P 5 > > > > > > r.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.3XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX<X;.8 > > > > 9 B.yXyXyXyXyXyXyXyXyXyXyXyXyXyX$.> > > > > > t.yXyXyXyXyXyXyXyXyXyXyX%.> > > > > > 6.",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX5.> > > > > > > 5 F I I I I I I I I I I I I I I ] 8 > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5Xg.0 > > > > > > l.yXyXyXyXyXyXyXyXyXyXyXyXyXyX5Xw > > > > > > M.yXyXyXyXyXyXyXyXyXyXyX:.> > > > > > *.",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXV.> > > > > > > > l I I I I I I I I I I I I I I I N > > > > > > w D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5Xc.t > > > > > > 9 l.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXK.8 > > > > > > <XyXyXyXyXyXyXyXyXyXyXyX8.> > > > > > O.",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXqX< > > > > > > > h K I I I I I I I I I I I I I I I M > > > > > > 8 x.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX4XS.1.0 > > > > > > > 0 B.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXg.8 > > > > > 0 yXyXyXyXyXyXyXyXyXyXyXyXt.> > > > > > O.",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXAXO.> > > > > > > 1 H I I I I I I I I I I I I I I I U ).> > > > > > 8 r.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5X1XI.H.l.t.o.9 8 8 8 > > > > > > o.I.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX-.> > > > > > :.yXyXyXyXyXyXyXyXyXyXyXyX8.> > > > > > &.",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX0.> > > > > > > > S I I I I I P I I I I I I I I I I (..X[ > > > > > 8 #.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXU.c.t.:.-.@.t e w 0 9 8 > > > > > > > > > > 8 8 8 t.5XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5Xw > > > > > > l.yXyXyXyXyXyXyXyXyXyXyXyX-.> > > > > > 5.",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX:X8 > > > > > > > j I I I I I I I I I I I I I I I I T..X.XC > > > > > 8 w Z.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXN.9 > > > > > > > > > > > > > > > > > > > > > 8 @.H.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXS.8 > > > > > 8 I.yXyXyXyXyXyXyXyXyXyXyXyX` > > > > > > y.",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXxXq > > > > > > > u P I I I I I I I I I I I I I I I U [..X.X/ 8 > > > > 8 8 h.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXo.> > > > > > > > > > > > > > > > > > > > > e M.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXt.> > > > > > e tXyXyXyXyXyXyXyXyXyXyXyX5Xw > > > > > > V.",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX*.> > > > > > > 5 G I I I I I I I I I I I I I I I I '..X.X.X].4 > > > > 8 > ,.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXt > > > > > > > > > > > > > > > > > > 8 t c.5XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrXt > > > > > > 8.yXyXyXyXyXyXyXyXyXyXyXyXH.> > > > > > > 8X",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXn.> > > > > > > > c I I I I I I I I I I I I I I I I !..X.X.X.X.Xq.> > > > > > ` D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXd.> > > > > > > > > > > > > > > 8 8 :.B.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXK.8 > > > > > > A.yXyXyXyXyXyXyXyXyXyXyXyXd.> > > > > > > bX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX8X8 > > > > > > > d P I I I I I I I I I I I I I I I T..X.X.X.X.X.XQ > > > > > > > j.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrX-.> > > > > > > > > > > 8 9 -.c.1XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXt.> > > > > 8 9 eXyXyXyXyXyXyXyXyXyXyXyXrX` > > > > > > y LX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXbXr > > > > > > > ( L I I I I I I I I I I I I I I I U [..X.X.X.X.X.X].4 > > > > > 8 -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXN.+.0 9 > 9 9 9 t :.f.H.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5Xe > > > > > > :.yXyXyXyXyXyXyXyXyXyXrXU.z.8 > > > > 8 8 v.PX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX6.> > > > > > > , Y I I I I I I I I I I I I I I I I `..X.X.X.X.X.X.X[.X.> > > > > 8 9 Z.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.Z.C.x.k.z.z.x.C.Z.F.F.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrX1X1X1X5XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXB.> > > > > > 8 B.yXyXyXyXyXyXyXtX3XP.F.F.$.> > > > > 8 8 0XPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX&X> > > > > > > > z I I I I I I I I I I I I I I I I E..X.X.X.X.X.X.X.X.XQ > > > > > > > p.F.F.F.F.F.F.F.F.F.F.D.x.u.;.` 0 8 > > > > > > > 9 ` ` >.B.1XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX:.> > > > > > w 5XyXyXtXeX3XU.L.G.F.F.F.z.9 > > > > > > y KXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXkX0 > > > > > > > h I I I I I I I I I I I I I I I I T..X.X.X.X.X.X.X.X.X.X].7 > > > > > > ` F.F.F.F.F.F.F.F.p.-.w > > > > 8 > > > > > > > > > > > > > > t t.K.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX<X9 > > > > > > -.J.G.G.G.F.F.F.F.F.F.F.F.$.> > > > > > 8 V.PXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXDXO.> > > > > > > 2 H I I I I I I I I I I I I I I I U '..X.X.X.X.X.X.X.X.X.X.XV > > > > > > > k.F.F.F.F.x.,.w > > > > > > > > > > > > > > > > > > > > > > > > > t f.1XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXd.> > > > > > > j.F.F.F.F.F.F.F.F.F.F.F.p.8 > > > > > > 0 ZXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX0.> > > > > > > < n I I I I I I I I I I I I I I I I !..X.X.X.X.X.X.X.X.X.X.X.X|.> > > > > > > -.F.F.z.#.8 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > w t.1XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5Xe 8 > > > > > t D.F.F.F.F.F.F.F.F.F.F.x.0 > > > > > > > m.PXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX,X> > > > > > > > f I I I I I I I I I I I I I I I I R..X.X.X.X.X.X.X.X.X.X.X.X.X.X| > > > > > > 9 j.-.9 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 0 i.5XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXc.> > > > > > > 8.F.F.F.F.F.F.F.F.F.F.D.` > > > > > > > r AXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXcXq > > > > > > > ] K I I I I I I I I I I I I I I I Y..X.X.X.X.X.X.X.X.X.X.X.X.X.X.XR > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > t S.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXuXyXyXyXyXrX` > > > > > > 0 Z.F.F.F.F.F.F.F.F.F.D.$.> > > > > > > > :XPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX*.> > > > > > > 5 F I I I I I I I I I I I I I I I I `..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[._ > > > > > > > > > > > > > > > > > > > 9 t $.8.u.d.f.d.u.>.#.` > > > > > > > > > > > > > > 9 t.5XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXN.8 > > > > > 8 ;.F.F.F.F.F.F.F.F.F.D.-.> > > > > > > 8 5.LXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXm.> > > > > > > < x I I I I I I I I I I I I I I I I !..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XA > > > > > > > > > > > > > > > > t t.B.1XrXyXyXyXyXyXyXyXyXyXeXU.N.>.e > > > > > > > > > > > > @.1XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrXo.8 > > > > > 8 x.F.F.F.F.F.F.F.F.Z.#.> > > > > > > > r bXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX0X> > > > > > > > s I I I I I I I I I I I I I I I I T..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X}.].w > > > > > > > > > > > > w 8.K.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5XS.:.8 > > > > > > > > > > e I.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXN.> > > > > > > -.F.F.F.F.F.F.F.F.z.t > > > > > > > > 0 8XPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXZXy > > > > > > > 2 L I I I I I I I I I I I I I I I U [..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X}.X.> > > > > > > > > > 0 t.1XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.>.9 > > > > > > > > 8 0 K.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrX` > > > > > > > z.F.F.F.F.F.F.D.1.9 > > > > > > > > 9 ;XPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX6.> > > > > > > , S I I I I I I I I I I I I I I I I (..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X}.R > 8 > > > > > > > > :.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXH.@.> > > > > > > 8 > 0 I.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXg.8 > > > > > > $.F.F.F.F.F.F.a.` > > > > > > > > > > V.LXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX-X> > > > > > > > k I I I I I I I I I I I I I I I I E..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X^ < > > > > > > > > 0 M.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5Xd.9 > > > > > > > 8 e 1XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX3X0 8 > > > > > 9 z.F.F.F.D.p.` > > > > > > > > > > 8 V.PXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXlX0 > > > > > > > i I I I I I I I I I I I I I I I I Y..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X_._ > > > > > > > > t I.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXH.0 > > > > > > > > @.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXtX<.> > > > > > > -.D.Z.a.-.9 8 > > > > > > > > > > < :XPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXFXO.> > > > > > > 5 J I I I I I I I I I I I I I I I I '..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.| > > > > > > > > @.4XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXI.e > > > > > > > 8 u.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrXx.8 > > > > > > > ` ` < > > > > > > > > > > > > > o.qXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXv.> > > > > > > < n I I I I I I I I I I I I I I I I /..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XA > > > > > > > > ` 4XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX<Xw > > > > > > > 8 K.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXeXD.e > > > > > > > > > > > > > > > > > > > > > > > 6.ZXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPX6X8 > > > > > > > f I I I I I I I I I I I I I I I I R..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X_.4 > > > > > > > w A.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.0 > > > > > > > t tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtX2XF.<.> > > > > > > > > > > > > > > > > > > > > 8 r >XPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXcXr > > > > > > > u K I I I I I I I I I I I I I I I U [..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.Xq.8 8 > > > > > 9 k.P.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXN.9 > > > > > > > l.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXtXuXtXL.F.z.8 > > > > > > > > > > > > > > > > > > > > 0 m.DXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXKX4.> > > > > > > < F I I I I I I I I I I I I I I I I '..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X^.< > 8 > > > > > 3.F.2XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX>.> > > > > > > e rXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXtXeXF.F.D.` > > > > > > > > > > > 8 8 > > > > > > r m.ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPX-X> > > > > > > > l I I I I I I I I I I I I I I I I !..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.Xe.> > > > > > > ` D.D.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX4X0 > > > > > > 8 M.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXP.F.F.F.,.8 > > > > > > > > > > > > 8 8 8 > 9 5.6XFXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXDXr > > > > > > > h I I I I I I I I I I I I I I I P T.[..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.[.9 > > > > > > 8 h.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXl.> > > > > > > #.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX4XG.F.F.F.a.8 > > > > > > > > > 8 > > > 9 O.s.7XAXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPX7X> > > > > > > 2 L I I I I I I I I I I I I I I I U [..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.R 8 > > > > > > +.D.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5Xw > > > > > > 8 I.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrXP.F.F.F.F.C.0 > > > > > > > O.v.v.m.-X6XlXZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXm.> > > > > > < S I I I I I I I I I I I I I I I I (..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.XX.8 8 > > > > > p.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXi.> > > > > > > h.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtX<XG.F.F.F.F.Z.` > > > > > > > q cXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPX0.> > > > > > 5 g N z x v S F G H L I I I I I I Q..X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X.X[.6 > > > > > > 9 Z.F.F.F.2XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.8 8 > > > > > o.P.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtX1XG.F.F.F.F.F.F.-.> > > > > > > 8 :XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXv.> > > > > > > > > > > > > > < 3 5 2 2 u p s f Z E R ^ W.~._.].}..X.X.X.X.X.X.X.X.X.X.X.X.X|.< > > > > > > $.F.F.F.F.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXt > > > > > > 0 D.G.U.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtX3XL.F.F.F.F.F.F.F.1.> > > > > > > > 0.LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPX>X> > > > > > > > > > > > > > > > > > > > > > > > > > > > > 4 5 _ { [  .X.e.Z E R ! W. X^._.E > > > > > > > 3.F.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX8.> > > > > > > x.F.F.G.U.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX3XG.G.F.F.F.F.F.F.F.p.8 > > > > > > > O.AXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXAXr > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 > > 8 > > 8 8 > 8 > > < 6 4 > > > > > > 8 j.F.F.F.F.G.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXl.> > > > > > > a.F.F.F.F.G.P.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtX2XG.F.F.F.F.F.F.F.F.F.j.9 > > > > > > > q lXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPX;X> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 > > > > 8 > 8 C.F.F.F.F.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXH.> > > > > > > r.F.F.F.F.F.F.F.L.3XtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXeXU.G.F.F.F.F.F.F.F.F.F.F.z.0 > > > > > > > 8 6XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXLXm.> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 8 9 Z.F.F.F.F.F.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.8 > > > > > 8 >.F.F.F.F.F.F.F.F.F.G.P.eXtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtX2XG.G.F.F.F.F.F.F.F.F.F.F.F.z.w > > > > > > > > m.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPX8XO.> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 9 D.F.F.F.F.F.G.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX<X8 > > > > > > <.F.F.F.F.F.F.F.F.F.F.F.F.L.2XeXtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXU.P.G.F.G.F.F.F.F.F.F.F.F.F.F.F.x.w > > > > > > > > 9.LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXLXkX-Xn.0.6.4.%.y q > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 9 D.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.9 > > > > > > <.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.L.P.3XtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXeXU.G.G.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.z.w > > > > > > > > *.KXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXLXLXDXbXxXqX7X:X=Xm.v.9.5.&.y q > > > > > > > > > > > > > > > > > > > > > > > 8 8 9 C.F.F.F.F.F.F.F.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXK.> > > > > > > 3.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.L.2X3XrXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXeXU.P.G.F.F.G.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.k.w > > > > > > > > O.AXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXPXLXKXAXcXkX9X7X;X&Xn.s.6.*.O.r 8 > > > > > > > > 8 8 8 C.F.F.F.F.F.F.F.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXB.> > > > > > > r.G.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.P.U.3XeXrXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXrX3XU.P.L.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.j.0 > > > > > > > > y bXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXLXDXbXzXn.8 > > > > > > a.F.F.F.F.F.F.F.G.3XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXd.> > > > > > 8 j.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.P.P.U.U.3X2X3X3X3X3X3X3X2X2XU.U.P.L.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.p.9 > > > > > > > > r xXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXqX> > > > > > > <.F.F.F.F.F.F.F.D.G.rXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX;.> > > > > > 8 C.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.1.8 8 > > > > > > > r xXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXAX8 8 > > > > > ` D.F.F.F.F.F.F.G.F.L.rXyXyXtXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXeX0 > > > > > > w F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.Z.-.> > > > > > > > > r xXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX&.> > > > > > 8 C.F.F.F.F.F.F.F.F.F.G.yXyXuXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXB.> > > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.x.` > > > > > > > > > o.cXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXV.> > > > > > > <.F.F.F.F.F.F.F.F.F.F.L.rXtXtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX;.> > > > > > > p.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.h.0 > > > > > > > > > O.bXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXxX8 > > > > > > w Z.D.F.F.F.F.F.F.F.F.F.F.eXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXP.9 > > > > > > 0 C.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.;.> > > > > > > > > > :.ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX*.> > > > > > > 1.D.F.F.F.F.F.F.F.F.F.F.F.2XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXeX-.> > > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.k.` > > > > > > > > 8 8 9.DXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX,X> > > > > 8 8 9 C.F.F.F.F.F.F.F.F.F.F.F.F.L.3XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrXP.j.8 > > > > > > > z.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.,.8 > > > > > > > > > 9 m.LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXO.> > > > > > > o.F.F.F.F.F.F.F.F.F.F.F.F.F.F.L.eXyXyXyXtXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXrXU.G.C.` > > > > > > > +.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.h.` > > > > > > > > > > q 6XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX7X> > > > > > > > <.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.L.2XrXyXyXyXyXtXyXyXyXuXyXyXyXyXyXyXyXyXtX3XP.G.F.D.-.> > > > > > > > k.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.C.-.8 > > > > > > > > > > y zXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX=.> > > > > > > 8 p.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.L.2XeXrXyXyXyXuXtXyXyXyXyXtXeX2XP.G.F.F.F.F.<.> > > > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.Z.1.w > > > > > > > > > > > > 0 qXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXxX0 > > > > > > > 9 a.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.D.G.G.L.L.L.U.P.P.L.L.G.F.F.F.F.F.F.F.3.> > > > > > > > w Z.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.r.w > > > > > > > > > > > > > > 8 y bXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX;X> > > > > > > > 9 u.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.,.> > > > > > > > > j.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.u.e > > > > > > > > > > > > > > > > > > 5.LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX0.> > > > > > > > 8 ,.D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.C.-.> > > > > > > > > 3.D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.Z.r.e > > > > > > > > > > > > 8 8 > > > > > > 8 >XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX=.> > > > > > > > > ` x.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.h.` > > > > > > > > > -.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.x.,.0 > > > > > > > > > > > > > ;.I.o.> > > > > > > y AXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXAX*.> > > > > > > > > 8 <.Z.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.C.-.> > > > > > > > > > > -.k.D.F.F.F.F.F.F.F.F.F.F.F.F.F.G.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.h.#.8 > > > > > > > > > > > > > ` B.rXyX3X0 > > > > > > > m.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXZX*.> > > > > > > > > > 9 1.Z.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.C.-.9 > > > > > > > > > > > > > 8 ` <.x.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.j.-.w > > > > > > > > > > > > > > 0 d.5XyXyXyXyXN.8 8 > > > > > q ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXDX6.> > > > > > > > > > > 9 $.a.D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.Z.3.+.8 > > > > > > > > > > > > > > > > > > 8 ` <.k.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.Z.h.-.w > > > > > > > > > > > > > > > 8 1.1XyXyXyXyXyXyXtX;.> > > > > > 8 =XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXm.< 8 > > > > > > > > > > 8 8 +.<.h.z.Z.F.F.F.F.F.Z.z.p.,.` 9 > > > > > > > > > > > > > > > > > > > > > > > > 8 0 #.r.C.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.k.3.` 9 8 > > > > > > > > > > > > > > > > >.<XyXyXyXyXyXyXyXyXyX<X8 8 > > > > 8 %.KXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX0Xy > > > > > > > > > > > > > > > 8 8 8 0 9 9 > > > 8 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 0 +.3.h.C.D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.x.p.,.` 8 8 > > 8 > > > > > > > > > > > > > > 9 >.<XyXyXyXyXyXyXyXyXyXyXyXyX:.8 > > > > 8 8 zXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXDXv.9 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ` > > > > > > > > > > > > > > > > > > > > > > 9 ` -.<.3.h.z.C.D.F.F.D.F.D.F.Z.F.F.F.Z.x.k.a.3.,.+.e 8 > > > > > > > > > > > > > > > > > > > > > 0 t.1XyXyXyXyXyXyXyXyXyXyXyXyXyXyXH.8 > > > > > > V.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXlX6.9 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > w D.C.,.w > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 8 8 ` w w w w 0 9 > > > > > > > > > > > > > > > > > > > > > > > > > > > > 9 @.M.5XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrXr > > > > > > =.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXwX9.9 8 > > > > > > > > > > > > > > > > > > > > > > > > < > > > > > > ` F.F.F.Z.h.+.9 > 8 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 0 t.I.yXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyX1.> > > > > > q DXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXcXm.#.8 > > > > > > > > > > > > > > > > > > > > > 9 w > > > > > > +.D.F.F.D.F.D.C.j.-.9 8 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 w >.D.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXN.> > > > > > 8 xXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXxX&X6.r 9 > > > > > > > > > > > > > 9 y 9.;XcXV.> > > > > > -.F.F.F.F.F.F.F.2XyX1XM.:.e > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 > > > > > 8 8 > 8 t t.S.5XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.> > > > > > > 9XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKXxX7X&Xv.9.5.*.*.=.5.9.b.-X8XcXLXPXPXPXV.> > > > > > -.F.F.F.F.F.F.F.G.yXyXyXyXrXH.d.$.0 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 8 > > 8 8 t >.l.<XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrX9 > > > > > > :XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX&X> > > > > > $.F.F.F.F.F.F.F.F.3XyXyXyXyXyXyXyX5XL.l.1.+.0 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 9 -.u.M.<XrXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5X0 > > > > > > =XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX-X> > > > > > +.F.F.F.F.F.F.F.F.L.yXyXyXyXyXyXyXyXyXtXyXyXeXU.B.g.t.;.o.t 0 0 9 > > > > > > > > > > 9 0 e 9 > > > > > > i.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXrXq > > > > > > &XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX,X> > > > > > ` D.F.F.F.F.F.F.F.F.2XyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtX5X3X<XI.K.H.S.S.H.H.H.I.I.1X1XrX$.> > > > > 8 j.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX5Xq > > > > > > &XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXqX> > > > > > 0 Z.F.F.F.F.F.F.F.F.G.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXe > > > > > 8 a.tXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtX9 8 > > > > > ;XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXbX8 > > > > > 8 C.F.F.F.F.F.F.F.F.F.G.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX4X9 > > > > > 8 z.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuX<X> > > > > > > 7XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX` > > > > > > p.F.F.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXB.> > > > > > 9 Z.F.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXB.> > > > > > > lXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX6.> > > > > > #.F.F.F.F.F.F.F.F.F.F.F.U.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXt.> > > > > > ` D.F.L.rXtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXi.> > > > > > q ZXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX&X> > > > > 8 9 C.F.F.F.F.F.F.F.F.F.F.F.P.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXrXq > > > > > > <.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtX@.> > > > > > %.LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXxX8 > > > > 8 > u.F.F.F.F.F.F.F.F.F.F.F.F.P.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXB.8 > > > > > > j.F.F.F.F.L.yXyXyXyXyXyXyXyXyXyXyXyXyXyXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyX<X8 > > > > > > v.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX%.> > > > 8 8 ` D.F.F.F.F.F.F.F.F.F.F.F.F.L.eXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtX$.8 > > > > > w D.F.F.F.F.F.L.rXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXi.8 > > > > > > 9XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX&X8 > > > > > 8 p.F.F.F.F.F.F.F.F.F.F.F.F.F.F.P.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXeXk.8 > > > > > > ;.F.F.F.F.F.F.F.G.eXtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXI.9 8 > > > > > y FXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXbX9 > > > > > 8 e D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.G.2XtXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXeXP.D.` > > > > > > 8 z.F.F.F.F.F.F.F.F.G.U.tXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXU.<.8 8 > > > > > v.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXs.> > > > > > > <.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.P.4XtXyXyXyXyXyXyXyXyXyXyXyXyXrXU.P.F.F.3.> > > > > > > o.F.F.F.F.F.F.F.F.F.F.F.L.3XtXyXuXuXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXyXtXU.G.k.8 8 8 > > > > 9 xXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXxX9 > > > > > > 8 j.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.L.U.3XeXeXrXrXeXeX2XP.G.F.F.F.F.z.8 > > > > > > > >.F.F.F.F.F.F.F.F.F.F.F.F.F.G.2XrXtXyXuXyXyXyXyXyXyXyXyXyXyXyXyXyX5XU.G.F.D.` > > 8 > > > > 9.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXs.> > > > > > > 0 C.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.C.` > > > > > > > > 8 k.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.L.2XeXyXtXyXyXyXtXuXtXyXtXeXU.L.F.F.F.F.-.> > > > > > > 0 xXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXbXr > > > > > > > t C.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.Z.` > > > > > > > > > > w x.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.L.L.P.P.P.P.L.F.F.F.F.F.F.F.F.1.8 > > > > > > 8 n.PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX;X> > > > > > > > t C.F.G.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.Z.` > > > > > > > > > > > > w x.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.1.8 8 > > > > > 8 O.DXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX9.> > > > > > > > w z.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.x.` > > > > > > > > > > > > > > 9 h.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.;.> > 8 > > > > > 8 qXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXZXO.> > > > > > > > 0 r.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.p.0 > > > > > > 8 8 8 8 > > > > > > 8 3.D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.x.+.8 8 > > > > > > 9 &XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXzXq > > > > > > > > > +.z.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.x.$.> > > > > > > > > 0 r 8 > > > > > > > > ` k.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.Z.3.9 8 > > > > > > > > v.LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX0Xq > > > > > > > > > 9 ,.z.D.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.x.;.9 > > > > > > > > > 9 8XxXt > > > > > > > > > > @.k.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.F.D.Z.u.q > > > > > > > > > > 9.LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX8Xq > > > > > > > > > > 9 +.p.C.D.F.F.F.F.F.F.F.F.F.F.C.p.+.9 > 8 > > > > > > > > 0 7XPXLXzXt > > > > > > > > > > > ` 3.C.D.F.F.F.F.F.F.F.F.F.F.F.Z.k.,.0 > > > > > > > > > > > s.HXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXqXr > > > > > > > > > > > 8 < t -.3.p.h.j.h.p.3.-.t 9 8 > > > > > > > > > > > q 9XPXPXPXPXvX%.> > > > > > > > > > > > 4 e -.3.a.k.z.C.z.k.p.<.+.0 > > > > > > > > > > > > > m.LXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXcX*.> > > > > > > > > > 8 > > > > > > > > > > > > > 8 > > > > > > > > > > %.zXPXPXPXPXPXPXFXs.> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > r ,XPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXFXn.8 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 8 v.DXPXPXPXPXPXPXPXPXPX,Xr > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 5.cXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXqX&.> > > > > > > > > > > > > > > > > > > > > > > > > > > > > O.9XPXPXPXPXPXPXPXPXPXPXPXPXAXv.9 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > y 6XLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLX;Xr > > > > > > > > > > > > > > > > > > > > > > > > 8 r =XKXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXxXy.9 > > > > > > > > > > > > > > > > > > > > > > > > > r -XKXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKX:X&.> > > > > > > > > > > > > > > > > > > > 8 O.-XFXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXbXm.y 8 > > > > > > > > > > > > > > > > > > > > 4.,XKXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXLXkXm.O.> > > > > > > > > > > > 8 > 8 y n.wXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXKXqXm.&.8 > > > > > > > > > > 9 > > q 6.;XvXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX",
+"PXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXbX7XV.0.*.r 0 9 0 t &.9.m.7XbXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXFXqX:Xm.s.6.>.=.5.9.v.V.7XxXLXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPXPX"
 };
--- a/tools/build_vcpkg.bat	Sun Mar 24 14:19:02 2024 -0400
+++ b/tools/build_vcpkg.bat	Sun Mar 24 14:34:27 2024 -0400
@@ -55,7 +55,7 @@
 echo Running cmake...
 set ERRORLEVEL=
 
-cmake . -DCMAKE_TOOLCHAIN_FILE="%VCPKG_PATH%\scripts\buildsystems\vcpkg.cmake" -G"NMake Makefiles" %CROSS_COMPILE_FLAG% %BUILD_SERVER_FLAG% "%PREFIX_FLAG%" -DCMAKE_BUILD_TYPE="%BUILD_TYPE%" -DSDL2_BUILDING_LIBRARY=1
+cmake . -DCMAKE_TOOLCHAIN_FILE="%VCPKG_PATH%\scripts\buildsystems\vcpkg.cmake" -G"NMake Makefiles" %CROSS_COMPILE_FLAG% %BUILD_SERVER_FLAG% "%PREFIX_FLAG%" -DCMAKE_BUILD_TYPE="%BUILD_TYPE%" -DSDL2_BUILDING_LIBRARY=1 -DNOVIDEOREC=1
 
 if %ERRORLEVEL% NEQ 0 goto exitpoint
 
--- a/tools/check_lua_locale_files.sh	Sun Mar 24 14:19:02 2024 -0400
+++ b/tools/check_lua_locale_files.sh	Sun Mar 24 14:34:27 2024 -0400
@@ -1,5 +1,5 @@
 #!/bin/sh -
 echo "*** Luacheck of Lua locale files:"
-luacheck ../share/hedgewars/Data/Locale/*.lua --globals locale -q
+luacheck ../share/hedgewars/Data/Locale/*.lua --globals locale --no-max-line-length -q
 echo "Missing translations in Lua locale files:"
 grep -c -- "^--" ../share/hedgewars/Data/Locale/*.lua
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/hw2irc/123.45.67.89.auth	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,1 @@
+sample_user=5177a58dc65c8a14dc90c69db3bf3dd2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/hw2irc/net/ercatec/hw/INetClient.java	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,71 @@
+/*
+ * Java net client for Hedgewars, a free turn based strategy game
+ * Copyright (c) 2011 Richard Karolyi <sheepluva@ercatec.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+ */
+
+package net.ercatec.hw;
+
+import java.util.List;
+
+public interface INetClient
+{
+    public static enum UserFlagType { UNKNOWN, ADMIN, INROOM, REGISTERED };
+    public static enum BanType { BYNICK, BYIP };
+
+    public void onConnectionLoss();
+    public void onDisconnect(String reason);
+
+    public void onMalformedMessage(String contents);
+
+    public String onPasswordHashNeededForAuth();
+
+    public void onChat(String user, String message);
+    public void onWelcomeMessage(String message);
+
+    public void onNotice(int number);
+    public String onNickCollision(String nick);
+    public void onNickSet(String nick);
+
+    public void onLobbyJoin(String[] users);
+    public void onLobbyLeave(String user, String reason);
+
+    // TODO flags => enum array?
+    public void onRoomInfo(String name, String flags, String newName,
+                           int nUsers, int nTeams, String owner, String map,
+                           String style, String scheme, String weapons);
+    public void onRoomDel(String name);
+
+    public void onRoomJoin(String[] users);
+    public void onRoomLeave(String[] users);
+
+    public void onPing();
+    public void onPong();
+
+    public void onUserFlagChange(String user, UserFlagType flag, boolean newValue);
+
+    public void onUserInfo(String user, String ip, String version, String room);
+
+    public void onBanListEntry(BanType type, String target, String duration, String reason);
+    public void onBanListEnd();
+
+    public void logDebug(String message);
+    public void logError(String message);
+
+    public void sanitizeInputs(final String[] inputs);
+/*
+    public void onEngineMessage(String message);
+*/
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/hw2irc/net/ercatec/hw/ProtocolConnection.java	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,649 @@
+/*
+ * Java net client for Hedgewars, a free turn based strategy game
+ * Copyright (c) 2011 Richard Karolyi <sheepluva@ercatec.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+ */
+
+package net.ercatec.hw;
+
+import java.lang.*;
+import java.lang.IllegalArgumentException;
+import java.lang.Runnable;
+import java.lang.Thread;
+import java.io.*;
+import java.net.*;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.Scanner;
+import java.util.Vector;
+// for auth
+import java.math.BigInteger;
+import java.security.MessageDigest;
+import java.security.SecureRandom;
+import java.security.NoSuchAlgorithmException;
+
+public final class ProtocolConnection implements Runnable
+{
+    private static final String DEFAULT_HOST = "netserver.hedgewars.org";
+    private static final int DEFAULT_PORT = 46631;
+    private static final String PROTOCOL_VERSION = "53";
+
+    private final Socket socket;
+    private BufferedReader fromSvr;
+    private PrintWriter toSvr;
+    private final INetClient netClient;
+    private boolean quit;
+    private boolean debug;
+
+    private final String host;
+    private final int port;
+
+    private String nick;
+
+    public ProtocolConnection(INetClient netClient) throws Exception {
+        this(netClient, DEFAULT_HOST);
+    }
+
+    public ProtocolConnection(INetClient netClient, String host) throws Exception {
+        this(netClient, host, DEFAULT_PORT);
+    }
+
+    public ProtocolConnection(INetClient netClient, String host, int port) throws Exception {
+        this.netClient = netClient;
+        this.host = host;
+        this.port = port;
+        this.nick = nick = "";
+        this.quit = false;
+
+        fromSvr = null;
+        toSvr = null;
+
+        try {
+            socket = new Socket(host, port);
+            fromSvr = new BufferedReader(new InputStreamReader(socket.getInputStream()));
+            toSvr = new PrintWriter(socket.getOutputStream(), true);
+        }
+        catch(Exception ex) {
+            throw ex;
+        }
+
+        ProtocolMessage firstMsg = processNextMessage();
+        if (firstMsg.getType() != ProtocolMessage.Type.CONNECTED) {
+            closeConnection();
+            throw new Exception("First Message wasn't CONNECTED.");
+        }
+
+    }
+
+    public void run() {
+
+        try {
+            while (!quit) {
+                processNextMessage();
+            }
+        }
+        catch(Exception ex) {
+            netClient.logError("FATAL: Run loop died unexpectedly!");
+            ex.printStackTrace();
+            handleConnectionLoss();
+        }
+
+        // only gets here when connection was closed
+    }
+
+    public void processMessages() {
+        processMessages(false);
+    }
+
+    public Thread processMessages(boolean inNewThread)
+    {
+        if (inNewThread)
+            return new Thread(this);
+
+        run();
+        return null;
+    }
+
+    public void processNextClientFlagsMessages()
+    {
+        while (!quit) {
+            if (!processNextMessage(true).isValid)
+                break;
+        }
+    }
+
+    private ProtocolMessage processNextMessage() {
+        return processNextMessage(false);
+    }
+
+    private void handleConnectionLoss() {
+        closeConnection();
+        netClient.onConnectionLoss();
+    }
+
+    public void close() {
+        this.closeConnection();
+    }
+
+    private synchronized void closeConnection() {
+        if (quit)
+            return;
+
+        quit = true;
+        try {
+            if (fromSvr != null)
+                fromSvr.close();
+        } catch(Exception ex) {};
+        try {
+            if (toSvr != null)
+                toSvr.close();
+        } catch(Exception ex) {};
+        try {
+            socket.close();
+        } catch(Exception ex) {};
+    }
+
+    private String resumeLine = "";
+
+    private ProtocolMessage processNextMessage(boolean onlyIfClientFlags)
+    {
+        String line;
+        final List<String> parts = new ArrayList<String>(32);
+
+        while (!quit) {
+
+            if (!resumeLine.isEmpty()) {
+                    line = resumeLine;
+                    resumeLine = "";
+                }
+            else {
+                try {
+                    line = fromSvr.readLine();
+                    
+                    if (onlyIfClientFlags && (parts.size() == 0)
+                        && !line.equals("CLIENT_FLAGS")) {
+                            resumeLine = line;
+                            // return invalid message
+                            return new ProtocolMessage();
+                        }
+                }
+                catch(Exception whoops) {
+                    handleConnectionLoss();
+                    break;
+                }
+            }
+
+            if (line == null) {
+                handleConnectionLoss();
+                // return invalid message
+                return new ProtocolMessage();
+            }
+
+            if (!quit && line.isEmpty()) {
+
+                if (parts.size() > 0) {
+
+                    ProtocolMessage msg = new ProtocolMessage(parts);
+
+                    netClient.logDebug("Server: " + msg.toString());
+
+                    if (!msg.isValid()) {
+                        netClient.onMalformedMessage(msg.toString());
+                        if (msg.getType() != ProtocolMessage.Type.BYE)
+                            continue;
+                    }
+
+                    final String[] args = msg.getArguments();
+                    netClient.sanitizeInputs(args);
+
+
+                    final int argc = args.length;
+
+                    try {
+                        switch (msg.getType()) {
+
+                            case PING:
+                                netClient.onPing();
+                                break;
+
+                            case LOBBY__JOINED:
+                                try {
+                                    assertAuthNotIncomplete();
+                                }
+                                catch (Exception ex) {
+                                    disconnect();
+                                    netClient.onDisconnect(ex.getMessage());
+                                }
+                                netClient.onLobbyJoin(args);
+                                break;
+
+                            case LOBBY__LEFT:
+                                netClient.onLobbyLeave(args[0], args[1]);
+                                break;
+
+                            case CLIENT_FLAGS:
+                                String user;
+                                final String flags = args[0];
+                                if (flags.length() < 2) {
+                                    //netClient.onMalformedMessage(msg.toString());
+                                    break;
+                                }
+                                final char mode = flags.charAt(0);
+                                if ((mode != '-') && (mode != '+')) {
+                                    //netClient.onMalformedMessage(msg.toString());
+                                    break;
+                                }
+
+                                final int l = flags.length();
+
+                                for (int i = 1; i < l; i++) {
+                                    // set flag type
+                                    final INetClient.UserFlagType flag;
+                                    // TODO support more flags
+                                    switch (flags.charAt(i)) {
+                                        case 'a':
+                                            flag = INetClient.UserFlagType.ADMIN;
+                                            break;
+                                        case 'i':
+                                            flag = INetClient.UserFlagType.INROOM;
+                                            break;
+                                        case 'u':
+                                            flag = INetClient.UserFlagType.REGISTERED;
+                                            break;
+                                        default:
+                                            flag = INetClient.UserFlagType.UNKNOWN;
+                                            break;
+                                        }
+
+                                    for (int j = 1; j < args.length; j++) {
+                                        netClient.onUserFlagChange(args[j], flag, mode=='+');
+                                    }
+                                }
+                                break;
+
+                            case CHAT:
+                                netClient.onChat(args[0], args[1]);
+                                break;
+
+                            case INFO:
+                                netClient.onUserInfo(args[0], args[1], args[2], args[3]);
+                                break;
+
+                            case PONG:
+                                netClient.onPong();
+                                break;
+
+                            case NICK:
+                                final String newNick = args[0];
+                                if (!newNick.equals(this.nick)) {
+                                    this.nick = newNick;
+                                }
+                                    netClient.onNickSet(this.nick);
+                                sendMessage(new String[] { "PROTO", PROTOCOL_VERSION });
+                                break;
+
+                            case NOTICE:
+                                // nickname collision
+                                if (args[0].equals("0"))
+                                    setNick(netClient.onNickCollision(this.nick));
+                                break;
+
+                            case ASKPASSWORD:
+                                try {
+                                    final String pwHash = netClient.onPasswordHashNeededForAuth();
+                                    doAuthPart1(pwHash, args[0]);
+                                }
+                                catch (Exception ex) {
+                                    disconnect();
+                                    netClient.onDisconnect(ex.getMessage());
+                                }
+                                break;
+
+                            case ROOMS:
+                                final int nf = ProtocolMessage.ROOM_FIELD_COUNT;
+                                for (int a = 0; a < argc; a += nf) {
+                                    handleRoomInfo(args[a+1], Arrays.copyOfRange(args, a, a + nf));
+                                }
+
+                            case ROOM_ADD:
+                                handleRoomInfo(args[1], args);
+                                break;
+
+                            case ROOM_DEL:
+                                netClient.onRoomDel(args[0]);
+                                break;
+
+                            case ROOM_UPD:
+                                handleRoomInfo(args[0], Arrays.copyOfRange(args, 1, args.length));
+                                break;
+
+                            case BYE:
+                                closeConnection();
+                                if (argc > 0)
+                                    netClient.onDisconnect(args[0]);
+                                else
+                                    netClient.onDisconnect("");
+                                break;
+
+                            case SERVER_AUTH:
+                                try {
+                                    doAuthPart2(args[0]);
+                                }
+                                catch (Exception ex) {
+                                    disconnect();
+                                    netClient.onDisconnect(ex.getMessage());
+                                }
+                                break;
+                        }
+                        // end of message
+                        return msg;
+                    }
+                    catch(IllegalArgumentException ex) {
+
+                        netClient.logError("Illegal arguments! "
+                            + ProtocolMessage.partsToString(parts)
+                            + "caused: " + ex.getMessage());
+
+                        return new ProtocolMessage();
+                    }
+                }
+            }
+            else
+            {
+                parts.add(line);
+            }
+        }
+
+        netClient.logError("WARNING: Message wasn't parsed correctly: "
+                            + ProtocolMessage.partsToString(parts));
+        // return invalid message
+        return new ProtocolMessage(); // never to be reached
+    }
+
+    private void handleRoomInfo(final String name, final String[] info) throws IllegalArgumentException
+    {
+        // TODO room flags enum array
+
+        final int nUsers;
+        final int nTeams;
+        
+        try {
+            nUsers = Integer.parseInt(info[2]);
+        }
+        catch(IllegalArgumentException ex) {
+            throw new IllegalArgumentException(
+                "Player count is not an valid integer!",
+                ex);
+        }
+
+        try {
+            nTeams = Integer.parseInt(info[3]);
+        }
+        catch(IllegalArgumentException ex) {
+            throw new IllegalArgumentException(
+                "Team count is not an valid integer!",
+                ex);
+        }
+
+        netClient.onRoomInfo(name, info[0], info[1], nUsers, nTeams,
+                             info[4], info[5], info[6], info[7], info[8]);
+    }
+
+    private static final String AUTH_SALT = PROTOCOL_VERSION + "!hedgewars";
+    private static final int PASSWORD_HASH_LENGTH = 32;
+    public static final int SERVER_SALT_MIN_LENGTH = 16;
+    private static final String AUTH_ALG = "SHA-1";
+    private String serverAuthHash = "";
+
+    private void assertAuthNotIncomplete() throws Exception {
+        if (!serverAuthHash.isEmpty()) {
+            netClient.logError("AUTH-ERROR: assertAuthNotIncomplete() found that authentication was not completed!");
+            throw new Exception("Authentication was not finished properly!");
+        }
+        serverAuthHash = "";
+    }
+
+    private void doAuthPart2(final String serverAuthHash) throws Exception {
+        if (!this.serverAuthHash.equals(serverAuthHash)) {
+            netClient.logError("AUTH-ERROR: Server's authentication hash is incorrect!");
+            throw new Exception("Server failed mutual authentication! (wrong hash provided by server)");
+        }
+        netClient.logDebug("Auth: Mutual authentication successful.");
+        this.serverAuthHash = "";
+    }
+
+    private void doAuthPart1(final String pwHash, final String serverSalt) throws Exception {
+        if ((pwHash == null) || pwHash.isEmpty()) {
+            netClient.logDebug("AUTH: Password required, but no password hash was provided.");
+            throw new Exception("Auth: Password needed, but none specified.");
+        }
+        if (pwHash.length() != PASSWORD_HASH_LENGTH) {
+            netClient.logError("AUTH-ERROR: Your password hash has an unexpected length! Should be "
+                               + PASSWORD_HASH_LENGTH + " but is " + pwHash.length()
+                              );
+            throw new Exception("Auth: Your password hash length seems wrong.");
+        }
+        if (serverSalt.length() < SERVER_SALT_MIN_LENGTH) {
+            netClient.logError("AUTH-ERROR: Salt provided by server is too short! Should be at least "
+                               + SERVER_SALT_MIN_LENGTH + " but is " + serverSalt.length()
+                              );
+            throw new Exception("Auth: Server violated authentication protocol! (auth salt too short)");
+        }
+
+        final MessageDigest sha1Digest;
+
+        try {
+             sha1Digest = MessageDigest.getInstance(AUTH_ALG);
+        }
+        catch(NoSuchAlgorithmException ex) {
+            netClient.logError("AUTH-ERROR: Algorithm required for authentication ("
+                                      + AUTH_ALG + ") not available!"
+                                     );
+            return;
+        } 
+        
+
+        // generate 130 bit base32 encoded value
+        // base32 = 5bits/char => 26 chars, which is more than min req
+        final String clientSalt =
+            new BigInteger(130, new SecureRandom()).toString(32);
+
+        final String saltedPwHash =
+            clientSalt + serverSalt + pwHash + AUTH_SALT;
+
+        final String saltedPwHash2 =
+            serverSalt + clientSalt + pwHash + AUTH_SALT;
+
+        final String clientAuthHash =
+            new BigInteger(1, sha1Digest.digest(saltedPwHash.getBytes("UTF-8"))).toString(16);
+
+        serverAuthHash =
+            new BigInteger(1, sha1Digest.digest(saltedPwHash2.getBytes("UTF-8"))).toString(16);
+
+        sendMessage(new String[] { "PASSWORD", clientAuthHash, clientSalt });
+
+/* When we got password hash, and server asked us for a password, perform mutual authentication:
+ * at this point we have salt chosen by server
+ * client sends client salt and hash of secret (password hash) salted with client salt, server salt,
+ * and static salt (predefined string + protocol number)
+ * server should respond with hash of the same set in different order.
+
+    if(m_passwordHash.isEmpty() || m_serverSalt.isEmpty())
+        return;
+
+    QString hash = QCryptographicHash::hash(
+                m_clientSalt.toAscii()
+                .append(m_serverSalt.toAscii())
+                .append(m_passwordHash)
+                .append(cProtoVer->toAscii())
+                .append("!hedgewars")
+                , QCryptographicHash::Sha1).toHex();
+
+    m_serverHash = QCryptographicHash::hash(
+                m_serverSalt.toAscii()
+                .append(m_clientSalt.toAscii())
+                .append(m_passwordHash)
+                .append(cProtoVer->toAscii())
+                .append("!hedgewars")
+                , QCryptographicHash::Sha1).toHex();
+
+    RawSendNet(QString("PASSWORD%1%2%1%3").arg(delimiter).arg(hash).arg(m_clientSalt));
+
+Server:  ("ASKPASSWORD", "5S4q9Dd0Qrn1PNsxymtRhupN") 
+Client:  ("PASSWORD", "297a2b2f8ef83bcead4056b4df9313c27bb948af", "{cc82f4ca-f73c-469d-9ab7-9661bffeabd1}") 
+Server:  ("SERVER_AUTH", "06ecc1cc23b2c9ebd177a110b149b945523752ae") 
+
+ */
+    }
+
+    public void sendCommand(final String command)
+    {
+        String cmd = command;
+
+        // don't execute empty commands
+        if (cmd.length() < 1)
+            return;
+
+        // replace all newlines since they violate protocol
+        cmd = cmd.replace('\n', ' ');
+
+        // parameters are separated by one or more spaces.
+        final String[] parts = cmd.split(" +");
+
+        // command is always CAPS
+        parts[0] = parts[0].toUpperCase();
+
+        sendMessage(parts);
+    }
+
+    public void sendPing()
+    {
+        sendMessage("PING");
+    }
+
+    public void sendPong()
+    {
+        sendMessage("PONG");
+    }
+
+    private void sendMessage(final String msg)
+    {
+        sendMessage(new String[] { msg });
+    }
+
+    private void sendMessage(final String[] parts)
+    {
+        if (quit)
+            return;
+
+        netClient.logDebug("Client: " + messagePartsToString(parts));
+
+        boolean malformed = false;
+        String msg = "";
+
+        for (final String part : parts)
+        {
+            msg += part + '\n';
+            if (part.isEmpty() || (part.indexOf('\n') >= 0)) {
+                malformed = true;
+                break;
+            }
+        }
+
+        if (malformed) {
+            netClient.onMalformedMessage(messagePartsToString(parts));
+            return;
+        }
+
+        try {
+            toSvr.print(msg + '\n'); // don't use println, since we always want '\n'
+            toSvr.flush();
+        }
+        catch(Exception ex) {
+            netClient.logError("FATAL: Couldn't send message! " + ex.getMessage());
+            ex.printStackTrace();
+            handleConnectionLoss();
+        }
+    }
+
+    private String messagePartsToString(String[] parts) {
+
+        if (parts.length == 0)
+            return "([empty message])";
+
+        String result = "(\"" + parts[0] + '"';
+        for (int i=1; i < parts.length; i++)
+        {
+            result += ", \"" + parts[i] + '"';
+        }
+        result += ')';
+
+        return result;
+    }
+
+    public void disconnect() {
+        sendMessage(new String[] { "QUIT", "Client quit" });
+        closeConnection();
+    }
+
+    public void disconnect(final String reason) {
+        sendMessage(new String[] { "QUIT", reason.isEmpty()?"-":reason });
+        closeConnection();
+    }
+
+    public void sendChat(String message) {
+
+        String[] lines = message.split("\n");
+
+        for (String line : lines)
+        {
+            if (!message.trim().isEmpty())
+                sendMessage(new String[] { "CHAT", line });
+        }
+    }
+
+    public void joinRoom(final String roomName) {
+
+        sendMessage(new String[] { "JOIN_ROOM", roomName });
+    }
+
+    public void leaveRoom(final String roomName) {
+
+        sendMessage("PART");
+    }
+
+    public void requestInfo(final String user) {
+
+        sendMessage(new String[] { "INFO", user });
+    }
+
+    public void setNick(final String nick) {
+
+        this.nick = nick;
+        sendMessage(new String[] { "NICK", nick });
+    }
+
+    public void kick(final String nick) {
+
+        sendMessage(new String[] { "KICK", nick });
+    }
+
+    public void requestRoomsList() {
+
+        sendMessage("LIST");
+    }
+}
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/hw2irc/net/ercatec/hw/ProtocolMessage.java	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,280 @@
+/*
+ * Java net client for Hedgewars, a free turn based strategy game
+ * Copyright (c) 2011 Richard Karolyi <sheepluva@ercatec.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+ */
+
+package net.ercatec.hw;
+
+import java.util.Arrays;
+import java.util.List;
+import java.util.Iterator;
+
+public final class ProtocolMessage
+{
+    public static final int ROOM_FIELD_COUNT = 9;
+
+    private static int minServerVersion = 49;
+
+    public static enum Type {
+        // for unknown message types
+        _UNKNOWN_MESSAGETYPE_,
+        // server messages
+        ERROR,
+        PING,
+        PONG,
+        NICK,
+        PROTO,
+        ASKPASSWORD,
+        SERVER_AUTH,
+        CONNECTED,
+        SERVER_MESSAGE,
+        BYE,
+        INFO,
+        NOTICE,
+        CHAT,
+        LOBBY__JOINED,
+        LOBBY__LEFT,
+        ROOMS,
+        ROOM,
+        ROOM_ADD,
+        ROOM_DEL,
+        ROOM_UPD,
+        ROOM__JOINED,
+        ROOM__LEFT,
+        CFG,
+        TOGGLE_RESTRICT_TEAMS,
+        CLIENT_FLAGS,
+        CF, // this just an alias and will be mapped to CLIENT_FLAGS
+        EM // engine messages
+    }
+
+    public final boolean isValid;
+    private Type type;
+    private String[] args;
+
+/*
+    public ProtocolMessage(String messageType)
+    {
+        args = new String[0];
+
+        try
+        {
+            type = Type.valueOf(messageType);
+            isValid = messageSyntaxIsValid();
+        }
+        catch (IllegalArgumentException whoops)
+        {
+            type = Type._UNKNOWN_MESSAGETYPE_;
+            args = new String[] { messageType };
+            isValid = false;
+        }
+    }
+*/
+
+    private final String[] emptyArgs = new String[0];
+
+    private String[] withoutFirst(final String[] array, final int amount) {
+        return Arrays.copyOfRange(array, amount, array.length);
+    }
+
+    private final List<String> parts;
+
+    // invalid Message
+    public ProtocolMessage() {
+        this.parts =  Arrays.asList(emptyArgs);
+        this.args = emptyArgs;
+        this.isValid = false;
+    }
+
+    public ProtocolMessage(final List<String> parts)
+    {
+        this.parts = parts;
+        this.args = emptyArgs;
+
+        final int partc = parts.size();
+
+        if (partc < 1) {
+            isValid = false;
+            return;
+        }
+
+        try {
+            type = Type.valueOf(parts.get(0).replaceAll(":", "__"));
+        }
+        catch (IllegalArgumentException whoops) {
+            type = Type._UNKNOWN_MESSAGETYPE_;
+        }
+
+        if (type == Type._UNKNOWN_MESSAGETYPE_) {
+            args = parts.toArray(args);
+            isValid = false;
+        }
+        else {
+            // all parts after command become arguments
+            if (partc > 1)
+                args = withoutFirst(parts.toArray(args), 1);
+            isValid = checkMessage();
+        }
+    }
+
+    private boolean checkMessage()
+    {
+        int argc = args.length;
+
+        switch (type)
+        {
+            // no arguments allowed
+            case PING:
+            case PONG:
+            case TOGGLE_RESTRICT_TEAMS:
+                if (argc != 0)
+                    return false;
+                break;
+
+            // one argument or more
+            case EM: // engine messages
+            case LOBBY__JOINED: // list of joined players
+            case ROOM__JOINED: // list of joined players
+                if (argc < 1)
+                    return false;
+                break;
+
+            // one argument
+            case SERVER_MESSAGE:
+            case BYE: // disconnect reason
+            case ERROR: // error message
+            case NICK: // nickname
+            case PROTO: // protocol version
+            case SERVER_AUTH: // last stage of mutual of authentication
+            case ASKPASSWORD: // request for auth with salt
+                if (argc != 1)
+                    return false;
+                break;
+
+            case NOTICE: // argument should be a number
+                if (argc != 1)
+                    return false;
+                try {
+                    Integer.parseInt(args[0]);
+                } 
+                catch (NumberFormatException e) {
+                    return false;
+                }
+                break;
+
+            // two arguments
+            case CONNECTED: // server description and version
+            case CHAT: // player nick and chat message
+            case LOBBY__LEFT: // player nick and leave reason
+            case ROOM__LEFT: // player nick and leave reason
+                if (argc != 2)
+                    return false;
+                break;
+                
+            case ROOM: // "ADD" (or "UPD" + room name ) + room attrs or "DEL" and room name
+                if(argc < 2)
+                    return false;
+
+                final String subC = args[0];
+
+                if (subC.equals("ADD")) {
+                    if(argc != ROOM_FIELD_COUNT + 1)
+                        return false;
+                    this.type = Type.ROOM_ADD;
+                    this.args = withoutFirst(args, 1);
+                }
+                else if (subC.equals("UPD")) {
+                    if(argc != ROOM_FIELD_COUNT + 2)
+                        return false;
+                    this.type = Type.ROOM_UPD;
+                    this.args = withoutFirst(args, 1);
+                }
+                else if (subC.equals("DEL") && (argc == 2)) {
+                    this.type = Type.ROOM_DEL;
+                    this.args = withoutFirst(args, 1);
+                }
+                else
+                    return false;
+                break;
+
+            // two arguments or more
+            case CFG: // setting name and list of setting parameters
+                if (argc < 2)
+                    return false;
+                break;
+            case CLIENT_FLAGS: // string of changed flags and player name(s)
+            case CF: // alias of CLIENT_FLAGS
+                if (argc < 2)
+                    return false;
+                if (this.type == Type.CF)
+                    this.type = Type.CLIENT_FLAGS;
+                break;
+
+            // four arguments
+            case INFO: // info about a player, name, ip/id, version, room
+                if (argc != 4)
+                    return false;
+                break;
+
+            // multiple of ROOM_FIELD_COUNT arguments (incl. 0)
+            case ROOMS:
+                if (argc % ROOM_FIELD_COUNT != 0)
+                    return false;
+                break;
+        }
+
+        return true;
+    }
+
+    private void maybeSendPassword() {
+        
+    }
+
+    public Type getType()
+    {
+        return type;
+    }
+
+    public String[] getArguments()
+    {
+        return args;
+    }
+
+    public boolean isValid()
+    {
+        return isValid;
+    }
+
+    public static String partsToString(final List<String> parts)
+    {
+        final Iterator<String> iter = parts.iterator();
+
+        if (!iter.hasNext())
+            return "( -EMPTY- )";
+
+        String result = "(\"" + iter.next();
+
+        while (iter.hasNext()) {
+            result += "\", \"" + iter.next();
+        }
+
+        return result + "\")";
+    }
+
+    public String toString() {
+        return partsToString(this.parts);
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/hw2irc/net/ercatec/hw2ircsvr/Connection.java	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,1814 @@
+package net.ercatec.hw2ircsvr;
+
+import net.ercatec.hw.INetClient;
+import net.ercatec.hw.ProtocolConnection;
+
+import java.io.BufferedReader;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.OutputStream;
+import java.net.InetSocketAddress;
+import java.net.ServerSocket;
+import java.net.Socket;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.HashMap;
+import java.util.Hashtable;
+import java.util.List;
+import java.util.Map;
+import java.util.Queue;
+import java.util.concurrent.LinkedBlockingQueue;
+import java.util.Collections;
+import java.util.Vector;
+
+import java.util.regex.Pattern;
+import java.util.regex.PatternSyntaxException;
+
+import java.lang.IllegalArgumentException;
+
+// for auth files
+import java.util.Properties;
+import java.io.FileInputStream;
+import java.io.IOException;
+
+/* TODO
+ * disconnect clients that are not irc clients
+ * disconnect excess flooders
+ * recognizes stuff after : as single arg
+ * collect pre-irc-join messages and show on join
+ * allow negating regexps
+ * ban
+ * banlist
+ * commandquery // wth did I mean by that?
+ * more room info
+ * filter rooms
+ * warnings
+ * global notice
+ */
+
+/**
+ * @author sheepluva
+ * 
+ * based on jircs by Alexander Boyd
+ */
+public class Connection implements INetClient, Runnable
+{
+    private static final String DESCRIPTION_SHORT
+        = "connect to hedgewars via irc!";
+
+    private static final String VERSION = "0.6.7-Alpha_2015-11-07";
+
+
+    private static final String MAGIC_BYTES       = "[\1\2\3]";
+    private static final char   MAGIC_BYTE_ACTION = ((char)1); // ^A
+    private static final char   MAGIC_BYTE_BOLD   = ((char)2); // ^B
+    private static final char   MAGIC_BYTE_COLOR  = ((char)3); // ^C
+
+    private static final String[] DEFAULT_MOTD = {
+        "                                         ",
+        " "+MAGIC_BYTE_COLOR+"06"+MAGIC_BYTE_BOLD+"                            SUCH FLUFFY!",
+        "                                         ",
+        " "+MAGIC_BYTE_COLOR+"04 MUCH BAH     "+MAGIC_BYTE_COLOR+"00__  _                     ",
+        " "+MAGIC_BYTE_COLOR+"00          .-.'  `; `-."+MAGIC_BYTE_COLOR+"00_  __  _          ",
+        " "+MAGIC_BYTE_COLOR+"00         (_,         .-:'  `; `"+MAGIC_BYTE_COLOR+"00-._      ",
+        " "+MAGIC_BYTE_COLOR+"14       ,'"+MAGIC_BYTE_COLOR+"02o "+MAGIC_BYTE_COLOR+"00(        (_,           )     ",
+        " "+MAGIC_BYTE_COLOR+"14      (__"+MAGIC_BYTE_COLOR+"00,-'      "+MAGIC_BYTE_COLOR+"15,'"+MAGIC_BYTE_COLOR+"12o "+MAGIC_BYTE_COLOR+"00(            )>   ",
+        " "+MAGIC_BYTE_COLOR+"00         (       "+MAGIC_BYTE_COLOR+"15(__"+MAGIC_BYTE_COLOR+"00,-'            )    ",
+        " "+MAGIC_BYTE_COLOR+"00          `-'._.--._(             )     ",
+        " "+MAGIC_BYTE_COLOR+"14             |||  |||"+MAGIC_BYTE_COLOR+"00`-'._.--._.-'      ",
+        " "+MAGIC_BYTE_COLOR+"15                        |||  |||        ",
+        " "+MAGIC_BYTE_COLOR+"07"+MAGIC_BYTE_BOLD+"  WOW!                                  ",
+        " "+MAGIC_BYTE_COLOR+"09                   VERY SHEEP           ",
+        "                                         ",
+        "                                         ",
+        "                                         ",
+        " "+MAGIC_BYTE_COLOR+"4 Latest hw2irc crimes/changes:",
+        "     ping: ping of hwserver will only get reply if irc client pingable",
+        "     ping: pings of irc clients will only get reply if hwserver pingable",
+        "     rooms: id-rotation, make channel names at least 2 digits wide",
+        "     auth: support passhash being loaded local auth file and irc pass (sent as cleartext - DO NOT USE!)",
+        "                                         ",
+        "                                         ",
+    };
+
+
+    private static final String DEFAULT_QUIT_REASON = "User quit";
+    // NOT final
+    private static char CHAT_COMMAND_CHAR = '\\';
+
+    private final class Room {
+        public final int id;
+        public final String chan;
+        public String name;
+        private String owner = "";
+        public int nPlayers = 0;
+        public int nTeams   = 0;
+
+        public Room(final int id, final String name, final String owner) {
+            this.id = id;
+            this.chan = (id<10?"#0":"#") + id;
+            this.name = name;
+            this.setOwner(owner);
+        }
+
+        public String getOwner() { return this.owner; }
+
+        public void setOwner(final String owner) {
+            // don't to this for first owner
+            if (!this.owner.isEmpty()) {
+
+                // owner didn't change
+                if (this.owner.equals(owner))
+                    return;
+
+                // update old room owner
+                final Player oldOwner = allPlayers.get(this.owner);
+
+                if (oldOwner != null)
+                    oldOwner.isRoomAdm = false;
+
+            }
+
+            // update new room owner
+            final Player newOwner = allPlayers.get(owner);
+
+            if (newOwner != null)
+                newOwner.isRoomAdm = true;
+
+            this.owner = owner;
+
+        }
+    }
+
+    private final class Player {
+        public final String nick;
+        public final String ircNick;
+        private boolean isAdm;
+        private boolean isCont;
+        private boolean isReg;
+        public boolean inRoom;
+        public boolean isRoomAdm;
+        private String ircId;
+        private String ircHostname;
+        private boolean announced;
+
+        // server info
+        private String version = "";
+        private String ip = "";
+        private String room = "";
+
+        public Player(final String nick) {
+            this.nick = nick;
+            this.ircNick = hwToIrcNick(nick);
+            this.announced = false;
+            updateIrcHostname();
+        }
+
+        public String getIrcHostname() { return ircHostname; }
+        public String getIrcId()       { return ircId; }
+
+        public String getRoom()        {
+            if (room.isEmpty())
+                return room;
+
+            return "[" + ((isAdm?"@":"") + (isRoomAdm?"+":"") + this.room);
+        }
+
+        public boolean needsAnnounce() {
+            return !announced;
+        }
+
+        public void setAnnounced() {
+            announced = true;
+        }
+
+        public void setInfo(final String ip, final String version, final String room) {
+            if (this.version.isEmpty()) {
+                this.version = version;
+                this.ip = ip.replaceAll("^\\[|]$", "");
+                updateIrcHostname();
+            }
+
+            if (room.isEmpty())
+                this.room = room;
+            else
+                this.room = room.replaceAll("^\\[[@+]*", "");
+        }
+
+        public boolean isServerAdmin()  { return isAdm; }
+        //public boolean isContributor()  { return isCont; }
+        public boolean isRegistered()   { return isReg; }
+
+        public void setServerAdmin(boolean isAdm) {
+            this.isAdm = isAdm; updateIrcHostname(); }
+        public void setContributor(boolean isCont) {
+            this.isCont = isCont; updateIrcHostname(); }
+        public void setRegistered(boolean isReg) {
+            this.isReg = isReg; updateIrcHostname(); }
+
+        private void updateIrcHostname() {
+            ircHostname = ip.isEmpty()?"":(ip + '/');
+            ircHostname += "hw/";
+            if (!version.isEmpty())
+                ircHostname += version;
+            if (isAdm)
+                ircHostname += "/admin";
+            else if (isCont)
+                ircHostname += "/contributor";
+            else if (isReg)
+                ircHostname += "/member";
+            else
+                ircHostname += "/player";
+
+            updateIrcId();
+        }
+
+        private void updateIrcId() {
+            ircId = ircNick + "!~" + ircNick + "@" + ircHostname;
+        }
+    }
+
+    public String hw404NickToIrcId(String nick) {
+        nick = hwToIrcNick(nick);
+        return nick + "!~" + nick + "@hw/404";
+    }
+
+    // hash tables are thread-safe
+    private final Map<String,  Player>  allPlayers = new Hashtable<String,  Player>();
+    private final Map<String,  Player> roomPlayers = new Hashtable<String,  Player>();
+    private final Map<Integer, Room>   roomsById   = new Hashtable<Integer, Room>();
+    private final Map<String,  Room>   roomsByName = new Hashtable<String,  Room>();
+    private final List<Room> roomsSorted = new Vector<Room>();
+
+    private final List<String> ircPingQueue = new Vector<String>();
+
+    private static final String DEFAULT_SERVER_HOST = "netserver.hedgewars.org";
+    private static String SERVER_HOST = DEFAULT_SERVER_HOST;
+    private static int IRC_PORT = 46667;
+    
+    private String hostname;
+
+    private static final String LOBBY_CHANNEL_NAME = "#lobby";
+    private static final String  ROOM_CHANNEL_NAME = "#room";
+
+    // hack
+    // TODO: ,
+    private static final char MAGIC_SPACE   = ' ';
+    private static final char MAGIC_ATSIGN  = '៙';
+    private static final char MAGIC_PERCENT = '%';
+    private static final char MAGIC_PLUS    = '+';
+    private static final char MAGIC_EXCLAM  = '❢';
+    private static final char MAGIC_COMMA   = ',';
+    private static final char MAGIC_COLON   = ':';
+
+    private static String hwToIrcNick(final String nick) {
+        return nick
+            .replace(' ', MAGIC_SPACE)
+            .replace('@', MAGIC_ATSIGN)
+            .replace('%', MAGIC_PERCENT)
+            .replace('+', MAGIC_PLUS)
+            .replace('!', MAGIC_EXCLAM)
+            .replace(',', MAGIC_COMMA)
+            .replace(':', MAGIC_COLON)
+            ;
+    }
+    private static String ircToHwNick(final String nick) {
+        return nick
+            .replace(MAGIC_COLON,   ':')
+            .replace(MAGIC_COMMA,   ',')
+            .replace(MAGIC_EXCLAM,  '!')
+            .replace(MAGIC_PLUS,    '+')
+            .replace(MAGIC_PERCENT, '%')
+            .replace(MAGIC_ATSIGN,  '@')
+            .replace(MAGIC_SPACE,   ' ')
+            ;
+    }
+
+    private ProtocolConnection hwcon;
+    private boolean joined = false;
+    private boolean ircJoined = false;
+
+    private void collectFurtherInfo() {
+        hwcon.sendPing();
+        hwcon.processNextClientFlagsMessages();
+    }
+
+    public void onPing() {
+        send("PING :" + globalServerName);
+    }
+
+    public void onPong() {
+        if (!ircPingQueue.isEmpty())
+                send(":" + globalServerName + " PONG " + globalServerName
+                        + " :" + ircPingQueue.remove(0));
+            
+    }
+
+    public void onConnectionLoss() {
+        quit("Connection Loss");
+    }
+
+    public void onDisconnect(final String reason) {
+        quit(reason);
+    }
+
+    public String onPasswordHashNeededForAuth() {
+        return passwordHash;
+    }
+
+    public void onMalformedMessage(String contents)
+    {
+        this.logError("MALFORMED MESSAGE: " + contents);
+    }
+
+    public void onChat(final String user, final String message) {
+        String ircId;
+        Player player = allPlayers.get(user);
+        if (player == null) {
+            // fake user - so probably a notice
+            sendChannelNotice(message, hwToIrcNick(user));
+            //logWarning("onChat(): Couldn't find player with specified nick! nick: " + user);
+            //send(":" + hw404NickToIrcId(user) + " PRIVMSG "
+                     //+ LOBBY_CHANNEL_NAME + " :" + hwActionToIrc(message));
+        }
+        else
+            send(":" + player.getIrcId() + " PRIVMSG "
+                     + LOBBY_CHANNEL_NAME + " :" + hwActionToIrc(message));
+    }
+
+    public void onWelcomeMessage(final String message) {
+    }
+
+    public void onNotice(int number) {
+    }
+
+    public void onBanListEntry(BanType type, String target, String duration, String reason) {
+        // TODO
+    }
+    public void onBanListEnd() {
+        // TODO
+    }
+
+    public String onNickCollision(final String nick) {
+        return nick + "_";
+    }
+
+    public void onNickSet(final String nick) {
+        final String newNick = hwToIrcNick(nick);
+        // tell irc client
+        send(":" + ownIrcNick + "!~" + username + "@"
+                            + hostname + " NICK :" + nick);
+        ownIrcNick = newNick;
+        updateLogPrefix();
+        logInfo("Nickname set to " + nick);
+    }
+
+    private void flagAsInLobby(final Player player) {
+        if (!ircJoined)
+            return;
+        final String ircNick = player.ircNick;
+        if (player.isServerAdmin())
+            send(":room-part!~@~ MODE " + LOBBY_CHANNEL_NAME + " -h+o " + ircNick + " " + ircNick);
+        //else
+            //send(":room-part!~@~ MODE " + LOBBY_CHANNEL_NAME + " +v " + ircNick);
+    }
+
+    private void flagAsInRoom(final Player player) {
+        if (!ircJoined)
+            return;
+        final String ircNick = player.ircNick;
+        if (player.isServerAdmin())
+            send(":room-join!~@~ MODE " + LOBBY_CHANNEL_NAME + " -o+h " + ircNick + " " + ircNick);
+        //else
+            //send(":room-join!~@~ MODE " + LOBBY_CHANNEL_NAME + " -v " + ircNick);
+    }
+
+// TODO somewhere: escape char for magic chars!
+
+// TODO /join with playername => FOLLOW :D
+
+    public void sendPlayerMode(final Player player) {
+        char c;
+        if (player.isServerAdmin())
+            c = player.inRoom?'h':'o';
+        else if (player.isRegistered())
+            c = 'v';
+        else
+            // no mode
+            return;
+
+        send(":server-join!~@~ MODE " + LOBBY_CHANNEL_NAME + " +" + c + " " + player.ircNick);
+    }
+
+    private Player ownPlayer = null;
+
+    public void onLobbyJoin(final String[] users) {
+
+        final List<Player> newPlayers = new ArrayList<Player>(users.length);
+
+        // process joins
+        for (final String user : users) {
+            final Player player = new Player(user);
+            if (ownPlayer == null)
+                ownPlayer = player;
+            newPlayers.add(player);
+            allPlayers.put(user, player);
+        }
+
+        // make sure we get the client flags before we announce anything
+        collectFurtherInfo();
+
+        // get player info
+        // NOTE: if player is in room, then info was already retrieved
+        for (final Player player : newPlayers) {
+            if (!player.inRoom)
+                hwcon.requestInfo(player.nick);
+        }
+
+        /* DISABLED - we'll announce later - when receiving info
+        // announce joins
+        if (ircJoined) {
+            for (final Player player : newPlayers) {
+                final String ircId = player.getIrcId();
+                send(":" + ircId
+                         + " JOIN "+ lobbyChannel.name);
+                sendPlayerMode(player);
+            }
+        }
+        */
+        if (!ircJoined) {
+            // don't announced players that were there before join already
+            for (final Player player : newPlayers) {
+                player.setAnnounced();
+            }
+        }
+
+        if (!joined) {
+            joined = true;
+            // forget password hash, we don't need it anymore.
+            passwordHash = "";
+            logInfo("Hedgewars server/lobby joined.");
+            sendSelfNotice("Hedgewars server was joined successfully");
+            // do this after join so that rooms can be assigned to their owners
+            hwcon.requestRoomsList();
+        }
+    }
+
+    private void makeIrcJoinLobby() {
+            sendGlobal("INVITE " + ownIrcNick + " " + LOBBY_CHANNEL_NAME);
+            try{Thread.sleep(3000);}catch(Exception e){}
+            join(lobbyChannel.name);
+            sendSelfNotice("Joining lobby-channel: " + lobbyChannel.name);
+    }
+
+    private void announcePlayerJoinLobby(final Player player) {
+            player.setAnnounced();
+            send(":" + player.getIrcId()
+                     + " JOIN "+ lobbyChannel.name);
+            sendPlayerMode(player);
+    }
+
+    public void onLobbyLeave(final String user, final String reason) {
+        final Player player = allPlayers.get(user);
+        if (player == null) {
+            logWarning("onLobbyLeave(): Couldn't find player with specified nick! nick: " + user);
+            sendIfJoined(":" + hw404NickToIrcId(user)
+                 + " PART " + lobbyChannel.name + " " + reason);
+        }
+        else {
+            if (ircJoined && player.needsAnnounce())
+                announcePlayerJoinLobby(player);
+            sendIfJoined(":" + player.getIrcId()
+                 + " PART " + lobbyChannel.name + " " + reason);
+            allPlayers.remove(user);
+        }
+    }
+
+    private int lastRoomId = 0;
+
+    public void onRoomInfo(final String name, final String flags,
+                           final String newName, final int nUsers,
+                           final int nTeams, final String owner,
+                           final String map, final String style,
+                           final String scheme, final String weapons) {
+
+        Room room = roomsByName.get(name);
+
+        if (room == null) {
+            // try to reuse old ids
+            if (lastRoomId >= 90)
+                lastRoomId = 9;
+
+            // search for first free
+            while(roomsById.containsKey(++lastRoomId)) { }
+
+            room = new Room(lastRoomId, newName, owner);
+            roomsById.put(lastRoomId, room);
+            roomsByName.put(newName, room);
+            roomsSorted.add(room);
+        }
+        else if (!room.name.equals(newName)) {
+            room.name = newName;
+            roomsByName.put(newName, roomsByName.remove(name));
+        }
+
+        // update data
+        room.setOwner(owner);
+        room.nPlayers = nUsers;
+        room.nTeams = nTeams;
+    }
+
+    public void onRoomDel(final String name) {
+        final Room room = roomsByName.remove(name);
+
+        if (room != null) {
+            roomsById.remove(room.id);
+            roomsSorted.remove(room);
+        }
+    }
+
+    public void onRoomJoin(final String[] users) {
+    }
+
+    public void onRoomLeave(final String[] users) {
+    }
+
+    // TODO vector that remembers who's info was requested for manually
+    List<String> requestedInfos =  new Vector<String>();
+
+    public void onUserInfo(final String user, final String ip, final String version, final String room) {
+        Player player = allPlayers.get(user);
+        if (player != null) {
+            player.setInfo(ip, version, room);
+            if (ircJoined) {
+                if (player.needsAnnounce())
+                    announcePlayerJoinLobby(player);
+            }
+            else {
+                if (player == ownPlayer) {
+                    
+                    makeIrcJoinLobby();
+                }
+            }
+        }
+
+        // if MANUAL send notice
+        if (requestedInfos.remove(user)) {
+            final String nick = hwToIrcNick(user);
+            sendServerNotice(nick + " - " + buildInfoString(ip, version, room));
+        }
+    }
+
+    public void onUserFlagChange(final String user, final UserFlagType flag, final boolean newValue) {
+        final Player player = allPlayers.get(user);
+        if (player == null) {
+            logError("onUserFlagChange(): Couldn't find player with specified nick! nick: " + user);
+            return;
+        }
+        switch (flag) {
+            case ADMIN:
+                player.setServerAdmin(newValue);
+                if (newValue) {
+                    logDebug(user + " is server admin");
+                    //sendIfJoined(":server!~@~ MODE " + LOBBY_CHANNEL_NAME + " -v+o " + player.ircNick + " " + player.ircNick);
+                }
+                break;
+            case INROOM:
+                player.inRoom = newValue;
+                if (newValue) {
+                    flagAsInRoom(player);
+                    logDebug(user + " entered a room");
+                    // get new room info
+                    hwcon.requestInfo(player.nick);
+                }
+                else {
+                    flagAsInLobby(player);
+                    logDebug(user + " returned to lobby");
+                    player.inRoom = false;
+                }
+                break;
+            case REGISTERED:
+                player.setRegistered(newValue);
+                break;
+            default: break;
+        }
+    }
+
+    public class Channel
+    {
+        private String topic;
+        private final String name;
+        private final Map<String, Player> players;
+
+        public Channel(final String name, final String topic, final Map<String, Player> players) {
+            this.name = name;
+            this.topic = topic;
+            this.players = players;
+        }
+    }
+
+    public void logInfo(final String message) {
+        System.out.println(this.logPrefix + ": " + message);
+    }
+
+    public void logDebug(final String message) {
+        System.out.println(this.logPrefix + "| " + message);
+    }
+
+    public void logWarning(final String message) {
+        System.err.println(this.logPrefix + "? " + message);
+    }
+
+    public void logError(final String message) {
+        System.err.println(this.logPrefix + "! " + message);
+    }
+
+
+    //private static final Object mutex = new Object();
+    private boolean joinSent = false;
+    private Socket socket;
+    private String username;
+    private String ownIrcNick;
+    private String description;
+    private static Map<String, Connection> connectionMap = new HashMap<String, Connection>();
+    // TODO those MUST NOT be static!
+    //private Map<String, Channel> channelMap = new HashMap<String, Channel>();
+    private final Channel lobbyChannel;
+    private static String globalServerName;
+    private String logPrefix;
+    private final String clientId;
+    private String passwordHash = "";
+
+    private final Connection thisConnection;
+
+    public Connection(Socket socket, final String clientId) throws Exception
+    {
+        this.ownIrcNick = "NONAME";
+        this.socket = socket;
+        this.hostname = ((InetSocketAddress)socket.getRemoteSocketAddress())
+                 .getAddress().getHostAddress();
+        this.clientId = clientId;
+        updateLogPrefix();
+        thisConnection = this;
+        logInfo("New Connection");
+
+        this.hwcon = null;
+
+        try {
+            this.hwcon = new ProtocolConnection(this, SERVER_HOST);
+            logInfo("Connection to " + SERVER_HOST + " established.");
+        }
+        catch(Exception ex) {
+            final String errmsg = "Could not connect to " + SERVER_HOST + ": "
+                + ex.getMessage();
+            logError(errmsg);
+            sendQuit(errmsg);
+        }
+
+        final String lobbyTopic = " # " + SERVER_HOST + " - HEDGEWARS SERVER LOBBY # ";
+        this.lobbyChannel = new Channel(LOBBY_CHANNEL_NAME, lobbyTopic, allPlayers);
+
+        // start in new thread
+        if (hwcon != null) {
+            (this.hwcon.processMessages(true)).start();
+        }
+    }
+    
+    private void updateLogPrefix() {
+        if (ownIrcNick == null)
+            this.logPrefix = clientId + " ";
+        else
+            this.logPrefix = clientId + " [" + ownIrcNick + "] ";
+    }
+
+    private void setNick(final String nick) {
+        if (passwordHash.isEmpty()) {
+            try {
+              final Properties authProps = new Properties();
+              final String authFile = this.hostname + ".auth";
+              logInfo("Attempting to load auth info from " + authFile);
+              authProps.load(new FileInputStream(authFile));
+              passwordHash = authProps.getProperty(nick, "");
+              if (passwordHash.isEmpty())
+                logInfo("Auth info file didn't contain any password hash for: " + nick);
+            } catch (IOException e) {
+                logInfo("Auth info file couldn't be loaded.");
+            }
+        }
+
+        // append _ just in case
+        if (!passwordHash.isEmpty() || nick.endsWith("_")) {
+            ownIrcNick = nick;
+            hwcon.setNick(ircToHwNick(nick));
+        }
+        else {
+            final String nick_ = nick + "_";
+            ownIrcNick = nick_;
+            hwcon.setNick(ircToHwNick(nick_));
+        }
+    }
+
+    public String getRepresentation()
+    {
+        return ownIrcNick + "!~" + username + "@" + hostname;
+    }
+
+    private static int lastClientId = 0;
+
+    /**
+     * @param args
+     */
+    public static void main(String[] args) throws Throwable
+    {
+        if (args.length > 0)
+        {
+            SERVER_HOST = args[0];
+        }
+        if (args.length > 1)
+        {
+            IRC_PORT = Integer.parseInt(args[1]);
+        }
+
+        globalServerName = "hw2irc";
+
+        if (!SERVER_HOST.equals(DEFAULT_SERVER_HOST))
+            globalServerName += "~" + SERVER_HOST;
+
+        final int port = IRC_PORT;
+        ServerSocket ss = new ServerSocket(port);
+        System.out.println("Listening on port " + port);
+        while (true)
+        {
+            Socket s = ss.accept();
+            final String clientId = "client" + (++lastClientId) + '-'
+                 + ((InetSocketAddress)s.getRemoteSocketAddress())
+                 .getAddress().getHostAddress();
+            try {
+                Connection clientCon = new Connection(s, clientId);
+                //clientCon.run();
+                Thread clientThread = new Thread(clientCon, clientId);
+                clientThread.start();
+            }
+            catch (Exception ex) {
+                System.err.println("FATAL: Server connection thread " + clientId + " crashed on startup! " + ex.getMessage());
+                ex.printStackTrace();
+            }
+
+            System.out.println("Note: Not accepting new clients for the next " + SLEEP_BETWEEN_LOGIN_DURATION + "s, trying to avoid reconnecting too quickly.");
+            Thread.sleep(SLEEP_BETWEEN_LOGIN_DURATION * 1000);
+            System.out.println("Note: Accepting clients again!");
+        }
+    }
+
+    private static final int SLEEP_BETWEEN_LOGIN_DURATION = 122;
+
+    private boolean hasQuit = false;
+
+    public synchronized void quit(final String reason) {
+        if (hasQuit)
+            return;
+
+        hasQuit = true;
+        // disconnect from hedgewars server
+        if (hwcon != null)
+            hwcon.disconnect(reason);
+        // disconnect irc client
+        sendQuit("Quit: " + reason);
+        // wait some time so that last data can be pushed
+        try {
+            Thread.sleep(200);
+        }
+        catch (Exception e) { }
+        // terminate
+        terminateConnection = true;
+    }
+
+
+    private static String hwActionToIrc(final String chatMsg) {
+        if (!chatMsg.startsWith("/me ") || (chatMsg.length() <= 4))
+            return chatMsg;
+
+        return MAGIC_BYTE_ACTION + "ACTION " + chatMsg.substring(4) + MAGIC_BYTE_ACTION;
+    }
+
+    private static String ircActionToHw(final String chatMsg) {
+        if (!chatMsg.startsWith(MAGIC_BYTE_ACTION + "ACTION ") || (chatMsg.length() <= 9))
+            return chatMsg;
+
+        return "/me " + chatMsg.substring(8, chatMsg.length() - 1);
+    }
+
+// TODO: why is still still being called when joining bogus channel name?
+    public void join(String channelName)
+    {
+        if (ownPlayer == null) {
+            sendSelfNotice("Trying to join while ownPlayer == null. Aborting!");
+            quit("Something went horribly wrong.");
+            return;
+        }
+
+
+        final Channel channel = getChannel(channelName);
+
+        // TODO reserve special char for creating a new ROOM
+        // it will be named after the player name by default
+        // can be changed with /topic after
+
+        // not a valid channel
+        if (channel == null) {
+            sendSelfNotice("You cannot manually create channels here.");
+            sendGlobal(ERR_NOSUCHCHANNEL + ownIrcNick + " " + channel.name
+                    + " :No such channel");
+            return;
+        }
+
+        // TODO if inRoom "Can't join rooms while still in room"
+
+        // TODO set this based on room host/admin mode maybe
+
+/* :testuser2131!~r@asdasdasdasd.at JOIN #asdkjasda
+:weber.freenode.net MODE #asdkjasda +ns
+:weber.freenode.net 353 testuser2131 @ #asdkjasda :@testuser2131
+:weber.freenode.net 366 testuser2131 #asdkjasda :End of /NAMES list.
+:weber.freenode.net NOTICE #asdkjasda :[freenode-info] why register and identify? your IRC nick is how people know you. http://freenode.net/faq.shtml#nicksetup
+
+*/ 
+        send(":" + ownPlayer.getIrcId() + " JOIN "
+         + channelName);
+
+        //send(":sheeppidgin!~r@localhost JOIN " + channelName);
+
+        ircJoined = true;
+
+        sendGlobal(":hw2irc MODE #lobby +nt");
+
+        sendTopic(channel);
+
+        sendNames(channel);
+
+    }
+
+    private void sendTopic(final Channel channel) {
+        if (channel.topic != null)
+            sendGlobal(RPL_TOPIC + ownIrcNick + " " + channel.name
+                    + " :" + channel.topic);
+        else
+            sendGlobal(RPL_NOTOPIC + ownIrcNick + " " + channel.name
+                    + " :No topic is set");
+    }
+
+    private void sendNames(final Channel channel) {
+        // There is no error reply for bad channel names.
+
+        if (channel != null) {
+            // send player list
+            for (final Player player : channel.players.values()) {
+
+                final String prefix;
+
+                if (player.isServerAdmin())
+                    prefix = (player.isServerAdmin())?"@":"%";
+                else
+                    prefix = (player.isRegistered())?"+":"";
+
+                sendGlobal(RPL_NAMREPLY + ownIrcNick + " = " + channel.name
+                        + " :" + prefix + player.ircNick);
+            }
+        }
+
+        sendGlobal(RPL_ENDOFNAMES + ownIrcNick + " " + channel.name
+                + " :End of /NAMES list");
+    }
+
+    private void sendList(final String filter) {
+        // id column size
+        //int idl = 1 + String.valueOf(lastRoomId).length();
+
+        //if (idl < 3)
+            //idl = 3;
+
+        // send rooms list
+        sendGlobal(RPL_LISTSTART + ownIrcNick 
+            //+ String.format(" %1$" + idl + "s  #P  #T  Name", "ID"));
+            + String.format(" %1$s #P #T Name", "ID"));
+
+        if (filter.isEmpty() || filter.equals(".")) {
+            // lobby
+            if (filter.isEmpty())
+                sendGlobal(RPL_LIST + ownIrcNick + " " + LOBBY_CHANNEL_NAME
+                    + " " + allPlayers.size() + " :" + lobbyChannel.topic);
+
+            // room list could be changed by server while we reply client
+            synchronized (roomsSorted) {
+                for (final Room room : roomsSorted) {
+                    sendGlobal(RPL_LIST + ownIrcNick
+                        //+ String.format(" %1$" + idl + "s  %2$2d  :%3$2d  %4$s",
+                        + String.format(" %1$s %2$d :%3$d  %4$s",
+                            room.chan, room.nPlayers, room.nTeams, room.name));
+                }
+            }
+        }
+        // TODO filter
+
+        sendGlobal(RPL_LISTEND + ownIrcNick + " " + " :End of /LIST");
+    }
+
+    private List<Player> findPlayers(final String expr) {
+        List<Player> matches = new ArrayList<Player>(allPlayers.size());
+
+        try {
+            final int flags = Pattern.CASE_INSENSITIVE + Pattern.UNICODE_CASE;
+            final Pattern regx = Pattern.compile(expr, flags);
+
+            for (final Player p : allPlayers.values()) {
+                if ((regx.matcher(p.nick).find())
+                    || (regx.matcher(p.ircId).find())
+                    //|| (regx.matcher(p.version).find())
+                    //|| ((p.ip.length() > 2) && regx.matcher(p.ip).find())
+                    || (!p.getRoom().isEmpty() && regx.matcher(p.getRoom()).find())
+                ) matches.add(p);
+            }
+        }
+        catch(PatternSyntaxException ex) {
+            sendSelfNotice("Pattern not understood: " + ex.getMessage());
+        }
+
+        return matches;
+    }
+
+    private String buildInfoString(final String ip, final String version, final String room) {
+        return (ip.equals("[]")?"":ip + " ") + version + (room.isEmpty()?"":" " + room);
+    }
+
+    private void sendWhoForPlayer(final Player player) {
+        sendWhoForPlayer(LOBBY_CHANNEL_NAME, player.ircNick, (player.inRoom?player.getRoom():""), player.getIrcHostname());
+    }
+
+    private void sendWhoForPlayer(final Player player, final String info) {
+        sendWhoForPlayer(LOBBY_CHANNEL_NAME, player.ircNick, info, player.getIrcHostname());
+    }
+
+    private void sendWhoForPlayer(final String nick, final String info) {
+        sendWhoForPlayer(LOBBY_CHANNEL_NAME, nick, info);
+    }
+
+    private void sendWhoForPlayer(final String channel, final String nick, final String info) {
+        final Player player = allPlayers.get(nick);
+
+        if (player == null)
+            sendWhoForPlayer("OFFLINE", hwToIrcNick(nick), info, "hw/offline");
+        else
+            sendWhoForPlayer(channel,   player.ircNick,    info, player.getIrcHostname());
+    }
+
+    private void sendWhoForPlayer(final String channel, final String ircNick, final String info, final String hostname) {
+        sendGlobal(RPL_WHOREPLY + channel + " " + channel
+                            + " ~" + ircNick + " " + hostname
+                            + " " + globalServerName + " " + ircNick
+                            + " H :0 " + info);
+    }
+
+    private void sendWhoEnd(final String ofWho) {
+        send(RPL_ENDOFWHO + ownIrcNick + " " + ofWho
+                        + " :End of /WHO list.");
+    }
+
+    private void sendMotd() {
+        sendGlobal(RPL_MOTDSTART + ownIrcNick + " :- Message of the Day -");
+        final String mline = RPL_MOTD + ownIrcNick + " :";
+        for(final String line : DEFAULT_MOTD) {
+            sendGlobal(mline + line);
+        }
+        sendGlobal(RPL_ENDOFMOTD + ownIrcNick + " :End of /MOTD command.");
+    }
+
+    private Channel getChannel(final String name) {
+        if (name.equals(LOBBY_CHANNEL_NAME)) {
+            return lobbyChannel;
+        }
+
+        return null;
+    }
+
+    private enum Command
+    {
+        PASS(1, 1)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                con.passwordHash = args[0];
+            }
+        },
+        NICK(1, 1)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                con.setNick(args[0]);
+            }
+        },
+        USER(1, 4)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                if (con.username != null)
+                {
+                    con.send("NOTICE AUTH :You can't change your user "
+                            + "information after you've logged in right now.");
+                    return;
+                }
+                con.username = args[0];
+                String forDescription = args.length > 3 ? args[3]
+                        : "(no description)";
+                con.description = forDescription;
+                /*
+                 * Now we'll send the user their initial information.
+                 */
+                con.sendGlobal(RPL_WELCOME + con.ownIrcNick + " :Welcome to "
+                        + globalServerName + " - " + DESCRIPTION_SHORT);
+                con.sendGlobal("004 " + con.ownIrcNick + " " + globalServerName
+                        + " " + VERSION);
+
+                con.sendMotd();
+
+            }
+        },
+        MOTD(0, 0)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                con.sendMotd();
+            }
+        },
+        PING(1, 1)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                con.ircPingQueue.add(args[0]);
+                con.hwcon.sendPing();
+            }
+        },
+        PONG(1, 2)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                con.hwcon.sendPong();
+            }
+        },
+        NAMES(1, 1)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                final Channel channel = con.getChannel(args[0]);
+                con.sendNames(channel);
+            }
+        },
+        LIST(0, 2)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                // TODO filter by args[1] (comma sep list of chans), make # optional
+                // ignore args[1] (server), TODO: maybe check and send RPL_NOSUCHSERVER if wrong
+                con.sendList(args.length > 0?args[0]:"");
+            }
+        },
+        JOIN(1, 2)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                if (args.length < 1)  {
+                    con.sendSelfNotice("You didn't specify what you want to join!");
+                    return;
+                }
+
+                if (con.ownPlayer == null) {
+                    con.sendSelfNotice("Lobby is not ready to be joined yet - hold on a second!");
+                    return;
+                }
+
+                if (args[0].equals(LOBBY_CHANNEL_NAME)) {
+                    //con.sendSelfNotice("Lobby can't be joined manually!");
+                    con.join(LOBBY_CHANNEL_NAME);
+                    return;
+                }
+                con.sendSelfNotice("Joining rooms is not supported yet, sorry!");
+            }
+        },
+        WHO(0, 2)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                if (args.length < 1)
+                    return;
+
+                final String target = args[0];
+
+                Map<String, Player> players = null;
+
+                if (target.equals(LOBBY_CHANNEL_NAME)) {
+                    players = con.allPlayers;
+                }
+                // on channel join WHO is called on channel
+                else if (target.equals(ROOM_CHANNEL_NAME)) {
+                    players = con.roomPlayers;
+                }
+
+                if (players != null) {
+                    for (final Player player : players.values()) {
+                        con.sendWhoForPlayer(player);
+                    }
+                }
+                // not a known channel. assume arg is player name
+                // TODO support search expressions!
+                else {
+                    final String nick = ircToHwNick(target);
+                    final Player player = con.allPlayers.get(nick);
+                    if (player != null)
+                        con.sendWhoForPlayer(player);
+                    else {
+                        con.sendSelfNotice("WHO: No player named " + nick + ", interpreting term as pattern.");
+                        List<Player> matches = con.findPlayers(target);
+                        if (matches.isEmpty())
+                            con.sendSelfNotice("No Match.");
+                        else {
+                            for (final Player match : matches) {
+                                con.sendWhoForPlayer(match);
+                            }
+                        }
+                    }
+                }
+
+                con.sendWhoEnd(target);
+            }
+        },
+        WHOIS(1, 2)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                // there's an optional param in the beginning that we don't care about
+                final String targets = args[args.length-1];
+                for (final String target : targets.split(",")) {
+                    if (target.isEmpty())
+                        continue;
+                    final String nick = ircToHwNick(target);
+                    // flag this nick as manually requested, so that response is shown
+                    if (con.ircJoined) {
+                        con.requestedInfos.add(nick);
+                        con.hwcon.requestInfo(nick);
+                    }
+
+                    final Player player = con.allPlayers.get(nick);
+                    if (player != null) {
+                        con.send(RPL_WHOISUSER + con.ownIrcNick + " " + target + " ~"
+                                + target + " " + player.getIrcHostname() + " * : "
+                                + player.ircNick);
+                        // TODO send e.g. channels: @#lobby   or   @#123
+                        con.send(RPL_ENDOFWHOIS + con.ownIrcNick + " " + target 
+                                + " :End of /WHOIS list.");
+                    }
+                }
+            }
+        },
+        USERHOST(1, 5)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                /*
+                // TODO set server host
+                con.hostname = "hw/" + SERVER_HOST;
+                
+                ArrayList<String> replies = new ArrayList<String>();
+                for (String s : arguments)
+                {
+                    Connection user = connectionMap.get(s);
+                    if (user != null)
+                        replies.add(user.nick + "=+" + con.ownIrc + "@"
+                                + con.hostname);
+                }
+                con.sendGlobal(RPL_USERHOST + con.ownIrcNick + " :"
+                        + delimited(replies.toArray(new String[0]), " "));
+                */
+            }
+        },
+        MODE(0, 2)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                final boolean forChan = args[0].startsWith("#");
+                
+                if (args.length == 1)
+                {
+                    if (forChan) {
+                        //con.sendGlobal(ERR_NOCHANMODES + args[0]
+                        //                + " :Channel doesn't support modes");
+                        con.sendGlobal(RPL_CHANNELMODEIS + con.ownIrcNick + " " + args[0]
+                                + " +nt");
+                    }
+                    else
+                    {
+                        // TODO
+                        con.sendSelfNotice("User mode querying not supported yet.");
+                    }
+                }
+                else if (args.length == 2) {
+
+                    if (forChan) {
+
+                        final int l = args[1].length();
+
+                        for (int i = 0; i < l; i++) {
+
+                            final char c = args[1].charAt(i);  
+
+                            switch (c) {
+                                case '+':
+                                    // skip
+                                    break;
+                                case '-':
+                                    // skip
+                                    break;
+                                case 'b':
+                                    con.sendGlobal(RPL_ENDOFBANLIST
+                                        + con.ownIrcNick + " " + args[0]
+                                        + " :End of channel ban list");
+                                    break;
+                                case 'e':
+                                    con.sendGlobal(RPL_ENDOFEXCEPTLIST
+                                        + con.ownIrcNick + " " + args[0]
+                                        + " :End of channel exception list");
+                                    break;
+                                default:
+                                    con.sendGlobal(ERR_UNKNOWNMODE + c
+                                        + " :Unknown MODE flag " + c);
+                                    break;
+                                    
+                            }
+                        }
+                    }
+                    // user mode
+                    else {
+                        con.sendGlobal(ERR_UMODEUNKNOWNFLAG + args[0]
+                                        + " :Unknown MODE flag");
+                    }
+                }
+                else
+                {
+                    con.sendSelfNotice("Specific modes not supported yet.");
+                }
+            }
+        },
+        PART(1, 2)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                String[] channels = args[0].split(",");
+                boolean doQuit = false;
+
+                for (String channelName : channels)
+                {
+                    if (channelName.equals(LOBBY_CHANNEL_NAME)) {
+                        doQuit = true;
+                    }
+                    // TODO: part from room
+                    /*
+                    synchronized (mutex)
+                    {
+                        Channel channel = channelMap.get(channelName);
+                        if (channelName == null)
+                            con
+                                    .sendSelfNotice("You're not a member of the channel "
+                                            + channelName
+                                            + ", so you can't part it.");
+                        else
+                        {
+                            channel.send(":" + con.getRepresentation()
+                                    + " PART " + channelName);
+                            channel.channelMembers.remove(con);
+                            if (channel.channelMembers.size() == 0)
+                                channelMap.remove(channelName);
+                        }
+                    }
+                    */
+                }
+
+                final String reason;
+
+                if (args.length > 1)
+                    reason = args[1];
+                else
+                    reason = DEFAULT_QUIT_REASON;
+
+                // quit after parting
+                if (doQuit)
+                    con.quit(reason);
+            }
+        },
+        QUIT(0, 1)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                final String reason;
+
+                if (args.length == 0)
+                    reason = DEFAULT_QUIT_REASON;
+                else
+                    reason = args[0];
+
+                con.quit(reason);
+            }
+        },
+        PRIVMSG(2, 2)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                String message = ircActionToHw(args[1]);
+                if (message.charAt(0) == CHAT_COMMAND_CHAR) {
+                    if (message.length() < 1 )
+                        return;
+                    message = message.substring(1);
+                    // TODO maybe \rebind CUSTOMCMDCHAR command
+                    con.hwcon.sendCommand(con.ircToHwNick(message));
+                }
+                else
+                    con.hwcon.sendChat(con.ircToHwNick(message));
+            }
+        },
+        TOPIC(1, 2)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                final String chan = args[0];
+
+                final Channel channel = con.getChannel(chan);
+
+                if (channel == null) {
+                    con.sendSelfNotice("No such channel for topic viewing: "
+                            + chan);
+                    return;
+                }
+
+                // The user wants to see the channel topic.
+                if (args.length == 1)
+                    con.sendTopic(channel);
+                // The user wants to set the channel topic.
+                else
+                    channel.topic = args[1];
+            }
+        },
+        KICK(3, 3)
+        {
+            @Override
+            public void run(final Connection con, final String prefix, final String[] args)
+                    throws Exception
+            {
+                final String victim = args[1];
+                con.logInfo("Issuing kick for " + victim);
+                // "KICK #channel nick :kick reason (not relevant)"
+                con.hwcon.kick(ircToHwNick(victim));
+            }
+        }
+        ;
+        public final int minArgumentCount;
+        public final int maxArgumentCount;
+        
+        private Command(int min, int max)
+        {
+            minArgumentCount = min;
+            maxArgumentCount = max;
+        }
+
+        public abstract void run(Connection con, String prefix,
+                String[] arguments) throws Exception;
+    }
+    
+    public static String delimited(String[] items, String delimiter)
+    {
+        StringBuffer response = new StringBuffer();
+        boolean first = true;
+        for (String s : items)
+        {
+            if (first)
+                first = false;
+            else
+                response.append(delimiter);
+            response.append(s);
+        }
+        return response.toString();
+    }
+    
+    protected void sendQuit(String quitMessage)
+    {
+        send(":" + getRepresentation() + " QUIT :" + quitMessage);
+    }
+    
+    @Override
+    public void run()
+    {
+        try
+        {
+            doServer();
+        }
+        catch (Exception e) {
+            e.printStackTrace();
+        }
+        finally
+        {
+            // TODO sense?
+            if (ownIrcNick != null && connectionMap.get(ownIrcNick) == this) {
+                quit("Client disconnected.");
+            }
+
+            try {
+                socket.close();
+            }
+            catch (Exception e) { }
+
+            quit("Connection terminated.");
+        }
+    }
+    
+    protected void sendGlobal(String string)
+    {
+        send(":" + globalServerName + " " + string);
+    }
+    
+    private LinkedBlockingQueue<String> outQueue = new LinkedBlockingQueue<String>(
+            1000);
+    
+    private Thread outThread = new Thread()
+    {
+        public void run()
+        {
+            try
+            {
+                OutputStream out = socket.getOutputStream();
+                while (!terminateConnection)
+                {
+                    String s = outQueue.take();
+                    s = s.replace("\n", "").replace("\r", "");
+                    s = s + "\r\n";
+                    out.write(s.getBytes());
+                    out.flush();
+                }
+            }
+            catch (Exception ex)
+            {
+                thisConnection.logError("Outqueue died");
+                //ex.printStackTrace();
+            }
+            finally {
+                outQueue.clear();
+                outQueue = null;
+                try
+                {
+                    socket.close();
+                }
+                catch (Exception e2)
+                {
+                    e2.printStackTrace();
+                }
+            }
+        }
+    };
+
+    private boolean terminateConnection = false;
+
+    private void doServer() throws Exception
+    {
+        outThread.start();
+        InputStream socketIn = socket.getInputStream();
+        BufferedReader clientReader = new BufferedReader(new InputStreamReader(
+                socketIn));
+        String line;
+        while (!terminateConnection && ((line = clientReader.readLine()) != null))
+        {
+            processLine(line);
+        }
+    }
+
+    public void sanitizeInputs(final String[] inputs) {
+
+        // no for-each loop, because we need write access to the elements
+
+        final int l = inputs.length;
+
+        for (int i = 0; i < l; i++) {
+            inputs[i] = inputs[i].replaceAll(MAGIC_BYTES, " ");
+        }
+    }
+
+    private void processLine(final String line) throws Exception
+    {
+        String l = line;
+
+        // log things
+        if (l.startsWith("PASS") || l.startsWith("pass"))
+            this.logInfo("IRC-Client provided PASS");
+        else
+            this.logDebug("IRC-Client: " + l);
+
+        String prefix = "";
+        if (l.startsWith(":"))
+        {
+            String[] tokens = l.split(" ", 2);
+            prefix = tokens[0];
+            l = (tokens.length > 1 ? tokens[1] : "");
+        }
+        String[] tokens1 = l.split(" ", 2);
+        String command = tokens1[0];
+        l = tokens1.length > 1 ? tokens1[1] : "";
+        String[] tokens2 = l.split("(^| )\\:", 2);
+        String trailing = null;
+        l = tokens2[0];
+        if (tokens2.length > 1)
+            trailing = tokens2[1];
+        ArrayList<String> argumentList = new ArrayList<String>();
+        if (!l.equals(""))
+            argumentList.addAll(Arrays.asList(l.split(" ")));
+        if (trailing != null)
+            argumentList.add(trailing);
+        final String[] args = argumentList.toArray(new String[0]);
+
+        // process command
+
+        // numeric commands
+        if (command.matches("[0-9][0-9][0-9]"))
+            command = "N" + command;
+
+        final Command commandObject;
+
+        try {
+            commandObject = Command.valueOf(command.toUpperCase());
+        }
+        catch (Exception ex) {
+            // forward raw unknown command to hw server
+            hwcon.sendCommand(ircToHwNick(line));
+            return;
+        }
+
+        if (args.length < commandObject.minArgumentCount
+                || args.length > commandObject.maxArgumentCount)
+        {
+            sendSelfNotice("Invalid number of arguments for this"
+                    + " command, expected not more than "
+                    + commandObject.maxArgumentCount + " and not less than "
+                    + commandObject.minArgumentCount + " but got " + args.length
+                    + " arguments");
+            return;
+        }
+        commandObject.run(this, prefix, args);
+    }
+
+    /**
+     * Sends a notice from the server to the user represented by this
+     * connection.
+     * 
+     * @param string
+     *            The text to send as a notice
+     */
+
+    private void sendSelfNotice(final String string)
+    {
+        send(":" + globalServerName + " NOTICE " + ownIrcNick + " :" + string);
+    }
+
+    private void sendChannelNotice(final String string) {
+        sendChannelNotice(string, globalServerName);
+    }
+
+    private void sendChannelNotice(final String string, final String from) {
+        // TODO send to room if user is in room
+        send(":" + from + " NOTICE " + LOBBY_CHANNEL_NAME + " :" + string);
+    }
+
+    private void sendServerNotice(final String string)
+    {
+        if (ircJoined)
+            sendChannelNotice(string, "[INFO]");
+
+        sendSelfNotice(string);
+    }
+
+    private String[] padSplit(final String line, final String regex, int max)
+    {
+        String[] split = line.split(regex);
+        String[] output = new String[max];
+        for (int i = 0; i < output.length; i++)
+        {
+            output[i] = "";
+        }
+        for (int i = 0; i < split.length; i++)
+        {
+            output[i] = split[i];
+        }
+        return output;
+    }
+
+    public void sendIfJoined(final String s) {
+        if (joined)
+            send(s);
+    }
+
+    public void send(final String s)
+    {
+        final Queue<String> testQueue = outQueue;
+        if (testQueue != null)
+        {
+            this.logDebug("IRC-Server: " + s);
+            testQueue.add(s);
+        }
+    }
+
+final static String RPL_WELCOME = "001 ";
+final static String RPL_YOURHOST = "002 ";
+final static String RPL_CREATED = "003 ";
+final static String RPL_MYINFO = "004 ";
+final static String RPL_BOUNCE = "005 ";
+final static String RPL_TRACELINK = "200 ";
+final static String RPL_TRACECONNECTING = "201 ";
+final static String RPL_TRACEHANDSHAKE = "202 ";
+final static String RPL_TRACEUNKNOWN = "203 ";
+final static String RPL_TRACEOPERATOR = "204 ";
+final static String RPL_TRACEUSER = "205 ";
+final static String RPL_TRACESERVER = "206 ";
+final static String RPL_TRACESERVICE = "207 ";
+final static String RPL_TRACENEWTYPE = "208 ";
+final static String RPL_TRACECLASS = "209 ";
+final static String RPL_TRACERECONNECT = "210 ";
+final static String RPL_STATSLINKINFO = "211 ";
+final static String RPL_STATSCOMMANDS = "212 ";
+final static String RPL_STATSCLINE = "213 ";
+final static String RPL_STATSNLINE = "214 ";
+final static String RPL_STATSILINE = "215 ";
+final static String RPL_STATSKLINE = "216 ";
+final static String RPL_STATSQLINE = "217 ";
+final static String RPL_STATSYLINE = "218 ";
+final static String RPL_ENDOFSTATS = "219 ";
+final static String RPL_UMODEIS = "221 ";
+final static String RPL_SERVICEINFO = "231 ";
+final static String RPL_ENDOFSERVICES = "232 ";
+final static String RPL_SERVICE = "233 ";
+final static String RPL_SERVLIST = "234 ";
+final static String RPL_SERVLISTEND = "235 ";
+final static String RPL_STATSVLINE = "240 ";
+final static String RPL_STATSLLINE = "241 ";
+final static String RPL_STATSUPTIME = "242 ";
+final static String RPL_STATSOLINE = "243 ";
+final static String RPL_STATSHLINE = "244 ";
+final static String RPL_STATSPING = "246 ";
+final static String RPL_STATSBLINE = "247 ";
+final static String RPL_STATSDLINE = "250 ";
+final static String RPL_LUSERCLIENT = "251 ";
+final static String RPL_LUSEROP = "252 ";
+final static String RPL_LUSERUNKNOWN = "253 ";
+final static String RPL_LUSERCHANNELS = "254 ";
+final static String RPL_LUSERME = "255 ";
+final static String RPL_ADMINME = "256 ";
+final static String RPL_ADMINEMAIL = "259 ";
+final static String RPL_TRACELOG = "261 ";
+final static String RPL_TRACEEND = "262 ";
+final static String RPL_TRYAGAIN = "263 ";
+final static String RPL_NONE = "300 ";
+final static String RPL_AWAY = "301 ";
+final static String RPL_USERHOST = "302 ";
+final static String RPL_ISON = "303 ";
+final static String RPL_UNAWAY = "305 ";
+final static String RPL_NOWAWAY = "306 ";
+final static String RPL_WHOISUSER = "311 ";
+final static String RPL_WHOISSERVER = "312 ";
+final static String RPL_WHOISOPERATOR = "313 ";
+final static String RPL_WHOWASUSER = "314 ";
+final static String RPL_ENDOFWHO = "315 ";
+final static String RPL_WHOISCHANOP = "316 ";
+final static String RPL_WHOISIDLE = "317 ";
+final static String RPL_ENDOFWHOIS = "318 ";
+final static String RPL_WHOISCHANNELS = "319 ";
+final static String RPL_LISTSTART = "321 ";
+final static String RPL_LIST = "322 ";
+final static String RPL_LISTEND = "323 ";
+final static String RPL_CHANNELMODEIS = "324 ";
+final static String RPL_UNIQOPIS = "325 ";
+final static String RPL_NOTOPIC = "331 ";
+final static String RPL_TOPIC = "332 ";
+final static String RPL_INVITING = "341 ";
+final static String RPL_SUMMONING = "342 ";
+final static String RPL_INVITELIST = "346 ";
+final static String RPL_ENDOFINVITELIST = "347 ";
+final static String RPL_EXCEPTLIST = "348 ";
+final static String RPL_ENDOFEXCEPTLIST = "349 ";
+final static String RPL_VERSION = "351 ";
+final static String RPL_WHOREPLY = "352 ";
+final static String RPL_NAMREPLY = "353 ";
+final static String RPL_KILLDONE = "361 ";
+final static String RPL_CLOSING = "362 ";
+final static String RPL_CLOSEEND = "363 ";
+final static String RPL_LINKS = "364 ";
+final static String RPL_ENDOFLINKS = "365 ";
+final static String RPL_ENDOFNAMES = "366 ";
+final static String RPL_BANLIST = "367 ";
+final static String RPL_ENDOFBANLIST = "368 ";
+final static String RPL_ENDOFWHOWAS = "369 ";
+final static String RPL_INFO = "371 ";
+final static String RPL_MOTD = "372 ";
+final static String RPL_INFOSTART = "373 ";
+final static String RPL_ENDOFINFO = "374 ";
+final static String RPL_MOTDSTART = "375 ";
+final static String RPL_ENDOFMOTD = "376 ";
+final static String RPL_YOUREOPER = "381 ";
+final static String RPL_REHASHING = "382 ";
+final static String RPL_YOURESERVICE = "383 ";
+final static String RPL_MYPORTIS = "384 ";
+final static String RPL_TIME = "391 ";
+final static String RPL_USERSSTART = "392 ";
+final static String RPL_USERS = "393 ";
+final static String RPL_ENDOFUSERS = "394 ";
+final static String RPL_NOUSERS = "395 ";
+final static String ERR_NOSUCHNICK = "401 ";
+final static String ERR_NOSUCHSERVER = "402 ";
+final static String ERR_NOSUCHCHANNEL = "403 ";
+final static String ERR_CANNOTSENDTOCHAN = "404 ";
+final static String ERR_TOOMANYCHANNELS = "405 ";
+final static String ERR_WASNOSUCHNICK = "406 ";
+final static String ERR_TOOMANYTARGETS = "407 ";
+final static String ERR_NOSUCHSERVICE = "408 ";
+final static String ERR_NOORIGIN = "409 ";
+final static String ERR_NORECIPIENT = "411 ";
+final static String ERR_NOTEXTTOSEND = "412 ";
+final static String ERR_NOTOPLEVEL = "413 ";
+final static String ERR_WILDTOPLEVEL = "414 ";
+final static String ERR_BADMASK = "415 ";
+final static String ERR_UNKNOWNCOMMAND = "421 ";
+final static String ERR_NOMOTD = "422 ";
+final static String ERR_NOADMININFO = "423 ";
+final static String ERR_FILEERROR = "424 ";
+final static String ERR_NONICKNAMEGIVEN = "431 ";
+final static String ERR_ERRONEUSNICKNAME = "432 ";
+final static String ERR_NICKNAMEINUSE = "433 ";
+final static String ERR_NICKCOLLISION = "436 ";
+final static String ERR_UNAVAILRESOURCE = "437 ";
+final static String ERR_USERNOTINCHANNEL = "441 ";
+final static String ERR_NOTONCHANNEL = "442 ";
+final static String ERR_USERONCHANNEL = "443 ";
+final static String ERR_NOLOGIN = "444 ";
+final static String ERR_SUMMONDISABLED = "445 ";
+final static String ERR_USERSDISABLED = "446 ";
+final static String ERR_NOTREGISTERED = "451 ";
+final static String ERR_NEEDMOREPARAMS = "461 ";
+final static String ERR_ALREADYREGISTRED = "462 ";
+final static String ERR_NOPERMFORHOST = "463 ";
+final static String ERR_PASSWDMISMATCH = "464 ";
+final static String ERR_YOUREBANNEDCREEP = "465 ";
+final static String ERR_YOUWILLBEBANNED = "466 ";
+final static String ERR_KEYSET = "467 ";
+final static String ERR_CHANNELISFULL = "471 ";
+final static String ERR_UNKNOWNMODE = "472 ";
+final static String ERR_INVITEONLYCHAN = "473 ";
+final static String ERR_BANNEDFROMCHAN = "474 ";
+final static String ERR_BADCHANNELKEY = "475 ";
+final static String ERR_BADCHANMASK = "476 ";
+final static String ERR_NOCHANMODES = "477 ";
+final static String ERR_BANLISTFULL = "478 ";
+final static String ERR_NOPRIVILEGES = "481 ";
+final static String ERR_CHANOPRIVSNEEDED = "482 ";
+final static String ERR_CANTKILLSERVER = "483 ";
+final static String ERR_RESTRICTED = "484 ";
+final static String ERR_UNIQOPPRIVSNEEDED = "485 ";
+final static String ERR_NOOPERHOST = "491 ";
+final static String ERR_NOSERVICEHOST = "492 ";
+final static String ERR_UMODEUNKNOWNFLAG = "501 ";
+final static String ERR_USERSDONTMATCH = "502 ";
+
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/hw2irc/restart	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,8 @@
+#!/bin/bash
+sudo -u nobody killall java; sleep 3; sudo -u nobody killall -9 java;
+sleep 30;
+#sudo -u nobody java net.ercatec.hw2ircsvr.Connection netserver.hedgewars.org 1337 >>out.sheepy 2>>err.sheepy & disown
+sudo -u nobody bash -c 'java net.ercatec.hw2ircsvr.Connection netserver.hedgewars.org 1337 >>out.sheepy 2>&1 & disown'
+sleep 122
+#sudo -u nobody java net.ercatec.hw2ircsvr.Connection >>out 2>>err & disown
+sudo -u nobody bash -c 'java net.ercatec.hw2ircsvr.Connection >>out 2>&1 & disown'
--- a/tools/pas2c/Pas2C.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/tools/pas2c/Pas2C.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -715,6 +715,9 @@
     liftM (parens . (<> text " + 1")) $ initExpr2C' e
 initExpr2C' (BuiltInFunction "pred" [e]) = 
     liftM (parens . (<> text " - 1")) $ initExpr2C' e
+initExpr2C' (BuiltInFunction "round" [e]) = do
+    e <- initExpr2C' e
+    return $ text "(int)" <> parens e
 initExpr2C' b@(BuiltInFunction _ _) = error $ show b
 initExpr2C' (InitTypeCast t' i) = do
     e <- initExpr2C i
@@ -964,12 +967,17 @@
 wrapPhrase p@(Phrases _) = p
 wrapPhrase p = Phrases [p]
 
+parensExpr2C :: Expression -> State RenderState Doc
+parensExpr2C bop@(BinOp _ _ _) = liftM parens $ expr2C bop
+parensExpr2C set@(SetExpression _ ) = liftM parens $ expr2C set
+parensExpr2C e = expr2C e
+
 expr2C :: Expression -> State RenderState Doc
 expr2C (Expression s) = return $ text s
 expr2C bop@(BinOp op expr1 expr2) = do
-    e1 <- expr2C expr1
+    e1 <- parensExpr2C expr1
     t1 <- gets lastType
-    e2 <- expr2C expr2
+    e2 <- parensExpr2C expr2
     t2 <- gets lastType
     case (op2C op, t1, t2) of
         ("+", BTAString, BTAString) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strconcatA" (fff t1 t2 BTString))
@@ -993,8 +1001,8 @@
 
         ("==", BTString, BTString) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strcompare" (fff t1 t2  BTBool))
         ("!=", BTString, _) -> expr2C $ BuiltInFunCall [expr1, expr2] (SimpleReference $ Identifier "_strncompare" (fff t1 t2  BTBool))
-        ("&", BTBool, _) -> return $ parens e1 <+> text "&&" <+> parens e2
-        ("|", BTBool, _) -> return $ parens e1 <+> text "||" <+> parens e2
+        ("&", BTBool, _) -> return $ e1 <+> text "&&" <+> e2
+        ("|", BTBool, _) -> return $ e1 <+> text "||" <+> e2
         (_, BTRecord t1 _, BTRecord t2 _) -> do
             i <- op2CTyped op [SimpleType (Identifier t1 undefined), SimpleType (Identifier t2 undefined)]
             ref2C $ FunCall [expr1, expr2] (SimpleReference i)
@@ -1011,17 +1019,17 @@
                  _ -> error "'in' against not set expression"
         (o, _, _) | o `elem` boolOps -> do
                         modify(\s -> s{lastType = BTBool})
-                        return $ parens e1 <+> text o <+> parens e2
+                        return $ e1 <+> text o <+> e2
                   | otherwise -> do
                         o' <- return $ case o of
                             "/(float)" -> text "/(float)" -- pascal returns real value
                             _ -> text o
                         e1' <- return $ case (o, t1, t2) of
                                 ("-", BTInt False, BTInt False) -> parens $ text "(int64_t)" <+> parens e1
-                                _ -> parens e1
+                                _ -> e1
                         e2' <- return $ case (o, t1, t2) of
                                 ("-", BTInt False, BTInt False) -> parens $ text "(int64_t)" <+> parens e2
-                                _ -> parens e2
+                                _ -> e2
                         return $ e1' <+> o' <+> e2'
     where
         fff t1 t2 = BTFunction False False [(False, t1), (False, t2)]
@@ -1052,7 +1060,7 @@
    modify(\s -> s{isFunctionType = False}) -- reset
    if isfunc then ref2CF ref False else ref2CF ref True
 expr2C (PrefixOp op expr) = do
-    e <- expr2C expr
+    e <- parensExpr2C expr
     lt <- gets lastType
     case lt of
         BTRecord t _ -> do
@@ -1062,8 +1070,8 @@
             o <- return $ case op of
                      "not" -> text "!"
                      _ -> text (op2C op)
-            return $ o <> parens e
-        _ -> return $ text (op2C op) <> parens e
+            return $ o <> e
+        _ -> return $ text (op2C op) <> e
 expr2C Null = return $ text "NULL"
 expr2C (CharCode a) = do
     modify(\s -> s{lastType = BTChar})
--- a/tools/pas2c/PascalBasics.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/tools/pas2c/PascalBasics.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -2,7 +2,7 @@
 module PascalBasics where
 
 import Text.Parsec.Combinator
-import Text.Parsec.Char
+import Text.Parsec.Char hiding (string')
 import Text.Parsec.Prim
 import Text.Parsec.Token
 import Text.Parsec.Language
@@ -17,7 +17,7 @@
 string' = void . string
 
 builtin :: [String]
-builtin = ["succ", "pred", "low", "high", "ord", "inc", "dec", "exit", "break", "continue", "length", "copy"]
+builtin = ["succ", "pred", "low", "high", "ord", "inc", "dec", "exit", "break", "continue", "length", "copy", "round"]
 
 pascalLanguageDef :: GenLanguageDef String u Identity
 pascalLanguageDef
--- a/tools/pas2c/PascalParser.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/tools/pas2c/PascalParser.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -4,7 +4,7 @@
     )
     where
 
-import Text.Parsec
+import Text.Parsec hiding (string')
 import Text.Parsec.Token
 import Text.Parsec.Expr
 import Control.Monad
--- a/tools/pas2c/PascalPreprocessor.hs	Sun Mar 24 14:19:02 2024 -0400
+++ b/tools/pas2c/PascalPreprocessor.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -1,7 +1,7 @@
 {-# LANGUAGE ScopedTypeVariables #-}
 module PascalPreprocessor where
 
-import Text.Parsec
+import Text.Parsec hiding (string')
 import Control.Monad.IO.Class
 import Control.Monad
 import System.IO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/rc/convert.sh	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,20 @@
+#!/usr/bin/env sh
+
+ls ../rc || exit
+
+rm -rdfv build engine
+mkdir -p build engine
+cd build
+cmake -DNOSERVER=on -DBUILD_ENGINE_C=on -DLUA_SYSTEM=on -DNOVIDEOREC=off ../../../
+cmake --build . --target engine_c
+
+# this one you can get from pip: pip install scan-build
+intercept-build cmake --build . --target hwengine
+c2rust transpile --emit-build-files --emit-modules --reduce-type-annotations --binary hwengine compile_commands.json --output-dir=../engine
+
+cd ../engine
+sed -i 's/f128.*//g' Cargo.toml
+sed -i 's/extern crate f128.*//g' lib.rs
+sed -i 's/mod src {/mod src{\npub mod to_f64;/g' lib.rs
+find -type f -name '*.rs' -exec sed -i 's/f128/f64/g' {} \; -exec sed -i 's/f64::f64/f64/g' {} \; -exec sed -i 's/use ::f64;/use crate::src::to_f64::to_f64;/g' {} \; -exec sed -i 's/f64::new/to_f64/g' {} \;
+cp ../to_f64.rs src/
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/rc/to_f64.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,4 @@
+pub fn to_f64<T: Into<f64>>(v: T) -> f64 {
+    v.into()
+}
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/replay2hwd.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,237 @@
+{-# LANGUAGE ScopedTypeVariables, OverloadedStrings #-}
+
+import qualified Data.ByteString.Char8 as B
+import Control.Exception as E
+import System.Environment
+import Control.Monad
+import qualified Data.Map as Map
+import Data.Word
+import Data.Int
+import qualified Codec.Binary.Base64 as Base64
+import qualified Data.ByteString.Lazy as BL
+import qualified Data.ByteString as BW
+import qualified Codec.Compression.Zlib.Internal as ZI
+import qualified Codec.Compression.Zlib as Z
+import qualified Data.List as L
+import qualified Data.Set as Set
+import Data.Binary
+import Data.Binary.Put
+import Data.Bits
+import Control.Arrow
+import Data.Maybe
+import qualified Data.Either as Ei
+
+
+decompressWithoutExceptions :: BL.ByteString -> BL.ByteString
+decompressWithoutExceptions = BL.fromChunks . ZI.foldDecompressStreamWithInput chunk end err decomp
+    where
+        decomp = ZI.decompressST ZI.zlibFormat ZI.defaultDecompressParams
+        chunk = (:)
+        end _ = []
+        err = const $ [BW.empty]
+
+data HedgehogInfo =
+    HedgehogInfo B.ByteString B.ByteString
+    deriving (Show, Read)
+    
+data TeamInfo =
+    TeamInfo
+    {
+        teamowner :: !B.ByteString,
+        teamname :: !B.ByteString,
+        teamcolor :: !B.ByteString,
+        teamgrave :: !B.ByteString,
+        teamfort :: !B.ByteString,
+        teamvoicepack :: !B.ByteString,
+        teamflag :: !B.ByteString,
+        isOwnerRegistered :: !Bool,
+        difficulty :: !Int,
+        hhnum :: !Int,
+        hedgehogs :: ![HedgehogInfo]
+    }
+    deriving (Show, Read)
+    
+readInt_ :: (Num a) => B.ByteString -> a
+readInt_ str =
+  case B.readInt str of
+       Just (i, t) | B.null t -> fromIntegral i
+       _                      -> 0
+
+toEngineMsg :: B.ByteString -> B.ByteString
+toEngineMsg msg = fromIntegral (BW.length msg) `BW.cons` msg
+
+em :: B.ByteString -> B.ByteString
+em = toEngineMsg
+
+eml :: [B.ByteString] -> B.ByteString
+eml = em . B.concat       
+    
+showB :: (Show a) => a -> B.ByteString
+showB = B.pack . show
+    
+replayToDemo :: [TeamInfo]
+        -> Map.Map B.ByteString B.ByteString
+        -> Map.Map B.ByteString [B.ByteString]
+        -> [B.ByteString]
+        -> B.ByteString
+replayToDemo ti mParams prms msgs = if not sane then "" else (B.concat $ concat [
+        [em "TD"]
+        , maybeScript
+        , maybeMap
+        , [eml ["etheme ", head $ prms Map.! "THEME"]]
+        , [eml ["eseed ", mParams Map.! "SEED"]]
+        , [eml ["e$gmflags ", showB gameFlags]]
+        , schemeFlags
+        , schemeAdditional
+        , [eml ["e$template_filter ", mParams Map.! "TEMPLATE"]]
+        , [eml ["e$feature_size ", mParams Map.! "FEATURE_SIZE"]]
+        , [eml ["e$mapgen ", mapgen]]
+        , mapgenSpecific
+        , concatMap teamSetup ti
+        , map (Ei.fromRight "" . Base64.decode) $ reverse msgs
+        , [em "!"]
+        ])
+    where
+        keys1, keys2 :: Set.Set B.ByteString
+        keys1 = Set.fromList ["FEATURE_SIZE", "MAP", "MAPGEN", "MAZE_SIZE", "SEED", "TEMPLATE"]
+        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 41 $ scheme)
+            && (not . null . tail $ prms Map.! "AMMO")
+            && ((B.length . head . tail $ prms Map.! "AMMO") > 200)
+        mapGenTypes = ["+rnd+", "+maze+", "+drawn+", "+perlin+"]
+        scriptName = head . fromMaybe ["Normal"] $ Map.lookup "SCRIPT" prms
+        maybeScript = let s = scriptName in if s == "Normal" then [] else [eml ["escript Scripts/Multiplayer/", spaces2Underlining s, ".lua"]]
+        maybeMap = let m = mParams Map.! "MAP" in if m `elem` mapGenTypes then [] else [eml ["emap ", m]]
+        scheme = tail $ prms Map.! "SCHEME"
+        mapgen = mParams Map.! "MAPGEN"
+        mazeSizeMsg = eml ["e$maze_size ", mParams Map.! "MAZE_SIZE"]
+        mapgenSpecific = case mapgen of
+            "1" -> [mazeSizeMsg]
+            "2" -> [mazeSizeMsg]
+            "3" -> let d = head . fromMaybe [""] $ Map.lookup "DRAWNMAP" prms in if BW.length d <= 4 then [] else drawnMapData d
+            _ -> []
+        gameFlags :: Word32
+        gameFlags = foldl (\r (b, f) -> if b == "false" then r else r .|. f) 0 $ zip scheme gameFlagConsts
+        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 !! 42 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
+                   (map (\(x, y) -> eml [x, " ", y]) $ zip ["eammloadt", "eammprob", "eammdelay", "eammreinf"] [a, b, c, d])
+                   ++ [em "eammstore" | scheme !! 14 == "true" || scheme !! 20 == "false"]
+        initHealth = scheme !! 27
+        teamSetup :: TeamInfo -> [B.ByteString]
+        teamSetup t = (++) ammo $
+                eml ["eaddteam <hash> ", showB $ (1 + (readInt_ $ teamcolor t) :: Int) * 2113696, " ", teamname t]
+                : em "erdriven"
+                : eml ["efort ", teamfort t]
+                : take (2 * hhnum t) (
+                    concatMap (\(HedgehogInfo hname hhat) -> [
+                            eml ["eaddhh ", showB $ difficulty t, " ", initHealth, " ", hname]
+                            , eml ["ehat ", hhat]
+                            ])
+                        $ hedgehogs t
+                        )
+        infRopes = ammoStr `B.index` 7  == '9'
+        vamp = gameFlags .&. 0x00000200 /= 0
+        infattacks = gameFlags .&. 0x00100000 /= 0
+        spaces2Underlining = B.map (\c -> if c == ' ' then '_' else c)
+
+drawnMapData :: B.ByteString -> [B.ByteString]
+drawnMapData =
+          L.map (\m -> eml ["edraw ", BW.pack m])
+        . L.unfoldr by200
+        . BL.unpack
+        . unpackDrawnMap
+    where
+        by200 :: [a] -> Maybe ([a], [a])
+        by200 [] = Nothing
+        by200 m = Just $ L.splitAt 200 m
+
+unpackDrawnMap :: B.ByteString -> BL.ByteString
+unpackDrawnMap = either
+        (const BL.empty) 
+        (decompressWithoutExceptions . BL.pack . drop 4 . BW.unpack)
+        . Base64.decode
+
+compressWithLength :: BL.ByteString -> BL.ByteString
+compressWithLength b = BL.drop 8 . encode . runPut $ do
+    put $ ((fromIntegral $ BL.length b)::Word32)
+    mapM_ putWord8 $ BW.unpack $ BL.toStrict $ Z.compress b
+
+packDrawnMap :: BL.ByteString -> B.ByteString
+packDrawnMap =
+      Base64.encode
+    . BL.toStrict
+    . compressWithLength
+
+prependGhostPoints :: [(Int16, Int16)] -> B.ByteString -> B.ByteString
+prependGhostPoints pts dm = packDrawnMap $ (runPut $ forM_ pts $ \(x, y) -> put x >> put y >> putWord8 99) `BL.append` unpackDrawnMap dm
+
+schemeParams :: [(B.ByteString, Int)]
+schemeParams = [
+      ("e$damagepct", 1)
+    , ("e$turntime", 1000)
+    , ("", 0)
+    , ("e$sd_turns", 1)
+    , ("e$casefreq", 1)
+    , ("e$minestime", 1000)
+    , ("e$minesnum", 1)
+    , ("e$minedudpct", 1)
+    , ("e$explosives", 1)
+    , ("e$airmines", 1)
+    , ("e$healthprob", 1)
+    , ("e$hcaseamount", 1)
+    , ("e$waterrise", 1)
+    , ("e$healthdec", 1)
+    , ("e$ropepct", 1)
+    , ("e$getawaytime", 1)
+    , ("e$worldedge", 1)
+    ]
+
+
+gameFlagConsts :: [Word32]
+gameFlagConsts = [
+          0x00001000
+        , 0x00000010
+        , 0x00000004
+        , 0x00000008
+        , 0x00000020
+        , 0x00000040
+        , 0x00000080
+        , 0x00000100
+        , 0x00000200
+        , 0x00000400
+        , 0x00000800
+        , 0x00002000
+        , 0x00004000
+        , 0x00008000
+        , 0x00010000
+        , 0x00020000
+        , 0x00040000
+        , 0x00080000
+        , 0x00100000
+        , 0x00200000
+        , 0x00400000
+        , 0x00800000
+        , 0x01000000
+        , 0x02000000
+        , 0x04000000
+        ]    
+
+loadReplay :: String -> IO (Maybe ([TeamInfo], [(B.ByteString, B.ByteString)], [(B.ByteString, [B.ByteString])], [B.ByteString]))
+loadReplay fileName = E.handle (\(e :: SomeException) -> return Nothing) $ do
+            liftM (Just . read) $ readFile fileName
+
+convert :: String -> IO ()
+convert fileName = do
+    Just (t, c1, c2, m) <- loadReplay fileName
+    B.writeFile (fileName ++ ".hwd") $ replayToDemo t (Map.fromList c1) (Map.fromList c2) m
+
+main = do
+    args <- getArgs
+    when (length args == 1) $ (convert (head args))
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/ubot-plugins/hs-echo/app/Main.hs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,48 @@
+{-# LANGUAGE OverloadedStrings #-}
+module Main where
+
+import Text.Megaparsec (Parsec, parseMaybe)
+import Text.URI
+import System.Environment (getEnv)
+import Data.Text (Text, pack, unpack)
+import Data.Maybe
+import Control.Monad (when)
+import Network.AMQP
+import qualified Data.ByteString.Lazy.Char8 as BL
+
+assert :: String -> Bool -> a -> a
+assert message False x = error message
+assert _ _ x = x
+
+unRpack = unpack . unRText
+
+main :: IO ()
+main = do
+    amqpUri <- getEnv "AMQP_URL"
+    let uri = fromJust $ parseMaybe (parser :: Parsec Int Text URI) $ pack amqpUri
+    when (uriScheme uri /= mkScheme "amqp") $ error "AMQP_URL environment variable scheme should be amqp"
+    let Right (Authority (Just (UserInfo username (Just password))) rHost maybePort) = uriAuthority uri
+ 
+    conn <- openConnection' (unRpack rHost) (fromInteger . toInteger $ fromMaybe 5672 maybePort) "/" (unRText username) (unRText password)
+    chan <- openChannel conn
+
+    (queueName, messageCount, consumerCount) <- declareQueue chan newQueue
+    bindQueue chan queueName "irc" "cmd.echo.hedgewars"
+
+    -- subscribe to the queue
+    consumeMsgs chan queueName Ack (myCallback chan)
+
+    getLine -- wait for keypress
+    closeConnection conn
+    putStrLn "connection closed"
+
+
+myCallback :: Channel -> (Message,Envelope) -> IO ()
+myCallback chan (msg, env) = do
+    let message = BL.tail . BL.dropWhile (/= '\n') $ msgBody msg
+    putStrLn $ "received message: " ++ (BL.unpack $ message)
+
+    publishMsg chan "irc" "say.hedgewars"
+        newMsg {msgBody = message}
+
+    ackEnv env
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/ubot-plugins/hs-echo/hs-ping.cabal	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,39 @@
+cabal-version:      2.4
+name:               hs-ubot-ping-plugin
+version:            0.1.0.0
+
+-- A short (one-line) description of the package.
+-- synopsis:
+
+-- A longer description of the package.
+-- description:
+
+-- A URL where users can report bugs.
+-- bug-reports:
+
+-- The license under which the package is released.
+-- license:
+author:             Andrey Korotaev
+maintainer:         a.korotaev@hedgewars.org
+
+-- A copyright notice.
+-- copyright:
+-- category:
+extra-source-files: CHANGELOG.md
+
+executable hs-ubot-ping-plugin
+    main-is:          Main.hs
+
+    -- Modules included in this executable, other than Main.
+    -- other-modules:
+
+    -- LANGUAGE extensions used by modules in this package.
+    -- other-extensions:
+    build-depends:    base ^>=4.14.1.0,
+                      megaparsec >= 9.0,
+                      modern-uri >= 0.3,
+                      text >= 1.2,
+                      bytestring,
+                      amqp >= 0.22
+    hs-source-dirs:   app
+    default-language: Haskell2010
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/ubot-plugins/ubot-mingpt-plugin/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,15 @@
+[package]
+name = "ubot-mingpt-plugin"
+version = "0.1.0"
+authors = ["Andrey Korotaev <a.korotaev@hedgewars.org>"]
+edition = "2018"
+
+[dependencies]
+tch = "0.4"
+anyhow = "1.0"
+tokio-amqp = "1.0"
+lapin = "1.7"
+tokio = {version="1.6", features = ["full"]}
+rand = "0.8"
+futures = "0.3"
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/ubot-plugins/ubot-mingpt-plugin/src/main.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,337 @@
+/* This example uses the tinyshakespeare dataset which can be downloaded at:
+   https://raw.githubusercontent.com/karpathy/char-rnn/master/data/tinyshakespeare/input.txt
+
+   This is mostly a rust port of https://github.com/karpathy/minGPT
+*/
+
+extern crate tch;
+use anyhow::{bail, Result as AHResult};
+use std::{io, io::Write};
+use tch::data::TextData;
+use tch::nn::{ModuleT, OptimizerConfig};
+use tch::{nn, Device, IndexOp, Kind, Tensor};
+
+use futures::prelude::*;
+use lapin::{options::*, types::FieldTable, BasicProperties, Connection, ConnectionProperties};
+
+use tokio_amqp::*;
+
+const LEARNING_RATE: f64 = 0.0003;
+const BLOCK_SIZE: i64 = 128;
+const BATCH_SIZE: i64 = 64;
+const EPOCHS: i64 = 100;
+const SAMPLING_LEN: i64 = 512;
+
+#[derive(Debug, Copy, Clone)]
+struct Config {
+    vocab_size: i64,
+    n_embd: i64,
+    n_head: i64,
+    n_layer: i64,
+    block_size: i64,
+    attn_pdrop: f64,
+    resid_pdrop: f64,
+    embd_pdrop: f64,
+}
+
+// Weight decay only applies to the weight matrixes in the linear layers
+const NO_WEIGHT_DECAY_GROUP: usize = 0;
+const WEIGHT_DECAY_GROUP: usize = 1;
+
+// Custom linear layer so that different groups can be used for weight
+// and biases.
+#[derive(Debug)]
+struct Linear {
+    pub ws: Tensor,
+    pub bs: Tensor,
+}
+
+impl nn::Module for Linear {
+    fn forward(&self, xs: &Tensor) -> Tensor {
+        xs.matmul(&self.ws.tr()) + &self.bs
+    }
+}
+
+fn linear(vs: nn::Path, in_dim: i64, out_dim: i64) -> Linear {
+    let wd = vs.set_group(WEIGHT_DECAY_GROUP);
+    let no_wd = vs.set_group(NO_WEIGHT_DECAY_GROUP);
+    Linear {
+        ws: wd.randn("weight", &[out_dim, in_dim], 0.0, 0.02),
+        bs: no_wd.zeros("bias", &[out_dim]),
+    }
+}
+
+fn linear_no_bias(vs: nn::Path, in_dim: i64, out_dim: i64) -> Linear {
+    let wd = vs.set_group(WEIGHT_DECAY_GROUP);
+    let no_wd = vs.set_group(NO_WEIGHT_DECAY_GROUP);
+    Linear {
+        ws: wd.randn("weight", &[out_dim, in_dim], 0.0, 0.02),
+        bs: no_wd.zeros_no_train("bias", &[out_dim]),
+    }
+}
+
+fn causal_self_attention(p: &nn::Path, cfg: Config) -> impl ModuleT {
+    let key = linear(p / "key", cfg.n_embd, cfg.n_embd);
+    let query = linear(p / "query", cfg.n_embd, cfg.n_embd);
+    let value = linear(p / "value", cfg.n_embd, cfg.n_embd);
+    let proj = linear(p / "proj", cfg.n_embd, cfg.n_embd);
+    let mask_init =
+        Tensor::ones(&[cfg.block_size, cfg.block_size], (Kind::Float, p.device())).tril(0);
+    let mask_init = mask_init.view([1, 1, cfg.block_size, cfg.block_size]);
+    // let mask = p.var_copy("mask", &mask_init);
+    let mask = mask_init;
+    nn::func_t(move |xs, train| {
+        let (sz_b, sz_t, sz_c) = xs.size3().unwrap();
+        let sizes = [sz_b, sz_t, cfg.n_head, sz_c / cfg.n_head];
+        let k = xs.apply(&key).view(sizes).transpose(1, 2);
+        let q = xs.apply(&query).view(sizes).transpose(1, 2);
+        let v = xs.apply(&value).view(sizes).transpose(1, 2);
+        let att = q.matmul(&k.transpose(-2, -1)) * (1.0 / f64::sqrt(sizes[3] as f64));
+        let att = att.masked_fill(
+            &mask.i((.., .., ..sz_t, ..sz_t)).eq(0.),
+            std::f64::NEG_INFINITY,
+        );
+        let att = att.softmax(-1, Kind::Float).dropout(cfg.attn_pdrop, train);
+        let ys = att
+            .matmul(&v)
+            .transpose(1, 2)
+            .contiguous()
+            .view([sz_b, sz_t, sz_c]);
+        ys.apply(&proj).dropout(cfg.resid_pdrop, train)
+    })
+}
+
+fn block(p: &nn::Path, cfg: Config) -> impl ModuleT {
+    let ln1 = nn::layer_norm(p / "ln1", vec![cfg.n_embd], Default::default());
+    let ln2 = nn::layer_norm(p / "ln2", vec![cfg.n_embd], Default::default());
+    let attn = causal_self_attention(p, cfg);
+    let lin1 = linear(p / "lin1", cfg.n_embd, 4 * cfg.n_embd);
+    let lin2 = linear(p / "lin2", 4 * cfg.n_embd, cfg.n_embd);
+    nn::func_t(move |xs, train| {
+        let xs = xs + xs.apply(&ln1).apply_t(&attn, train);
+        let ys = xs
+            .apply(&ln2)
+            .apply(&lin1)
+            .gelu()
+            .apply(&lin2)
+            .dropout(cfg.resid_pdrop, train);
+        xs + ys
+    })
+}
+
+fn gpt(p: &nn::Path, cfg: Config) -> impl ModuleT {
+    let p = &p.set_group(NO_WEIGHT_DECAY_GROUP);
+    let tok_emb = nn::embedding(
+        p / "tok_emb",
+        cfg.vocab_size,
+        cfg.n_embd,
+        Default::default(),
+    );
+    let pos_emb = p.zeros("pos_emb", &[1, cfg.block_size, cfg.n_embd]);
+    let ln_f = nn::layer_norm(p / "ln_f", vec![cfg.n_embd], Default::default());
+    let head = linear_no_bias(p / "head", cfg.n_embd, cfg.vocab_size);
+    let mut blocks = nn::seq_t();
+    for block_idx in 0..cfg.n_layer {
+        blocks = blocks.add(block(&(p / block_idx), cfg));
+    }
+    nn::func_t(move |xs, train| {
+        let (_sz_b, sz_t) = xs.size2().unwrap();
+        let tok_emb = xs.apply(&tok_emb);
+        let pos_emb = pos_emb.i((.., ..sz_t, ..));
+        (tok_emb + pos_emb)
+            .dropout(cfg.embd_pdrop, train)
+            .apply_t(&blocks, train)
+            .apply(&ln_f)
+            .apply(&head)
+    })
+}
+
+/// Generates some sample string using the GPT model.
+fn sample(data: &TextData, gpt: &impl ModuleT, input: Tensor) -> String {
+    let mut input = input;
+    let mut result = String::new();
+    for _index in 0..SAMPLING_LEN {
+        let logits = input.apply_t(gpt, false).i((0, -1, ..));
+        let sampled_y = logits.softmax(-1, Kind::Float).multinomial(1, true);
+        let last_label = i64::from(&sampled_y);
+        result.push(data.label_to_char(last_label));
+        input = Tensor::cat(&[input, sampled_y.view([1, 1])], 1).narrow(1, 1, BLOCK_SIZE);
+    }
+    result
+}
+
+#[tokio::main]
+async fn main() -> AHResult<()> {
+    let device = Device::cuda_if_available();
+    let mut vs = nn::VarStore::new(device);
+    let data = TextData::new("10.log")?;
+    let labels = data.labels();
+    println!("Dataset loaded, {} labels.", labels);
+    let cfg = Config {
+        vocab_size: labels,
+        n_embd: 384, // was 512
+        n_head: 8,
+        n_layer: 8,
+        block_size: BLOCK_SIZE,
+        attn_pdrop: 0.1,
+        resid_pdrop: 0.1,
+        embd_pdrop: 0.1,
+    };
+    let gpt = gpt(&(&vs.root() / "gpt"), cfg);
+    let args: Vec<_> = std::env::args().collect();
+    if args.len() < 2 {
+        bail!("usage: main (train|predict weights.ot seqstart)")
+    }
+    match args[1].as_str() {
+        "train" => {
+            let mut opt = nn::AdamW::default().build(&vs, LEARNING_RATE)?;
+            opt.set_weight_decay_group(NO_WEIGHT_DECAY_GROUP, 0.0);
+            opt.set_weight_decay_group(WEIGHT_DECAY_GROUP, 0.1);
+            let mut idx = 0;
+            vs.load("384.ot")?;
+            for epoch in 1..(1 + EPOCHS) {
+                let mut sum_loss = 0.;
+                let mut cnt_loss = 0.;
+                for batch in data.iter_shuffle(BLOCK_SIZE + 1, BATCH_SIZE) {
+                    let xs = batch
+                        .narrow(1, 0, BLOCK_SIZE)
+                        .to_kind(Kind::Int64)
+                        .to_device(device);
+                    let ys = batch
+                        .narrow(1, 1, BLOCK_SIZE)
+                        .to_kind(Kind::Int64)
+                        .to_device(device);
+                    let logits = xs.apply_t(&gpt, true);
+                    let loss = logits
+                        .view([BATCH_SIZE * BLOCK_SIZE, labels])
+                        .cross_entropy_for_logits(&ys.view([BATCH_SIZE * BLOCK_SIZE]));
+                    opt.backward_step_clip(&loss, 0.5);
+                    sum_loss += f64::from(loss);
+                    cnt_loss += 1.0;
+                    idx += 1;
+                    if idx % 10 == 0 {
+                        print!("{}", '.');
+                        io::stdout().flush()?;
+                    }
+                    if idx % 1000 == 0 {
+                        println!("Epoch: {}   loss: {:5.3}", epoch, sum_loss / cnt_loss);
+                        let input = Tensor::zeros(&[1, BLOCK_SIZE], (Kind::Int64, device));
+                        println!("Sample: {}", sample(&data, &gpt, input));
+                        if let Err(err) = vs.save(format!("gpt{:08}.ot", idx)) {
+                            println!("error while saving {}", err);
+                        }
+                        sum_loss = 0.;
+                        cnt_loss = 0.;
+                    }
+                }
+            }
+        }
+        "predict" => {
+            let amqp_url = std::env::var("AMQP_URL").expect("expected AMQP_URL env variabe");
+            let conn = Connection::connect(&amqp_url, ConnectionProperties::default().with_tokio())
+                .await?;
+
+            let pub_channel = conn.create_channel().await?;
+            let sub_channel = conn.create_channel().await?;
+
+            let queue = sub_channel
+                .queue_declare(
+                    &"",
+                    QueueDeclareOptions {
+                        exclusive: true,
+                        auto_delete: true,
+                        ..QueueDeclareOptions::default()
+                    },
+                    FieldTable::default(),
+                )
+                .await?;
+
+            sub_channel
+                .queue_bind(
+                    queue.name().as_str(),
+                    "irc",
+                    "cmd.say.hedgewars",
+                    QueueBindOptions::default(),
+                    FieldTable::default(),
+                )
+                .await?;
+
+            sub_channel
+                .queue_bind(
+                    queue.name().as_str(),
+                    "irc",
+                    "msg.hedgewars",
+                    QueueBindOptions::default(),
+                    FieldTable::default(),
+                )
+                .await?;
+
+            let mut subscriber = sub_channel
+                .basic_consume(
+                    queue.name().as_str(),
+                    &"",
+                    BasicConsumeOptions::default(),
+                    FieldTable::default(),
+                )
+                .await?;
+
+            vs.load(args[2].as_str())?;
+
+            let mut buffer = Vec::new();
+
+            while let Some(amqp_message) = subscriber.next().await {
+                let (_, delivery) = amqp_message.expect("error in consumer");
+                delivery.ack(BasicAckOptions::default()).await?;
+
+                if delivery.routing_key.as_str() == "msg.hedgewars" {
+                    let chat_message = String::from_utf8_lossy(&delivery.data);
+                    if let Some((_who, message)) = chat_message.split_once('\n') {
+                        buffer.push('\n');
+                        buffer.extend(message.chars());
+                        if buffer.len() >= BLOCK_SIZE as usize {
+                            let _ = buffer.drain(0..=buffer.len() - BLOCK_SIZE as usize);
+                        }
+                    }
+                } else {
+                    let chat_message = String::from_utf8_lossy(&delivery.data);
+                    let seed = chat_message.split_once('\n').map(|(_, s)| s).unwrap_or("");
+                    buffer.push('\n');
+                    buffer.extend(seed.chars());
+
+                    if buffer.len() >= BLOCK_SIZE as usize {
+                        let _ = buffer.drain(0..=buffer.len() - BLOCK_SIZE as usize);
+                    }
+
+                    let input = Tensor::zeros(&[1, BLOCK_SIZE], (Kind::Int64, device));
+                    for (idx, c) in buffer.iter().rev().enumerate() {
+                        let _filled = input
+                            .i((0, BLOCK_SIZE - 1 - idx as i64))
+                            .fill_(data.char_to_label(*c).unwrap_or(0) as i64);
+                    }
+
+                    let proceeded_message = &sample(&data, &gpt, input);
+                    let final_message = proceeded_message
+                        .split_once('\n')
+                        .map(|(m, _)| m)
+                        .unwrap_or(proceeded_message);
+                    let final_message = &format!("{}{}", seed, final_message);
+
+                    println!("{} --> {}", seed, proceeded_message);
+
+                    pub_channel
+                        .basic_publish(
+                            "irc",
+                            "say.hedgewars",
+                            BasicPublishOptions::default(),
+                            final_message.as_bytes().to_vec(),
+                            BasicProperties::default(),
+                        )
+                        .await?;
+                }
+            }
+        }
+        _ => bail!("usage: main (train|predict weights.ot)"),
+    };
+
+    Ok(())
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/ubot-plugins/ubot-plugin-janitor/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,12 @@
+[package]
+name = "ubot-plugin-janitor"
+version = "0.1.0"
+edition = "2018"
+
+[dependencies]
+anyhow = "1.0"
+tokio-amqp = "1.0"
+lapin = "1.7"
+tokio = {version="1.6", features = ["full"]}
+rand = "0.8"
+futures = "0.3"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/ubot-plugins/ubot-plugin-janitor/src/main.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,84 @@
+use anyhow::Result as AHResult;
+
+use futures::prelude::*;
+use lapin::{options::*, types::FieldTable, BasicProperties, Connection, ConnectionProperties};
+
+use tokio_amqp::*;
+
+#[tokio::main]
+async fn main() -> AHResult<()> {
+    let amqp_url = std::env::var("AMQP_URL").expect("expected AMQP_URL env variabe");
+    let conn = Connection::connect(&amqp_url, ConnectionProperties::default().with_tokio()).await?;
+
+    let pub_channel = conn.create_channel().await?;
+    let sub_channel = conn.create_channel().await?;
+
+    let queue = sub_channel
+        .queue_declare(
+            &"",
+            QueueDeclareOptions {
+                exclusive: true,
+                auto_delete: true,
+                ..QueueDeclareOptions::default()
+            },
+            FieldTable::default(),
+        )
+        .await?;
+
+    sub_channel
+        .queue_bind(
+            queue.name().as_str(),
+            "irc",
+            "*.hedgewars",
+            QueueBindOptions::default(),
+            FieldTable::default(),
+        )
+        .await?;
+
+    let mut subscriber = sub_channel
+        .basic_consume(
+            queue.name().as_str(),
+            &"",
+            BasicConsumeOptions::default(),
+            FieldTable::default(),
+        )
+        .await?;
+
+    let mut last_joined = None;
+    let mut talking_to = None;
+
+    while let Some(amqp_message) = subscriber.next().await {
+        let (_, delivery) = amqp_message.expect("error in consumer");
+        delivery.ack(BasicAckOptions::default()).await?;
+
+        match delivery.routing_key.as_str() {
+            "msg.hedgewars" => {
+                let chat_message = String::from_utf8_lossy(&delivery.data);
+                if let Some((who, _)) = chat_message.split_once('\n') {
+                    let who = Some(who.to_owned());
+                    if talking_to == who || last_joined == who {
+                        talking_to = who;
+                        pub_channel
+                            .basic_publish(
+                                "irc",
+                                "cmd.say.hedgewars",
+                                BasicPublishOptions::default(),
+                                vec![],
+                                BasicProperties::default(),
+                            )
+                            .await?;
+                    } else {
+                        last_joined = None;
+                        talking_to = None;
+                    }
+                }
+            }
+            "join.hedgewars" => {
+                last_joined = Some(String::from_utf8_lossy(&delivery.data).to_string());
+            }
+            _ => (),
+        }
+    }
+
+    Ok(())
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/ubot-plugins/url-bot-rs/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,88 @@
+[package]
+name = "url-bot-rs"
+version = "0.3.1"
+description = "Minimal IRC URL bot in Rust"
+keywords = ["irc", "bot", "title"]
+repository = "https://github.com/nuxeh/url-bot-rs"
+authors = ["Edward Cragg <drq.11235@gmail.com>"]
+license = "ISC"
+readme = "README.md"
+build = "build.rs"
+edition = "2018"
+include = [
+  "src/**/*",
+  "build.rs",
+  "Cargo.*",
+  "README.md",
+  "COPYING",
+  "example.config.toml"
+]
+
+[build-dependencies]
+built = { version = "0.4.4", features = ["git2"] }
+man = "0.3.0"
+
+[dev-dependencies]
+tiny_http = "0.8.0"
+diff = "0.1.12"
+tempfile = "3.2.0"
+
+[dependencies]
+irc = "0.13.6"
+tokio-core = "0.1.18"
+rusqlite = "0.14.0"
+chrono = "0.4.19"
+docopt = "1.1.0"
+serde = "1.0.123"
+serde_derive = "1.0.104"
+itertools = "0.10.0"
+regex = "1.4.3"
+lazy_static = "1.4.0"
+failure = "0.1.8"
+reqwest = { version = "0.11.0", features = ["blocking", "cookies", "json"] }
+serde_rusqlite = "0.14.0"
+mime = "0.3.16"
+humansize = "1.1.0"
+unicode-segmentation = "1.7.1"
+toml = "0.5.8"
+directories = "3.0.1"
+log = "0.4.13"
+stderrlog = "0.5.1"
+atty = "0.2.14"
+scraper = { version = "0.12.0", default-features = false, features = [] }
+phf = "0.7.24"
+
+anyhow = "1.0"
+tokio-amqp = "1.0"
+lapin = "1.7"
+tokio = {version="1.6", features = ["full"]}
+futures = "0.3"
+url = "2.2"
+rand = "0.8"
+
+[dependencies.image]
+version = "0.22.5"
+default-features = false
+features = ["gif_codec", "jpeg", "png_codec", "pnm", "tiff", "bmp"]
+
+[features]
+default = []
+sqlite_bundled = ["rusqlite/bundled"]
+
+[package.metadata.deb]
+extended-description = """\
+Standalone IRC bot; for resolving URLs posted, retrieving, and posting page
+titles to a configurable IRC server and channels"""
+maintainer-scripts = "debian"
+assets = [
+    ["example.config.toml", "usr/share/doc/url-bot-rs/", "644"],
+    ["target/assets/url-bot-rs.1", "usr/local/share/man/man1/", "644"],
+    ["systemd/url-bot-rs.service", "lib/systemd/system/", "644"],
+    ["target/release/url-bot-rs", "usr/bin/", "755"],
+    ["target/release/url-bot-get", "usr/bin/", "755"]
+]
+
+[badges]
+coveralls = { repository = "nuxeh/url-bot-rs", branch = "master", service = "github" }
+codecov = { repository = "nuxeh/url-bot-rs", branch = "master" }
+travis-ci = { repository = "nuxeh/url-bot-rs", branch = "master" }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/ubot-plugins/url-bot-rs/src/bin/ubot-url-plugin.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,331 @@
+use url_bot_rs::config::Rtd;
+use url_bot_rs::VERSION;
+use url_bot_rs::{feat, http::resolve_url, param, plugins::TITLE_PLUGINS, tld::TLD};
+
+use anyhow::Result as AHResult;
+use atty::{is, Stream};
+use directories::ProjectDirs;
+use docopt::Docopt;
+use failure::Error;
+use lazy_static::lazy_static;
+use log::{error, info};
+use regex::Regex;
+use reqwest::Url;
+use serde_derive::Deserialize;
+use std::collections::HashSet;
+use std::path::PathBuf;
+use stderrlog::{ColorChoice, Timestamp};
+
+use lapin::{options::*, types::FieldTable, BasicProperties, Connection, ConnectionProperties};
+use tokio_amqp::*;
+
+use futures::prelude::*;
+
+use rand::distributions::Alphanumeric;
+use rand::{thread_rng, Rng};
+
+use std::sync::mpsc;
+use std::thread;
+
+// docopt usage string
+const USAGE: &str = "
+URL munching IRC bot.
+
+Usage:
+    ubot-url-plugin [options] [-v...] [--conf=PATH...] [--conf-dir=DIR...]
+
+Options:
+    -h --help           Show this help message.
+    --version           Print version.
+    -v --verbose        Show extra information.
+    -t --timestamp      Force timestamps.
+";
+
+#[derive(Debug, Deserialize, Default)]
+pub struct Args {
+    flag_verbose: usize,
+    flag_conf: Vec<PathBuf>,
+    flag_conf_dir: Vec<PathBuf>,
+    flag_timestamp: bool,
+}
+
+const MIN_VERBOSITY: usize = 2;
+
+#[derive(Debug, PartialEq)]
+enum TitleResp {
+    Title(String),
+    Error(String),
+}
+
+/// Run available plugins on a single URL, return the first successful title.
+fn process_plugins(rtd: &Rtd, url: &Url) -> Option<String> {
+    let result: String = TITLE_PLUGINS
+        .iter()
+        .filter(|p| p.check(&rtd.conf.plugins, url))
+        .filter_map(|p| p.evaluate(&rtd, url).ok())
+        .take(1)
+        .collect();
+
+    if result.is_empty() {
+        None
+    } else {
+        Some(result)
+    }
+}
+
+/// find titles in a message and generate responses
+fn process_titles(rtd: &Rtd, msg: &str) -> impl Iterator<Item = TitleResp> {
+    let mut responses: Vec<TitleResp> = vec![];
+
+    let mut num_processed = 0;
+    let mut dedup_urls = HashSet::new();
+
+    // look at each space-separated message token
+    for token in msg.split_whitespace() {
+        // the token must not contain unsafe characters
+        if contains_unsafe_chars(token) {
+            continue;
+        }
+
+        // get a full URL for tokens without a scheme
+        let maybe_token = if feat!(rtd, partial_urls) {
+            add_scheme_for_tld(token)
+        } else {
+            None
+        };
+
+        let token = maybe_token.as_ref().map_or(token, String::as_str);
+
+        // the token must be a valid url
+        let url = match token.parse::<Url>() {
+            Ok(url) => url,
+            _ => continue,
+        };
+
+        // the scheme must be http or https
+        if !["http", "https"].contains(&url.scheme()) {
+            continue;
+        }
+
+        // skip duplicate urls within the message
+        if dedup_urls.contains(&url) {
+            continue;
+        }
+
+        info!("[{}] RESOLVE <{}>", rtd.conf.network.name, token);
+
+        // try to get the title from the url
+        let title = if let Some(title) = process_plugins(rtd, &url) {
+            title
+        } else {
+            match resolve_url(token, rtd) {
+                Ok(title) => title,
+                Err(err) => {
+                    error!("{:?}", err);
+                    responses.push(TitleResp::Error(err.to_string()));
+                    continue;
+                }
+            }
+        };
+
+        // limit response length, see RFC1459
+
+        let msg = utf8_truncate(&format!("⤷ {}", title), 510);
+
+        info!("[{}] {}", rtd.conf.network.name, msg);
+
+        responses.push(TitleResp::Title(msg.to_string()));
+
+        dedup_urls.insert(url);
+
+        // limit the number of processed URLs
+        num_processed += 1;
+        if num_processed == param!(rtd, url_limit) {
+            break;
+        }
+    }
+
+    responses.into_iter()
+}
+
+// regex for unsafe characters, as defined in RFC 1738
+const RE_UNSAFE_CHARS: &str = r#"[{}|\\^~\[\]`<>"]"#;
+
+/// does the token contain characters not permitted by RFC 1738
+fn contains_unsafe_chars(token: &str) -> bool {
+    lazy_static! {
+        static ref UNSAFE: Regex = Regex::new(RE_UNSAFE_CHARS).unwrap();
+    }
+    UNSAFE.is_match(token)
+}
+
+/// truncate to a maximum number of bytes, taking UTF-8 into account
+fn utf8_truncate(s: &str, n: usize) -> String {
+    s.char_indices()
+        .take_while(|(len, c)| len + c.len_utf8() <= n)
+        .map(|(_, c)| c)
+        .collect()
+}
+
+lazy_static! {
+    static ref REPEATED_DOTS: Regex = Regex::new(r"\.\.+").unwrap();
+}
+
+/// if a token has a recognised TLD, but no scheme, add one
+pub fn add_scheme_for_tld(token: &str) -> Option<String> {
+    if token.parse::<Url>().is_err() {
+        if token.starts_with(|s: char| !s.is_alphabetic()) {
+            return None;
+        }
+
+        if REPEATED_DOTS.is_match(&token) {
+            return None;
+        }
+
+        let new_token = format!("http://{}", token);
+
+        if let Ok(url) = new_token.parse::<Url>() {
+            if !url.domain()?.contains('.') {
+                return None;
+            }
+
+            // reject email addresses
+            if url.username() != "" {
+                return None;
+            }
+
+            let tld = url.domain()?.split('.').last()?;
+
+            if TLD.contains(tld) {
+                return Some(new_token);
+            }
+        }
+    }
+
+    None
+}
+
+fn init_rtd() -> AHResult<Rtd, Error> {
+    // parse command line arguments with docopt
+    let args: Args = Docopt::new(USAGE)
+        .and_then(|d| d.version(Some(VERSION.to_string())).deserialize())
+        .unwrap_or_else(|e| e.exit());
+
+    // avoid timestamping when piped, e.g. systemd
+    let timestamp = if is(Stream::Stderr) || args.flag_timestamp {
+        Timestamp::Second
+    } else {
+        Timestamp::Off
+    };
+
+    stderrlog::new()
+        .module(module_path!())
+        .modules(vec![
+            "url_bot_rs::message",
+            "url_bot_rs::config",
+            "url_bot_rs::http",
+        ])
+        .verbosity(args.flag_verbose + MIN_VERBOSITY)
+        .timestamp(timestamp)
+        .color(ColorChoice::Never)
+        .init()
+        .unwrap();
+
+    let dirs = ProjectDirs::from("org", "", "url-bot-rs").unwrap();
+    let default_conf_dir = dirs.config_dir();
+
+    let default_conf = default_conf_dir.join("config.toml");
+
+    let rtd: Rtd = Rtd::new().conf(&default_conf).load()?.init_http_client()?;
+
+    Ok(rtd)
+}
+
+fn random_string(size: usize) -> String {
+    thread_rng()
+        .sample_iter(&Alphanumeric)
+        .take(size)
+        .map(char::from)
+        .collect()
+}
+
+#[tokio::main]
+async fn main() -> AHResult<()> {
+    let (tx1, rx1) = mpsc::channel::<String>();
+    let (tx2, rx2) = mpsc::channel();
+
+    thread::spawn(move || {
+        let rtd = init_rtd().expect("RTD not initialized");
+
+        loop {
+            let message = &rx1.recv().expect("rx1 recv error");
+            let titles: Vec<_> = process_titles(&rtd, message).collect();
+            tx2.send(titles).expect("tx2 send error");
+        }
+    });
+    let amqp_url = std::env::var("AMQP_URL").expect("expected AMQP_URL env variabe");
+    let conn = Connection::connect(&amqp_url, ConnectionProperties::default().with_tokio()).await?;
+
+    let pub_channel = conn.create_channel().await?;
+    let sub_channel = conn.create_channel().await?;
+
+    let queue = sub_channel
+        .queue_declare(
+            &random_string(32),
+            QueueDeclareOptions {
+                exclusive: true,
+                auto_delete: true,
+                ..QueueDeclareOptions::default()
+            },
+            FieldTable::default(),
+        )
+        .await?;
+
+    sub_channel
+        .queue_bind(
+            queue.name().as_str(),
+            "irc",
+            "msg.hedgewars",
+            QueueBindOptions::default(),
+            FieldTable::default(),
+        )
+        .await?;
+
+    let mut subscriber = sub_channel
+        .basic_consume(
+            queue.name().as_str(),
+            &random_string(32),
+            BasicConsumeOptions::default(),
+            FieldTable::default(),
+        )
+        .await?;
+
+    while let Some(amqp_message) = subscriber.next().await {
+        let (_, delivery) = amqp_message.expect("error in consumer");
+        delivery.ack(BasicAckOptions::default()).await?;
+
+        let chat_message = String::from_utf8(delivery.data)?;
+        if let Some((_who, message)) = chat_message.split_once('\n') {
+            tx1.send(message.to_owned())?;
+            let titles = rx2.recv()?;
+
+            for title in titles {
+                let title_message = match title {
+                    TitleResp::Title(t) => t,
+                    TitleResp::Error(e) => e,
+                };
+                pub_channel
+                    .basic_publish(
+                        "irc",
+                        "say.hedgewars",
+                        BasicPublishOptions::default(),
+                        title_message.as_bytes().to_vec(),
+                        BasicProperties::default(),
+                    )
+                    .await?;
+            }
+        }
+    }
+
+    Ok(())
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/ubot/Cargo.toml	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,15 @@
+[package]
+name = "ubot"
+version = "0.1.0"
+authors = ["Andrey Korotaev <andrey.korotaev@norbit.com>"]
+edition = "2018"
+
+[dependencies]
+tokio-amqp = "1.0"
+lapin = "1.7"
+tokio = {version="1.6", features = ["full"]}
+irc = "0.15"
+anyhow = "1.0"
+futures = "0.3"
+url = "2.2"
+rand = "0.8"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/ubot/src/main.rs	Sun Mar 24 14:34:27 2024 -0400
@@ -0,0 +1,195 @@
+use lapin::{
+    message::Delivery, options::*, types::FieldTable, BasicProperties, Connection,
+    ConnectionProperties,
+};
+use tokio_amqp::*;
+
+use futures::prelude::*;
+use irc::client::prelude::*;
+
+use anyhow::{bail, Result as AHResult};
+
+use url::Url;
+
+use rand::distributions::Alphanumeric;
+use rand::{thread_rng, Rng};
+
+fn url2irc_config(url: &str) -> AHResult<Config> {
+    let url = Url::parse(url)?;
+
+    if url.scheme() != "irc" {
+        bail!("Expected 'irc' scheme")
+    }
+
+    Ok(Config {
+        nickname: Some(url.username().to_owned()),
+        nick_password: url.password().map(|s| s.to_owned()),
+        server: url.host_str().map(|s| s.to_owned()),
+        port: url.port(),
+        channels: vec![format!("#{}", &url.path()[1..])],
+        //use_mock_connection: true,
+        ..Config::default()
+    })
+}
+
+fn random_string(size: usize) -> String {
+    thread_rng()
+        .sample_iter(&Alphanumeric)
+        .take(size)
+        .map(char::from)
+        .collect()
+}
+
+async fn handle_irc(pub_channel: &lapin::Channel, irc_message: &Message) -> AHResult<()> {
+    match &irc_message.command {
+        Command::PRIVMSG(msgtarget, message) => {
+            let target = irc_message
+                .response_target()
+                .expect("Really expected PRIVMSG would have a source");
+            let target = if target.starts_with('#') {
+                &target[1..]
+            } else {
+                &target
+            };
+
+            let who = irc_message.source_nickname().unwrap_or(msgtarget);
+
+            if message.starts_with("!") {
+                if let Some((cmd, param)) = message.split_once(' ') {
+                    pub_channel
+                        .basic_publish(
+                            "irc",
+                            &format!("cmd.{}.{}", &cmd[1..], target),
+                            BasicPublishOptions::default(),
+                            format!("{}\n{}", who, param).as_bytes().to_vec(),
+                            BasicProperties::default(),
+                        )
+                        .await?;
+                } else {
+                    pub_channel
+                        .basic_publish(
+                            "irc",
+                            &format!("cmd.{}.{}", &message[1..], target),
+                            BasicPublishOptions::default(),
+                            who.as_bytes().to_vec(),
+                            BasicProperties::default(),
+                        )
+                        .await?;
+                }
+            } else {
+                pub_channel
+                    .basic_publish(
+                        "irc",
+                        &format!("msg.{}", target),
+                        BasicPublishOptions::default(),
+                        format!("{}\n{}", who, message).as_bytes().to_vec(),
+                        BasicProperties::default(),
+                    )
+                    .await?;
+            }
+        }
+        Command::JOIN(channel, _, _) => {
+            pub_channel
+                .basic_publish(
+                    "irc",
+                    &format!("join.{}", &channel[1..]),
+                    BasicPublishOptions::default(),
+                    irc_message
+                        .source_nickname()
+                        .expect("Hey, who joined?")
+                        .as_bytes()
+                        .to_vec(),
+                    BasicProperties::default(),
+                )
+                .await?;
+        }
+        Command::PART(channel, _) => {
+            pub_channel
+                .basic_publish(
+                    "irc",
+                    &format!("part.{}", &channel[1..]),
+                    BasicPublishOptions::default(),
+                    irc_message
+                        .source_nickname()
+                        .expect("Hey, who left?")
+                        .as_bytes()
+                        .to_vec(),
+                    BasicProperties::default(),
+                )
+                .await?;
+        }
+        _ => (),
+    }
+
+    Ok(())
+}
+
+async fn handle_amqp(
+    irc_client: &mut Client,
+    irc_channel: &str,
+    delivery: Delivery,
+) -> AHResult<()> {
+    let message = String::from_utf8(delivery.data)?;
+    Ok(irc_client.send_privmsg(irc_channel, message)?)
+}
+
+#[tokio::main]
+async fn main() -> AHResult<()> {
+    let amqp_url = std::env::var("AMQP_URL").expect("expected AMQP_URL env variabe");
+    let irc_url = std::env::var("IRC_URL").expect("expected IRC_URL env variabe");
+    let conn = Connection::connect(&amqp_url, ConnectionProperties::default().with_tokio()).await?;
+
+    let pub_channel = conn.create_channel().await?;
+    let sub_channel = conn.create_channel().await?;
+
+    let irc_config = url2irc_config(&irc_url)?;
+    let irc_channel = irc_config.channels[0].to_owned();
+    let mut irc_client = Client::from_config(irc_config).await?;
+    let mut irc_stream = irc_client.stream()?;
+    irc_client.identify()?;
+
+    let queue = sub_channel
+        .queue_declare(
+            &random_string(32),
+            QueueDeclareOptions {
+                exclusive: true,
+                auto_delete: true,
+                ..QueueDeclareOptions::default()
+            },
+            FieldTable::default(),
+        )
+        .await?;
+
+    sub_channel
+        .queue_bind(
+            queue.name().as_str(),
+            "irc",
+            &format!("say.{}", &irc_channel[1..]),
+            QueueBindOptions::default(),
+            FieldTable::default(),
+        )
+        .await?;
+
+    let mut subscriber = sub_channel
+        .basic_consume(
+            queue.name().as_str(),
+            &random_string(32),
+            BasicConsumeOptions::default(),
+            FieldTable::default(),
+        )
+        .await?;
+
+    loop {
+        tokio::select! {
+            Some(irc_message) = irc_stream.next() => handle_irc(&pub_channel, &irc_message?).await?,
+            Some(amqp_message) = subscriber.next() => {
+                let (_, delivery) = amqp_message.expect("error in consumer");
+                delivery
+                    .ack(BasicAckOptions::default())
+                    .await?;
+
+                    handle_amqp(&mut irc_client, &irc_channel, delivery).await?
+            }
+        }
+    }
+}